ETH Price: $3,043.64 (+0.66%)
Gas: 3 Gwei

Token

The day of ocean story (TDOS)
 

Overview

Max Total Supply

100,000,000 TDOS

Holders

17

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
164,606 TDOS

Value
$0.00
0x571b8569585483049ec3f0d7287b8e5b274332a0
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TheDayOfOceanStory

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
istanbul EvmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-09-13
*/

pragma solidity =0.5.17;

/*
 * @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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

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



pragma solidity =0.5.17;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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);
}



pragma solidity =0.5.17;

/**
 * @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.
     *
     * _Available since v2.4.0._
     */
    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.
     *
     * _Available since v2.4.0._
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     *
     * _Available since v2.4.0._
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}



pragma solidity =0.5.17;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20Mintable}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

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

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

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

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        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 amount) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

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

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

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance"));
    }
}



pragma solidity =0.5.17;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}



pragma solidity =0.5.17;

/**
 * @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.
 *
 * 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(isOwner(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _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 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}



pragma solidity =0.5.17;



contract ControlledPauserRole is Ownable {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(_msgSender());
    }

    modifier onlyPauser() {
        require(isPauser(_msgSender()), "ControlledPauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    // onlyPauser -> onlyOwner
    function addPauser(address account) public onlyOwner {
        _addPauser(account);
    }

    // Add require()
    function renouncePauser() public {
        require(!isOwner(), "ControlledPauserRole: owner cannot renounce PauserRole");
        _removePauser(_msgSender());
    }

    // new function
    function revokePauser(address account) public onlyOwner {
        require(account != owner(), "ControlledPauserRole: owner cannot renounce PauserRole");
        _removePauser(account);
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}



pragma solidity =0.5.17;


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

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

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state. Assigns the Pauser role
     * to the deployer.
     */
    constructor () internal {
        _paused = false;
    }

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

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}



pragma solidity =0.5.17;



/**
 * @title Pausable token
 * @dev ERC20 with pausable transfers and allowances.
 *
 * Useful if you want to stop trades until the end of a crowdsale, or have
 * an emergency switch for freezing all token transfers in the event of a large
 * bug.
 */
contract ControlledERC20Pausable is ERC20, ControlledPausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }
}



pragma solidity =0.5.17;



contract ControlledWhitelistAdminRole is Ownable {
    using Roles for Roles.Role;

    event WhitelistAdminAdded(address indexed account);
    event WhitelistAdminRemoved(address indexed account);

    Roles.Role private _whitelistAdmins;

    constructor () internal {
        _addWhitelistAdmin(_msgSender());
    }

    modifier onlyWhitelistAdmin() {
        require(isWhitelistAdmin(_msgSender()), "ControlledWhitelistAdminRole: caller does not have the WhitelistAdmin role");
        _;
    }

    function isWhitelistAdmin(address account) public view returns (bool) {
        return _whitelistAdmins.has(account);
    }

    // onlyWhitelistAdmin -> onlyOwner
    function addWhitelistAdmin(address account) public onlyOwner {
        _addWhitelistAdmin(account);
    }

    // Add require()
    function renounceWhitelistAdmin() public {
        require(!isOwner(), "ControlledWhitelistAdminRole: owner cannot renounce WhitelistAdminRole");
        _removeWhitelistAdmin(_msgSender());
    }

    // new function
    function revokeWhitelistAdmin(address account) public onlyOwner {
        require(account != owner(), "ControlledWhitelistAdminRole: owner cannot renounce WhitelistAdminRole");
        _removeWhitelistAdmin(account);
    }

    function _addWhitelistAdmin(address account) internal {
        _whitelistAdmins.add(account);
        emit WhitelistAdminAdded(account);
    }

    function _removeWhitelistAdmin(address account) internal {
        _whitelistAdmins.remove(account);
        emit WhitelistAdminRemoved(account);
    }
}



pragma solidity =0.5.17;



contract IndividualLockableToken is ControlledERC20Pausable, ControlledWhitelistAdminRole{
  using SafeMath for uint256;

  event LockTimeSetted(address indexed holder, uint256 old_release_time, uint256 new_release_time);
  event Locked(address indexed holder, uint256 locked_balance_change, uint256 total_locked_balance, uint256 release_time);

  struct lockState {
    uint256 locked_balance;
    uint256 release_time;
  }

  // default lock period
  uint256 public lock_period = 4 weeks;

  mapping(address => lockState) internal userLock;

  // Specify the time that a particular person's lock will be released
  function setReleaseTime(address _holder, uint256 _release_time)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(_release_time >= block.timestamp);

    uint256 old_release_time = userLock[_holder].release_time;

    userLock[_holder].release_time = _release_time;
    emit LockTimeSetted(_holder, old_release_time, userLock[_holder].release_time);
    return true;
  }

  // Returns the point at which token holder's lock is released
  function getReleaseTime(address _holder)
    public
    view
    returns (uint256)
  {
    require(_holder != address(0));

    return userLock[_holder].release_time;
  }

  // Unlock a specific person. Free trading even with a lock balance
  function clearReleaseTime(address _holder)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(userLock[_holder].release_time > 0);

    uint256 old_release_time = userLock[_holder].release_time;

    userLock[_holder].release_time = 0;
    emit LockTimeSetted(_holder, old_release_time, userLock[_holder].release_time);
    return true;
  }

  // Increase the lock balance of a specific person.
  // If you only want to increase the balance, the release_time must be specified in advance.
  function increaseLockBalance(address _holder, uint256 _value)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(_value > 0);
    require(getFreeBalance(_holder) >= _value);

    if (userLock[_holder].release_time <= block.timestamp) {
        userLock[_holder].release_time  = block.timestamp + lock_period;
    }

    userLock[_holder].locked_balance = (userLock[_holder].locked_balance).add(_value);
    emit Locked(_holder, _value, userLock[_holder].locked_balance, userLock[_holder].release_time);
    return true;
  }

  // Increase the lock balance and release time of a specific person.
  // If you only want to increase the balance, See increaseLockBalance function.
  function increaseLockBalanceWithReleaseTime(address _holder, uint256 _value, uint256 _release_time)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(_value > 0);
    require(getFreeBalance(_holder) >= _value);
    require(_release_time >= block.timestamp);

    uint256 old_release_time = userLock[_holder].release_time;

    userLock[_holder].release_time = _release_time;
    emit LockTimeSetted(_holder, old_release_time, userLock[_holder].release_time);

    userLock[_holder].locked_balance = (userLock[_holder].locked_balance).add(_value);
    emit Locked(_holder, _value, userLock[_holder].locked_balance, userLock[_holder].release_time);
    return true;
  }

  // Decrease the lock balance of a specific person.
  function decreaseLockBalance(address _holder, uint256 _value)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    require(_value > 0);
    require(userLock[_holder].locked_balance >= _value);

    userLock[_holder].locked_balance = (userLock[_holder].locked_balance).sub(_value);
    emit Locked(_holder, _value, userLock[_holder].locked_balance, userLock[_holder].release_time);
    return true;
  }

  // Clear the lock.
  function clearLock(address _holder)
    public
    onlyWhitelistAdmin
    returns (bool)
  {
    require(_holder != address(0));
    
    userLock[_holder].locked_balance = 0;
    userLock[_holder].release_time = 0;
    emit Locked(_holder, 0, userLock[_holder].locked_balance, userLock[_holder].release_time);
    return true;
  }

  // Check the amount of the lock
  function getLockedBalance(address _holder)
    public
    view
    returns (uint256)
  {
    if(block.timestamp >= userLock[_holder].release_time) return uint256(0);
    return userLock[_holder].locked_balance;
  }

  // Check your remaining balance
  function getFreeBalance(address _holder)
    public
    view
    returns (uint256)
  {
    if(block.timestamp    >= userLock[_holder].release_time  ) return balanceOf(_holder);
    if(balanceOf(_holder) <= userLock[_holder].locked_balance) return uint256(0);
    return balanceOf(_holder).sub(userLock[_holder].locked_balance);
  }

  // transfer overrride
  function transfer(
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(getFreeBalance(_msgSender()) >= _value);
    return super.transfer(_to, _value);
  }

  // transferFrom overrride
  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(getFreeBalance(_from) >= _value);
    return super.transferFrom(_from, _to, _value);
  }

  // approve overrride
  function approve(
    address _spender,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(getFreeBalance(_msgSender()) >= _value);
    return super.approve(_spender, _value);
  }

  // increaseAllowance overrride
  function increaseAllowance(
    address _spender,
    uint _addedValue
  )
    public
    returns (bool success)
  {
    require(getFreeBalance(_msgSender()) >= allowance(_msgSender(), _spender).add(_addedValue));
    return super.increaseAllowance(_spender, _addedValue);
  }

  // decreaseAllowance overrride
  function decreaseAllowance(
    address _spender,
    uint _subtractedValue
  )
    public
    returns (bool success)
  {
    uint256 oldValue = allowance(_msgSender(), _spender);

    if (_subtractedValue < oldValue) {
      require(getFreeBalance(_msgSender()) >= oldValue.sub(_subtractedValue));
    }
    return super.decreaseAllowance(_spender, _subtractedValue);
  }
}



