Contract Address Details

0xf63389ef1189c75eD9865363521bC061fD5868c7

Token
DickDoge Token (DOG)
Creator
0xb96e96–9f6864 at 0x3e6543–108c59
Balance
0 Doge
Tokens
Fetching tokens...
Transactions
17 Transactions
Transfers
0 Transfers
Gas Used
681,721
Last Balance Update
29468720
Contract name:
DickDog




Optimization enabled
true
Compiler version
v0.6.12+commit.27d51765




Optimization runs
200
EVM Version
default




Verified at
2022-08-18T11:35:17.742426Z

Constructor Arguments

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b96e96317260b56b9f21ee34e544bbe8ea9f6864

Arg [0] (uint256) : 0
Arg [1] (address) : 0xb96e96317260b56b9f21ee34e544bbe8ea9f6864

              

Contract source code

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.12 <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);
}

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

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

    function ceil(uint256 a, uint256 m) internal pure returns (uint256) {
        uint256 c = add(a, m);
        uint256 d = sub(c, 1);
        return mul(div(d, m), m);
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

/*
 * @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 guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */


contract ERC20 is Context, IERC20 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This 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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 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.
 */

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}
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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

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

abstract contract Operator is Context, Ownable {
    address private _operator;

    event OperatorTransferred(
        address indexed previousOperator,
        address indexed newOperator
    );

    constructor() internal {
        _operator = _msgSender();
        emit OperatorTransferred(address(0), _operator);
    }

    function operator() public view returns (address) {
        return _operator;
    }

    modifier onlyOperator() {
        require(
            _operator == msg.sender,
            "operator: caller is not the operator"
        );
        _;
    }

    function isOperator() public view returns (bool) {
        return _msgSender() == _operator;
    }

    function transferOperator(address newOperator_) public onlyOwner {
        _transferOperator(newOperator_);
    }

    function _transferOperator(address newOperator_) internal {
        require(
            newOperator_ != address(0),
            "operator: zero address given for new operator"
        );
        emit OperatorTransferred(address(0), newOperator_);
        Ownable.transferOwnership(newOperator_);
        _operator = newOperator_;
    }
}

interface IOracle {
    function update() external;

    function consult(address _token, uint256 _amountIn) external view returns (uint144 amountOut);

    function twap(address _token, uint256 _amountIn) external view returns (uint144 _amountOut);
}

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

