ETH Price: $3,073.89 (-6.63%)
Gas: 9 Gwei

Token

BondAppetit Governance (BAG)
 

Overview

Max Total Supply

39,648,542,789.5569401997472765 BAG

Holders

472 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
19.823518582292641035 BAG

Value
$0.00
0x924e8fc81484781b8057db784266017fce1af136
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

BondAppétit Governance (BAG) token is the main tool for decision-making, which also acts as the main reward and incentivization tool for participants of the protocol and the community.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
GovernanceToken

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
No with 200 runs

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

pragma solidity ^0.6.0;

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

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

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

File 3 of 6 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
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);
}

File 5 of 6 : EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.6.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256`
 * (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(value)));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint256(_at(set._inner, index)));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

File 6 of 6 : GovernanceToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.0;
pragma experimental ABIEncoderV2;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/math/SafeMath.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/EnumerableSet.sol";

contract GovernanceToken is IERC20, Ownable {
    using SafeMath for uint256;
    using EnumerableSet for EnumerableSet.AddressSet;

    /// @notice EIP-20 token name for this token
    string public name = "BondAppetit Governance";

    /// @notice EIP-20 token symbol for this token
    string public symbol = "BAG";

    /// @notice EIP-20 token decimals for this token
    uint8 public decimals = 18;

    /// @notice Total number of tokens in circulation
    uint256 public override totalSupply = 100000000e18; // 100 million tokens

    /// @dev Allowance amounts on behalf of others
    mapping(address => mapping(address => uint96)) internal allowances;

    /// @dev Official record of token balances for each account
    mapping(address => uint96) internal balances;

    /// @notice Amount of blocked token
    struct Lock {
        uint96 amount;
        uint256 date;
    }

    /// @notice Locking amounts
    mapping(address => Lock) public locking;

    /// @dev Locking amounts
    EnumerableSet.AddressSet internal lockingAllowed;

    /// @notice A record of each accounts delegate
    mapping(address => address) public delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint96 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping(address => mapping(uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping(address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping(address => uint256) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint256 previousBalance, uint256 newBalance);

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint256 amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /**
     * @notice Construct a new token
     * @param account The initial account to grant all the tokens
     */
    constructor(address account) public {
        balances[account] = uint96(totalSupply);
        emit Transfer(address(0), account, totalSupply);
    }

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external override view returns (uint256) {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint256 rawAmount) external override returns (bool) {
        uint96 amount;
        if (rawAmount == uint256(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "GovernanceToken::approve: amount exceeds 96 bits");
        }

        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external override view returns (uint256) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint256 rawAmount) external override returns (bool) {
        uint96 amount = safe96(rawAmount, "GovernanceToken::transfer: amount exceeds 96 bits");
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(
        address src,
        address dst,
        uint256 rawAmount
    ) external override returns (bool) {
        address spender = msg.sender;
        uint96 spenderAllowance = allowances[src][spender];
        uint96 amount = safe96(rawAmount, "GovernanceToken::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint96(-1)) {
            uint96 newAllowance = sub96(spenderAllowance, amount, "GovernanceToken::transferFrom: transfer amount exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    /**
     * @notice Add account to transfer lock method allowed list
     * @param account Allowable account
     */
    function allowTransferLock(address account) external onlyOwner returns (bool) {
        return lockingAllowed.add(account);
    }

    /**
     * @notice Remove account from transfer lock method allowed list
     * @param account Denied account
     */
    function denyTransferLock(address account) external onlyOwner returns (bool) {
        return lockingAllowed.remove(account);
    }

    function transferLock(address dst, uint256 rawAmount, uint256 date) external returns (bool) {
        require(lockingAllowed.contains(msg.sender), "GovernanceToken::transferLock: access is denied");
        require(locking[dst].date == 0 || locking[dst].date == date, "GovernanceToken::transferLock: lock date cannot be changed");
        uint96 amount = safe96(rawAmount, "GovernanceToken::transferLock: amount exceeds 96 bits");

        locking[dst].date = date;
        locking[dst].amount = add96(locking[dst].amount, amount, "GovernanceToken::transferLock: transfer amount overflows");
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     * 
     * @param account Recipient of created token.
     * @param amount Amount of token to be created.
     */
    function mint(address account, uint256 amount) public onlyOwner {
        _mint(account, amount);
    }

    /**
     * @param account Owner of removed token.
     * @param amount Amount of token to be removed.
     */
    function burn(address account, uint256 amount) public onlyOwner {
        _burn(account, amount);
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(
        address delegatee,
        uint256 nonce,
        uint256 expiry,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "GovernanceToken::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "GovernanceToken::delegateBySig: invalid nonce");
        require(now <= expiry, "GovernanceToken::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint96) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint256 blockNumber) public view returns (uint96) {
        require(blockNumber < block.number, "GovernanceToken::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint96 delegatorBalance = balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _transferTokens(
        address src,
        address dst,
        uint96 amount
    ) internal {
        require(src != address(0), "GovernanceToken::_transferTokens: cannot transfer from the zero address");
        require(dst != address(0), "GovernanceToken::_transferTokens: cannot transfer to the zero address");

        balances[src] = sub96(balances[src], amount, "GovernanceToken::_transferTokens: transfer amount exceeds balance");
        if (locking[src].date > block.timestamp && locking[src].amount > 0 && balances[src] < locking[src].amount) {
            revert("GovernanceToken::_transferTokens: amount are locked");
        }
        balances[dst] = add96(balances[dst], amount, "GovernanceToken::_transferTokens: transfer amount overflows");
        emit Transfer(src, dst, amount);

        _moveDelegates(delegates[src], delegates[dst], amount);
    }

    function _moveDelegates(
        address srcRep,
        address dstRep,
        uint96 amount
    ) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint96 srcRepNew = sub96(srcRepOld, amount, "GovernanceToken::_moveVotes: vote amount underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint96 dstRepNew = add96(dstRepOld, amount, "GovernanceToken::_moveVotes: vote amount overflows");
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(
        address delegatee,
        uint32 nCheckpoints,
        uint96 oldVotes,
        uint96 newVotes
    ) internal {
        uint32 blockNumber = safe32(block.number, "GovernanceToken::_writeCheckpoint: block number exceeds 32 bits");

        if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
            checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
        } else {
            checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
            numCheckpoints[delegatee] = nCheckpoints + 1;
        }

        emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.

     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 rawAmount) internal virtual {
        require(account != address(0), "GovernanceToken::_mint: mint to the zero address");
        uint96 amount = safe96(rawAmount, "GovernanceToken::_mint: amount exceeds 96 bits");

        totalSupply = totalSupply.add(rawAmount);
        balances[account] = add96(balances[account], amount, "GovernanceToken::_mint: mint amount overflows");
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 rawAmount) internal virtual {
        require(account != address(0), "GovernanceToken::_burn: burn from the zero address");
        uint96 amount = safe96(rawAmount, "GovernanceToken::_burn: amount exceeds 96 bits");

        balances[account] = sub96(balances[account], amount, "GovernanceToken::_burn: burn amount exceeds balance");
        totalSupply = totalSupply.sub(rawAmount);
        emit Transfer(account, address(0), amount);
    }

    function safe32(uint256 n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function safe96(uint256 n, string memory errorMessage) internal pure returns (uint96) {
        require(n < 2**96, errorMessage);
        return uint96(n);
    }

    function add96(
        uint96 a,
        uint96 b,
        string memory errorMessage
    ) internal pure returns (uint96) {
        uint96 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

    function sub96(
        uint96 a,
        uint96 b,
        string memory errorMessage
    ) internal pure returns (uint96) {
        require(b <= a, errorMessage);
        return a - b;
    }

    function getChainId() internal pure returns (uint256) {
        uint256 chainId;

        assembly {
            chainId := chainid()
        }
        return chainId;
    }
}

Settings
{
  "evmVersion": "istanbul",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"account","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"allowTransferLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"denyTransferLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"locking","outputs":[{"internalType":"uint96","name":"amount","type":"uint96"},{"internalType":"uint256","name":"date","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"},{"internalType":"uint256","name":"date","type":"uint256"}],"name":"transferLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280601681526020017f426f6e644170706574697420476f7665726e616e636500000000000000000000815250600190805190602001906200005192919062000297565b506040518060400160405280600381526020017f4241470000000000000000000000000000000000000000000000000000000000815250600290805190602001906200009f92919062000297565b506012600360006101000a81548160ff021916908360ff1602179055506a52b7d2dcc80cd2e4000000600455348015620000d857600080fd5b5060405162004b5438038062004b548339818101604052810190620000fe919062000354565b6000620001106200028f60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350600454600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60045460405162000280919062000391565b60405180910390a35062000406565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620002da57805160ff19168380011785556200030b565b828001600101855582156200030b579182015b828111156200030a578251825591602001919060010190620002ed565b5b5090506200031a91906200031e565b5090565b5b80821115620003395760008160009055506001016200031f565b5090565b6000815190506200034e81620003ec565b92915050565b6000602082840312156200036757600080fd5b600062000377848285016200033d565b91505092915050565b6200038b81620003e2565b82525050565b6000602082019050620003a8600083018462000380565b92915050565b6000620003bb82620003c2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b620003f781620003ae565b81146200040357600080fd5b50565b61473e80620004166000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80638da5cb5b116100f9578063d44462d011610097578063ddaf32dc11610071578063ddaf32dc14610568578063e7a324dc14610598578063f1127ed8146105b6578063f2fde38b146105e7576101c4565b8063d44462d0146104d8578063d72896db14610508578063dd62ed3e14610538576101c4565b8063a9059cbb116100d3578063a9059cbb1461042b578063b4b5ea571461045b578063c1bf75d81461048b578063c3cda520146104bc576101c4565b80638da5cb5b146103d357806395d89b41146103f15780639dc29fac1461040f576101c4565b8063587cde1e1161016657806370a082311161014057806370a0823114610339578063715018a614610369578063782d6fe1146103735780637ecebe00146103a3576101c4565b8063587cde1e146102bd5780635c19a95c146102ed5780636fcfff4514610309576101c4565b806320606b70116101a257806320606b701461023557806323b872dd14610253578063313ce5671461028357806340c10f19146102a1576101c4565b806306fdde03146101c9578063095ea7b3146101e757806318160ddd14610217575b600080fd5b6101d1610603565b6040516101de9190613f91565b60405180910390f35b61020160048036038101906101fc91906135a9565b6106a1565b60405161020e9190613e8c565b60405180910390f35b61021f610834565b60405161022c9190614173565b60405180910390f35b61023d61083a565b60405161024a9190613ea7565b60405180910390f35b61026d6004803603810190610268919061355a565b61085e565b60405161027a9190613e8c565b60405180910390f35b61028b610af2565b60405161029891906141d2565b60405180910390f35b6102bb60048036038101906102b691906135a9565b610b05565b005b6102d760048036038101906102d291906134f5565b610ba8565b6040516102e49190613e71565b60405180910390f35b610307600480360381019061030291906134f5565b610bdb565b005b610323600480360381019061031e91906134f5565b610be8565b604051610330919061418e565b60405180910390f35b610353600480360381019061034e91906134f5565b610c0b565b6040516103609190614173565b60405180910390f35b610371610c7a565b005b61038d600480360381019061038891906135a9565b610dcd565b60405161039a9190614208565b60405180910390f35b6103bd60048036038101906103b891906134f5565b6111dc565b6040516103ca9190614173565b60405180910390f35b6103db6111f4565b6040516103e89190613e71565b60405180910390f35b6103f961121d565b6040516104069190613f91565b60405180910390f35b610429600480360381019061042491906135a9565b6112bb565b005b610445600480360381019061044091906135a9565b61135e565b6040516104529190613e8c565b60405180910390f35b610475600480360381019061047091906134f5565b61139b565b6040516104829190614208565b60405180910390f35b6104a560048036038101906104a091906134f5565b611489565b6040516104b3929190614223565b60405180910390f35b6104d660048036038101906104d19190613634565b6114c5565b005b6104f260048036038101906104ed91906134f5565b61175c565b6040516104ff9190613e8c565b60405180910390f35b610522600480360381019061051d91906135e5565b61180e565b60405161052f9190613e8c565b60405180910390f35b610552600480360381019061054d919061351e565b611aa5565b60405161055f9190614173565b60405180910390f35b610582600480360381019061057d91906134f5565b611b52565b60405161058f9190613e8c565b60405180910390f35b6105a0611c04565b6040516105ad9190613ea7565b60405180910390f35b6105d060048036038101906105cb91906136bd565b611c28565b6040516105de9291906141a9565b60405180910390f35b61060160048036038101906105fc91906134f5565b611c81565b005b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106995780601f1061066e57610100808354040283529160200191610699565b820191906000526020600020905b81548152906001019060200180831161067c57829003601f168201915b505050505081565b6000807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8314156106f4577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9050610719565b6107168360405180606001604052806030815260200161462260309139611e43565b90505b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161082191906141ed565b60405180910390a3600191505092915050565b60045481565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000803390506000600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff16905060006109218560405180606001604052806030815260200161462260309139611e43565b90508673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561099b57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6bffffffffffffffffffffffff16826bffffffffffffffffffffffff1614155b15610ad95760006109c5838360405180608001604052806048815260200161465260489139611ea1565b905080600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610acf91906141ed565b60405180910390a3505b610ae4878783611f12565b600193505050509392505050565b600360009054906101000a900460ff1681565b610b0d6124c4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b91906140f3565b60405180910390fd5b610ba482826124cc565b5050565b600a6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610be533826126cf565b50565b600c6020528060005260406000206000915054906101000a900463ffffffff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff169050919050565b610c826124c4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d06906140f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000438210610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613fb3565b60405180910390fd5b6000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff161415610e7e5760009150506111d6565b82600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611610f8057600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff169150506111d6565b82600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611156110015760009150506111d6565b6000806001830390505b8163ffffffff168163ffffffff161115611158576000600283830363ffffffff168161103357fe5b048203905061104061345e565b600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681525050905086816000015163ffffffff161415611130578060200151955050505050506111d6565b86816000015163ffffffff16101561114a57819350611151565b6001820392505b505061100b565b600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff1693505050505b92915050565b600d6020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b505050505081565b6112c36124c4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906140f3565b60405180910390fd5b61135a828261288f565b5050565b600080611383836040518060600160405280603181526020016145f160319139611e43565b9050611390338583611f12565b600191505092915050565b600080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1611611405576000611481565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff165b915050919050565b60076020528060005260406000206000915090508060000160009054906101000a90046bffffffffffffffffffffffff16908060010154905082565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86660016040516114f79190613e23565b6040518091039020611507612a92565b3060405160200161151b9493929190613f07565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf88888860405160200161156c9493929190613ec2565b60405160208183030381529060405280519060200120905060008282604051602001611599929190613e3a565b6040516020818303038152906040528051906020012090506000600182888888604051600081526020016040526040516115d69493929190613f4c565b6020604051602081039080840390855afa1580156115f8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614113565b60405180910390fd5b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050558914611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90613fd3565b60405180910390fd5b87421115611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d906140b3565b60405180910390fd5b611750818b6126cf565b50505050505050505050565b60006117666124c4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea906140f3565b60405180910390fd5b611807826008612a9f90919063ffffffff16565b9050919050565b6000611824336008612acf90919063ffffffff16565b611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a906140d3565b60405180910390fd5b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015414806118f5575081600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154145b611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90614133565b60405180910390fd5b60006119588460405180606001604052806035815260200161458960359139611e43565b905082600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550611a1e600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff16826040518060600160405280603881526020016144f060389139612aff565b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550611a99338683611f12565b60019150509392505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16905092915050565b6000611b5c6124c4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be0906140f3565b60405180910390fd5b611bfd826008612b7590919063ffffffff16565b9050919050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600b602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060000160049054906101000a90046bffffffffffffffffffffffff16905082565b611c896124c4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d906140f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7d90614033565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006c0100000000000000000000000083108290611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e9190613f91565b60405180910390fd5b5082905092915050565b6000836bffffffffffffffffffffffff16836bffffffffffffffffffffffff1611158290611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc9190613f91565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990614093565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe990614073565b60405180910390fd5b61206c600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff16826040518060800160405280604181526020016146c860419139611ea1565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555042600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015411801561219257506000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16115b801561226a5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16105b156122aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a190613ff3565b60405180910390fd5b612324600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff16826040518060600160405280603b8152602001614488603b9139612aff565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123ee91906141ed565b60405180910390a36124bf600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612ba5565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253390614153565b60405180910390fd5b6000612560826040518060600160405280602e815260200161469a602e9139611e43565b905061257782600454612ea090919063ffffffff16565b6004819055506125f7600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff16826040518060600160405280602d81526020016144c3602d9139612aff565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516126c291906141ed565b60405180910390a3505050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff16905082600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4612889828483612ba5565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f690614013565b60405180910390fd5b6000612923826040518060600160405280602e815260200161455b602e9139611e43565b905061299f600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff16826040518060600160405280603381526020016145be60339139611ea1565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550612a2182600454612ef590919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612a8591906141ed565b60405180910390a3505050565b6000804690508091505090565b6000612ac7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612f3f565b905092915050565b6000612af7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613027565b905092915050565b6000808385019050846bffffffffffffffffffffffff16816bffffffffffffffffffffffff1610158390612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b609190613f91565b60405180910390fd5b50809150509392505050565b6000612b9d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61304a565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612bef57506000816bffffffffffffffffffffffff16115b15612e9b57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d47576000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611612c92576000612d0e565b600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff165b90506000612d35828560405180606001604052806033815260200161452860339139611ea1565b9050612d43868484846130ba565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e9a576000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611612de5576000612e61565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff165b90506000612e88828560405180606001604052806032815260200161445660329139612aff565b9050612e96858484846130ba565b5050505b5b505050565b600080828401905083811015612eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee290614053565b60405180910390fd5b8091505092915050565b6000612f3783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506133ad565b905092915050565b6000808360010160008481526020019081526020016000205490506000811461301b5760006001820390506000600186600001805490500390506000866000018281548110612f8a57fe5b9060005260206000200154905080876000018481548110612fa757fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612fdf57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613021565b60009150505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b60006130568383613027565b6130af5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506130b4565b600090505b92915050565b60006130de436040518060600160405280603f8152602001614417603f9139613408565b905060008463ffffffff1611801561317357508063ffffffff16600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b1561320e5781600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550613356565b60405180604001604052808263ffffffff168152602001836bffffffffffffffffffffffff16815250600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555090505060018401600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724848460405161339e92919061424c565b60405180910390a25050505050565b60008383111582906133f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ec9190613f91565b60405180910390fd5b5060008385039050809150509392505050565b600064010000000083108290613454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344b9190613f91565b60405180910390fd5b5082905092915050565b6040518060400160405280600063ffffffff16815260200160006bffffffffffffffffffffffff1681525090565b60008135905061349b816143a3565b92915050565b6000813590506134b0816143ba565b92915050565b6000813590506134c5816143d1565b92915050565b6000813590506134da816143e8565b92915050565b6000813590506134ef816143ff565b92915050565b60006020828403121561350757600080fd5b60006135158482850161348c565b91505092915050565b6000806040838503121561353157600080fd5b600061353f8582860161348c565b92505060206135508582860161348c565b9150509250929050565b60008060006060848603121561356f57600080fd5b600061357d8682870161348c565b935050602061358e8682870161348c565b925050604061359f868287016134b6565b9150509250925092565b600080604083850312156135bc57600080fd5b60006135ca8582860161348c565b92505060206135db858286016134b6565b9150509250929050565b6000806000606084860312156135fa57600080fd5b60006136088682870161348c565b9350506020613619868287016134b6565b925050604061362a868287016134b6565b9150509250925092565b60008060008060008060c0878903121561364d57600080fd5b600061365b89828a0161348c565b965050602061366c89828a016134b6565b955050604061367d89828a016134b6565b945050606061368e89828a016134e0565b935050608061369f89828a016134a1565b92505060a06136b089828a016134a1565b9150509295509295509295565b600080604083850312156136d057600080fd5b60006136de8582860161348c565b92505060206136ef858286016134cb565b9150509250929050565b613702816142bc565b82525050565b613711816142ce565b82525050565b613720816142da565b82525050565b613737613732826142da565b614388565b82525050565b60008154600181166000811461375a576001811461377f576137c3565b607f600283041661376b8187614295565b955060ff19831686528086019350506137c3565b6002820461378d8187614295565b955061379885614275565b60005b828110156137ba5781548189015260018201915060208101905061379b565b82880195505050505b505092915050565b60006137d68261428a565b6137e081856142a0565b93506137f0818560208601614355565b6137f981614392565b840191505092915050565b60006138116032836142a0565b91507f476f7665726e616e6365546f6b656e3a3a6765745072696f72566f7465733a2060008301527f6e6f74207965742064657465726d696e656400000000000000000000000000006020830152604082019050919050565b6000613877602d836142a0565b91507f476f7665726e616e6365546f6b656e3a3a64656c656761746542795369673a2060008301527f696e76616c6964206e6f6e6365000000000000000000000000000000000000006020830152604082019050919050565b60006138dd6033836142a0565b91507f476f7665726e616e6365546f6b656e3a3a5f7472616e73666572546f6b656e7360008301527f3a20616d6f756e7420617265206c6f636b6564000000000000000000000000006020830152604082019050919050565b60006139436032836142a0565b91507f476f7665726e616e6365546f6b656e3a3a5f6275726e3a206275726e2066726f60008301527f6d20746865207a65726f206164647265737300000000000000000000000000006020830152604082019050919050565b60006139a96026836142a0565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a0f6002836142b1565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000613a4f601b836142a0565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613a8f6045836142a0565b91507f476f7665726e616e6365546f6b656e3a3a5f7472616e73666572546f6b656e7360008301527f3a2063616e6e6f74207472616e7366657220746f20746865207a65726f20616460208301527f64726573730000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613b1b6047836142a0565b91507f476f7665726e616e6365546f6b656e3a3a5f7472616e73666572546f6b656e7360008301527f3a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f2060208301527f61646472657373000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613ba76031836142a0565b91507f476f7665726e616e6365546f6b656e3a3a64656c656761746542795369673a2060008301527f7369676e617475726520657870697265640000000000000000000000000000006020830152604082019050919050565b6000613c0d602f836142a0565b91507f476f7665726e616e6365546f6b656e3a3a7472616e736665724c6f636b3a206160008301527f63636573732069732064656e69656400000000000000000000000000000000006020830152604082019050919050565b6000613c736020836142a0565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613cb36031836142a0565b91507f476f7665726e616e6365546f6b656e3a3a64656c656761746542795369673a2060008301527f696e76616c6964207369676e61747572650000000000000000000000000000006020830152604082019050919050565b6000613d19603a836142a0565b91507f476f7665726e616e6365546f6b656e3a3a7472616e736665724c6f636b3a206c60008301527f6f636b20646174652063616e6e6f74206265206368616e6765640000000000006020830152604082019050919050565b6000613d7f6030836142a0565b91507f476f7665726e616e6365546f6b656e3a3a5f6d696e743a206d696e7420746f2060008301527f746865207a65726f2061646472657373000000000000000000000000000000006020830152604082019050919050565b613de181614304565b82525050565b613df08161430e565b82525050565b613dff8161431e565b82525050565b613e0e81614343565b82525050565b613e1d8161432b565b82525050565b6000613e2f828461373d565b915081905092915050565b6000613e4582613a02565b9150613e518285613726565b602082019150613e618284613726565b6020820191508190509392505050565b6000602082019050613e8660008301846136f9565b92915050565b6000602082019050613ea16000830184613708565b92915050565b6000602082019050613ebc6000830184613717565b92915050565b6000608082019050613ed76000830187613717565b613ee460208301866136f9565b613ef16040830185613dd8565b613efe6060830184613dd8565b95945050505050565b6000608082019050613f1c6000830187613717565b613f296020830186613717565b613f366040830185613dd8565b613f4360608301846136f9565b95945050505050565b6000608082019050613f616000830187613717565b613f6e6020830186613df6565b613f7b6040830185613717565b613f886060830184613717565b95945050505050565b60006020820190508181036000830152613fab81846137cb565b905092915050565b60006020820190508181036000830152613fcc81613804565b9050919050565b60006020820190508181036000830152613fec8161386a565b9050919050565b6000602082019050818103600083015261400c816138d0565b9050919050565b6000602082019050818103600083015261402c81613936565b9050919050565b6000602082019050818103600083015261404c8161399c565b9050919050565b6000602082019050818103600083015261406c81613a42565b9050919050565b6000602082019050818103600083015261408c81613a82565b9050919050565b600060208201905081810360008301526140ac81613b0e565b9050919050565b600060208201905081810360008301526140cc81613b9a565b9050919050565b600060208201905081810360008301526140ec81613c00565b9050919050565b6000602082019050818103600083015261410c81613c66565b9050919050565b6000602082019050818103600083015261412c81613ca6565b9050919050565b6000602082019050818103600083015261414c81613d0c565b9050919050565b6000602082019050818103600083015261416c81613d72565b9050919050565b60006020820190506141886000830184613dd8565b92915050565b60006020820190506141a36000830184613de7565b92915050565b60006040820190506141be6000830185613de7565b6141cb6020830184613e14565b9392505050565b60006020820190506141e76000830184613df6565b92915050565b60006020820190506142026000830184613e05565b92915050565b600060208201905061421d6000830184613e14565b92915050565b60006040820190506142386000830185613e14565b6142456020830184613dd8565b9392505050565b60006040820190506142616000830185613e05565b61426e6020830184613e05565b9392505050565b60008190508160005260206000209050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142c7826142e4565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b600061434e8261432b565b9050919050565b60005b83811015614373578082015181840152602081019050614358565b83811115614382576000848401525b50505050565b6000819050919050565b6000601f19601f8301169050919050565b6143ac816142bc565b81146143b757600080fd5b50565b6143c3816142da565b81146143ce57600080fd5b50565b6143da81614304565b81146143e557600080fd5b50565b6143f18161430e565b81146143fc57600080fd5b50565b6144088161431e565b811461441357600080fd5b5056fe476f7665726e616e6365546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473476f7665726e616e6365546f6b656e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773476f7665726e616e6365546f6b656e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773476f7665726e616e6365546f6b656e3a3a5f6d696e743a206d696e7420616d6f756e74206f766572666c6f7773476f7665726e616e6365546f6b656e3a3a7472616e736665724c6f636b3a207472616e7366657220616d6f756e74206f766572666c6f7773476f7665726e616e6365546f6b656e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773476f7665726e616e6365546f6b656e3a3a5f6275726e3a20616d6f756e7420657863656564732039362062697473476f7665726e616e6365546f6b656e3a3a7472616e736665724c6f636b3a20616d6f756e7420657863656564732039362062697473476f7665726e616e6365546f6b656e3a3a5f6275726e3a206275726e20616d6f756e7420657863656564732062616c616e6365476f7665726e616e6365546f6b656e3a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473476f7665726e616e6365546f6b656e3a3a617070726f76653a20616d6f756e7420657863656564732039362062697473476f7665726e616e6365546f6b656e3a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365476f7665726e616e6365546f6b656e3a3a5f6d696e743a20616d6f756e7420657863656564732039362062697473476f7665726e616e6365546f6b656e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a264697066735822122063055ce73c5514388f9e82f8d75c07bbf113aabd38d9ee4b1a817f412cfa6ebe64736f6c634300060c00330000000000000000000000006eff5218f3ebb8a813539dba87bd5c7d4d2b3dcc

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80638da5cb5b116100f9578063d44462d011610097578063ddaf32dc11610071578063ddaf32dc14610568578063e7a324dc14610598578063f1127ed8146105b6578063f2fde38b146105e7576101c4565b8063d44462d0146104d8578063d72896db14610508578063dd62ed3e14610538576101c4565b8063a9059cbb116100d3578063a9059cbb1461042b578063b4b5ea571461045b578063c1bf75d81461048b578063c3cda520146104bc576101c4565b80638da5cb5b146103d357806395d89b41146103f15780639dc29fac1461040f576101c4565b8063587cde1e1161016657806370a082311161014057806370a0823114610339578063715018a614610369578063782d6fe1146103735780637ecebe00146103a3576101c4565b8063587cde1e146102bd5780635c19a95c146102ed5780636fcfff4514610309576101c4565b806320606b70116101a257806320606b701461023557806323b872dd14610253578063313ce5671461028357806340c10f19146102a1576101c4565b806306fdde03146101c9578063095ea7b3146101e757806318160ddd14610217575b600080fd5b6101d1610603565b6040516101de9190613f91565b60405180910390f35b61020160048036038101906101fc91906135a9565b6106a1565b60405161020e9190613e8c565b60405180910390f35b61021f610834565b60405161022c9190614173565b60405180910390f35b61023d61083a565b60405161024a9190613ea7565b60405180910390f35b61026d6004803603810190610268919061355a565b61085e565b60405161027a9190613e8c565b60405180910390f35b61028b610af2565b60405161029891906141d2565b60405180910390f35b6102bb60048036038101906102b691906135a9565b610b05565b005b6102d760048036038101906102d291906134f5565b610ba8565b6040516102e49190613e71565b60405180910390f35b610307600480360381019061030291906134f5565b610bdb565b005b610323600480360381019061031e91906134f5565b610be8565b604051610330919061418e565b60405180910390f35b610353600480360381019061034e91906134f5565b610c0b565b6040516103609190614173565b60405180910390f35b610371610c7a565b005b61038d600480360381019061038891906135a9565b610dcd565b60405161039a9190614208565b60405180910390f35b6103bd60048036038101906103b891906134f5565b6111dc565b6040516103ca9190614173565b60405180910390f35b6103db6111f4565b6040516103e89190613e71565b60405180910390f35b6103f961121d565b6040516104069190613f91565b60405180910390f35b610429600480360381019061042491906135a9565b6112bb565b005b610445600480360381019061044091906135a9565b61135e565b6040516104529190613e8c565b60405180910390f35b610475600480360381019061047091906134f5565b61139b565b6040516104829190614208565b60405180910390f35b6104a560048036038101906104a091906134f5565b611489565b6040516104b3929190614223565b60405180910390f35b6104d660048036038101906104d19190613634565b6114c5565b005b6104f260048036038101906104ed91906134f5565b61175c565b6040516104ff9190613e8c565b60405180910390f35b610522600480360381019061051d91906135e5565b61180e565b60405161052f9190613e8c565b60405180910390f35b610552600480360381019061054d919061351e565b611aa5565b60405161055f9190614173565b60405180910390f35b610582600480360381019061057d91906134f5565b611b52565b60405161058f9190613e8c565b60405180910390f35b6105a0611c04565b6040516105ad9190613ea7565b60405180910390f35b6105d060048036038101906105cb91906136bd565b611c28565b6040516105de9291906141a9565b60405180910390f35b61060160048036038101906105fc91906134f5565b611c81565b005b60018054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156106995780601f1061066e57610100808354040283529160200191610699565b820191906000526020600020905b81548152906001019060200180831161067c57829003601f168201915b505050505081565b6000807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8314156106f4577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff9050610719565b6107168360405180606001604052806030815260200161462260309139611e43565b90505b80600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161082191906141ed565b60405180910390a3600191505092915050565b60045481565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b6000803390506000600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff16905060006109218560405180606001604052806030815260200161462260309139611e43565b90508673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561099b57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6bffffffffffffffffffffffff16826bffffffffffffffffffffffff1614155b15610ad95760006109c5838360405180608001604052806048815260200161465260489139611ea1565b905080600560008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610acf91906141ed565b60405180910390a3505b610ae4878783611f12565b600193505050509392505050565b600360009054906101000a900460ff1681565b610b0d6124c4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b91906140f3565b60405180910390fd5b610ba482826124cc565b5050565b600a6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610be533826126cf565b50565b600c6020528060005260406000206000915054906101000a900463ffffffff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff169050919050565b610c826124c4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d06906140f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000438210610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613fb3565b60405180910390fd5b6000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff161415610e7e5760009150506111d6565b82600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611610f8057600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff169150506111d6565b82600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611156110015760009150506111d6565b6000806001830390505b8163ffffffff168163ffffffff161115611158576000600283830363ffffffff168161103357fe5b048203905061104061345e565b600b60008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681525050905086816000015163ffffffff161415611130578060200151955050505050506111d6565b86816000015163ffffffff16101561114a57819350611151565b6001820392505b505061100b565b600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff1693505050505b92915050565b600d6020528060005260406000206000915090505481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60028054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b505050505081565b6112c36124c4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611350576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611347906140f3565b60405180910390fd5b61135a828261288f565b5050565b600080611383836040518060600160405280603181526020016145f160319139611e43565b9050611390338583611f12565b600191505092915050565b600080600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1611611405576000611481565b600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff165b915050919050565b60076020528060005260406000206000915090508060000160009054906101000a90046bffffffffffffffffffffffff16908060010154905082565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86660016040516114f79190613e23565b6040518091039020611507612a92565b3060405160200161151b9493929190613f07565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf88888860405160200161156c9493929190613ec2565b60405160208183030381529060405280519060200120905060008282604051602001611599929190613e3a565b6040516020818303038152906040528051906020012090506000600182888888604051600081526020016040526040516115d69493929190613f4c565b6020604051602081039080840390855afa1580156115f8573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611674576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166b90614113565b60405180910390fd5b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050558914611703576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fa90613fd3565b60405180910390fd5b87421115611746576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173d906140b3565b60405180910390fd5b611750818b6126cf565b50505050505050505050565b60006117666124c4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ea906140f3565b60405180910390fd5b611807826008612a9f90919063ffffffff16565b9050919050565b6000611824336008612acf90919063ffffffff16565b611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a906140d3565b60405180910390fd5b6000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015414806118f5575081600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010154145b611934576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192b90614133565b60405180910390fd5b60006119588460405180606001604052806035815260200161458960359139611e43565b905082600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060010181905550611a1e600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff16826040518060600160405280603881526020016144f060389139612aff565b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550611a99338683611f12565b60019150509392505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16905092915050565b6000611b5c6124c4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611be9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be0906140f3565b60405180910390fd5b611bfd826008612b7590919063ffffffff16565b9050919050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600b602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060000160049054906101000a90046bffffffffffffffffffffffff16905082565b611c896124c4565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0d906140f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7d90614033565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006c0100000000000000000000000083108290611e97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8e9190613f91565b60405180910390fd5b5082905092915050565b6000836bffffffffffffffffffffffff16836bffffffffffffffffffffffff1611158290611f05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efc9190613f91565b60405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990614093565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ff2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe990614073565b60405180910390fd5b61206c600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff16826040518060800160405280604181526020016146c860419139611ea1565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555042600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206001015411801561219257506000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16115b801561226a5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff16105b156122aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a190613ff3565b60405180910390fd5b612324600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff16826040518060600160405280603b8152602001614488603b9139612aff565b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123ee91906141ed565b60405180910390a36124bf600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612ba5565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253390614153565b60405180910390fd5b6000612560826040518060600160405280602e815260200161469a602e9139611e43565b905061257782600454612ea090919063ffffffff16565b6004819055506125f7600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff16826040518060600160405280602d81526020016144c3602d9139612aff565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516126c291906141ed565b60405180910390a3505050565b6000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff16905082600a60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a4612889828483612ba5565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f690614013565b60405180910390fd5b6000612923826040518060600160405280602e815260200161455b602e9139611e43565b905061299f600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a90046bffffffffffffffffffffffff16826040518060600160405280603381526020016145be60339139611ea1565b600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550612a2182600454612ef590919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051612a8591906141ed565b60405180910390a3505050565b6000804690508091505090565b6000612ac7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b612f3f565b905092915050565b6000612af7836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613027565b905092915050565b6000808385019050846bffffffffffffffffffffffff16816bffffffffffffffffffffffff1610158390612b69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b609190613f91565b60405180910390fd5b50809150509392505050565b6000612b9d836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61304a565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612bef57506000816bffffffffffffffffffffffff16115b15612e9b57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d47576000600c60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611612c92576000612d0e565b600b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff165b90506000612d35828560405180606001604052806033815260200161452860339139611ea1565b9050612d43868484846130ba565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612e9a576000600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611612de5576000612e61565b600b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff165b90506000612e88828560405180606001604052806032815260200161445660329139612aff565b9050612e96858484846130ba565b5050505b5b505050565b600080828401905083811015612eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ee290614053565b60405180910390fd5b8091505092915050565b6000612f3783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506133ad565b905092915050565b6000808360010160008481526020019081526020016000205490506000811461301b5760006001820390506000600186600001805490500390506000866000018281548110612f8a57fe5b9060005260206000200154905080876000018481548110612fa757fe5b9060005260206000200181905550600183018760010160008381526020019081526020016000208190555086600001805480612fdf57fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050613021565b60009150505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b60006130568383613027565b6130af5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506130b4565b600090505b92915050565b60006130de436040518060600160405280603f8152602001614417603f9139613408565b905060008463ffffffff1611801561317357508063ffffffff16600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b1561320e5781600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550613356565b60405180604001604052808263ffffffff168152602001836bffffffffffffffffffffffff16815250600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555090505060018401600c60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724848460405161339e92919061424c565b60405180910390a25050505050565b60008383111582906133f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133ec9190613f91565b60405180910390fd5b5060008385039050809150509392505050565b600064010000000083108290613454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161344b9190613f91565b60405180910390fd5b5082905092915050565b6040518060400160405280600063ffffffff16815260200160006bffffffffffffffffffffffff1681525090565b60008135905061349b816143a3565b92915050565b6000813590506134b0816143ba565b92915050565b6000813590506134c5816143d1565b92915050565b6000813590506134da816143e8565b92915050565b6000813590506134ef816143ff565b92915050565b60006020828403121561350757600080fd5b60006135158482850161348c565b91505092915050565b6000806040838503121561353157600080fd5b600061353f8582860161348c565b92505060206135508582860161348c565b9150509250929050565b60008060006060848603121561356f57600080fd5b600061357d8682870161348c565b935050602061358e8682870161348c565b925050604061359f868287016134b6565b9150509250925092565b600080604083850312156135bc57600080fd5b60006135ca8582860161348c565b92505060206135db858286016134b6565b9150509250929050565b6000806000606084860312156135fa57600080fd5b60006136088682870161348c565b9350506020613619868287016134b6565b925050604061362a868287016134b6565b9150509250925092565b60008060008060008060c0878903121561364d57600080fd5b600061365b89828a0161348c565b965050602061366c89828a016134b6565b955050604061367d89828a016134b6565b945050606061368e89828a016134e0565b935050608061369f89828a016134a1565b92505060a06136b089828a016134a1565b9150509295509295509295565b600080604083850312156136d057600080fd5b60006136de8582860161348c565b92505060206136ef858286016134cb565b9150509250929050565b613702816142bc565b82525050565b613711816142ce565b82525050565b613720816142da565b82525050565b613737613732826142da565b614388565b82525050565b60008154600181166000811461375a576001811461377f576137c3565b607f600283041661376b8187614295565b955060ff19831686528086019350506137c3565b6002820461378d8187614295565b955061379885614275565b60005b828110156137ba5781548189015260018201915060208101905061379b565b82880195505050505b505092915050565b60006137d68261428a565b6137e081856142a0565b93506137f0818560208601614355565b6137f981614392565b840191505092915050565b60006138116032836142a0565b91507f476f7665726e616e6365546f6b656e3a3a6765745072696f72566f7465733a2060008301527f6e6f74207965742064657465726d696e656400000000000000000000000000006020830152604082019050919050565b6000613877602d836142a0565b91507f476f7665726e616e6365546f6b656e3a3a64656c656761746542795369673a2060008301527f696e76616c6964206e6f6e6365000000000000000000000000000000000000006020830152604082019050919050565b60006138dd6033836142a0565b91507f476f7665726e616e6365546f6b656e3a3a5f7472616e73666572546f6b656e7360008301527f3a20616d6f756e7420617265206c6f636b6564000000000000000000000000006020830152604082019050919050565b60006139436032836142a0565b91507f476f7665726e616e6365546f6b656e3a3a5f6275726e3a206275726e2066726f60008301527f6d20746865207a65726f206164647265737300000000000000000000000000006020830152604082019050919050565b60006139a96026836142a0565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613a0f6002836142b1565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b6000613a4f601b836142a0565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000613a8f6045836142a0565b91507f476f7665726e616e6365546f6b656e3a3a5f7472616e73666572546f6b656e7360008301527f3a2063616e6e6f74207472616e7366657220746f20746865207a65726f20616460208301527f64726573730000000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613b1b6047836142a0565b91507f476f7665726e616e6365546f6b656e3a3a5f7472616e73666572546f6b656e7360008301527f3a2063616e6e6f74207472616e736665722066726f6d20746865207a65726f2060208301527f61646472657373000000000000000000000000000000000000000000000000006040830152606082019050919050565b6000613ba76031836142a0565b91507f476f7665726e616e6365546f6b656e3a3a64656c656761746542795369673a2060008301527f7369676e617475726520657870697265640000000000000000000000000000006020830152604082019050919050565b6000613c0d602f836142a0565b91507f476f7665726e616e6365546f6b656e3a3a7472616e736665724c6f636b3a206160008301527f63636573732069732064656e69656400000000000000000000000000000000006020830152604082019050919050565b6000613c736020836142a0565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613cb36031836142a0565b91507f476f7665726e616e6365546f6b656e3a3a64656c656761746542795369673a2060008301527f696e76616c6964207369676e61747572650000000000000000000000000000006020830152604082019050919050565b6000613d19603a836142a0565b91507f476f7665726e616e6365546f6b656e3a3a7472616e736665724c6f636b3a206c60008301527f6f636b20646174652063616e6e6f74206265206368616e6765640000000000006020830152604082019050919050565b6000613d7f6030836142a0565b91507f476f7665726e616e6365546f6b656e3a3a5f6d696e743a206d696e7420746f2060008301527f746865207a65726f2061646472657373000000000000000000000000000000006020830152604082019050919050565b613de181614304565b82525050565b613df08161430e565b82525050565b613dff8161431e565b82525050565b613e0e81614343565b82525050565b613e1d8161432b565b82525050565b6000613e2f828461373d565b915081905092915050565b6000613e4582613a02565b9150613e518285613726565b602082019150613e618284613726565b6020820191508190509392505050565b6000602082019050613e8660008301846136f9565b92915050565b6000602082019050613ea16000830184613708565b92915050565b6000602082019050613ebc6000830184613717565b92915050565b6000608082019050613ed76000830187613717565b613ee460208301866136f9565b613ef16040830185613dd8565b613efe6060830184613dd8565b95945050505050565b6000608082019050613f1c6000830187613717565b613f296020830186613717565b613f366040830185613dd8565b613f4360608301846136f9565b95945050505050565b6000608082019050613f616000830187613717565b613f6e6020830186613df6565b613f7b6040830185613717565b613f886060830184613717565b95945050505050565b60006020820190508181036000830152613fab81846137cb565b905092915050565b60006020820190508181036000830152613fcc81613804565b9050919050565b60006020820190508181036000830152613fec8161386a565b9050919050565b6000602082019050818103600083015261400c816138d0565b9050919050565b6000602082019050818103600083015261402c81613936565b9050919050565b6000602082019050818103600083015261404c8161399c565b9050919050565b6000602082019050818103600083015261406c81613a42565b9050919050565b6000602082019050818103600083015261408c81613a82565b9050919050565b600060208201905081810360008301526140ac81613b0e565b9050919050565b600060208201905081810360008301526140cc81613b9a565b9050919050565b600060208201905081810360008301526140ec81613c00565b9050919050565b6000602082019050818103600083015261410c81613c66565b9050919050565b6000602082019050818103600083015261412c81613ca6565b9050919050565b6000602082019050818103600083015261414c81613d0c565b9050919050565b6000602082019050818103600083015261416c81613d72565b9050919050565b60006020820190506141886000830184613dd8565b92915050565b60006020820190506141a36000830184613de7565b92915050565b60006040820190506141be6000830185613de7565b6141cb6020830184613e14565b9392505050565b60006020820190506141e76000830184613df6565b92915050565b60006020820190506142026000830184613e05565b92915050565b600060208201905061421d6000830184613e14565b92915050565b60006040820190506142386000830185613e14565b6142456020830184613dd8565b9392505050565b60006040820190506142616000830185613e05565b61426e6020830184613e05565b9392505050565b60008190508160005260206000209050919050565b600081519050919050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006142c7826142e4565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b600061434e8261432b565b9050919050565b60005b83811015614373578082015181840152602081019050614358565b83811115614382576000848401525b50505050565b6000819050919050565b6000601f19601f8301169050919050565b6143ac816142bc565b81146143b757600080fd5b50565b6143c3816142da565b81146143ce57600080fd5b50565b6143da81614304565b81146143e557600080fd5b50565b6143f18161430e565b81146143fc57600080fd5b50565b6144088161431e565b811461441357600080fd5b5056fe476f7665726e616e6365546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473476f7665726e616e6365546f6b656e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f7773476f7665726e616e6365546f6b656e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f7773476f7665726e616e6365546f6b656e3a3a5f6d696e743a206d696e7420616d6f756e74206f766572666c6f7773476f7665726e616e6365546f6b656e3a3a7472616e736665724c6f636b3a207472616e7366657220616d6f756e74206f766572666c6f7773476f7665726e616e6365546f6b656e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f7773476f7665726e616e6365546f6b656e3a3a5f6275726e3a20616d6f756e7420657863656564732039362062697473476f7665726e616e6365546f6b656e3a3a7472616e736665724c6f636b3a20616d6f756e7420657863656564732039362062697473476f7665726e616e6365546f6b656e3a3a5f6275726e3a206275726e20616d6f756e7420657863656564732062616c616e6365476f7665726e616e6365546f6b656e3a3a7472616e736665723a20616d6f756e7420657863656564732039362062697473476f7665726e616e6365546f6b656e3a3a617070726f76653a20616d6f756e7420657863656564732039362062697473476f7665726e616e6365546f6b656e3a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e6365476f7665726e616e6365546f6b656e3a3a5f6d696e743a20616d6f756e7420657863656564732039362062697473476f7665726e616e6365546f6b656e3a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e6365a264697066735822122063055ce73c5514388f9e82f8d75c07bbf113aabd38d9ee4b1a817f412cfa6ebe64736f6c634300060c0033

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

0000000000000000000000006eff5218f3ebb8a813539dba87bd5c7d4d2b3dcc

-----Decoded View---------------
Arg [0] : account (address): 0x6Eff5218f3EBB8A813539DBA87bD5c7D4d2B3dcc

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006eff5218f3ebb8a813539dba87bd5c7d4d2b3dcc


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.