pragma solidity =0.5.17;


contract TheDayOfOceanStory is IndividualLockableToken {
	using SafeMath for uint256;

	string public constant name     = "The day of ocean story";
	string public constant symbol   = "TDOS";
	uint8  public constant decimals = 18;

	uint256 public constant INITIAL_SUPPLY  = 100000000 * (10 ** uint256(decimals));
	
	constructor()
		public
	{
		_mint(_msgSender(), INITIAL_SUPPLY);
	}

	function renounceOwnership()
		public
		onlyOwner
	{
		revert("The owner cannot release ownership.");
	}
	
	function transferOwnership(address newOwner)
		public
		onlyOwner
	{
		require(newOwner != address(0));
		require(newOwner != owner());

		addPauser(newOwner);
		addWhitelistAdmin(newOwner);
		super.transferOwnership(newOwner);
		renouncePauser();
		renounceWhitelistAdmin();
	}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"old_release_time","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"new_release_time","type":"uint256"}],"name":"LockTimeSetted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"holder","type":"address"},{"indexed":false,"internalType":"uint256","name":"locked_balance_change","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total_locked_balance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"release_time","type":"uint256"}],"name":"Locked","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"WhitelistAdminRemoved","type":"event"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"clearLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"clearReleaseTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"decreaseLockBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"getFreeBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"getLockedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_holder","type":"address"}],"name":"getReleaseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"increaseLockBalance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_release_time","type":"uint256"}],"name":"increaseLockBalanceWithReleaseTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isWhitelistAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lock_period","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"revokeWhitelistAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_holder","type":"address"},{"internalType":"uint256","name":"_release_time","type":"uint256"}],"name":"setReleaseTime","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526224ea006007553480156200001857600080fd5b5060006200002e6001600160e01b036200010a16565b600380546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000a2620000936001600160e01b036200010a16565b6001600160e01b036200010e16565b6005805460ff19169055620000d2620000c36001600160e01b036200010a16565b6001600160e01b036200016016565b62000104620000e96001600160e01b036200010a16565b6a52b7d2dcc80cd2e40000006001600160e01b03620001b216565b6200040b565b3390565b62000129816004620002b360201b62001c161790919060201c565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b6200017b816006620002b360201b62001c161790919060201c565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6001600160a01b0382166200020e576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200022a816002546200034060201b6200169f1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200025d9183906200169f62000340821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b620002c882826001600160e01b03620003a216565b156200031b576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000828201838110156200039b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60006001600160a01b038216620003eb5760405162461bcd60e51b8152600401808060200182810382526022815260200180620026ff6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6122e4806200041b6000396000f3fe608060405234801561001057600080fd5b50600436106102275760003560e01c80637fe76df0116101305780639e20749a116100b8578063c40868931161007c578063c408689314610675578063dd62ed3e1461069b578063e6108fc9146106c9578063f2fde38b146106f5578063f83e9a201461071b57610227565b80639e20749a1461059f578063a31052e8146105d1578063a457c2d7146105f7578063a9059cbb14610623578063bb5f747b1461064f57610227565b80638d88a2ff116100ff5780638d88a2ff1461051f5780638da5cb5b146105455780638dc73521146105695780638f32d59b1461058f57806395d89b411461059757610227565b80637fe76df0146104a557806382dc1ec4146104cb5780638456cb59146104f15780638870985b146104f957610227565b806346fbf68e116101b35780636c4e5c86116101825780636c4e5c861461041d5780636ef8d66d1461044957806370a0823114610451578063715018a6146104775780637362d9c81461047f57610227565b806346fbf68e146103bb578063476fe919146103e15780634c5a628c1461040d5780635c975abb1461041557610227565b806323b872dd116101fa57806323b872dd146103295780632ff2e9dc1461035f578063313ce5671461036757806339509351146103855780633f4ba83a146103b157610227565b806306fdde031461022c578063095ea7b3146102a95780630cb7eb4c146102e957806318160ddd14610321575b600080fd5b610234610723565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026e578181015183820152602001610256565b50505050905090810190601f16801561029b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d5600480360360408110156102bf57600080fd5b506001600160a01b038135169060200135610755565b604080519115158252519081900360200190f35b61030f600480360360208110156102ff57600080fd5b50356001600160a01b0316610784565b60408051918252519081900360200190f35b61030f6107bc565b6102d56004803603606081101561033f57600080fd5b506001600160a01b038135811691602081013590911690604001356107c2565b61030f6107ec565b61036f6107fb565b6040805160ff9092168252519081900360200190f35b6102d56004803603604081101561039b57600080fd5b506001600160a01b038135169060200135610800565b6103b9610843565b005b6102d5600480360360208110156103d157600080fd5b50356001600160a01b031661092c565b6102d5600480360360408110156103f757600080fd5b506001600160a01b038135169060200135610945565b6103b9610a19565b6102d5610a6f565b6102d56004803603604081101561043357600080fd5b506001600160a01b038135169060200135610a78565b6103b9610b9b565b61030f6004803603602081101561046757600080fd5b50356001600160a01b0316610bef565b6103b9610c0a565b6103b96004803603602081101561049557600080fd5b50356001600160a01b0316610c88565b6103b9600480360360208110156104bb57600080fd5b50356001600160a01b0316610cdb565b6103b9600480360360208110156104e157600080fd5b50356001600160a01b0316610d83565b6103b9610dd3565b61030f6004803603602081101561050f57600080fd5b50356001600160a01b0316610e9a565b6103b96004803603602081101561053557600080fd5b50356001600160a01b0316610f2d565b61054d610fd5565b604080516001600160a01b039092168252519081900360200190f35b6102d56004803603602081101561057f57600080fd5b50356001600160a01b0316610fe4565b6102d56110a9565b6102346110cf565b6102d5600480360360608110156105b557600080fd5b506001600160a01b0381351690602081013590604001356110ef565b6102d5600480360360208110156105e757600080fd5b50356001600160a01b031661126e565b6102d56004803603604081101561060d57600080fd5b506001600160a01b038135169060200135611356565b6102d56004803603604081101561063957600080fd5b506001600160a01b0381351690602001356113a4565b6102d56004803603602081101561066557600080fd5b50356001600160a01b03166113c7565b61030f6004803603602081101561068b57600080fd5b50356001600160a01b03166113da565b61030f600480360360408110156106b157600080fd5b506001600160a01b0381358116916020013516611420565b6102d5600480360360408110156106df57600080fd5b506001600160a01b03813516906020013561144b565b6103b96004803603602081101561070b57600080fd5b50356001600160a01b0316611539565b61030f6115e4565b6040518060400160405280601681526020017554686520646179206f66206f6365616e2073746f727960501b81525081565b6000816107686107636115ea565b610e9a565b101561077357600080fd5b61077d83836115ee565b9392505050565b60006001600160a01b03821661079957600080fd5b506001600160a01b0381166000908152600860205260409020600101545b919050565b60025490565b6000816107ce85610e9a565b10156107d957600080fd5b6107e4848484611646565b949350505050565b6a52b7d2dcc80cd2e400000081565b601281565b6000610823826108176108116115ea565b86611420565b9063ffffffff61169f16565b61082e6107636115ea565b101561083957600080fd5b61077d83836116f9565b61085361084e6115ea565b61092c565b61088e5760405162461bcd60e51b815260040180806020018281038252603a81526020018061206c603a913960400191505060405180910390fd5b60055460ff166108dc576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61090f6115ea565b604080516001600160a01b039092168252519081900360200190a1565b600061093f60048363ffffffff61175116565b92915050565b60006109576109526115ea565b6113c7565b6109925760405162461bcd60e51b815260040180806020018281038252604a815260200180612241604a913960600191505060405180910390fd5b6001600160a01b0383166109a557600080fd5b428210156109b257600080fd5b6001600160a01b038316600081815260086020908152604091829020600101805490869055825181815291820186905282519093927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe928290030190a25060019392505050565b610a216110a9565b15610a5d5760405162461bcd60e51b81526004018080602001828103825260468152602001806120266046913960600191505060405180910390fd5b610a6d610a686115ea565b6117b8565b565b60055460ff1690565b6000610a856109526115ea565b610ac05760405162461bcd60e51b815260040180806020018281038252604a815260200180612241604a913960600191505060405180910390fd5b6001600160a01b038316610ad357600080fd5b60008211610ae057600080fd5b6001600160a01b038316600090815260086020526040902054821115610b0557600080fd5b6001600160a01b038316600090815260086020526040902054610b2e908363ffffffff61180016565b6001600160a01b03841660008181526008602090815260409182902084815560010154825187815291820194909452808201939093525190917f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c11919081900360600190a250600192915050565b610ba36110a9565b15610bdf5760405162461bcd60e51b81526004018080602001828103825260368152602001806121146036913960400191505060405180910390fd5b610a6d610bea6115ea565b611842565b6001600160a01b031660009081526020819052604090205490565b610c126110a9565b610c51576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b60405162461bcd60e51b815260040180806020018281038252602381526020018061214a6023913960400191505060405180910390fd5b610c906110a9565b610ccf576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b610cd88161188a565b50565b610ce36110a9565b610d22576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b610d2a610fd5565b6001600160a01b0316816001600160a01b03161415610d7a5760405162461bcd60e51b81526004018080602001828103825260368152602001806121146036913960400191505060405180910390fd5b610cd881611842565b610d8b6110a9565b610dca576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b610cd8816118d2565b610dde61084e6115ea565b610e195760405162461bcd60e51b815260040180806020018281038252603a81526020018061206c603a913960400191505060405180910390fd5b60055460ff1615610e64576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861090f6115ea565b6001600160a01b0381166000908152600860205260408120600101544210610ecc57610ec582610bef565b90506107b7565b6001600160a01b038216600090815260086020526040902054610eee83610bef565b11610efb575060006107b7565b6001600160a01b03821660009081526008602052604090205461093f90610f2184610bef565b9063ffffffff61180016565b610f356110a9565b610f74576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b610f7c610fd5565b6001600160a01b0316816001600160a01b03161415610fcc5760405162461bcd60e51b81526004018080602001828103825260468152602001806120266046913960600191505060405180910390fd5b610cd8816117b8565b6003546001600160a01b031690565b6000610ff16109526115ea565b61102c5760405162461bcd60e51b815260040180806020018281038252604a815260200180612241604a913960600191505060405180910390fd5b6001600160a01b03821661103f57600080fd5b6001600160a01b038216600081815260086020908152604080832083815560010183905580518381529182018390528181019290925290517f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c119181900360600190a2506001919050565b6003546000906001600160a01b03166110c06115ea565b6001600160a01b031614905090565b6040518060400160405280600481526020016354444f5360e01b81525081565b60006110fc6109526115ea565b6111375760405162461bcd60e51b815260040180806020018281038252604a815260200180612241604a913960600191505060405180910390fd5b6001600160a01b03841661114a57600080fd5b6000831161115757600080fd5b8261116185610e9a565b101561116c57600080fd5b4282101561117957600080fd5b6001600160a01b038416600081815260086020908152604091829020600101805490869055825181815291820186905282519093927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe928290030190a26001600160a01b0385166000908152600860205260409020546111ff908563ffffffff61169f16565b6001600160a01b03861660008181526008602090815260409182902084815560010154825189815291820194909452808201939093525190917f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c11919081900360600190a2506001949350505050565b600061127b6109526115ea565b6112b65760405162461bcd60e51b815260040180806020018281038252604a815260200180612241604a913960600191505060405180910390fd5b6001600160a01b0382166112c957600080fd5b6001600160a01b0382166000908152600860205260409020600101546112ee57600080fd5b6001600160a01b038216600081815260086020908152604080832060010180549084905581518181529283019390935280519293927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe9281900390910190a250600192915050565b60008061136a6113646115ea565b85611420565b90508083101561139a57611384818463ffffffff61180016565b61138f6107636115ea565b101561139a57600080fd5b6107e4848461191a565b6000816113b26107636115ea565b10156113bd57600080fd5b61077d8383611972565b600061093f60068363ffffffff61175116565b6001600160a01b0381166000908152600860205260408120600101544210611404575060006107b7565b506001600160a01b031660009081526008602052604090205490565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006114586109526115ea565b6114935760405162461bcd60e51b815260040180806020018281038252604a815260200180612241604a913960600191505060405180910390fd5b6001600160a01b0383166114a657600080fd5b600082116114b357600080fd5b816114bd84610e9a565b10156114c857600080fd5b6001600160a01b0383166000908152600860205260409020600101544210611510576007546001600160a01b0384166000908152600860205260409020429091016001909101555b6001600160a01b038316600090815260086020526040902054610b2e908363ffffffff61169f16565b6115416110a9565b611580576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b6001600160a01b03811661159357600080fd5b61159b610fd5565b6001600160a01b0316816001600160a01b031614156115b957600080fd5b6115c281610d83565b6115cb81610c88565b6115d4816119ca565b6115dc610b9b565b610cd8610a19565b60075481565b3390565b60055460009060ff161561163c576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61077d8383611a1a565b60055460009060ff1615611694576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107e4848484611a37565b60008282018381101561077d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60055460009060ff1615611747576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61077d8383611ac4565b60006001600160a01b0382166117985760405162461bcd60e51b81526004018080602001828103825260228152602001806121d66022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6117c960068263ffffffff611b1816565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b600061077d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b7f565b61185360048263ffffffff611b1816565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61189b60068263ffffffff611c1616565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6118e360048263ffffffff611c1616565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60055460009060ff1615611968576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61077d8383611c97565b60055460009060ff16156119c0576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61077d8383611d05565b6119d26110a9565b611a11576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b610cd881611d19565b6000611a2e611a276115ea565b8484611dba565b50600192915050565b6000611a44848484611ea6565b611aba84611a506115ea565b611ab58560405180606001604052806028815260200161218e602891396001600160a01b038a16600090815260016020526040812090611a8e6115ea565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611b7f16565b611dba565b5060019392505050565b6000611a2e611ad16115ea565b84611ab58560016000611ae26115ea565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61169f16565b611b228282611751565b611b5d5760405162461bcd60e51b815260040180806020018281038252602181526020018061216d6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60008184841115611c0e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bd3578181015183820152602001611bbb565b50505050905090810190601f168015611c005780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611c208282611751565b15611c72576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000611a2e611ca46115ea565b84611ab58560405180606001604052806025815260200161228b6025913960016000611cce6115ea565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611b7f16565b6000611a2e611d126115ea565b8484611ea6565b6001600160a01b038116611d5e5760405162461bcd60e51b81526004018080602001828103825260268152602001806120a66026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611dff5760405162461bcd60e51b815260040180806020018281038252602481526020018061221d6024913960400191505060405180910390fd5b6001600160a01b038216611e445760405162461bcd60e51b81526004018080602001828103825260228152602001806120cc6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611eeb5760405162461bcd60e51b81526004018080602001828103825260258152602001806121f86025913960400191505060405180910390fd5b6001600160a01b038216611f305760405162461bcd60e51b81526004018080602001828103825260238152602001806120036023913960400191505060405180910390fd5b611f73816040518060600160405280602681526020016120ee602691396001600160a01b038616600090815260208190526040902054919063ffffffff611b7f16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611fa8908263ffffffff61169f16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373436f6e74726f6c6c656457686974656c69737441646d696e526f6c653a206f776e65722063616e6e6f742072656e6f756e63652057686974656c69737441646d696e526f6c65436f6e74726f6c6c6564506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365436f6e74726f6c6c6564506175736572526f6c653a206f776e65722063616e6e6f742072656e6f756e636520506175736572526f6c65546865206f776e65722063616e6e6f742072656c65617365206f776e6572736869702e526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373436f6e74726f6c6c656457686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158202a229ced24ace1219606a774f9185f1dbf7da49978260dee22ef3b958f41431664736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102275760003560e01c80637fe76df0116101305780639e20749a116100b8578063c40868931161007c578063c408689314610675578063dd62ed3e1461069b578063e6108fc9146106c9578063f2fde38b146106f5578063f83e9a201461071b57610227565b80639e20749a1461059f578063a31052e8146105d1578063a457c2d7146105f7578063a9059cbb14610623578063bb5f747b1461064f57610227565b80638d88a2ff116100ff5780638d88a2ff1461051f5780638da5cb5b146105455780638dc73521146105695780638f32d59b1461058f57806395d89b411461059757610227565b80637fe76df0146104a557806382dc1ec4146104cb5780638456cb59146104f15780638870985b146104f957610227565b806346fbf68e116101b35780636c4e5c86116101825780636c4e5c861461041d5780636ef8d66d1461044957806370a0823114610451578063715018a6146104775780637362d9c81461047f57610227565b806346fbf68e146103bb578063476fe919146103e15780634c5a628c1461040d5780635c975abb1461041557610227565b806323b872dd116101fa57806323b872dd146103295780632ff2e9dc1461035f578063313ce5671461036757806339509351146103855780633f4ba83a146103b157610227565b806306fdde031461022c578063095ea7b3146102a95780630cb7eb4c146102e957806318160ddd14610321575b600080fd5b610234610723565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561026e578181015183820152602001610256565b50505050905090810190601f16801561029b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102d5600480360360408110156102bf57600080fd5b506001600160a01b038135169060200135610755565b604080519115158252519081900360200190f35b61030f600480360360208110156102ff57600080fd5b50356001600160a01b0316610784565b60408051918252519081900360200190f35b61030f6107bc565b6102d56004803603606081101561033f57600080fd5b506001600160a01b038135811691602081013590911690604001356107c2565b61030f6107ec565b61036f6107fb565b6040805160ff9092168252519081900360200190f35b6102d56004803603604081101561039b57600080fd5b506001600160a01b038135169060200135610800565b6103b9610843565b005b6102d5600480360360208110156103d157600080fd5b50356001600160a01b031661092c565b6102d5600480360360408110156103f757600080fd5b506001600160a01b038135169060200135610945565b6103b9610a19565b6102d5610a6f565b6102d56004803603604081101561043357600080fd5b506001600160a01b038135169060200135610a78565b6103b9610b9b565b61030f6004803603602081101561046757600080fd5b50356001600160a01b0316610bef565b6103b9610c0a565b6103b96004803603602081101561049557600080fd5b50356001600160a01b0316610c88565b6103b9600480360360208110156104bb57600080fd5b50356001600160a01b0316610cdb565b6103b9600480360360208110156104e157600080fd5b50356001600160a01b0316610d83565b6103b9610dd3565b61030f6004803603602081101561050f57600080fd5b50356001600160a01b0316610e9a565b6103b96004803603602081101561053557600080fd5b50356001600160a01b0316610f2d565b61054d610fd5565b604080516001600160a01b039092168252519081900360200190f35b6102d56004803603602081101561057f57600080fd5b50356001600160a01b0316610fe4565b6102d56110a9565b6102346110cf565b6102d5600480360360608110156105b557600080fd5b506001600160a01b0381351690602081013590604001356110ef565b6102d5600480360360208110156105e757600080fd5b50356001600160a01b031661126e565b6102d56004803603604081101561060d57600080fd5b506001600160a01b038135169060200135611356565b6102d56004803603604081101561063957600080fd5b506001600160a01b0381351690602001356113a4565b6102d56004803603602081101561066557600080fd5b50356001600160a01b03166113c7565b61030f6004803603602081101561068b57600080fd5b50356001600160a01b03166113da565b61030f600480360360408110156106b157600080fd5b506001600160a01b0381358116916020013516611420565b6102d5600480360360408110156106df57600080fd5b506001600160a01b03813516906020013561144b565b6103b96004803603602081101561070b57600080fd5b50356001600160a01b0316611539565b61030f6115e4565b6040518060400160405280601681526020017554686520646179206f66206f6365616e2073746f727960501b81525081565b6000816107686107636115ea565b610e9a565b101561077357600080fd5b61077d83836115ee565b9392505050565b60006001600160a01b03821661079957600080fd5b506001600160a01b0381166000908152600860205260409020600101545b919050565b60025490565b6000816107ce85610e9a565b10156107d957600080fd5b6107e4848484611646565b949350505050565b6a52b7d2dcc80cd2e400000081565b601281565b6000610823826108176108116115ea565b86611420565b9063ffffffff61169f16565b61082e6107636115ea565b101561083957600080fd5b61077d83836116f9565b61085361084e6115ea565b61092c565b61088e5760405162461bcd60e51b815260040180806020018281038252603a81526020018061206c603a913960400191505060405180910390fd5b60055460ff166108dc576040805162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b604482015290519081900360640190fd5b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61090f6115ea565b604080516001600160a01b039092168252519081900360200190a1565b600061093f60048363ffffffff61175116565b92915050565b60006109576109526115ea565b6113c7565b6109925760405162461bcd60e51b815260040180806020018281038252604a815260200180612241604a913960600191505060405180910390fd5b6001600160a01b0383166109a557600080fd5b428210156109b257600080fd5b6001600160a01b038316600081815260086020908152604091829020600101805490869055825181815291820186905282519093927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe928290030190a25060019392505050565b610a216110a9565b15610a5d5760405162461bcd60e51b81526004018080602001828103825260468152602001806120266046913960600191505060405180910390fd5b610a6d610a686115ea565b6117b8565b565b60055460ff1690565b6000610a856109526115ea565b610ac05760405162461bcd60e51b815260040180806020018281038252604a815260200180612241604a913960600191505060405180910390fd5b6001600160a01b038316610ad357600080fd5b60008211610ae057600080fd5b6001600160a01b038316600090815260086020526040902054821115610b0557600080fd5b6001600160a01b038316600090815260086020526040902054610b2e908363ffffffff61180016565b6001600160a01b03841660008181526008602090815260409182902084815560010154825187815291820194909452808201939093525190917f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c11919081900360600190a250600192915050565b610ba36110a9565b15610bdf5760405162461bcd60e51b81526004018080602001828103825260368152602001806121146036913960400191505060405180910390fd5b610a6d610bea6115ea565b611842565b6001600160a01b031660009081526020819052604090205490565b610c126110a9565b610c51576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b60405162461bcd60e51b815260040180806020018281038252602381526020018061214a6023913960400191505060405180910390fd5b610c906110a9565b610ccf576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b610cd88161188a565b50565b610ce36110a9565b610d22576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b610d2a610fd5565b6001600160a01b0316816001600160a01b03161415610d7a5760405162461bcd60e51b81526004018080602001828103825260368152602001806121146036913960400191505060405180910390fd5b610cd881611842565b610d8b6110a9565b610dca576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b610cd8816118d2565b610dde61084e6115ea565b610e195760405162461bcd60e51b815260040180806020018281038252603a81526020018061206c603a913960400191505060405180910390fd5b60055460ff1615610e64576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861090f6115ea565b6001600160a01b0381166000908152600860205260408120600101544210610ecc57610ec582610bef565b90506107b7565b6001600160a01b038216600090815260086020526040902054610eee83610bef565b11610efb575060006107b7565b6001600160a01b03821660009081526008602052604090205461093f90610f2184610bef565b9063ffffffff61180016565b610f356110a9565b610f74576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b610f7c610fd5565b6001600160a01b0316816001600160a01b03161415610fcc5760405162461bcd60e51b81526004018080602001828103825260468152602001806120266046913960600191505060405180910390fd5b610cd8816117b8565b6003546001600160a01b031690565b6000610ff16109526115ea565b61102c5760405162461bcd60e51b815260040180806020018281038252604a815260200180612241604a913960600191505060405180910390fd5b6001600160a01b03821661103f57600080fd5b6001600160a01b038216600081815260086020908152604080832083815560010183905580518381529182018390528181019290925290517f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c119181900360600190a2506001919050565b6003546000906001600160a01b03166110c06115ea565b6001600160a01b031614905090565b6040518060400160405280600481526020016354444f5360e01b81525081565b60006110fc6109526115ea565b6111375760405162461bcd60e51b815260040180806020018281038252604a815260200180612241604a913960600191505060405180910390fd5b6001600160a01b03841661114a57600080fd5b6000831161115757600080fd5b8261116185610e9a565b101561116c57600080fd5b4282101561117957600080fd5b6001600160a01b038416600081815260086020908152604091829020600101805490869055825181815291820186905282519093927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe928290030190a26001600160a01b0385166000908152600860205260409020546111ff908563ffffffff61169f16565b6001600160a01b03861660008181526008602090815260409182902084815560010154825189815291820194909452808201939093525190917f44cebfefa4561bee5b61d675ccfd8dc9969fff9cc15e7a4eccccd62af94f9c11919081900360600190a2506001949350505050565b600061127b6109526115ea565b6112b65760405162461bcd60e51b815260040180806020018281038252604a815260200180612241604a913960600191505060405180910390fd5b6001600160a01b0382166112c957600080fd5b6001600160a01b0382166000908152600860205260409020600101546112ee57600080fd5b6001600160a01b038216600081815260086020908152604080832060010180549084905581518181529283019390935280519293927f014515183d12c0df4c26d74864371ebfe412e000f1f0a252af66950035ff42fe9281900390910190a250600192915050565b60008061136a6113646115ea565b85611420565b90508083101561139a57611384818463ffffffff61180016565b61138f6107636115ea565b101561139a57600080fd5b6107e4848461191a565b6000816113b26107636115ea565b10156113bd57600080fd5b61077d8383611972565b600061093f60068363ffffffff61175116565b6001600160a01b0381166000908152600860205260408120600101544210611404575060006107b7565b506001600160a01b031660009081526008602052604090205490565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60006114586109526115ea565b6114935760405162461bcd60e51b815260040180806020018281038252604a815260200180612241604a913960600191505060405180910390fd5b6001600160a01b0383166114a657600080fd5b600082116114b357600080fd5b816114bd84610e9a565b10156114c857600080fd5b6001600160a01b0383166000908152600860205260409020600101544210611510576007546001600160a01b0384166000908152600860205260409020429091016001909101555b6001600160a01b038316600090815260086020526040902054610b2e908363ffffffff61169f16565b6115416110a9565b611580576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b6001600160a01b03811661159357600080fd5b61159b610fd5565b6001600160a01b0316816001600160a01b031614156115b957600080fd5b6115c281610d83565b6115cb81610c88565b6115d4816119ca565b6115dc610b9b565b610cd8610a19565b60075481565b3390565b60055460009060ff161561163c576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61077d8383611a1a565b60055460009060ff1615611694576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b6107e4848484611a37565b60008282018381101561077d576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60055460009060ff1615611747576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61077d8383611ac4565b60006001600160a01b0382166117985760405162461bcd60e51b81526004018080602001828103825260228152602001806121d66022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6117c960068263ffffffff611b1816565b6040516001600160a01b038216907f0a8eb35e5ca14b3d6f28e4abf2f128dbab231a58b56e89beb5d636115001e16590600090a250565b600061077d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611b7f565b61185360048263ffffffff611b1816565b6040516001600160a01b038216907fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e90600090a250565b61189b60068263ffffffff611c1616565b6040516001600160a01b038216907f22380c05984257a1cb900161c713dd71d39e74820f1aea43bd3f1bdd2096129990600090a250565b6118e360048263ffffffff611c1616565b6040516001600160a01b038216907f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f890600090a250565b60055460009060ff1615611968576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61077d8383611c97565b60055460009060ff16156119c0576040805162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015290519081900360640190fd5b61077d8383611d05565b6119d26110a9565b611a11576040805162461bcd60e51b815260206004820181905260248201526000805160206121b6833981519152604482015290519081900360640190fd5b610cd881611d19565b6000611a2e611a276115ea565b8484611dba565b50600192915050565b6000611a44848484611ea6565b611aba84611a506115ea565b611ab58560405180606001604052806028815260200161218e602891396001600160a01b038a16600090815260016020526040812090611a8e6115ea565b6001600160a01b03168152602081019190915260400160002054919063ffffffff611b7f16565b611dba565b5060019392505050565b6000611a2e611ad16115ea565b84611ab58560016000611ae26115ea565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61169f16565b611b228282611751565b611b5d5760405162461bcd60e51b815260040180806020018281038252602181526020018061216d6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b60008184841115611c0e5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611bd3578181015183820152602001611bbb565b50505050905090810190601f168015611c005780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b611c208282611751565b15611c72576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b6000611a2e611ca46115ea565b84611ab58560405180606001604052806025815260200161228b6025913960016000611cce6115ea565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff611b7f16565b6000611a2e611d126115ea565b8484611ea6565b6001600160a01b038116611d5e5760405162461bcd60e51b81526004018080602001828103825260268152602001806120a66026913960400191505060405180910390fd5b6003546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600380546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b038316611dff5760405162461bcd60e51b815260040180806020018281038252602481526020018061221d6024913960400191505060405180910390fd5b6001600160a01b038216611e445760405162461bcd60e51b81526004018080602001828103825260228152602001806120cc6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b038316611eeb5760405162461bcd60e51b81526004018080602001828103825260258152602001806121f86025913960400191505060405180910390fd5b6001600160a01b038216611f305760405162461bcd60e51b81526004018080602001828103825260238152602001806120036023913960400191505060405180910390fd5b611f73816040518060600160405280602681526020016120ee602691396001600160a01b038616600090815260208190526040902054919063ffffffff611b7f16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611fa8908263ffffffff61169f16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a350505056fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373436f6e74726f6c6c656457686974656c69737441646d696e526f6c653a206f776e65722063616e6e6f742072656e6f756e63652057686974656c69737441646d696e526f6c65436f6e74726f6c6c6564506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365436f6e74726f6c6c6564506175736572526f6c653a206f776e65722063616e6e6f742072656e6f756e636520506175736572526f6c65546865206f776e65722063616e6e6f742072656c65617365206f776e6572736869702e526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c6545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373436f6e74726f6c6c656457686974656c69737441646d696e526f6c653a2063616c6c657220646f6573206e6f742068617665207468652057686974656c69737441646d696e20726f6c6545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa265627a7a723158202a229ced24ace1219606a774f9185f1dbf7da49978260dee22ef3b958f41431664736f6c63430005110032