contract DickDog is ERC20Burnable, Operator {
    using SafeMath8 for uint8;
    using SafeMath for uint256;

    // Initial distribution for the first 24h genesis pools
    uint256 public constant INITIAL_GENESIS_POOL_DISTRIBUTION = 25000 ether;
    // Initial distribution for the day 2-5 DOG-DOGE LP -> DOG pool
    uint256 public constant INITIAL_TOMB_POOL_DISTRIBUTION = 0 ether;
    // Distribution for airdrops wallet
    uint256 public constant INITIAL_AIRDROP_WALLET_DISTRIBUTION = 0 ether;

    // Have the rewards been distributed to the pools
    bool public rewardPoolDistributed = false;

    /* ================= Taxation =============== */
    // Address of the Oracle
    address public dogOracle;
    // Address of the Tax Office
    address public taxOffice;

    // Current tax rate
    uint256 public taxRate;
    // Price threshold below which taxes will get burned
    uint256 public burnThreshold = 1.10e18;
    // Address of the tax collector wallet
    address public taxCollectorAddress;

    // Should the taxes be calculated using the tax tiers
    bool public autoCalculateTax;

    // Tax Tiers
    uint256[] public taxTiersTwaps = [
        0,
        5e17,
        6e17,
        7e17,
        8e17,
        9e17,
        9.5e17,
        1e18,
        1.05e18,
        1.10e18,
        1.20e18,
        1.30e18,
        1.40e18,
        1.50e18
    ];
    uint256[] public taxTiersRates = [
        2000,
        1900,
        1800,
        1700,
        1600,
        1500,
        1500,
        1500,
        1500,
        1400,
        900,
        400,
        200,
        100
    ];

    // Sender addresses excluded from Tax
    mapping(address => bool) public excludedAddresses;

    event TaxOfficeTransferred(address oldAddress, address newAddress);

    modifier onlyTaxOffice() {
        require(taxOffice == msg.sender, "Caller is not the tax office");
        _;
    }

    modifier onlyOperatorOrTaxOffice() {
        require(
            isOperator() || taxOffice == msg.sender,
            "Caller is not the operator or the tax office"
        );
        _;
    }

    /**
     * @notice Constructs the TOMB ERC-20 contract.
     */
    constructor(uint256 _taxRate, address _taxCollectorAddress)
        public
        ERC20("DickDoge Token", "DOG")
    {
        // Mints 1 TOMB to contract creator for initial pool setup
        require(_taxRate < 10000, "tax equal or bigger to 100%");
        //require(_taxCollectorAddress != address(0), "tax collector address must be non-zero address");

        excludeAddress(address(this));

        _mint(msg.sender, 1 ether);
        taxRate = _taxRate;
        taxCollectorAddress = _taxCollectorAddress;
    }

    /* ============= Taxation ============= */

    function getTaxTiersTwapsCount() public view returns (uint256 count) {
        return taxTiersTwaps.length;
    }

    function getTaxTiersRatesCount() public view returns (uint256 count) {
        return taxTiersRates.length;
    }

    function isAddressExcluded(address _address) public view returns (bool) {
        return excludedAddresses[_address];
    }

    function setTaxTiersTwap(uint8 _index, uint256 _value)
        public
        onlyTaxOffice
        returns (bool)
    {
        require(_index >= 0, "Index has to be higher than 0");
        require(
            _index < getTaxTiersTwapsCount(),
            "Index has to lower than count of tax tiers"
        );
        if (_index > 0) {
            require(_value > taxTiersTwaps[_index - 1]);
        }
        if (_index < getTaxTiersTwapsCount().sub(1)) {
            require(_value < taxTiersTwaps[_index + 1]);
        }
        taxTiersTwaps[_index] = _value;
        return true;
    }

    function setTaxTiersRate(uint8 _index, uint256 _value)
        public
        onlyTaxOffice
        returns (bool)
    {
        require(_index >= 0, "Index has to be higher than 0");
        require(
            _index < getTaxTiersRatesCount(),
            "Index has to lower than count of tax tiers"
        );
        taxTiersRates[_index] = _value;
        return true;
    }

    function setBurnThreshold(uint256 _burnThreshold)
        public
        onlyTaxOffice
        returns (bool)
    {
        burnThreshold = _burnThreshold;
    }

    function _getDogPrice() internal view returns (uint256 _DogPrice) {
        try IOracle(dogOracle).consult(address(this), 1e18) returns (
            uint144 _price
        ) {
            return uint256(_price);
        } catch {
            revert("DICKDOG: failed to fetch DICKDOG price from Oracle");
        }
    }

    function _updateTaxRate(uint256 _DogPrice) internal returns (uint256) {
        if (autoCalculateTax) {
            for (
                uint8 tierId = uint8(getTaxTiersTwapsCount()).sub(1);
                tierId >= 0;
                --tierId
            ) {
                if (_DogPrice >= taxTiersTwaps[tierId]) {
                    require(
                        taxTiersRates[tierId] < 10000,
                        "tax equal or bigger to 100%"
                    );
                    taxRate = taxTiersRates[tierId];
                    return taxTiersRates[tierId];
                }
            }
        }
    }

    function enableAutoCalculateTax() public onlyTaxOffice {
        autoCalculateTax = true;
    }

    function disableAutoCalculateTax() public onlyTaxOffice {
        autoCalculateTax = false;
    }

    function setDogOracle(address _dogOracle) public onlyOperatorOrTaxOffice {
        require(_dogOracle != address(0), "oracle address cannot be 0 address");
        dogOracle = _dogOracle;
    }

    function setTaxOffice(address _taxOffice) public onlyOperatorOrTaxOffice {
        require(
            _taxOffice != address(0),
            "tax office address cannot be 0 address"
        );
        emit TaxOfficeTransferred(taxOffice, _taxOffice);
        taxOffice = _taxOffice;
    }

    function setTaxCollectorAddress(address _taxCollectorAddress)
        public
        onlyTaxOffice
    {
        require(
            _taxCollectorAddress != address(0),
            "tax collector address must be non-zero address"
        );
        taxCollectorAddress = _taxCollectorAddress;
    }

    function setTaxRate(uint256 _taxRate) public onlyTaxOffice {
        require(!autoCalculateTax, "auto calculate tax cannot be enabled");
        require(_taxRate < 10000, "tax equal or bigger to 100%");
        taxRate = _taxRate;
    }

    function excludeAddress(address _address)
        public
        onlyOperatorOrTaxOffice
        returns (bool)
    {
        require(!excludedAddresses[_address], "address can't be excluded");
        excludedAddresses[_address] = true;
        return true;
    }

    function includeAddress(address _address)
        public
        onlyOperatorOrTaxOffice
        returns (bool)
    {
        require(excludedAddresses[_address], "address can't be included");
        excludedAddresses[_address] = false;
        return true;
    }

    /**
     * @notice Operator mints DICKDOG to a recipient
     * @param recipient_ The address of recipient
     * @param amount_ The amount of DICKDOG to mint to
     * @return whether the process has been done
     */
    function mint(address recipient_, uint256 amount_)
        public
        onlyOperator
        returns (bool)
    {
        uint256 balanceBefore = balanceOf(recipient_);
        _mint(recipient_, amount_);
        uint256 balanceAfter = balanceOf(recipient_);

        return balanceAfter > balanceBefore;
    }

    function burn(uint256 amount) public override {
        super.burn(amount);
    }

    function burnFrom(address account, uint256 amount)
        public
        override
        onlyOperator
    {
        super.burnFrom(account, amount);
    }

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public override returns (bool) {
        uint256 currentTaxRate = 0;
        bool burnTax = false;

        if (autoCalculateTax) {
            uint256 currentTombPrice = _getDogPrice();
            currentTaxRate = _updateTaxRate(currentTombPrice);
            if (currentTombPrice < burnThreshold) {
                burnTax = true;
            }
        }

        if (currentTaxRate == 0 || excludedAddresses[sender]) {
            _transfer(sender, recipient, amount);
        } else {
            _transferWithTax(sender, recipient, amount, burnTax);
        }

        _approve(
            sender,
            _msgSender(),
            allowance(sender, _msgSender()).sub(
                amount,
                "ERC20: transfer amount exceeds allowance"
            )
        );
        return true;
    }

    function _transferWithTax(
        address sender,
        address recipient,
        uint256 amount,
        bool burnTax
    ) internal returns (bool) {
        uint256 taxAmount = amount.mul(taxRate).div(10000);
        uint256 amountAfterTax = amount.sub(taxAmount);

        if (burnTax) {
            // Burn tax
            super.burnFrom(sender, taxAmount);
        } else {
            // Transfer tax to tax collector
            _transfer(sender, taxCollectorAddress, taxAmount);
        }

        // Transfer amount after tax to recipient
        _transfer(sender, recipient, amountAfterTax);

        return true;
    }

    /**
     * @notice distribute to reward pool (only once)
     */
    function distributeReward(address _genesisPool)
        external
        //address _tombPool,
        //address _airdropWallet
        onlyOperator
    {
        require(!rewardPoolDistributed, "only can distribute once");
        require(_genesisPool != address(0), "!_genesisPool");
        //require(_tombPool != address(0), "!_tombPool");
        //require(_airdropWallet != address(0), "!_airdropWallet");
        rewardPoolDistributed = true;
        _mint(_genesisPool, INITIAL_GENESIS_POOL_DISTRIBUTION);
        //_mint(_tombPool, INITIAL_TOMB_POOL_DISTRIBUTION);
        //_mint(_airdropWallet, INITIAL_AIRDROP_WALLET_DISTRIBUTION);
    }

    function governanceRecoverUnsupported(
        IERC20 _token,
        uint256 _amount,
        address _to
    ) external onlyOperator {
        _token.transfer(_to, _amount);
    }
}
        

