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

Token

Mobydick (MBD)
 

Overview

Max Total Supply

100,000,000,000 MBD

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
634,631,846.959173606686497587 MBD

Value
$0.00
0xfcbc597e0d2036a2cb56776fd964eee469aabbf3
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:
MBD

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-10
*/

// Sources flattened with hardhat v2.8.3 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}


// File @openzeppelin/contracts/access/[email protected]
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract 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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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 {ERC20PresetMinterPauser}.
 *
 * 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 Contracts guidelines: functions revert
 * instead 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, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override 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 virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override 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 virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + 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 virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This 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 virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(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:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(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 virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 virtual {
        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 Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}


// File @openzeppelin/contracts/utils/math/[email protected]
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // 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 (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @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) {
        return a + b;
    }

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

    /**
     * @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) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting 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 a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}


// File @uniswap/v2-core/contracts/interfaces/[email protected]

pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


// File @uniswap/v2-periphery/contracts/interfaces/[email protected]

pragma solidity >=0.6.2;

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


// File contracts/MBD.sol

pragma solidity ^0.8.0;

contract ERC20DividendToken is Context, ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public uniswapV2Router;
    address public uniswapV2Pair;

    bool private swapping;

    uint256 public minTokensBeforeSwap;

    uint256 public buyFee;
    uint256 public sellInitFee;
    uint256 public sellFee;

    uint256 public highFeeCooldown;
    uint256 private _tradingStartTimestamp;

    address public marketingAddress;

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    uint256 public maxWalletAmount;

    mapping (address => bool) public isExcludedFromLimits;

    event UpdateUniswapV2Router(address indexed newAddress);
    event ExcludeFromFees(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event SendDividendsToMarketing(uint256 tokensSwapped, uint256 amount);

    constructor(string memory name_, string memory symbol_, uint256 totalSupply_, address routerV2_, address marketingAddress_) ERC20(name_, symbol_) {
        buyFee = 7;
        sellInitFee = 12;
        sellFee = 8;

        highFeeCooldown = 48 hours;

        marketingAddress = marketingAddress_;
        
        minTokensBeforeSwap = 1_000_000 * (10**18);

        maxWalletAmount = totalSupply_ * 15 * (10**15); // 1.5%

        _updateUniswapV2Router(routerV2_);

        // exclude from paying fees or having max transaction amount
        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(marketingAddress, true);

        excludeFromLimits(owner(), true);
        excludeFromLimits(address(this), true);
        excludeFromLimits(marketingAddress, true);
        excludeFromLimits(address(0xdead), true);
        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(owner(), totalSupply_ * (10**18));
    }

    receive() external payable {}

    function excludeFromLimits(address account, bool excluded) public onlyOwner {
        isExcludedFromLimits[account] = excluded;
    }

    function setMinTokensBeforeSwap(uint256 amount) external onlyOwner {
        minTokensBeforeSwap = amount;
    }

    function _updateUniswapV2Router(address newAddress) internal {
        uniswapV2Router = IUniswapV2Router02(newAddress);
        address _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory())
        .createPair(address(this), uniswapV2Router.WETH());

        excludeFromLimits(newAddress, true);

        uniswapV2Pair = _uniswapV2Pair;
        _setAutomatedMarketMakerPair(_uniswapV2Pair, true);

        emit UpdateUniswapV2Router(newAddress);
    }

    function excludeFromFees(address account, bool excluded) public onlyOwner {
        _isExcludedFromFees[account] = excluded;

        emit ExcludeFromFees(account, excluded);
    }

    function setAutomatedMarketMakerPair(address pair, bool value)
        public
        onlyOwner
    {
        require(
            pair != uniswapV2Pair,
            "ERC20DividendToken: The PancakeSwap pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        require(
            automatedMarketMakerPairs[pair] != value,
            "ERC20DividendToken: Automated market maker pair is already set to that value"
        );
        automatedMarketMakerPairs[pair] = value;

        if (value) {
            excludeFromLimits(pair, true);
        }

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance");

        if (!isExcludedFromLimits[to]) {
            require(balanceOf(to) + amount <= maxWalletAmount, "Anti-whale: Wallet amount exceeds max limit");
        }

        if (amount == 0) {
            super._transfer(from, to, 0);
            return;
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= minTokensBeforeSwap;

        if (
            canSwap &&
            !swapping &&
            !automatedMarketMakerPairs[from] &&
            from != owner() &&
            to != owner()
        ) {
            swapping = true;

            swapAndSendDividendsToMarketing(contractTokenBalance);

            swapping = false;
        }

        if (_tradingStartTimestamp == 0 && automatedMarketMakerPairs[to]) { // INITIAL ADDING LIQUIDITY
            _tradingStartTimestamp = block.timestamp;
        }

        bool takeFee = !swapping;

        // if any account belongs to _isExcludedFromFee account then remove the fee
        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {
            takeFee = false;
        }

        if (takeFee) {
            uint256 fees = 0;

            if (automatedMarketMakerPairs[from]) { // BUY
                fees = amount.mul(buyFee).div(100);
            } else if (automatedMarketMakerPairs[to]) { // SELL

                if (block.timestamp < _tradingStartTimestamp + highFeeCooldown) fees = amount.mul(sellInitFee).div(100);
                else fees = amount.mul(sellFee).div(100);
            }

            if (fees > 0) {
                amount = amount.sub(fees);
                super._transfer(from, address(this), fees);
            }
        }

        super._transfer(from, to, amount);
    }

    function swapTokensForEth(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();

        _approve(address(this), address(uniswapV2Router), tokenAmount);

        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of ETH
            path,
            address(this),
            block.timestamp
        );
    }

    function swapAndSendDividendsToMarketing(uint256 tokens) private {
        uint256 initialBalance = address(this).balance;

        swapTokensForEth(tokens);
        
        uint256 dividends = address(this).balance.sub(initialBalance);
        (bool success,) = payable(marketingAddress).call{value: dividends}("");

        if(success) {
            emit SendDividendsToMarketing(tokens, dividends);
        }
    }
}

contract MBD is ERC20DividendToken {

    uint256 private _tokenSupply = 100_000_000_000;

    /**
     * @dev Choose proper router address according to your network:
     * Ethereum mainnet: 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D (Uniswap)
     * BSC mainnet: 0x10ED43C718714eb63d5aA57B78B54704E256024E (PancakeSwap)
     * BSC testnet: 0x9Ac64Cc6e4415144C455BD8E4837Fea55603e5c3
     */

    address private _routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D;
    address private _marketingAddress = 0x002Df30B6eF4c3Bf70F40b85399ADD94b60eBc9c;

    constructor () ERC20DividendToken("Mobydick", "MBD", _tokenSupply, _routerAddress, _marketingAddress) {
        // Fees to be set in parent constructor
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"SendDividendsToMarketing","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"highFeeCooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedFromLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokensBeforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellInitFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinTokensBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405264174876e800601355601480546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d1790915560158054909116722df30b6ef4c3bf70f40b85399add94b60ebc9c1790553480156200006157600080fd5b5060408051808201825260088152674d6f62796469636b60c01b6020808301918252835180850190945260038085526213509160ea1b91850191909152601354601454601554855195969592946001600160a01b0392831694929091169287928792620000ce92620007e7565b508051620000e4906004906020840190620007e7565b50505062000101620000fb6200024660201b60201c565b6200024a565b6007600955600c600a8190556008600b8190556202a300909155600e80546001600160a01b0319166001600160a01b03841617905569d3c21bcecceda100000090556200015083600f620008da565b620001639066038d7ea4c68000620008da565b60115562000171826200029c565b62000190620001886005546001600160a01b031690565b6001620004bb565b6200019d306001620004bb565b600e54620001b6906001600160a01b03166001620004bb565b620001d5620001cd6005546001600160a01b031690565b600162000569565b620001e230600162000569565b600e54620001fb906001600160a01b0316600162000569565b6200020a61dead600162000569565b6200023b620002216005546001600160a01b031690565b6200023585670de0b6b3a7640000620008da565b620005df565b50505050506200094f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600680546001600160a01b0319166001600160a01b0383169081179091556040805163c45a015560e01b815290516000929163c45a0155916004808301926020929190829003018186803b158015620002f457600080fd5b505afa15801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f91906200088d565b6001600160a01b031663c9c6539630600660009054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200038d57600080fd5b505afa158015620003a2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003c891906200088d565b6040516001600160e01b031960e085901b1681526001600160a01b03928316600482015291166024820152604401602060405180830381600087803b1580156200041157600080fd5b505af115801562000426573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200044c91906200088d565b90506200045b82600162000569565b600780546001600160a01b0319166001600160a01b03831617905562000483816001620006c4565b6040516001600160a01b038316907f0c36f1f3a0f38cd9563b52fb110cc5b0fa22c509defc16728a6a42f1bddad22990600090a25050565b6005546001600160a01b031633146200050a5760405162461bcd60e51b81526020600482018190526024820152600080516020620021d683398151915260448201526064015b60405180910390fd5b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314620005b45760405162461bcd60e51b81526020600482018190526024820152600080516020620021d6833981519152604482015260640162000501565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6001600160a01b038216620006375760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000501565b80600260008282546200064b9190620008bf565b90915550506001600160a01b038216600090815260208190526040812080548392906200067a908490620008bf565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03821660009081526010602052604090205460ff1615158115151415620007705760405162461bcd60e51b815260206004820152604c60248201527f45524332304469766964656e64546f6b656e3a204175746f6d61746564206d6160448201527f726b6574206d616b6572207061697220697320616c726561647920736574207460648201526b6f20746861742076616c756560a01b608482015260a40162000501565b6001600160a01b0382166000908152601060205260409020805460ff19168215801591909117909155620007ab57620007ab82600162000569565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b828054620007f590620008fc565b90600052602060002090601f01602090048101928262000819576000855562000864565b82601f106200083457805160ff191683800117855562000864565b8280016001018555821562000864579182015b828111156200086457825182559160200191906001019062000847565b506200087292915062000876565b5090565b5b8082111562000872576000815560010162000877565b600060208284031215620008a057600080fd5b81516001600160a01b0381168114620008b857600080fd5b9392505050565b60008219821115620008d557620008d562000939565b500190565b6000816000190483118215151615620008f757620008f762000939565b500290565b600181811c908216806200091157607f821691505b602082108114156200093357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b611877806200095f6000396000f3fe6080604052600436106101d15760003560e01c8063715018a6116100f7578063aa4bde2811610095578063c0a904a211610064578063c0a904a214610552578063dd62ed3e14610572578063e5d41c6b146105b8578063f2fde38b146105ce57600080fd5b8063aa4bde28146104d6578063b32ddc71146104ec578063b62496f514610502578063c02466681461053257600080fd5b80639a7a23d6116100d15780639a7a23d614610456578063a457c2d714610476578063a5ece94114610496578063a9059cbb146104b657600080fd5b8063715018a61461040e5780638da5cb5b1461042357806395d89b411461044157600080fd5b8063313ce5671161016f57806349bd5a5e1161013e57806349bd5a5e1461034f5780634fbee1931461036f5780635cce86cd146103a857806370a08231146103d857600080fd5b8063313ce567146102db57806339509351146102f7578063470624021461031757806348a464731461032d57600080fd5b80631694505e116101ab5780631694505e1461025857806318160ddd1461029057806323b872dd146102a55780632b14ca56146102c557600080fd5b806302bf1e7c146101dd57806306fdde0314610206578063095ea7b31461022857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f3600c5481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b5061021b6105ee565b6040516101fd919061158c565b34801561023457600080fd5b50610248610243366004611547565b610680565b60405190151581526020016101fd565b34801561026457600080fd5b50600654610278906001600160a01b031681565b6040516001600160a01b0390911681526020016101fd565b34801561029c57600080fd5b506002546101f3565b3480156102b157600080fd5b506102486102c03660046114d3565b610696565b3480156102d157600080fd5b506101f3600b5481565b3480156102e757600080fd5b50604051601281526020016101fd565b34801561030357600080fd5b50610248610312366004611547565b610745565b34801561032357600080fd5b506101f360095481565b34801561033957600080fd5b5061034d610348366004611573565b610781565b005b34801561035b57600080fd5b50600754610278906001600160a01b031681565b34801561037b57600080fd5b5061024861038a366004611460565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156103b457600080fd5b506102486103c3366004611460565b60126020526000908152604090205460ff1681565b3480156103e457600080fd5b506101f36103f3366004611460565b6001600160a01b031660009081526020819052604090205490565b34801561041a57600080fd5b5061034d6107b0565b34801561042f57600080fd5b506005546001600160a01b0316610278565b34801561044d57600080fd5b5061021b6107e6565b34801561046257600080fd5b5061034d610471366004611514565b6107f5565b34801561048257600080fd5b50610248610491366004611547565b6108d7565b3480156104a257600080fd5b50600e54610278906001600160a01b031681565b3480156104c257600080fd5b506102486104d1366004611547565b610970565b3480156104e257600080fd5b506101f360115481565b3480156104f857600080fd5b506101f3600a5481565b34801561050e57600080fd5b5061024861051d366004611460565b60106020526000908152604090205460ff1681565b34801561053e57600080fd5b5061034d61054d366004611514565b61097d565b34801561055e57600080fd5b5061034d61056d366004611514565b610a06565b34801561057e57600080fd5b506101f361058d36600461149a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105c457600080fd5b506101f360085481565b3480156105da57600080fd5b5061034d6105e9366004611460565b610a5b565b6060600380546105fd906117c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610629906117c5565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b5050505050905090565b600061068d338484610af6565b50600192915050565b60006106a3848484610c1a565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561072d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61073a8533858403610af6565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161068d91859061077c908690611755565b610af6565b6005546001600160a01b031633146107ab5760405162461bcd60e51b81526004016107249061166a565b600855565b6005546001600160a01b031633146107da5760405162461bcd60e51b81526004016107249061166a565b6107e46000610f97565b565b6060600480546105fd906117c5565b6005546001600160a01b0316331461081f5760405162461bcd60e51b81526004016107249061166a565b6007546001600160a01b03838116911614156108c95760405162461bcd60e51b815260206004820152605960248201527f45524332304469766964656e64546f6b656e3a205468652050616e63616b655360448201527f77617020706169722063616e6e6f742062652072656d6f7665642066726f6d2060648201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000608482015260a401610724565b6108d38282610fe9565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109595760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610724565b6109663385858403610af6565b5060019392505050565b600061068d338484610c1a565b6005546001600160a01b031633146109a75760405162461bcd60e51b81526004016107249061166a565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a305760405162461bcd60e51b81526004016107249061166a565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a855760405162461bcd60e51b81526004016107249061166a565b6001600160a01b038116610aea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610724565b610af381610f97565b50565b6001600160a01b038316610b585760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610724565b6001600160a01b038216610bb95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610724565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c405760405162461bcd60e51b81526004016107249061169f565b6001600160a01b038216610c665760405162461bcd60e51b8152600401610724906115e1565b80610c86846001600160a01b031660009081526020819052604090205490565b1015610ca45760405162461bcd60e51b815260040161072490611624565b6001600160a01b03821660009081526012602052604090205460ff16610d535760115481610ce7846001600160a01b031660009081526020819052604090205490565b610cf19190611755565b1115610d535760405162461bcd60e51b815260206004820152602b60248201527f416e74692d7768616c653a2057616c6c657420616d6f756e742065786365656460448201526a1cc81b585e081b1a5b5a5d60aa1b6064820152608401610724565b80610d6957610d6483836000611107565b505050565b3060009081526020819052604090205460085481108015908190610d975750600754600160a01b900460ff16155b8015610dbc57506001600160a01b03851660009081526010602052604090205460ff16155b8015610dd657506005546001600160a01b03868116911614155b8015610df057506005546001600160a01b03858116911614155b15610e1f576007805460ff60a01b1916600160a01b179055610e118261121e565b6007805460ff60a01b191690555b600d54158015610e4757506001600160a01b03841660009081526010602052604090205460ff165b15610e515742600d555b6007546001600160a01b0386166000908152600f602052604090205460ff600160a01b909204821615911680610e9f57506001600160a01b0385166000908152600f602052604090205460ff165b15610ea8575060005b8015610f84576001600160a01b03861660009081526010602052604081205460ff1615610ef657610eef6064610ee9600954886112d490919063ffffffff16565b906112e7565b9050610f65565b6001600160a01b03861660009081526010602052604090205460ff1615610f6557600c54600d54610f279190611755565b421015610f4857610eef6064610ee9600a54886112d490919063ffffffff16565b610f626064610ee9600b54886112d490919063ffffffff16565b90505b8015610f8257610f7585826112f3565b9450610f82873083611107565b505b610f8f868686611107565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526010602052604090205460ff16151581151514156110935760405162461bcd60e51b815260206004820152604c60248201527f45524332304469766964656e64546f6b656e3a204175746f6d61746564206d6160448201527f726b6574206d616b6572207061697220697320616c726561647920736574207460648201526b6f20746861742076616c756560a01b608482015260a401610724565b6001600160a01b0382166000908152601060205260409020805460ff191682158015919091179091556110cb576110cb826001610a06565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661112d5760405162461bcd60e51b81526004016107249061169f565b6001600160a01b0382166111535760405162461bcd60e51b8152600401610724906115e1565b6001600160a01b0383166000908152602081905260409020548181101561118c5760405162461bcd60e51b815260040161072490611624565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906111c3908490611755565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120f91815260200190565b60405180910390a35b50505050565b47611228826112ff565b600061123447836112f3565b600e546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114611286576040519150601f19603f3d011682016040523d82523d6000602084013e61128b565b606091505b5050905080156112185760408051858152602081018490527fb7283494b9c6f5f865b6beb3671146b55c7022ca31ee2398449fe90f73c7d157910160405180910390a150505050565b60006112e0828461178f565b9392505050565b60006112e0828461176d565b60006112e082846117ae565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061133457611334611816565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561138857600080fd5b505afa15801561139c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c0919061147d565b816001815181106113d3576113d3611816565b6001600160a01b0392831660209182029290920101526006546113f99130911684610af6565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906114329085906000908690309042906004016116e4565b600060405180830381600087803b15801561144c57600080fd5b505af1158015610f8f573d6000803e3d6000fd5b60006020828403121561147257600080fd5b81356112e08161182c565b60006020828403121561148f57600080fd5b81516112e08161182c565b600080604083850312156114ad57600080fd5b82356114b88161182c565b915060208301356114c88161182c565b809150509250929050565b6000806000606084860312156114e857600080fd5b83356114f38161182c565b925060208401356115038161182c565b929592945050506040919091013590565b6000806040838503121561152757600080fd5b82356115328161182c565b9150602083013580151581146114c857600080fd5b6000806040838503121561155a57600080fd5b82356115658161182c565b946020939093013593505050565b60006020828403121561158557600080fd5b5035919050565b600060208083528351808285015260005b818110156115b95785810183015185820160400152820161159d565b818111156115cb576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117345784516001600160a01b03168352938301939183019160010161170f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561176857611768611800565b500190565b60008261178a57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156117a9576117a9611800565b500290565b6000828210156117c0576117c0611800565b500390565b600181811c908216806117d957607f821691505b602082108114156117fa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610af357600080fdfea264697066735822122007a82c0e387bdab21bc20a29812fcfab51579196e7e03f232c00640ed51a4e1e64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106101d15760003560e01c8063715018a6116100f7578063aa4bde2811610095578063c0a904a211610064578063c0a904a214610552578063dd62ed3e14610572578063e5d41c6b146105b8578063f2fde38b146105ce57600080fd5b8063aa4bde28146104d6578063b32ddc71146104ec578063b62496f514610502578063c02466681461053257600080fd5b80639a7a23d6116100d15780639a7a23d614610456578063a457c2d714610476578063a5ece94114610496578063a9059cbb146104b657600080fd5b8063715018a61461040e5780638da5cb5b1461042357806395d89b411461044157600080fd5b8063313ce5671161016f57806349bd5a5e1161013e57806349bd5a5e1461034f5780634fbee1931461036f5780635cce86cd146103a857806370a08231146103d857600080fd5b8063313ce567146102db57806339509351146102f7578063470624021461031757806348a464731461032d57600080fd5b80631694505e116101ab5780631694505e1461025857806318160ddd1461029057806323b872dd146102a55780632b14ca56146102c557600080fd5b806302bf1e7c146101dd57806306fdde0314610206578063095ea7b31461022857600080fd5b366101d857005b600080fd5b3480156101e957600080fd5b506101f3600c5481565b6040519081526020015b60405180910390f35b34801561021257600080fd5b5061021b6105ee565b6040516101fd919061158c565b34801561023457600080fd5b50610248610243366004611547565b610680565b60405190151581526020016101fd565b34801561026457600080fd5b50600654610278906001600160a01b031681565b6040516001600160a01b0390911681526020016101fd565b34801561029c57600080fd5b506002546101f3565b3480156102b157600080fd5b506102486102c03660046114d3565b610696565b3480156102d157600080fd5b506101f3600b5481565b3480156102e757600080fd5b50604051601281526020016101fd565b34801561030357600080fd5b50610248610312366004611547565b610745565b34801561032357600080fd5b506101f360095481565b34801561033957600080fd5b5061034d610348366004611573565b610781565b005b34801561035b57600080fd5b50600754610278906001600160a01b031681565b34801561037b57600080fd5b5061024861038a366004611460565b6001600160a01b03166000908152600f602052604090205460ff1690565b3480156103b457600080fd5b506102486103c3366004611460565b60126020526000908152604090205460ff1681565b3480156103e457600080fd5b506101f36103f3366004611460565b6001600160a01b031660009081526020819052604090205490565b34801561041a57600080fd5b5061034d6107b0565b34801561042f57600080fd5b506005546001600160a01b0316610278565b34801561044d57600080fd5b5061021b6107e6565b34801561046257600080fd5b5061034d610471366004611514565b6107f5565b34801561048257600080fd5b50610248610491366004611547565b6108d7565b3480156104a257600080fd5b50600e54610278906001600160a01b031681565b3480156104c257600080fd5b506102486104d1366004611547565b610970565b3480156104e257600080fd5b506101f360115481565b3480156104f857600080fd5b506101f3600a5481565b34801561050e57600080fd5b5061024861051d366004611460565b60106020526000908152604090205460ff1681565b34801561053e57600080fd5b5061034d61054d366004611514565b61097d565b34801561055e57600080fd5b5061034d61056d366004611514565b610a06565b34801561057e57600080fd5b506101f361058d36600461149a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105c457600080fd5b506101f360085481565b3480156105da57600080fd5b5061034d6105e9366004611460565b610a5b565b6060600380546105fd906117c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610629906117c5565b80156106765780601f1061064b57610100808354040283529160200191610676565b820191906000526020600020905b81548152906001019060200180831161065957829003601f168201915b5050505050905090565b600061068d338484610af6565b50600192915050565b60006106a3848484610c1a565b6001600160a01b03841660009081526001602090815260408083203384529091529020548281101561072d5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61073a8533858403610af6565b506001949350505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161068d91859061077c908690611755565b610af6565b6005546001600160a01b031633146107ab5760405162461bcd60e51b81526004016107249061166a565b600855565b6005546001600160a01b031633146107da5760405162461bcd60e51b81526004016107249061166a565b6107e46000610f97565b565b6060600480546105fd906117c5565b6005546001600160a01b0316331461081f5760405162461bcd60e51b81526004016107249061166a565b6007546001600160a01b03838116911614156108c95760405162461bcd60e51b815260206004820152605960248201527f45524332304469766964656e64546f6b656e3a205468652050616e63616b655360448201527f77617020706169722063616e6e6f742062652072656d6f7665642066726f6d2060648201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000608482015260a401610724565b6108d38282610fe9565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156109595760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610724565b6109663385858403610af6565b5060019392505050565b600061068d338484610c1a565b6005546001600160a01b031633146109a75760405162461bcd60e51b81526004016107249061166a565b6001600160a01b0382166000818152600f6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610a305760405162461bcd60e51b81526004016107249061166a565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a855760405162461bcd60e51b81526004016107249061166a565b6001600160a01b038116610aea5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610724565b610af381610f97565b50565b6001600160a01b038316610b585760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610724565b6001600160a01b038216610bb95760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610724565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c405760405162461bcd60e51b81526004016107249061169f565b6001600160a01b038216610c665760405162461bcd60e51b8152600401610724906115e1565b80610c86846001600160a01b031660009081526020819052604090205490565b1015610ca45760405162461bcd60e51b815260040161072490611624565b6001600160a01b03821660009081526012602052604090205460ff16610d535760115481610ce7846001600160a01b031660009081526020819052604090205490565b610cf19190611755565b1115610d535760405162461bcd60e51b815260206004820152602b60248201527f416e74692d7768616c653a2057616c6c657420616d6f756e742065786365656460448201526a1cc81b585e081b1a5b5a5d60aa1b6064820152608401610724565b80610d6957610d6483836000611107565b505050565b3060009081526020819052604090205460085481108015908190610d975750600754600160a01b900460ff16155b8015610dbc57506001600160a01b03851660009081526010602052604090205460ff16155b8015610dd657506005546001600160a01b03868116911614155b8015610df057506005546001600160a01b03858116911614155b15610e1f576007805460ff60a01b1916600160a01b179055610e118261121e565b6007805460ff60a01b191690555b600d54158015610e4757506001600160a01b03841660009081526010602052604090205460ff165b15610e515742600d555b6007546001600160a01b0386166000908152600f602052604090205460ff600160a01b909204821615911680610e9f57506001600160a01b0385166000908152600f602052604090205460ff165b15610ea8575060005b8015610f84576001600160a01b03861660009081526010602052604081205460ff1615610ef657610eef6064610ee9600954886112d490919063ffffffff16565b906112e7565b9050610f65565b6001600160a01b03861660009081526010602052604090205460ff1615610f6557600c54600d54610f279190611755565b421015610f4857610eef6064610ee9600a54886112d490919063ffffffff16565b610f626064610ee9600b54886112d490919063ffffffff16565b90505b8015610f8257610f7585826112f3565b9450610f82873083611107565b505b610f8f868686611107565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526010602052604090205460ff16151581151514156110935760405162461bcd60e51b815260206004820152604c60248201527f45524332304469766964656e64546f6b656e3a204175746f6d61746564206d6160448201527f726b6574206d616b6572207061697220697320616c726561647920736574207460648201526b6f20746861742076616c756560a01b608482015260a401610724565b6001600160a01b0382166000908152601060205260409020805460ff191682158015919091179091556110cb576110cb826001610a06565b604051811515906001600160a01b038416907fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab90600090a35050565b6001600160a01b03831661112d5760405162461bcd60e51b81526004016107249061169f565b6001600160a01b0382166111535760405162461bcd60e51b8152600401610724906115e1565b6001600160a01b0383166000908152602081905260409020548181101561118c5760405162461bcd60e51b815260040161072490611624565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906111c3908490611755565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161120f91815260200190565b60405180910390a35b50505050565b47611228826112ff565b600061123447836112f3565b600e546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114611286576040519150601f19603f3d011682016040523d82523d6000602084013e61128b565b606091505b5050905080156112185760408051858152602081018490527fb7283494b9c6f5f865b6beb3671146b55c7022ca31ee2398449fe90f73c7d157910160405180910390a150505050565b60006112e0828461178f565b9392505050565b60006112e0828461176d565b60006112e082846117ae565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061133457611334611816565b6001600160a01b03928316602091820292909201810191909152600654604080516315ab88c960e31b81529051919093169263ad5c4648926004808301939192829003018186803b15801561138857600080fd5b505afa15801561139c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113c0919061147d565b816001815181106113d3576113d3611816565b6001600160a01b0392831660209182029290920101526006546113f99130911684610af6565b60065460405163791ac94760e01b81526001600160a01b039091169063791ac947906114329085906000908690309042906004016116e4565b600060405180830381600087803b15801561144c57600080fd5b505af1158015610f8f573d6000803e3d6000fd5b60006020828403121561147257600080fd5b81356112e08161182c565b60006020828403121561148f57600080fd5b81516112e08161182c565b600080604083850312156114ad57600080fd5b82356114b88161182c565b915060208301356114c88161182c565b809150509250929050565b6000806000606084860312156114e857600080fd5b83356114f38161182c565b925060208401356115038161182c565b929592945050506040919091013590565b6000806040838503121561152757600080fd5b82356115328161182c565b9150602083013580151581146114c857600080fd5b6000806040838503121561155a57600080fd5b82356115658161182c565b946020939093013593505050565b60006020828403121561158557600080fd5b5035919050565b600060208083528351808285015260005b818110156115b95785810183015185820160400152820161159d565b818111156115cb576000604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156117345784516001600160a01b03168352938301939183019160010161170f565b50506001600160a01b03969096166060850152505050608001529392505050565b6000821982111561176857611768611800565b500190565b60008261178a57634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156117a9576117a9611800565b500290565b6000828210156117c0576117c0611800565b500390565b600181811c908216806117d957607f821691505b602082108114156117fa57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0381168114610af357600080fdfea264697066735822122007a82c0e387bdab21bc20a29812fcfab51579196e7e03f232c00640ed51a4e1e64736f6c63430008070033

Deployed Bytecode Sourcemap

42158:740:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35111:30;;;;;;;;;;;;;;;;;;;8898:25:1;;;8886:2;8871:18;35111:30:0;;;;;;;;9296:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;11463:169::-;;;;;;;;;;-1:-1:-1;11463:169:0;;;;;:::i;:::-;;:::i;:::-;;;2885:14:1;;2878:22;2860:41;;2848:2;2833:18;11463:169:0;2720:187:1;34861:41:0;;;;;;;;;;-1:-1:-1;34861:41:0;;;;-1:-1:-1;;;;;34861:41:0;;;;;;-1:-1:-1;;;;;2676:32:1;;;2658:51;;2646:2;2631:18;34861:41:0;2512:203:1;10416:108:0;;;;;;;;;;-1:-1:-1;10504:12:0;;10416:108;;12114:492;;;;;;;;;;-1:-1:-1;12114:492:0;;;;;:::i;:::-;;:::i;35080:22::-;;;;;;;;;;;;;;;;10258:93;;;;;;;;;;-1:-1:-1;10258:93:0;;10341:2;10314:36:1;;10302:2;10287:18;10258:93:0;10172:184:1;13015:215:0;;;;;;;;;;-1:-1:-1;13015:215:0;;;;;:::i;:::-;;:::i;35019:21::-;;;;;;;;;;;;;;;;37241:114;;;;;;;;;;-1:-1:-1;37241:114:0;;;;;:::i;:::-;;:::i;:::-;;34909:28;;;;;;;;;;-1:-1:-1;34909:28:0;;;;-1:-1:-1;;;;;34909:28:0;;;38830:126;;;;;;;;;;-1:-1:-1;38830:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;38920:28:0;38896:4;38920:28;;;:19;:28;;;;;;;;;38830:126;35603:53;;;;;;;;;;-1:-1:-1;35603:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;10587:127;;;;;;;;;;-1:-1:-1;10587:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10688:18:0;10661:7;10688:18;;;;;;;;;;;;10587:127;2709:103;;;;;;;;;;;;;:::i;2058:87::-;;;;;;;;;;-1:-1:-1;2131:6:0;;-1:-1:-1;;;;;2131:6:0;2058:87;;9515:104;;;;;;;;;;;;;:::i;38034:336::-;;;;;;;;;;-1:-1:-1;38034:336:0;;;;;:::i;:::-;;:::i;13733:413::-;;;;;;;;;;-1:-1:-1;13733:413:0;;;;;:::i;:::-;;:::i;35195:31::-;;;;;;;;;;-1:-1:-1;35195:31:0;;;;-1:-1:-1;;;;;35195:31:0;;;10927:175;;;;;;;;;;-1:-1:-1;10927:175:0;;;;;:::i;:::-;;:::i;35564:30::-;;;;;;;;;;;;;;;;35047:26;;;;;;;;;;;;;;;;35498:57;;;;;;;;;;-1:-1:-1;35498:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;37842:184;;;;;;;;;;-1:-1:-1;37842:184:0;;;;;:::i;:::-;;:::i;37098:135::-;;;;;;;;;;-1:-1:-1;37098:135:0;;;;;:::i;:::-;;:::i;11165:151::-;;;;;;;;;;-1:-1:-1;11165:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11281:18:0;;;11254:7;11281:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11165:151;34976:34;;;;;;;;;;;;;;;;2967:201;;;;;;;;;;-1:-1:-1;2967:201:0;;;;;:::i;:::-;;:::i;9296:100::-;9350:13;9383:5;9376:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9296:100;:::o;11463:169::-;11546:4;11563:39;860:10;11586:7;11595:6;11563:8;:39::i;:::-;-1:-1:-1;11620:4:0;11463:169;;;;:::o;12114:492::-;12254:4;12271:36;12281:6;12289:9;12300:6;12271:9;:36::i;:::-;-1:-1:-1;;;;;12347:19:0;;12320:24;12347:19;;;:11;:19;;;;;;;;860:10;12347:33;;;;;;;;12399:26;;;;12391:79;;;;-1:-1:-1;;;12391:79:0;;6967:2:1;12391:79:0;;;6949:21:1;7006:2;6986:18;;;6979:30;7045:34;7025:18;;;7018:62;-1:-1:-1;;;7096:18:1;;;7089:38;7144:19;;12391:79:0;;;;;;;;;12506:57;12515:6;860:10;12556:6;12537:16;:25;12506:8;:57::i;:::-;-1:-1:-1;12594:4:0;;12114:492;-1:-1:-1;;;;12114:492:0:o;13015:215::-;860:10;13103:4;13152:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13152:34:0;;;;;;;;;;13103:4;;13120:80;;13143:7;;13152:47;;13189:10;;13152:47;:::i;:::-;13120:8;:80::i;37241:114::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;37319:19:::1;:28:::0;37241:114::o;2709:103::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;2774:30:::1;2801:1;2774:18;:30::i;:::-;2709:103::o:0;9515:104::-;9571:13;9604:7;9597:14;;;;;:::i;38034:336::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;38178:13:::1;::::0;-1:-1:-1;;;;;38170:21:0;;::::1;38178:13:::0;::::1;38170:21;;38148:160;;;::::0;-1:-1:-1;;;38148:160:0;;6469:2:1;38148:160:0::1;::::0;::::1;6451:21:1::0;6508:2;6488:18;;;6481:30;6547:34;6527:18;;;6520:62;6618:34;6598:18;;;6591:62;6690:27;6669:19;;;6662:56;6735:19;;38148:160:0::1;6267:493:1::0;38148:160:0::1;38321:41;38350:4;38356:5;38321:28;:41::i;:::-;38034:336:::0;;:::o;13733:413::-;860:10;13826:4;13870:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13870:34:0;;;;;;;;;;13923:35;;;;13915:85;;;;-1:-1:-1;;;13915:85:0;;8548:2:1;13915:85:0;;;8530:21:1;8587:2;8567:18;;;8560:30;8626:34;8606:18;;;8599:62;-1:-1:-1;;;8677:18:1;;;8670:35;8722:19;;13915:85:0;8346:401:1;13915:85:0;14036:67;860:10;14059:7;14087:15;14068:16;:34;14036:8;:67::i;:::-;-1:-1:-1;14134:4:0;;13733:413;-1:-1:-1;;;13733:413:0:o;10927:175::-;11013:4;11030:42;860:10;11054:9;11065:6;11030:9;:42::i;37842:184::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37927:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;37927:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;37984:34;;2860:41:1;;;37984:34:0::1;::::0;2833:18:1;37984:34:0::1;;;;;;;37842:184:::0;;:::o;37098:135::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37185:29:0;;;::::1;;::::0;;;:20:::1;:29;::::0;;;;:40;;-1:-1:-1;;37185:40:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37098:135::o;2967:201::-;2131:6;;-1:-1:-1;;;;;2131:6:0;860:10;2278:23;2270:68;;;;-1:-1:-1;;;2270:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3056:22:0;::::1;3048:73;;;::::0;-1:-1:-1;;;3048:73:0;;4355:2:1;3048:73:0::1;::::0;::::1;4337:21:1::0;4394:2;4374:18;;;4367:30;4433:34;4413:18;;;4406:62;-1:-1:-1;;;4484:18:1;;;4477:36;4530:19;;3048:73:0::1;4153:402:1::0;3048:73:0::1;3132:28;3151:8;3132:18;:28::i;:::-;2967:201:::0;:::o;17417:380::-;-1:-1:-1;;;;;17553:19:0;;17545:68;;;;-1:-1:-1;;;17545:68:0;;8143:2:1;17545:68:0;;;8125:21:1;8182:2;8162:18;;;8155:30;8221:34;8201:18;;;8194:62;-1:-1:-1;;;8272:18:1;;;8265:34;8316:19;;17545:68:0;7941:400:1;17545:68:0;-1:-1:-1;;;;;17632:21:0;;17624:68;;;;-1:-1:-1;;;17624:68:0;;4762:2:1;17624:68:0;;;4744:21:1;4801:2;4781:18;;;4774:30;4840:34;4820:18;;;4813:62;-1:-1:-1;;;4891:18:1;;;4884:32;4933:19;;17624:68:0;4560:398:1;17624:68:0;-1:-1:-1;;;;;17705:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17757:32;;8898:25:1;;;17757:32:0;;8871:18:1;17757:32:0;;;;;;;17417:380;;;:::o;38964:2153::-;-1:-1:-1;;;;;39096:18:0;;39088:68;;;;-1:-1:-1;;;39088:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39175:16:0;;39167:64;;;;-1:-1:-1;;;39167:64:0;;;;;;;:::i;:::-;39269:6;39250:15;39260:4;-1:-1:-1;;;;;10688:18:0;10661:7;10688:18;;;;;;;;;;;;10587:127;39250:15;:25;;39242:76;;;;-1:-1:-1;;;39242:76:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39336:24:0;;;;;;:20;:24;;;;;;;;39331:155;;39411:15;;39401:6;39385:13;39395:2;-1:-1:-1;;;;;10688:18:0;10661:7;10688:18;;;;;;;;;;;;10587:127;39385:13;:22;;;;:::i;:::-;:41;;39377:97;;;;-1:-1:-1;;;39377:97:0;;6057:2:1;39377:97:0;;;6039:21:1;6096:2;6076:18;;;6069:30;6135:34;6115:18;;;6108:62;-1:-1:-1;;;6186:18:1;;;6179:41;6237:19;;39377:97:0;5855:407:1;39377:97:0;39502:11;39498:93;;39530:28;39546:4;39552:2;39556:1;39530:15;:28::i;:::-;38964:2153;;;:::o;39498:93::-;39652:4;39603:28;10688:18;;;;;;;;;;;39710:19;;39686:43;;;;;;;39760:33;;-1:-1:-1;39785:8:0;;-1:-1:-1;;;39785:8:0;;;;39784:9;39760:33;:82;;;;-1:-1:-1;;;;;;39811:31:0;;;;;;:25;:31;;;;;;;;39810:32;39760:82;:114;;;;-1:-1:-1;2131:6:0;;-1:-1:-1;;;;;39859:15:0;;;2131:6;;39859:15;;39760:114;:144;;;;-1:-1:-1;2131:6:0;;-1:-1:-1;;;;;39891:13:0;;;2131:6;;39891:13;;39760:144;39742:319;;;39931:8;:15;;-1:-1:-1;;;;39931:15:0;-1:-1:-1;;;39931:15:0;;;39963:53;39995:20;39963:31;:53::i;:::-;40033:8;:16;;-1:-1:-1;;;;40033:16:0;;;39742:319;40077:22;;:27;:60;;;;-1:-1:-1;;;;;;40108:29:0;;;;;;:25;:29;;;;;;;;40077:60;40073:161;;;40207:15;40182:22;:40;40073:161;40262:8;;-1:-1:-1;;;;;40372:25:0;;40246:12;40372:25;;;:19;:25;;;;;;40262:8;-1:-1:-1;;;40262:8:0;;;;;40261:9;;40372:25;;:52;;-1:-1:-1;;;;;;40401:23:0;;;;;;:19;:23;;;;;;;;40372:52;40368:100;;;-1:-1:-1;40451:5:0;40368:100;40484:7;40480:584;;;-1:-1:-1;;;;;40545:31:0;;40508:12;40545:31;;;:25;:31;;;;;;;;40541:361;;;40611:27;40634:3;40611:18;40622:6;;40611;:10;;:18;;;;:::i;:::-;:22;;:27::i;:::-;40604:34;;40541:361;;;-1:-1:-1;;;;;40664:29:0;;;;;;:25;:29;;;;;;;;40660:242;;;40771:15;;40746:22;;:40;;;;:::i;:::-;40728:15;:58;40724:162;;;40795:32;40823:3;40795:23;40806:11;;40795:6;:10;;:23;;;;:::i;40724:162::-;40858:28;40882:3;40858:19;40869:7;;40858:6;:10;;:19;;;;:::i;:28::-;40851:35;;40724:162;40922:8;;40918:135;;40960:16;:6;40971:4;40960:10;:16::i;:::-;40951:25;;40995:42;41011:4;41025;41032;40995:15;:42::i;:::-;40493:571;40480:584;41076:33;41092:4;41098:2;41102:6;41076:15;:33::i;:::-;39077:2040;;;38964:2153;;;:::o;3328:191::-;3421:6;;;-1:-1:-1;;;;;3438:17:0;;;-1:-1:-1;;;;;;3438:17:0;;;;;;;3471:40;;3421:6;;;3438:17;3421:6;;3471:40;;3402:16;;3471:40;3391:128;3328:191;:::o;38378:444::-;-1:-1:-1;;;;;38483:31:0;;;;;;:25;:31;;;;;;;;:40;;;;;;;38461:166;;;;-1:-1:-1;;;38461:166:0;;5572:2:1;38461:166:0;;;5554:21:1;5611:2;5591:18;;;5584:30;5650:34;5630:18;;;5623:62;5721:34;5701:18;;;5694:62;-1:-1:-1;;;5772:19:1;;;5765:43;5825:19;;38461:166:0;5370:480:1;38461:166:0;-1:-1:-1;;;;;38638:31:0;;;;;;:25;:31;;;;;:39;;-1:-1:-1;;38638:39:0;;;;;;;;;;;;38690:67;;38716:29;38734:4;38740;38716:17;:29::i;:::-;38774:40;;;;;;-1:-1:-1;;;;;38774:40:0;;;;;;;;38378:444;;:::o;14636:733::-;-1:-1:-1;;;;;14776:20:0;;14768:70;;;;-1:-1:-1;;;14768:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14857:23:0;;14849:71;;;;-1:-1:-1;;;14849:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15017:17:0;;14993:21;15017:17;;;;;;;;;;;15053:23;;;;15045:74;;;;-1:-1:-1;;;15045:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15155:17:0;;;:9;:17;;;;;;;;;;;15175:22;;;15155:42;;15219:20;;;;;;;;:30;;15191:6;;15155:9;15219:30;;15191:6;;15219:30;:::i;:::-;;;;;;;;15284:9;-1:-1:-1;;;;;15267:35:0;15276:6;-1:-1:-1;;;;;15267:35:0;;15295:6;15267:35;;;;8898:25:1;;8886:2;8871:18;;8752:177;15267:35:0;;;;;;;;15315:46;14757:612;14636:733;;;:::o;41722:429::-;41823:21;41857:24;41874:6;41857:16;:24::i;:::-;41902:17;41922:41;:21;41948:14;41922:25;:41::i;:::-;42000:16;;41992:52;;41902:61;;-1:-1:-1;41975:12:0;;-1:-1:-1;;;;;42000:16:0;;;;41902:61;;41975:12;41992:52;41975:12;41992:52;41902:61;42000:16;41992:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41974:70;;;42060:7;42057:87;;;42089:43;;;10093:25:1;;;10149:2;10134:18;;10127:34;;;42089:43:0;;10066:18:1;42089:43:0;;;;;;;41787:364;;;41722:429;:::o;22861:98::-;22919:7;22946:5;22950:1;22946;:5;:::i;:::-;22939:12;22861:98;-1:-1:-1;;;22861:98:0:o;23260:::-;23318:7;23345:5;23349:1;23345;:5;:::i;22504:98::-;22562:7;22589:5;22593:1;22589;:5;:::i;41125:589::-;41275:16;;;41289:1;41275:16;;;;;;;;41251:21;;41275:16;;;;;;;;;;-1:-1:-1;41275:16:0;41251:40;;41320:4;41302;41307:1;41302:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41302:23:0;;;:7;;;;;;;;;;:23;;;;41346:15;;:22;;;-1:-1:-1;;;41346:22:0;;;;:15;;;;;:20;;:22;;;;;41302:7;;41346:22;;;;;:15;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;41336:4;41341:1;41336:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41336:32:0;;;:7;;;;;;;;;:32;41413:15;;41381:62;;41398:4;;41413:15;41431:11;41381:8;:62::i;:::-;41482:15;;:224;;-1:-1:-1;;;41482:224:0;;-1:-1:-1;;;;;41482:15:0;;;;:66;;:224;;41563:11;;41482:15;;41633:4;;41660;;41680:15;;41482:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:247:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;181:9;168:23;200:31;225:5;200:31;:::i;266:251::-;336:6;389:2;377:9;368:7;364:23;360:32;357:52;;;405:1;402;395:12;357:52;437:9;431:16;456:31;481:5;456:31;:::i;522:388::-;590:6;598;651:2;639:9;630:7;626:23;622:32;619:52;;;667:1;664;657:12;619:52;706:9;693:23;725:31;750:5;725:31;:::i;:::-;775:5;-1:-1:-1;832:2:1;817:18;;804:32;845:33;804:32;845:33;:::i;:::-;897:7;887:17;;;522:388;;;;;:::o;915:456::-;992:6;1000;1008;1061:2;1049:9;1040:7;1036:23;1032:32;1029:52;;;1077:1;1074;1067:12;1029:52;1116:9;1103:23;1135:31;1160:5;1135:31;:::i;:::-;1185:5;-1:-1:-1;1242:2:1;1227:18;;1214:32;1255:33;1214:32;1255:33;:::i;:::-;915:456;;1307:7;;-1:-1:-1;;;1361:2:1;1346:18;;;;1333:32;;915:456::o;1376:416::-;1441:6;1449;1502:2;1490:9;1481:7;1477:23;1473:32;1470:52;;;1518:1;1515;1508:12;1470:52;1557:9;1544:23;1576:31;1601:5;1576:31;:::i;:::-;1626:5;-1:-1:-1;1683:2:1;1668:18;;1655:32;1725:15;;1718:23;1706:36;;1696:64;;1756:1;1753;1746:12;1797:315;1865:6;1873;1926:2;1914:9;1905:7;1901:23;1897:32;1894:52;;;1942:1;1939;1932:12;1894:52;1981:9;1968:23;2000:31;2025:5;2000:31;:::i;:::-;2050:5;2102:2;2087:18;;;;2074:32;;-1:-1:-1;;;1797:315:1:o;2117:180::-;2176:6;2229:2;2217:9;2208:7;2204:23;2200:32;2197:52;;;2245:1;2242;2235:12;2197:52;-1:-1:-1;2268:23:1;;2117:180;-1:-1:-1;2117:180:1:o;3147:597::-;3259:4;3288:2;3317;3306:9;3299:21;3349:6;3343:13;3392:6;3387:2;3376:9;3372:18;3365:34;3417:1;3427:140;3441:6;3438:1;3435:13;3427:140;;;3536:14;;;3532:23;;3526:30;3502:17;;;3521:2;3498:26;3491:66;3456:10;;3427:140;;;3585:6;3582:1;3579:13;3576:91;;;3655:1;3650:2;3641:6;3630:9;3626:22;3622:31;3615:42;3576:91;-1:-1:-1;3728:2:1;3707:15;-1:-1:-1;;3703:29:1;3688:45;;;;3735:2;3684:54;;3147:597;-1:-1:-1;;;3147:597:1:o;3749:399::-;3951:2;3933:21;;;3990:2;3970:18;;;3963:30;4029:34;4024:2;4009:18;;4002:62;-1:-1:-1;;;4095:2:1;4080:18;;4073:33;4138:3;4123:19;;3749:399::o;4963:402::-;5165:2;5147:21;;;5204:2;5184:18;;;5177:30;5243:34;5238:2;5223:18;;5216:62;-1:-1:-1;;;5309:2:1;5294:18;;5287:36;5355:3;5340:19;;4963:402::o;7174:356::-;7376:2;7358:21;;;7395:18;;;7388:30;7454:34;7449:2;7434:18;;7427:62;7521:2;7506:18;;7174:356::o;7535:401::-;7737:2;7719:21;;;7776:2;7756:18;;;7749:30;7815:34;7810:2;7795:18;;7788:62;-1:-1:-1;;;7881:2:1;7866:18;;7859:35;7926:3;7911:19;;7535:401::o;8934:980::-;9196:4;9244:3;9233:9;9229:19;9275:6;9264:9;9257:25;9301:2;9339:6;9334:2;9323:9;9319:18;9312:34;9382:3;9377:2;9366:9;9362:18;9355:31;9406:6;9441;9435:13;9472:6;9464;9457:22;9510:3;9499:9;9495:19;9488:26;;9549:2;9541:6;9537:15;9523:29;;9570:1;9580:195;9594:6;9591:1;9588:13;9580:195;;;9659:13;;-1:-1:-1;;;;;9655:39:1;9643:52;;9750:15;;;;9715:12;;;;9691:1;9609:9;9580:195;;;-1:-1:-1;;;;;;;9831:32:1;;;;9826:2;9811:18;;9804:60;-1:-1:-1;;;9895:3:1;9880:19;9873:35;9792:3;8934:980;-1:-1:-1;;;8934:980:1:o;10361:128::-;10401:3;10432:1;10428:6;10425:1;10422:13;10419:39;;;10438:18;;:::i;:::-;-1:-1:-1;10474:9:1;;10361:128::o;10494:217::-;10534:1;10560;10550:132;;10604:10;10599:3;10595:20;10592:1;10585:31;10639:4;10636:1;10629:15;10667:4;10664:1;10657:15;10550:132;-1:-1:-1;10696:9:1;;10494:217::o;10716:168::-;10756:7;10822:1;10818;10814:6;10810:14;10807:1;10804:21;10799:1;10792:9;10785:17;10781:45;10778:71;;;10829:18;;:::i;:::-;-1:-1:-1;10869:9:1;;10716:168::o;10889:125::-;10929:4;10957:1;10954;10951:8;10948:34;;;10962:18;;:::i;:::-;-1:-1:-1;10999:9:1;;10889:125::o;11019:380::-;11098:1;11094:12;;;;11141;;;11162:61;;11216:4;11208:6;11204:17;11194:27;;11162:61;11269:2;11261:6;11258:14;11238:18;11235:38;11232:161;;;11315:10;11310:3;11306:20;11303:1;11296:31;11350:4;11347:1;11340:15;11378:4;11375:1;11368:15;11232:161;;11019:380;;;:::o;11404:127::-;11465:10;11460:3;11456:20;11453:1;11446:31;11496:4;11493:1;11486:15;11520:4;11517:1;11510:15;11536:127;11597:10;11592:3;11588:20;11585:1;11578:31;11628:4;11625:1;11618:15;11652:4;11649:1;11642:15;11800:131;-1:-1:-1;;;;;11875:31:1;;11865:42;;11855:70;;11921:1;11918;11911:12

Swarm Source

ipfs://07a82c0e387bdab21bc20a29812fcfab51579196e7e03f232c00640ed51a4e1e
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.