Deployed Bytecode Sourcemap

33974:809:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33974:809:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34065:58;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;34065:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32977:206;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32977:206:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;28620:178;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28620:178:0;-1:-1:-1;;;;;28620:178:0;;:::i;:::-;;;;;;;;;;;;;;;;10950:91;;;:::i;32721:226::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32721:226:0;;;;;;;;;;;;;;;;;:::i;34213:79::-;;;:::i;34171:36::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33223:285;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33223:285:0;;;;;;;;:::i;24483:120::-;;;:::i;:::-;;21644:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21644:109:0;-1:-1:-1;;;;;21644:109:0;;:::i;28111:438::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28111:438:0;;;;;;;;:::i;26665:199::-;;;:::i;23690:78::-;;;:::i;30988:457::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30988:457:0;;;;;;;;:::i;21914:167::-;;;:::i;11104:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11104:110:0;-1:-1:-1;;;;;11104:110:0;;:::i;34375:109::-;;;:::i;26528:107::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26528:107:0;-1:-1:-1;;;;;26528:107:0;;:::i;22110:193::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22110:193:0;-1:-1:-1;;;;;22110:193:0;;:::i;21793:91::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21793:91:0;-1:-1:-1;;;;;21793:91:0;;:::i;24270:118::-;;;:::i;32118:339::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32118:339:0;-1:-1:-1;;;;;32118:339:0;;:::i;26893:225::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26893:225:0;-1:-1:-1;;;;;26893:225:0;;:::i;19601:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;19601:79:0;;;;;;;;;;;;;;31473:342;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31473:342:0;-1:-1:-1;;;;;31473:342:0;;:::i;19967:94::-;;;:::i;34127:40::-;;;:::i;30188:740::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30188:740:0;;;;;;;;;;;;;:::i;28874:407::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28874:407:0;-1:-1:-1;;;;;28874:407:0;;:::i;33548:385::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;33548:385:0;;;;;;;;:::i;32488:198::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;32488:198:0;;;;;;;;:::i;26355:125::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;26355:125:0;-1:-1:-1;;;;;26355:125:0;;:::i;31856:221::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31856:221:0;-1:-1:-1;;;;;31856:221:0;;:::i;11648:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11648:134:0;;;;;;;;;;:::i;29436:593::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;29436:593:0;;;;;;;;:::i;34490:290::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34490:290:0;-1:-1:-1;;;;;34490:290:0;;:::i;27942:36::-;;;:::i;34065:58::-;;;;;;;;;;;;;;-1:-1:-1;;;34065:58:0;;;;:::o;32977:206::-;33069:4;33125:6;33093:28;33108:12;:10;:12::i;:::-;33093:14;:28::i;:::-;:38;;33085:47;;;;;;33146:31;33160:8;33170:6;33146:13;:31::i;:::-;33139:38;32977:206;-1:-1:-1;;;32977:206:0:o;28620:178::-;28697:7;-1:-1:-1;;;;;28724:21:0;;28716:30;;;;;;-1:-1:-1;;;;;;28762:17:0;;;;;;:8;:17;;;;;:30;;;28620:178;;;;:::o;10950:91::-;11021:12;;10950:91;:::o;32721:226::-;32833:4;32882:6;32857:21;32872:5;32857:14;:21::i;:::-;:31;;32849:40;;;;;;32903:38;32922:5;32929:3;32934:6;32903:18;:38::i;:::-;32896:45;32721:226;-1:-1:-1;;;;32721:226:0:o;34213:79::-;34255:37;34213:79;:::o;34171:36::-;34205:2;34171:36;:::o;33223:285::-;33327:12;33391:50;33429:11;33391:33;33401:12;:10;:12::i;:::-;33415:8;33391:9;:33::i;:::-;:37;:50;:37;:50;:::i;:::-;33359:28;33374:12;:10;:12::i;33359:28::-;:82;;33351:91;;;;;;33456:46;33480:8;33490:11;33456:23;:46::i;24483:120::-;21531:22;21540:12;:10;:12::i;:::-;21531:8;:22::i;:::-;21523:93;;;;-1:-1:-1;;;21523:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24126:7;;;;24118:40;;;;;-1:-1:-1;;;24118:40:0;;;;;;;;;;;;-1:-1:-1;;;24118:40:0;;;;;;;;;;;;;;;24542:7;:15;;-1:-1:-1;;24542:15:0;;;24573:22;24582:12;:10;:12::i;:::-;24573:22;;;-1:-1:-1;;;;;24573:22:0;;;;;;;;;;;;;;24483:120::o;21644:109::-;21700:4;21724:21;:8;21737:7;21724:21;:12;:21;:::i;:::-;21717:28;21644:109;-1:-1:-1;;21644:109:0:o;28111:438::-;28225:4;26218:30;26235:12;:10;:12::i;:::-;26218:16;:30::i;:::-;26210:117;;;;-1:-1:-1;;;26210:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28249:21:0;;28241:30;;;;;;28303:15;28286:13;:32;;28278:41;;;;;;-1:-1:-1;;;;;28355:17:0;;28328:24;28355:17;;;:8;:17;;;;;;;;;:30;;;;28394:46;;;;28452:73;;;;;;;;;;;;;28355:30;;:17;28452:73;;;;;;;;-1:-1:-1;28539:4:0;;28111:438;-1:-1:-1;;;28111:438:0:o;26665:199::-;26726:9;:7;:9::i;:::-;26725:10;26717:93;;;;-1:-1:-1;;;26717:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26821:35;26843:12;:10;:12::i;:::-;26821:21;:35::i;:::-;26665:199::o;23690:78::-;23753:7;;;;23690:78;:::o;30988:457::-;31100:4;26218:30;26235:12;:10;:12::i;26218:30::-;26210:117;;;;-1:-1:-1;;;26210:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31124:21:0;;31116:30;;;;;;31170:1;31161:6;:10;31153:19;;;;;;-1:-1:-1;;;;;31187:17:0;;;;;;:8;:17;;;;;:32;:42;-1:-1:-1;31187:42:0;31179:51;;;;;;-1:-1:-1;;;;;31275:17:0;;;;;;:8;:17;;;;;:32;31274:46;;31313:6;31274:46;:38;:46;:::i;:::-;-1:-1:-1;;;;;31239:17:0;;;;;;:8;:17;;;;;;;;;:81;;;31390:30;;;31332:89;;;;;;;;;;;;;;;;;;;;31239:17;;31332:89;;;;;;;;;;-1:-1:-1;31435:4:0;30988:457;;;;:::o;21914:167::-;21967:9;:7;:9::i;:::-;21966:10;21958:77;;;;-1:-1:-1;;;21958:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22046:27;22060:12;:10;:12::i;:::-;22046:13;:27::i;11104:110::-;-1:-1:-1;;;;;11188:18:0;11161:7;11188:18;;;;;;;;;;;;11104:110::o;34375:109::-;19813:9;:7;:9::i;:::-;19805:54;;;;;-1:-1:-1;;;19805:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19805:54:0;;;;;;;;;;;;;;;34434:45;;-1:-1:-1;;;34434:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26528:107;19813:9;:7;:9::i;:::-;19805:54;;;;;-1:-1:-1;;;19805:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19805:54:0;;;;;;;;;;;;;;;26600:27;26619:7;26600:18;:27::i;:::-;26528:107;:::o;22110:193::-;19813:9;:7;:9::i;:::-;19805:54;;;;;-1:-1:-1;;;19805:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19805:54:0;;;;;;;;;;;;;;;22196:7;:5;:7::i;:::-;-1:-1:-1;;;;;22185:18:0;:7;-1:-1:-1;;;;;22185:18:0;;;22177:85;;;;-1:-1:-1;;;22177:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22273:22;22287:7;22273:13;:22::i;21793:91::-;19813:9;:7;:9::i;:::-;19805:54;;;;;-1:-1:-1;;;19805:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19805:54:0;;;;;;;;;;;;;;;21857:19;21868:7;21857:10;:19::i;24270:118::-;21531:22;21540:12;:10;:12::i;21531:22::-;21523:93;;;;-1:-1:-1;;;21523:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23927:7;;;;23926:8;23918:37;;;;;-1:-1:-1;;;23918:37:0;;;;;;;;;;;;-1:-1:-1;;;23918:37:0;;;;;;;;;;;;;;;24330:7;:14;;-1:-1:-1;;24330:14:0;24340:4;24330:14;;;24360:20;24367:12;:10;:12::i;32118:339::-;-1:-1:-1;;;;;32239:17:0;;32195:7;32239:17;;;:8;:17;;;;;:30;;;32217:15;:52;32214:84;;32280:18;32290:7;32280:9;:18::i;:::-;32273:25;;;;32214:84;-1:-1:-1;;;;;32330:17:0;;;;;;:8;:17;;;;;:32;32308:18;32339:7;32308:9;:18::i;:::-;:54;32305:76;;-1:-1:-1;32379:1:0;32364:17;;32305:76;-1:-1:-1;;;;;32418:17:0;;;;;;:8;:17;;;;;:32;32395:56;;:18;32427:7;32395:9;:18::i;:::-;:22;:56;:22;:56;:::i;26893:225::-;19813:9;:7;:9::i;:::-;19805:54;;;;;-1:-1:-1;;;19805:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19805:54:0;;;;;;;;;;;;;;;26987:7;:5;:7::i;:::-;-1:-1:-1;;;;;26976:18:0;:7;-1:-1:-1;;;;;26976:18:0;;;26968:101;;;;-1:-1:-1;;;26968:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27080:30;27102:7;27080:21;:30::i;19601:79::-;19666:6;;-1:-1:-1;;;;;19666:6:0;19601:79;:::o;31473:342::-;31559:4;26218:30;26235:12;:10;:12::i;26218:30::-;26210:117;;;;-1:-1:-1;;;26210:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31583:21:0;;31575:30;;;;;;-1:-1:-1;;;;;31618:17:0;;31653:1;31618:17;;;:8;:17;;;;;;;;:36;;;31661:30;;:34;;;31707:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31805:4:0;31473:342;;;:::o;19967:94::-;20047:6;;20007:4;;-1:-1:-1;;;;;20047:6:0;20031:12;:10;:12::i;:::-;-1:-1:-1;;;;;20031:22:0;;20024:29;;19967:94;:::o;34127:40::-;;;;;;;;;;;;;;-1:-1:-1;;;34127:40:0;;;;:::o;30188:740::-;30338:4;26218:30;26235:12;:10;:12::i;26218:30::-;26210:117;;;;-1:-1:-1;;;26210:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30362:21:0;;30354:30;;;;;;30408:1;30399:6;:10;30391:19;;;;;;30452:6;30425:23;30440:7;30425:14;:23::i;:::-;:33;;30417:42;;;;;;30491:15;30474:13;:32;;30466:41;;;;;;-1:-1:-1;;;;;30543:17:0;;30516:24;30543:17;;;:8;:17;;;;;;;;;:30;;;;30582:46;;;;30640:73;;;;;;;;;;;;;30543:30;;:17;30640:73;;;;;;;;-1:-1:-1;;;;;30758:17:0;;;;;;:8;:17;;;;;:32;30757:46;;30796:6;30757:46;:38;:46;:::i;:::-;-1:-1:-1;;;;;30722:17:0;;;;;;:8;:17;;;;;;;;;:81;;;30873:30;;;30815:89;;;;;;;;;;;;;;;;;;;;30722:17;;30815:89;;;;;;;;;;-1:-1:-1;30918:4:0;;30188:740;-1:-1:-1;;;;30188:740:0:o;28874:407::-;28967:4;26218:30;26235:12;:10;:12::i;26218:30::-;26210:117;;;;-1:-1:-1;;;26210:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28991:21:0;;28983:30;;;;;;-1:-1:-1;;;;;29028:17:0;;29061:1;29028:17;;;:8;:17;;;;;:30;;;29020:43;;;;;;-1:-1:-1;;;;;29099:17:0;;29072:24;29099:17;;;:8;:17;;;;;;;;:30;;;;29138:34;;;;29184:73;;;;;;;;;;;;;;29099:30;;:17;29184:73;;;;;;;;;;-1:-1:-1;29271:4:0;;28874:407;-1:-1:-1;;28874:407:0:o;33548:385::-;33657:12;33681:16;33700:33;33710:12;:10;:12::i;:::-;33724:8;33700:9;:33::i;:::-;33681:52;;33765:8;33746:16;:27;33742:121;;;33824:30;:8;33837:16;33824:30;:12;:30;:::i;:::-;33792:28;33807:12;:10;:12::i;33792:28::-;:62;;33784:71;;;;;;33876:51;33900:8;33910:16;33876:23;:51::i;32488:198::-;32576:4;32632:6;32600:28;32615:12;:10;:12::i;32600:28::-;:38;;32592:47;;;;;;32653:27;32668:3;32673:6;32653:14;:27::i;26355:125::-;26419:4;26443:29;:16;26464:7;26443:29;:20;:29;:::i;31856:221::-;-1:-1:-1;;;;;31976:17:0;;31935:7;31976:17;;;:8;:17;;;;;:30;;;31957:15;:49;31954:71;;-1:-1:-1;32023:1:0;32008:17;;31954:71;-1:-1:-1;;;;;;32039:17:0;;;;;:8;:17;;;;;:32;;31856:221::o;11648:134::-;-1:-1:-1;;;;;11747:18:0;;;11720:7;11747:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11648:134::o;29436:593::-;29548:4;26218:30;26235:12;:10;:12::i;26218:30::-;26210:117;;;;-1:-1:-1;;;26210:117:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29572:21:0;;29564:30;;;;;;29618:1;29609:6;:10;29601:19;;;;;;29662:6;29635:23;29650:7;29635:14;:23::i;:::-;:33;;29627:42;;;;;;-1:-1:-1;;;;;29682:17:0;;;;;;:8;:17;;;;;:30;;;29716:15;-1:-1:-1;29678:137:0;;29796:11;;-1:-1:-1;;;;;29744:17:0;;;;;;:8;:17;;;;;29778:15;:29;;;29744:30;;;;:63;29678:137;-1:-1:-1;;;;;29859:17:0;;;;;;:8;:17;;;;;:32;29858:46;;29897:6;29858:46;:38;:46;:::i;34490:290::-;19813:9;:7;:9::i;:::-;19805:54;;;;;-1:-1:-1;;;19805:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19805:54:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;34573:22:0;;34565:31;;;;;;34621:7;:5;:7::i;:::-;-1:-1:-1;;;;;34609:19:0;:8;-1:-1:-1;;;;;34609:19:0;;;34601:28;;;;;;34636:19;34646:8;34636:9;:19::i;:::-;34660:27;34678:8;34660:17;:27::i;:::-;34692:33;34716:8;34692:23;:33::i;:::-;34730:16;:14;:16::i;:::-;34751:24;:22;:24::i;27942:36::-;;;;:::o;807:98::-;887:10;807:98;:::o;25284:140::-;23927:7;;25363:4;;23927:7;;23926:8;23918:37;;;;;-1:-1:-1;;;23918:37:0;;;;;;;;;;;;-1:-1:-1;;;23918:37:0;;;;;;;;;;;;;;;25387:29;25401:7;25410:5;25387:13;:29::i;25116:160::-;23927:7;;25209:4;;23927:7;;23926:8;23918:37;;;;;-1:-1:-1;;;23918:37:0;;;;;;;;;;;;-1:-1:-1;;;23918:37:0;;;;;;;;;;;;;;;25233:35;25252:4;25258:2;25262:5;25233:18;:35::i;4835:181::-;4893:7;4925:5;;;4949:6;;;;4941:46;;;;;-1:-1:-1;;;4941:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;25432:170;23927:7;;25526:4;;23927:7;;23926:8;23918:37;;;;;-1:-1:-1;;;23918:37:0;;;;;;;;;;;;-1:-1:-1;;;23918:37:0;;;;;;;;;;;;;;;25550:44;25574:7;25583:10;25550:23;:44::i;18488:203::-;18560:4;-1:-1:-1;;;;;18585:21:0;;18577:68;;;;-1:-1:-1;;;18577:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;18663:20:0;:11;:20;;;;;;;;;;;;;;;18488:203::o;27280:154::-;27348:32;:16;27372:7;27348:32;:23;:32;:::i;:::-;27396:30;;-1:-1:-1;;;;;27396:30:0;;;;;;;;27280:154;:::o;5291:136::-;5349:7;5376:43;5380:1;5383;5376:43;;;;;;;;;;;;;;;;;:3;:43::i;22441:130::-;22501:24;:8;22517:7;22501:24;:15;:24;:::i;:::-;22541:22;;-1:-1:-1;;;;;22541:22:0;;;;;;;;22441:130;:::o;27126:146::-;27191:29;:16;27212:7;27191:29;:20;:29;:::i;:::-;27236:28;;-1:-1:-1;;;;;27236:28:0;;;;;;;;27126:146;:::o;22311:122::-;22368:21;:8;22381:7;22368:21;:12;:21;:::i;:::-;22405:20;;-1:-1:-1;;;;;22405:20:0;;;;;;;;22311:122;:::o;25610:180::-;23927:7;;25709:4;;23927:7;;23926:8;23918:37;;;;;-1:-1:-1;;;23918:37:0;;;;;;;;;;;;-1:-1:-1;;;23918:37:0;;;;;;;;;;;;;;;25733:49;25757:7;25766:15;25733:23;:49::i;24976:132::-;23927:7;;25051:4;;23927:7;;23926:8;23918:37;;;;;-1:-1:-1;;;23918:37:0;;;;;;;;;;;;-1:-1:-1;;;23918:37:0;;;;;;;;;;;;;;;25075:25;25090:2;25094:5;25075:14;:25::i;20707:109::-;19813:9;:7;:9::i;:::-;19805:54;;;;;-1:-1:-1;;;19805:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;19805:54:0;;;;;;;;;;;;;;;20780:28;20799:8;20780:18;:28::i;11929:152::-;11995:4;12012:39;12021:12;:10;:12::i;:::-;12035:7;12044:6;12012:8;:39::i;:::-;-1:-1:-1;12069:4:0;11929:152;;;;:::o;12553:304::-;12642:4;12659:36;12669:6;12677:9;12688:6;12659:9;:36::i;:::-;12706:121;12715:6;12723:12;:10;:12::i;:::-;12737:89;12775:6;12737:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;12737:19:0;;;;;;:11;:19;;;;;;12757:12;:10;:12::i;:::-;-1:-1:-1;;;;;12737:33:0;;;;;;;;;;;;-1:-1:-1;12737:33:0;;;:89;;:37;:89;:::i;:::-;12706:8;:121::i;:::-;-1:-1:-1;12845:4:0;12553:304;;;;;:::o;13266:210::-;13346:4;13363:83;13372:12;:10;:12::i;:::-;13386:7;13395:50;13434:10;13395:11;:25;13407:12;:10;:12::i;:::-;-1:-1:-1;;;;;13395:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;13395:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;18210:183::-;18290:18;18294:4;18300:7;18290:3;:18::i;:::-;18282:64;;;;-1:-1:-1;;;18282:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18357:20:0;18380:5;18357:20;;;;;;;;;;;:28;;-1:-1:-1;;18357:28:0;;;18210:183::o;5764:192::-;5850:7;5886:12;5878:6;;;;5870:29;;;;-1:-1:-1;;;5870:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5870:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5922:5:0;;;5764:192::o;17952:178::-;18030:18;18034:4;18040:7;18030:3;:18::i;:::-;18029:19;18021:63;;;;;-1:-1:-1;;;18021:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18095:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;18095:27:0;18118:4;18095:27;;;17952:178::o;13979:261::-;14064:4;14081:129;14090:12;:10;:12::i;:::-;14104:7;14113:96;14152:15;14113:96;;;;;;;;;;;;;;;;;:11;:25;14125:12;:10;:12::i;:::-;-1:-1:-1;;;;;14113:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;14113:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;11427:158::-;11496:4;11513:42;11523:12;:10;:12::i;:::-;11537:9;11548:6;11513:9;:42::i;20922:229::-;-1:-1:-1;;;;;20996:22:0;;20988:73;;;;-1:-1:-1;;;20988:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21098:6;;21077:38;;-1:-1:-1;;;;;21077:38:0;;;;21098:6;;21077:38;;21098:6;;21077:38;21126:6;:17;;-1:-1:-1;;;;;;21126:17:0;-1:-1:-1;;;;;21126:17:0;;;;;;;;;;20922:229::o;16910:338::-;-1:-1:-1;;;;;17004:19:0;;16996:68;;;;-1:-1:-1;;;16996:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17083:21:0;;17075:68;;;;-1:-1:-1;;;17075:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17156:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17208:32;;;;;;;;;;;;;;;;;16910:338;;;:::o;14730:471::-;-1:-1:-1;;;;;14828:20:0;;14820:70;;;;-1:-1:-1;;;14820:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14909:23:0;;14901:71;;;;-1:-1:-1;;;14901:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15005;15027:6;15005:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15005:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;14985:17:0;;;:9;:17;;;;;;;;;;;:91;;;;15110:20;;;;;;;:32;;15135:6;15110:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;15087:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;15158:35;;;;;;;15087:20;;15158:35;;;;;;;;;;;;;14730:471;;;:::o

Swarm Source

bzzr://2a229ced24ace1219606a774f9185f1dbf7da49978260dee22ef3b958f414316
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.