Contract ABI

[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"uint256","name":"_taxRate","internalType":"uint256"},{"type":"address","name":"_taxCollectorAddress","internalType":"address"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OperatorTransferred","inputs":[{"type":"address","name":"previousOperator","internalType":"address","indexed":true},{"type":"address","name":"newOperator","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"TaxOfficeTransferred","inputs":[{"type":"address","name":"oldAddress","internalType":"address","indexed":false},{"type":"address","name":"newAddress","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"INITIAL_AIRDROP_WALLET_DISTRIBUTION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"INITIAL_GENESIS_POOL_DISTRIBUTION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"INITIAL_TOMB_POOL_DISTRIBUTION","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"autoCalculateTax","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burn","inputs":[{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"burnFrom","inputs":[{"type":"address","name":"account","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"burnThreshold","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"disableAutoCalculateTax","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"distributeReward","inputs":[{"type":"address","name":"_genesisPool","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"dogOracle","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"enableAutoCalculateTax","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"excludeAddress","inputs":[{"type":"address","name":"_address","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"excludedAddresses","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"count","internalType":"uint256"}],"name":"getTaxTiersRatesCount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"count","internalType":"uint256"}],"name":"getTaxTiersTwapsCount","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"governanceRecoverUnsupported","inputs":[{"type":"address","name":"_token","internalType":"contract IERC20"},{"type":"uint256","name":"_amount","internalType":"uint256"},{"type":"address","name":"_to","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"includeAddress","inputs":[{"type":"address","name":"_address","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isAddressExcluded","inputs":[{"type":"address","name":"_address","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isOperator","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"mint","inputs":[{"type":"address","name":"recipient_","internalType":"address"},{"type":"uint256","name":"amount_","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"operator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"rewardPoolDistributed","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"setBurnThreshold","inputs":[{"type":"uint256","name":"_burnThreshold","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setDogOracle","inputs":[{"type":"address","name":"_dogOracle","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTaxCollectorAddress","inputs":[{"type":"address","name":"_taxCollectorAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTaxOffice","inputs":[{"type":"address","name":"_taxOffice","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"setTaxRate","inputs":[{"type":"uint256","name":"_taxRate","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"setTaxTiersRate","inputs":[{"type":"uint8","name":"_index","internalType":"uint8"},{"type":"uint256","name":"_value","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"setTaxTiersTwap","inputs":[{"type":"uint8","name":"_index","internalType":"uint8"},{"type":"uint256","name":"_value","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"taxCollectorAddress","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"taxOffice","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"taxRate","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"taxTiersRates","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"taxTiersTwaps","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOperator","inputs":[{"type":"address","name":"newOperator_","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]}]
            

Contract Creation Code

0x6006805460ff60a01b19169055670f43fc2c04ee0000600a819055610240604052600060809081526706f05b59d3b2000060a052670853a0d2313c000060c0526709b6e64a8ec6000060e052670b1a2bc2ec50000061010052670c7d713b49da000061012052670d2f13f7789f000061014052670de0b6b3a764000061016052670e92596fd6290000610180526101a0919091526710a741a4627800006101c05267120a871cc00200006101e05267136dcc951d8c0000610200526714d1120d7b16000061022052620000d790600c90600e6200060f565b50604080516101c0810182526107d0815261076c6020820152610708918101919091526106a4606082015261064060808201526105dc60a0820181905260c0820181905260e0820181905261010082015261057861012082015261038461014082015261019061016082015260c861018082015260646101a08201526200016390600d90600e6200066a565b503480156200017157600080fd5b5060405162002f2538038062002f25833981810160405260408110156200019757600080fd5b508051602091820151604080518082018252600e81526d2234b1b5a237b3b2902a37b5b2b760911b8186019081528251808401909352600380845262444f4760e81b968401969096528151949593949193620001f692909190620006ae565b5080516200020c906004906020840190620006ae565b50506005805460ff191660121790555060006200022862000376565b60058054610100600160a81b0319166101006001600160a01b03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506200028862000376565b600680546001600160a01b0319166001600160a01b0392831617908190556040519116906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a361271082106200032b576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b62000336306200037a565b506200034b33670de0b6b3a764000062000471565b600991909155600b80546001600160a01b0319166001600160a01b0390921691909117905562000738565b3390565b60006200038662000580565b806200039c57506008546001600160a01b031633145b620003d95760405162461bcd60e51b815260040180806020018281038252602c81526020018062002ef9602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff161562000448576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff1916600190811790915590565b6001600160a01b038216620004cd576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b620004db60008383620005a8565b620004f781600254620005ad60201b620019f21790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200052a918390620019f2620005ad821b17901c565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6006546000906001600160a01b03166200059962000376565b6001600160a01b031614905090565b505050565b60008282018381101562000608576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b82805482825590600052602060002090810192821562000658579160200282015b828111156200065857825182906001600160401b031690559160200191906001019062000630565b506200066692915062000721565b5090565b82805482825590600052602060002090810192821562000658579160200282015b8281111562000658578251829061ffff169055916020019190600101906200068b565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620006f157805160ff191683800117855562000658565b8280016001018555821562000658579182015b828111156200065857825182559160200191906001019062000704565b5b8082111562000666576000815560010162000722565b6127b180620007486000396000f3fe608060405234801561001057600080fd5b50600436106102bb5760003560e01c806369356d4711610182578063a457c2d7116100e9578063cf011b26116100a2578063ee2a95351161007c578063ee2a953514610822578063f2fde38b1461082a578063ff87fc7c14610850578063ffa8226e146103a5576102bb565b8063cf011b26146107a8578063dd62ed3e146107ce578063ebca1bd9146107fc576102bb565b8063a457c2d7146106fd578063a6431bba14610729578063a9059cbb14610731578063b87c5a4a1461075d578063c3bdf61314610783578063c6d69a301461078b576102bb565b80638d3cc8181161013b5780638d3cc8181461069a5780638da5cb5b146106a257806393995d4b146106aa57806395d89b41146106d05780639662676c146106d85780639d6b5f21146106e0576102bb565b806369356d47146105ec5780636e34bce71461061257806370a0823114610638578063715018a61461065e578063771a3a1d1461066657806379cc67901461066e576102bb565b806340c10f191161022657806354575af4116101df57806354575af41461055b578063570ca735146105915780635c29908d1461059957806365bbacd9146105b657806366206ce9146105be578063663349e8146105e4576102bb565b806340c10f19146104dd57806342966c681461050957806342c6b4f1146105265780634456eda2146105435780634e20a02c1461054b5780634f6d38d014610553576102bb565b806329605e771161027857806329605e77146103fd578063313ce567146104235780633758e6ce1461044157806339509351146104675780633e5f13d4146104935780633f07d76a146104b7576102bb565b806306fdde03146102c0578063092193ab1461033d578063095ea7b3146103655780631017bc36146103a557806318160ddd146103bf57806323b872dd146103c7575b600080fd5b6102c8610858565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103025781810151838201526020016102ea565b50505050905090810190601f16801561032f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103636004803603602081101561035357600080fd5b50356001600160a01b03166108ef565b005b6103916004803603604081101561037b57600080fd5b506001600160a01b038135169060200135610a0c565b604080519115158252519081900360200190f35b6103ad610a2a565b60408051918252519081900360200190f35b6103ad610a2f565b610391600480360360608110156103dd57600080fd5b506001600160a01b03813581169160208101359091169060400135610a35565b6103636004803603602081101561041357600080fd5b50356001600160a01b0316610b10565b61042b610b8d565b6040805160ff9092168252519081900360200190f35b6103916004803603602081101561045757600080fd5b50356001600160a01b0316610b96565b6103916004803603604081101561047d57600080fd5b506001600160a01b038135169060200135610c8b565b61049b610cd9565b604080516001600160a01b039092168252519081900360200190f35b610363600480360360208110156104cd57600080fd5b50356001600160a01b0316610ce8565b610391600480360360408110156104f357600080fd5b506001600160a01b038135169060200135610def565b6103636004803603602081101561051f57600080fd5b5035610e69565b6103ad6004803603602081101561053c57600080fd5b5035610e72565b610391610e90565b6103ad610eb6565b6103ad610ec4565b6103636004803603606081101561057157600080fd5b506001600160a01b03813581169160208101359160409091013516610eca565b61049b610f9b565b6103ad600480360360208110156105af57600080fd5b5035610faa565b610363610fb7565b610391600480360360408110156105d457600080fd5b5060ff8135169060200135611013565b61049b611149565b6103636004803603602081101561060257600080fd5b50356001600160a01b0316611158565b6103636004803603602081101561062857600080fd5b50356001600160a01b031661120c565b6103ad6004803603602081101561064e57600080fd5b50356001600160a01b03166112cb565b6103636112e6565b6103ad6113aa565b6103636004803603604081101561068457600080fd5b506001600160a01b0381351690602001356113b0565b610391611407565b61049b611417565b610391600480360360208110156106c057600080fd5b50356001600160a01b031661142b565b6102c8611517565b610391611578565b610391600480360360208110156106f657600080fd5b5035611588565b6103916004803603604081101561071357600080fd5b506001600160a01b0381351690602001356115e1565b6103ad611649565b6103916004803603604081101561074757600080fd5b506001600160a01b03813516906020013561164f565b6103916004803603604081101561077357600080fd5b5060ff8135169060200135611663565b61049b61170c565b610363600480360360208110156107a157600080fd5b503561171b565b610391600480360360208110156107be57600080fd5b50356001600160a01b031661180c565b6103ad600480360360408110156107e457600080fd5b506001600160a01b0381358116916020013516611821565b6103916004803603602081101561081257600080fd5b50356001600160a01b031661184c565b6103ad61186a565b6103636004803603602081101561084057600080fd5b50356001600160a01b0316611870565b610363611990565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108e45780601f106108b9576101008083540402835291602001916108e4565b820191906000526020600020905b8154815290600101906020018083116108c757829003601f168201915b505050505090505b90565b6006546001600160a01b031633146109385760405162461bcd60e51b81526004018080602001828103825260248152602001806125fb6024913960400191505060405180910390fd5b600654600160a01b900460ff1615610997576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b0381166109e2576040805162461bcd60e51b815260206004820152600d60248201526c0857d9d95b995cda5cd41bdbdb609a1b604482015290519081900360640190fd5b6006805460ff60a01b1916600160a01b179055610a098169054b40b1f852bda00000611a53565b50565b6000610a20610a19611b43565b8484611b47565b5060015b92915050565b600081565b60025490565b600b5460009081908190600160a01b900460ff1615610a76576000610a58611c33565b9050610a6381611d07565b9250600a54811015610a7457600191505b505b811580610a9b57506001600160a01b0386166000908152600e602052604090205460ff165b15610ab057610aab868686611e15565b610abe565b610abc86868684611f70565b505b610b0486610aca611b43565b610aff8760405180606001604052806028815260200161258160289139610af88c610af3611b43565b611821565b9190611fe9565b611b47565b50600195945050505050565b610b18611b43565b6001600160a01b0316610b29611417565b6001600160a01b031614610b84576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a0981612080565b60055460ff1690565b6000610ba0610e90565b80610bb557506008546001600160a01b031633145b610bf05760405162461bcd60e51b815260040180806020018281038252602c815260200180612707602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610c5e576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b6000610a20610c98611b43565b84610aff8560016000610ca9611b43565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906119f2565b6008546001600160a01b031681565b610cf0610e90565b80610d0557506008546001600160a01b031633145b610d405760405162461bcd60e51b815260040180806020018281038252602c815260200180612707602c913960400191505060405180910390fd5b6001600160a01b038116610d855760405162461bcd60e51b815260040180806020018281038252602681526020018061250d6026913960400191505060405180910390fd5b600854604080516001600160a01b039283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b03163314610e3b5760405162461bcd60e51b81526004018080602001828103825260248152602001806125fb6024913960400191505060405180910390fd5b6000610e46846112cb565b9050610e528484611a53565b6000610e5d856112cb565b91909111949350505050565b610a0981612126565b600c8181548110610e7f57fe5b600091825260209091200154905081565b6006546000906001600160a01b0316610ea7611b43565b6001600160a01b031614905090565b69054b40b1f852bda0000081565b600a5481565b6006546001600160a01b03163314610f135760405162461bcd60e51b81526004018080602001828103825260248152602001806125fb6024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610f6a57600080fd5b505af1158015610f7e573d6000803e3d6000fd5b505050506040513d6020811015610f9457600080fd5b5050505050565b6006546001600160a01b031690565b600d8181548110610e7f57fe5b6008546001600160a01b03163314611004576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b600b805460ff60a01b19169055565b6008546000906001600160a01b03163314611063576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b61106b611649565b8360ff16106110ab5760405162461bcd60e51b815260040180806020018281038252602a81526020018061261f602a913960400191505060405180910390fd5b60ff8316156110dd57600c6001840360ff16815481106110c757fe5b906000526020600020015482116110dd57600080fd5b6110f060016110ea611649565b90612137565b8360ff16101561112357600c8360010160ff168154811061110d57fe5b9060005260206000200154821061112357600080fd5b81600c8460ff168154811061113457fe5b60009182526020909120015550600192915050565b6007546001600160a01b031681565b6008546001600160a01b031633146111a5576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b6001600160a01b0381166111ea5760405162461bcd60e51b815260040180806020018281038252602e8152602001806125a9602e913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b611214610e90565b8061122957506008546001600160a01b031633145b6112645760405162461bcd60e51b815260040180806020018281038252602c815260200180612707602c913960400191505060405180910390fd5b6001600160a01b0381166112a95760405162461bcd60e51b815260040180806020018281038252602281526020018061269c6022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b6112ee611b43565b6001600160a01b03166112ff611417565b6001600160a01b03161461135a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60095481565b6006546001600160a01b031633146113f95760405162461bcd60e51b81526004018080602001828103825260248152602001806125fb6024913960400191505060405180910390fd5b6114038282612194565b5050565b600b54600160a01b900460ff1681565b60055461010090046001600160a01b031690565b6000611435610e90565b8061144a57506008546001600160a01b031633145b6114855760405162461bcd60e51b815260040180806020018281038252602c815260200180612707602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff166114f2576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108e45780601f106108b9576101008083540402835291602001916108e4565b600654600160a01b900460ff1681565b6008546000906001600160a01b031633146115d8576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b600a9190915590565b6000610a206115ee611b43565b84610aff856040518060600160405280602581526020016127576025913960016000611618611b43565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fe9565b600c5490565b6000610a2061165c611b43565b8484611e15565b6008546000906001600160a01b031633146116b3576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b6116bb61186a565b8360ff16106116fb5760405162461bcd60e51b815260040180806020018281038252602a81526020018061261f602a913960400191505060405180910390fd5b81600d8460ff168154811061113457fe5b600b546001600160a01b031681565b6008546001600160a01b03163314611768576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff16156117b15760405162461bcd60e51b81526004018080602001828103825260248152602001806126be6024913960400191505060405180910390fd5b6127108110611807576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5490565b611878611b43565b6001600160a01b0316611889611417565b6001600160a01b0316146118e4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166119295760405162461bcd60e51b815260040180806020018281038252602681526020018061247f6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160a01b031633146119dd576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b600b805460ff60a01b1916600160a01b179055565b600082820183811015611a4c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216611aae576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611aba600083836121dd565b600254611ac790826119f2565b6002556001600160a01b038216600090815260208190526040902054611aed90826119f2565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b3390565b6001600160a01b038316611b8c5760405162461bcd60e51b81526004018080602001828103825260248152602001806127336024913960400191505060405180910390fd5b6001600160a01b038216611bd15760405162461bcd60e51b81526004018080602001828103825260228152602001806124a56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60075460408051633ddac95360e01b8152306004820152670de0b6b3a7640000602482015290516000926001600160a01b031691633ddac953916044808301926020929190829003018186803b158015611c8c57600080fd5b505afa925050508015611cb157506040513d6020811015611cac57600080fd5b505160015b611cec5760405162461bcd60e51b81526004018080602001828103825260328152602001806126496032913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff1690506108ec565b600b54600090600160a01b900460ff1615610c86576000611d346001611d2b611649565b60ff16906121e2565b90505b600c8160ff1681548110611d4757fe5b90600052602060002001548310611e0c57612710600d8260ff1681548110611d6b57fe5b906000526020600020015410611dc8576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff1681548110611dd857fe5b9060005260206000200154600981905550600d8160ff1681548110611df957fe5b9060005260206000200154915050610c86565b60001901611d37565b6001600160a01b038316611e5a5760405162461bcd60e51b81526004018080602001828103825260258152602001806126e26025913960400191505060405180910390fd5b6001600160a01b038216611e9f5760405162461bcd60e51b815260040180806020018281038252602381526020018061243a6023913960400191505060405180910390fd5b611eaa8383836121dd565b611ee7816040518060600160405280602681526020016124e7602691396001600160a01b0386166000908152602081905260409020549190611fe9565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f1690826119f2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080611f94612710611f8e6009548761222490919063ffffffff16565b9061227d565b90506000611fa28583612137565b90508315611fb957611fb48783612194565b611fd1565b600b54611fd19088906001600160a01b031684611e15565b611fdc878783611e15565b5060019695505050505050565b600081848411156120785760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561203d578181015183820152602001612025565b50505050905090810190601f16801561206a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0381166120c55760405162461bcd60e51b815260040180806020018281038252602d815260200180612533602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a361210481611870565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b610a09612131611b43565b826122e4565b60008282111561218e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006121bf826040518060600160405280602481526020016125d760249139610af886610af3611b43565b90506121d3836121cd611b43565b83611b47565b6121dd83836122e4565b505050565b6000611a4c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506123e0565b60008261223357506000610a24565b8282028284828161224057fe5b0414611a4c5760405162461bcd60e51b81526004018080602001828103825260218152602001806125606021913960400191505060405180910390fd5b60008082116122d3576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816122dc57fe5b049392505050565b6001600160a01b0382166123295760405162461bcd60e51b815260040180806020018281038252602181526020018061267b6021913960400191505060405180910390fd5b612335826000836121dd565b6123728160405180606001604052806022815260200161245d602291396001600160a01b0385166000908152602081905260409020549190611fe9565b6001600160a01b0383166000908152602081905260409020556002546123989082612137565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff16111582906120785760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561203d57818101518382015260200161202556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f66207461782074696572734449434b444f473a206661696c656420746f206665746368204449434b444f472070726963652066726f6d204f7261636c6545524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207bd191a63c175ecbef75e6d10bf636a4dc54e3da50116754889d847dc9dea07964736f6c634300060c003343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f66666963650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b96e96317260b56b9f21ee34e544bbe8ea9f6864

Deployed ByteCode

0x608060405234801561001057600080fd5b50600436106102bb5760003560e01c806369356d4711610182578063a457c2d7116100e9578063cf011b26116100a2578063ee2a95351161007c578063ee2a953514610822578063f2fde38b1461082a578063ff87fc7c14610850578063ffa8226e146103a5576102bb565b8063cf011b26146107a8578063dd62ed3e146107ce578063ebca1bd9146107fc576102bb565b8063a457c2d7146106fd578063a6431bba14610729578063a9059cbb14610731578063b87c5a4a1461075d578063c3bdf61314610783578063c6d69a301461078b576102bb565b80638d3cc8181161013b5780638d3cc8181461069a5780638da5cb5b146106a257806393995d4b146106aa57806395d89b41146106d05780639662676c146106d85780639d6b5f21146106e0576102bb565b806369356d47146105ec5780636e34bce71461061257806370a0823114610638578063715018a61461065e578063771a3a1d1461066657806379cc67901461066e576102bb565b806340c10f191161022657806354575af4116101df57806354575af41461055b578063570ca735146105915780635c29908d1461059957806365bbacd9146105b657806366206ce9146105be578063663349e8146105e4576102bb565b806340c10f19146104dd57806342966c681461050957806342c6b4f1146105265780634456eda2146105435780634e20a02c1461054b5780634f6d38d014610553576102bb565b806329605e771161027857806329605e77146103fd578063313ce567146104235780633758e6ce1461044157806339509351146104675780633e5f13d4146104935780633f07d76a146104b7576102bb565b806306fdde03146102c0578063092193ab1461033d578063095ea7b3146103655780631017bc36146103a557806318160ddd146103bf57806323b872dd146103c7575b600080fd5b6102c8610858565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103025781810151838201526020016102ea565b50505050905090810190601f16801561032f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103636004803603602081101561035357600080fd5b50356001600160a01b03166108ef565b005b6103916004803603604081101561037b57600080fd5b506001600160a01b038135169060200135610a0c565b604080519115158252519081900360200190f35b6103ad610a2a565b60408051918252519081900360200190f35b6103ad610a2f565b610391600480360360608110156103dd57600080fd5b506001600160a01b03813581169160208101359091169060400135610a35565b6103636004803603602081101561041357600080fd5b50356001600160a01b0316610b10565b61042b610b8d565b6040805160ff9092168252519081900360200190f35b6103916004803603602081101561045757600080fd5b50356001600160a01b0316610b96565b6103916004803603604081101561047d57600080fd5b506001600160a01b038135169060200135610c8b565b61049b610cd9565b604080516001600160a01b039092168252519081900360200190f35b610363600480360360208110156104cd57600080fd5b50356001600160a01b0316610ce8565b610391600480360360408110156104f357600080fd5b506001600160a01b038135169060200135610def565b6103636004803603602081101561051f57600080fd5b5035610e69565b6103ad6004803603602081101561053c57600080fd5b5035610e72565b610391610e90565b6103ad610eb6565b6103ad610ec4565b6103636004803603606081101561057157600080fd5b506001600160a01b03813581169160208101359160409091013516610eca565b61049b610f9b565b6103ad600480360360208110156105af57600080fd5b5035610faa565b610363610fb7565b610391600480360360408110156105d457600080fd5b5060ff8135169060200135611013565b61049b611149565b6103636004803603602081101561060257600080fd5b50356001600160a01b0316611158565b6103636004803603602081101561062857600080fd5b50356001600160a01b031661120c565b6103ad6004803603602081101561064e57600080fd5b50356001600160a01b03166112cb565b6103636112e6565b6103ad6113aa565b6103636004803603604081101561068457600080fd5b506001600160a01b0381351690602001356113b0565b610391611407565b61049b611417565b610391600480360360208110156106c057600080fd5b50356001600160a01b031661142b565b6102c8611517565b610391611578565b610391600480360360208110156106f657600080fd5b5035611588565b6103916004803603604081101561071357600080fd5b506001600160a01b0381351690602001356115e1565b6103ad611649565b6103916004803603604081101561074757600080fd5b506001600160a01b03813516906020013561164f565b6103916004803603604081101561077357600080fd5b5060ff8135169060200135611663565b61049b61170c565b610363600480360360208110156107a157600080fd5b503561171b565b610391600480360360208110156107be57600080fd5b50356001600160a01b031661180c565b6103ad600480360360408110156107e457600080fd5b506001600160a01b0381358116916020013516611821565b6103916004803603602081101561081257600080fd5b50356001600160a01b031661184c565b6103ad61186a565b6103636004803603602081101561084057600080fd5b50356001600160a01b0316611870565b610363611990565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108e45780601f106108b9576101008083540402835291602001916108e4565b820191906000526020600020905b8154815290600101906020018083116108c757829003601f168201915b505050505090505b90565b6006546001600160a01b031633146109385760405162461bcd60e51b81526004018080602001828103825260248152602001806125fb6024913960400191505060405180910390fd5b600654600160a01b900460ff1615610997576040805162461bcd60e51b815260206004820152601860248201527f6f6e6c792063616e2064697374726962757465206f6e63650000000000000000604482015290519081900360640190fd5b6001600160a01b0381166109e2576040805162461bcd60e51b815260206004820152600d60248201526c0857d9d95b995cda5cd41bdbdb609a1b604482015290519081900360640190fd5b6006805460ff60a01b1916600160a01b179055610a098169054b40b1f852bda00000611a53565b50565b6000610a20610a19611b43565b8484611b47565b5060015b92915050565b600081565b60025490565b600b5460009081908190600160a01b900460ff1615610a76576000610a58611c33565b9050610a6381611d07565b9250600a54811015610a7457600191505b505b811580610a9b57506001600160a01b0386166000908152600e602052604090205460ff165b15610ab057610aab868686611e15565b610abe565b610abc86868684611f70565b505b610b0486610aca611b43565b610aff8760405180606001604052806028815260200161258160289139610af88c610af3611b43565b611821565b9190611fe9565b611b47565b50600195945050505050565b610b18611b43565b6001600160a01b0316610b29611417565b6001600160a01b031614610b84576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610a0981612080565b60055460ff1690565b6000610ba0610e90565b80610bb557506008546001600160a01b031633145b610bf05760405162461bcd60e51b815260040180806020018281038252602c815260200180612707602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff1615610c5e576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e2774206265206578636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b0381166000908152600e60205260409020805460ff191660019081179091555b919050565b6000610a20610c98611b43565b84610aff8560016000610ca9611b43565b6001600160a01b03908116825260208083019390935260409182016000908120918c1681529252902054906119f2565b6008546001600160a01b031681565b610cf0610e90565b80610d0557506008546001600160a01b031633145b610d405760405162461bcd60e51b815260040180806020018281038252602c815260200180612707602c913960400191505060405180910390fd5b6001600160a01b038116610d855760405162461bcd60e51b815260040180806020018281038252602681526020018061250d6026913960400191505060405180910390fd5b600854604080516001600160a01b039283168152918316602083015280517f75237613d1cfb394eb7979839ecbeacaca4592ef0cf96791979625803948a6019281900390910190a1600880546001600160a01b0319166001600160a01b0392909216919091179055565b6006546000906001600160a01b03163314610e3b5760405162461bcd60e51b81526004018080602001828103825260248152602001806125fb6024913960400191505060405180910390fd5b6000610e46846112cb565b9050610e528484611a53565b6000610e5d856112cb565b91909111949350505050565b610a0981612126565b600c8181548110610e7f57fe5b600091825260209091200154905081565b6006546000906001600160a01b0316610ea7611b43565b6001600160a01b031614905090565b69054b40b1f852bda0000081565b600a5481565b6006546001600160a01b03163314610f135760405162461bcd60e51b81526004018080602001828103825260248152602001806125fb6024913960400191505060405180910390fd5b826001600160a01b031663a9059cbb82846040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015610f6a57600080fd5b505af1158015610f7e573d6000803e3d6000fd5b505050506040513d6020811015610f9457600080fd5b5050505050565b6006546001600160a01b031690565b600d8181548110610e7f57fe5b6008546001600160a01b03163314611004576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b600b805460ff60a01b19169055565b6008546000906001600160a01b03163314611063576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b61106b611649565b8360ff16106110ab5760405162461bcd60e51b815260040180806020018281038252602a81526020018061261f602a913960400191505060405180910390fd5b60ff8316156110dd57600c6001840360ff16815481106110c757fe5b906000526020600020015482116110dd57600080fd5b6110f060016110ea611649565b90612137565b8360ff16101561112357600c8360010160ff168154811061110d57fe5b9060005260206000200154821061112357600080fd5b81600c8460ff168154811061113457fe5b60009182526020909120015550600192915050565b6007546001600160a01b031681565b6008546001600160a01b031633146111a5576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b6001600160a01b0381166111ea5760405162461bcd60e51b815260040180806020018281038252602e8152602001806125a9602e913960400191505060405180910390fd5b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b611214610e90565b8061122957506008546001600160a01b031633145b6112645760405162461bcd60e51b815260040180806020018281038252602c815260200180612707602c913960400191505060405180910390fd5b6001600160a01b0381166112a95760405162461bcd60e51b815260040180806020018281038252602281526020018061269c6022913960400191505060405180910390fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b031660009081526020819052604090205490565b6112ee611b43565b6001600160a01b03166112ff611417565b6001600160a01b03161461135a576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b60055460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a360058054610100600160a81b0319169055565b60095481565b6006546001600160a01b031633146113f95760405162461bcd60e51b81526004018080602001828103825260248152602001806125fb6024913960400191505060405180910390fd5b6114038282612194565b5050565b600b54600160a01b900460ff1681565b60055461010090046001600160a01b031690565b6000611435610e90565b8061144a57506008546001600160a01b031633145b6114855760405162461bcd60e51b815260040180806020018281038252602c815260200180612707602c913960400191505060405180910390fd5b6001600160a01b0382166000908152600e602052604090205460ff166114f2576040805162461bcd60e51b815260206004820152601960248201527f616464726573732063616e277420626520696e636c7564656400000000000000604482015290519081900360640190fd5b506001600160a01b03166000908152600e60205260409020805460ff19169055600190565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108e45780601f106108b9576101008083540402835291602001916108e4565b600654600160a01b900460ff1681565b6008546000906001600160a01b031633146115d8576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b600a9190915590565b6000610a206115ee611b43565b84610aff856040518060600160405280602581526020016127576025913960016000611618611b43565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611fe9565b600c5490565b6000610a2061165c611b43565b8484611e15565b6008546000906001600160a01b031633146116b3576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b6116bb61186a565b8360ff16106116fb5760405162461bcd60e51b815260040180806020018281038252602a81526020018061261f602a913960400191505060405180910390fd5b81600d8460ff168154811061113457fe5b600b546001600160a01b031681565b6008546001600160a01b03163314611768576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b600b54600160a01b900460ff16156117b15760405162461bcd60e51b81526004018080602001828103825260248152602001806126be6024913960400191505060405180910390fd5b6127108110611807576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600955565b600e6020526000908152604090205460ff1681565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03166000908152600e602052604090205460ff1690565b600d5490565b611878611b43565b6001600160a01b0316611889611417565b6001600160a01b0316146118e4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166119295760405162461bcd60e51b815260040180806020018281038252602681526020018061247f6026913960400191505060405180910390fd5b6005546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6008546001600160a01b031633146119dd576040805162461bcd60e51b815260206004820152601c60248201526000805160206124c7833981519152604482015290519081900360640190fd5b600b805460ff60a01b1916600160a01b179055565b600082820183811015611a4c576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b6001600160a01b038216611aae576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611aba600083836121dd565b600254611ac790826119f2565b6002556001600160a01b038216600090815260208190526040902054611aed90826119f2565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b3390565b6001600160a01b038316611b8c5760405162461bcd60e51b81526004018080602001828103825260248152602001806127336024913960400191505060405180910390fd5b6001600160a01b038216611bd15760405162461bcd60e51b81526004018080602001828103825260228152602001806124a56022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b60075460408051633ddac95360e01b8152306004820152670de0b6b3a7640000602482015290516000926001600160a01b031691633ddac953916044808301926020929190829003018186803b158015611c8c57600080fd5b505afa925050508015611cb157506040513d6020811015611cac57600080fd5b505160015b611cec5760405162461bcd60e51b81526004018080602001828103825260328152602001806126496032913960400191505060405180910390fd5b71ffffffffffffffffffffffffffffffffffff1690506108ec565b600b54600090600160a01b900460ff1615610c86576000611d346001611d2b611649565b60ff16906121e2565b90505b600c8160ff1681548110611d4757fe5b90600052602060002001548310611e0c57612710600d8260ff1681548110611d6b57fe5b906000526020600020015410611dc8576040805162461bcd60e51b815260206004820152601b60248201527f74617820657175616c206f722062696767657220746f20313030250000000000604482015290519081900360640190fd5b600d8160ff1681548110611dd857fe5b9060005260206000200154600981905550600d8160ff1681548110611df957fe5b9060005260206000200154915050610c86565b60001901611d37565b6001600160a01b038316611e5a5760405162461bcd60e51b81526004018080602001828103825260258152602001806126e26025913960400191505060405180910390fd5b6001600160a01b038216611e9f5760405162461bcd60e51b815260040180806020018281038252602381526020018061243a6023913960400191505060405180910390fd5b611eaa8383836121dd565b611ee7816040518060600160405280602681526020016124e7602691396001600160a01b0386166000908152602081905260409020549190611fe9565b6001600160a01b038085166000908152602081905260408082209390935590841681522054611f1690826119f2565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600080611f94612710611f8e6009548761222490919063ffffffff16565b9061227d565b90506000611fa28583612137565b90508315611fb957611fb48783612194565b611fd1565b600b54611fd19088906001600160a01b031684611e15565b611fdc878783611e15565b5060019695505050505050565b600081848411156120785760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561203d578181015183820152602001612025565b50505050905090810190601f16801561206a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0381166120c55760405162461bcd60e51b815260040180806020018281038252602d815260200180612533602d913960400191505060405180910390fd5b6040516001600160a01b038216906000907f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed908290a361210481611870565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b610a09612131611b43565b826122e4565b60008282111561218e576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60006121bf826040518060600160405280602481526020016125d760249139610af886610af3611b43565b90506121d3836121cd611b43565b83611b47565b6121dd83836122e4565b505050565b6000611a4c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506123e0565b60008261223357506000610a24565b8282028284828161224057fe5b0414611a4c5760405162461bcd60e51b81526004018080602001828103825260218152602001806125606021913960400191505060405180910390fd5b60008082116122d3576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816122dc57fe5b049392505050565b6001600160a01b0382166123295760405162461bcd60e51b815260040180806020018281038252602181526020018061267b6021913960400191505060405180910390fd5b612335826000836121dd565b6123728160405180606001604052806022815260200161245d602291396001600160a01b0385166000908152602081905260409020549190611fe9565b6001600160a01b0383166000908152602081905260409020556002546123989082612137565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008360ff168360ff16111582906120785760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561203d57818101518382015260200161202556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520746178206f66666963650000000045524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365746178206f666669636520616464726573732063616e6e6f74206265203020616464726573736f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f72536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636574617820636f6c6c6563746f722061646472657373206d757374206265206e6f6e2d7a65726f206164647265737345524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f72496e6465782068617320746f206c6f776572207468616e20636f756e74206f66207461782074696572734449434b444f473a206661696c656420746f206665746368204449434b444f472070726963652066726f6d204f7261636c6545524332303a206275726e2066726f6d20746865207a65726f20616464726573736f7261636c6520616464726573732063616e6e6f74206265203020616464726573736175746f2063616c63756c617465207461782063616e6e6f7420626520656e61626c656445524332303a207472616e736665722066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f7420746865206f70657261746f72206f722074686520746178206f666669636545524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa26469706673582212207bd191a63c175ecbef75e6d10bf636a4dc54e3da50116754889d847dc9dea07964736f6c634300060c0033