ETH Price: $3,168.25 (-4.08%)
Gas: 11 Gwei

Token

DOGEKAKI (KAKI)
 

Overview

Max Total Supply

100,000,000,000,000 KAKI

Holders

187

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
51,370,693,550.174295869155372029 KAKI

Value
$0.00
0x2ad3049ea6ccbff0e5a44caaf4905ee177b23062
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DogeKaki

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-07
*/

// File: ISwapFactory.sol


pragma solidity ^0.8.4;

interface ISwapFactory {
    function createPair(address tokenA, address tokenB) external returns (address pair);
}
// File: ISwapRouter.sol


pragma solidity ^0.8.4;

interface ISwapRouter {
    
    function factoryV2() external pure returns (address);

    function factory() external pure returns (address);

    function WETH() external pure returns (address);
    
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to
    ) external;

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

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    
    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
    
}
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

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

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

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

// File: DogKaki.sol



pragma solidity ^0.8.0;






contract DogeKaki is ERC20,Ownable{
    
    using SafeMath for uint256;
    
    address public refund;
    
    ISwapRouter private uniswapV2Router;

    address uniswapV2Pair;

    address weth=0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;//main

    uint256 public rate=2;

    address swap;
    
    mapping(address => bool) private whiteList;

    constructor(address _swap) ERC20("DOGEKAKI", "KAKI") {
        refund=0x86427405AbED9152287ae856b283Ee825F672C3e;
        address owner=0x6b2520893e3B06EE21ADd36415065EC6F6142F04;
        _mint(owner, 100000000000000 * 10 ** decimals());
        uniswapV2Router = ISwapRouter(_swap);
        uniswapV2Pair = ISwapFactory(uniswapV2Router.factory()).createPair(address(this), weth);
        ERC20(uniswapV2Pair).approve(_swap, ~uint256(0));
        _approve(address(this), address(uniswapV2Router),type(uint256).max);
        _approve(owner, address(uniswapV2Router),type(uint256).max);
        swap=_swap;
        ERC20(weth).approve(address(uniswapV2Router), type(uint256).max);
        whiteList[owner]=true;
        whiteList[address(this)]=true;
        whiteList[swap] = true;
        whiteList[uniswapV2Pair] = true;
    }

    function withdawOwner(uint256 amount) external onlyOwner{
        payable(msg.sender).transfer(amount);
    }
    
    function setPair(address _pair) external onlyOwner{
        uniswapV2Pair=_pair;
        ERC20(uniswapV2Pair).approve(swap, ~uint256(0));
    }

    function setSwap(address _swap) external onlyOwner{
        swap=_swap;
        uniswapV2Router = ISwapRouter(_swap);
        _approve(address(this), address(uniswapV2Router),type(uint256).max);
    }

    function setRate(uint256 _rate) external onlyOwner{
        rate=_rate;
    }
    
    function setRefund(address _addr) external onlyOwner{
        refund=_addr;
    }

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(amount > 0, "amount must gt 0");
        if(from != uniswapV2Pair && to != uniswapV2Pair) {
            super._transfer(from, to, amount);
            return;
        }
        if(from == uniswapV2Pair&&!whiteList[to]) {
            super._transfer(from, to, amount.mul(100-rate).div(100));
            super._transfer(from, address(this), amount.mul(rate).div(100));
            return;
        }
        if(to == uniswapV2Pair&&!whiteList[from]) {
            super._transfer(from, address(this), amount.mul(rate).div(100));
            swapToken(balanceOf(address(this)),refund);
            super._transfer(from, to, amount.mul(100-rate).div(100));
            return;
        }
        super._transfer(from, to, amount);
    }
    
    function swapToken(uint256 tokenAmount,address to) private lockTheSwap {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = weth;
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp);
    }

    bool private inSwap;
    modifier lockTheSwap {
        inSwap = true;
        _;
        inSwap = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_swap","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rate","type":"uint256"}],"name":"setRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"setRefund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_swap","type":"address"}],"name":"setSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405273c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506002600a553480156200006b57600080fd5b506040516200369b3803806200369b833981810160405281019062000091919062000d21565b6040518060400160405280600881526020017f444f47454b414b490000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b414b490000000000000000000000000000000000000000000000000000000081525081600390805190602001906200011592919062000c43565b5080600490805190602001906200012e92919062000c43565b50505062000151620001456200082160201b60201c565b6200082960201b60201c565b7386427405abed9152287ae856b283ee825f672c3e600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000736b2520893e3b06ee21add36415065ec6f6142f0490506200020181620001d4620008ef60201b60201c565b600a620001e2919062000fc2565b655af3107a4000620001f59190620010ff565b620008f860201b60201c565b81600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620002ab57600080fd5b505afa158015620002c0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002e6919062000d21565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016200034492919062000e1c565b602060405180830381600087803b1580156200035f57600080fd5b505af115801562000374573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200039a919062000d21565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3836000196040518363ffffffff1660e01b81526004016200043b92919062000e49565b602060405180830381600087803b1580156200045657600080fd5b505af11580156200046b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000491919062000d53565b50620004e730600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000a6660201b60201c565b6200053c81600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff62000a6660201b60201c565b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b81526004016200061e92919062000e49565b602060405180830381600087803b1580156200063957600080fd5b505af11580156200064e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000674919062000d53565b506001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600c6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505062001358565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200096b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009629062000eba565b60405180910390fd5b6200097f6000838362000c3960201b60201c565b806002600082825462000993919062000f0a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000a46919062000edc565b60405180910390a362000a626000838362000c3e60201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000ad9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ad09062000e98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000b4c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b439062000e76565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000c2c919062000edc565b60405180910390a3505050565b505050565b505050565b82805462000c5190620011b7565b90600052602060002090601f01602090048101928262000c75576000855562000cc1565b82601f1062000c9057805160ff191683800117855562000cc1565b8280016001018555821562000cc1579182015b8281111562000cc057825182559160200191906001019062000ca3565b5b50905062000cd0919062000cd4565b5090565b5b8082111562000cef57600081600090555060010162000cd5565b5090565b60008151905062000d048162001324565b92915050565b60008151905062000d1b816200133e565b92915050565b60006020828403121562000d3a5762000d396200124b565b5b600062000d4a8482850162000cf3565b91505092915050565b60006020828403121562000d6c5762000d6b6200124b565b5b600062000d7c8482850162000d0a565b91505092915050565b62000d908162001160565b82525050565b600062000da560228362000ef9565b915062000db2826200125d565b604082019050919050565b600062000dcc60248362000ef9565b915062000dd982620012ac565b604082019050919050565b600062000df3601f8362000ef9565b915062000e0082620012fb565b602082019050919050565b62000e1681620011a0565b82525050565b600060408201905062000e33600083018562000d85565b62000e42602083018462000d85565b9392505050565b600060408201905062000e60600083018562000d85565b62000e6f602083018462000e0b565b9392505050565b6000602082019050818103600083015262000e918162000d96565b9050919050565b6000602082019050818103600083015262000eb38162000dbd565b9050919050565b6000602082019050818103600083015262000ed58162000de4565b9050919050565b600060208201905062000ef3600083018462000e0b565b92915050565b600082825260208201905092915050565b600062000f1782620011a0565b915062000f2483620011a0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000f5c5762000f5b620011ed565b5b828201905092915050565b6000808291508390505b600185111562000fb95780860481111562000f915762000f90620011ed565b5b600185161562000fa15780820291505b808102905062000fb18562001250565b945062000f71565b94509492505050565b600062000fcf82620011a0565b915062000fdc83620011aa565b92506200100b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462001013565b905092915050565b600082620010255760019050620010f8565b81620010355760009050620010f8565b81600181146200104e576002811462001059576200108f565b6001915050620010f8565b60ff8411156200106e576200106d620011ed565b5b8360020a915084821115620010885762001087620011ed565b5b50620010f8565b5060208310610133831016604e8410600b8410161715620010c95782820a905083811115620010c357620010c2620011ed565b5b620010f8565b620010d8848484600162000f67565b92509050818404811115620010f257620010f1620011ed565b5b81810290505b9392505050565b60006200110c82620011a0565b91506200111983620011a0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620011555762001154620011ed565b5b828202905092915050565b60006200116d8262001180565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006002820490506001821680620011d057607f821691505b60208210811415620011e757620011e66200121c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b60008160011c9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6200132f8162001160565b81146200133b57600080fd5b50565b620013498162001174565b81146200135557600080fd5b50565b61233380620013686000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063590e1ae3116100b857806395d89b411161007c57806395d89b411461032a578063a457c2d714610348578063a9059cbb14610378578063acb3c073146103a8578063dd62ed3e146103c4578063f2fde38b146103f457610137565b8063590e1ae31461029857806370a08231146102b6578063715018a6146102e65780638187f516146102f05780638da5cb5b1461030c57610137565b80632c4e722e116100ff5780632c4e722e146101f45780632d806cdd14610212578063313ce5671461022e57806334fcf4371461024c578063395093511461026857610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a5780631c6a0c4c146101a857806323b872dd146101c4575b600080fd5b610144610410565b6040516101519190611aeb565b60405180910390f35b610174600480360381019061016f919061178b565b6104a2565b6040516101819190611ad0565b60405180910390f35b6101926104c5565b60405161019f9190611c4d565b60405180910390f35b6101c260048036038101906101bd91906117f8565b6104cf565b005b6101de60048036038101906101d99190611738565b610521565b6040516101eb9190611ad0565b60405180910390f35b6101fc610550565b6040516102099190611c4d565b60405180910390f35b61022c600480360381019061022791906116cb565b610556565b005b6102366105a2565b6040516102439190611cc2565b60405180910390f35b610266600480360381019061026191906117f8565b6105ab565b005b610282600480360381019061027d919061178b565b6105bd565b60405161028f9190611ad0565b60405180910390f35b6102a06105f4565b6040516102ad9190611a8c565b60405180910390f35b6102d060048036038101906102cb91906116cb565b61061a565b6040516102dd9190611c4d565b60405180910390f35b6102ee610662565b005b61030a600480360381019061030591906116cb565b610676565b005b610314610796565b6040516103219190611a8c565b60405180910390f35b6103326107c0565b60405161033f9190611aeb565b60405180910390f35b610362600480360381019061035d919061178b565b610852565b60405161036f9190611ad0565b60405180910390f35b610392600480360381019061038d919061178b565b6108c9565b60405161039f9190611ad0565b60405180910390f35b6103c260048036038101906103bd91906116cb565b6108ec565b005b6103de60048036038101906103d991906116f8565b6109c6565b6040516103eb9190611c4d565b60405180910390f35b61040e600480360381019061040991906116cb565b610a4d565b005b60606003805461041f90611ee1565b80601f016020809104026020016040519081016040528092919081815260200182805461044b90611ee1565b80156104985780601f1061046d57610100808354040283529160200191610498565b820191906000526020600020905b81548152906001019060200180831161047b57829003601f168201915b5050505050905090565b6000806104ad610ad1565b90506104ba818585610ad9565b600191505092915050565b6000600254905090565b6104d7610ca4565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561051d573d6000803e3d6000fd5b5050565b60008061052c610ad1565b9050610539858285610d22565b610544858585610dae565b60019150509392505050565b600a5481565b61055e610ca4565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b6105b3610ca4565b80600a8190555050565b6000806105c8610ad1565b90506105e98185856105da85896109c6565b6105e49190611d32565b610ad9565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61066a610ca4565b6106746000611139565b565b61067e610ca4565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196040518363ffffffff1660e01b8152600401610740929190611aa7565b602060405180830381600087803b15801561075a57600080fd5b505af115801561076e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079291906117cb565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107cf90611ee1565b80601f01602080910402602001604051908101604052809291908181526020018280546107fb90611ee1565b80156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b60008061085d610ad1565b9050600061086b82866109c6565b9050838110156108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790611c2d565b60405180910390fd5b6108bd8286868403610ad9565b60019250505092915050565b6000806108d4610ad1565b90506108e1818585610dae565b600191505092915050565b6108f4610ca4565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109c330600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610ad9565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a55610ca4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90611b2d565b60405180910390fd5b610ace81611139565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090611c0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090611b4d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c979190611c4d565b60405180910390a3505050565b610cac610ad1565b73ffffffffffffffffffffffffffffffffffffffff16610cca610796565b73ffffffffffffffffffffffffffffffffffffffff1614610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790611bad565b60405180910390fd5b565b6000610d2e84846109c6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610da85781811015610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190611b6d565b60405180910390fd5b610da78484848403610ad9565b5b50505050565b60008111610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de890611bcd565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610e9d5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610eb257610ead8383836111ff565b611134565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015610f595750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610fd357610f9c8383610f976064610f89600a546064610f7a9190611e13565b8761147790919063ffffffff16565b61148d90919063ffffffff16565b6111ff565b610fce8330610fc96064610fbb600a548761147790919063ffffffff16565b61148d90919063ffffffff16565b6111ff565b611134565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561107a5750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611128576110b183306110ac606461109e600a548761147790919063ffffffff16565b61148d90919063ffffffff16565b6111ff565b6110e56110bd3061061a565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166114a3565b611123838361111e6064611110600a5460646111019190611e13565b8761147790919063ffffffff16565b61148d90919063ffffffff16565b6111ff565b611134565b6111338383836111ff565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690611bed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690611b0d565b60405180910390fd5b6112ea838383611682565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790611b8d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161145e9190611c4d565b60405180910390a3611471848484611687565b50505050565b600081836114859190611db9565b905092915050565b6000818361149b9190611d88565b905092915050565b6001600d60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156114db576114da611fcf565b5b6040519080825280602002602001820160405280156115095781602001602082028036833780820191505090505b509050308160008151811061152157611520611fa0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061159257611591611fa0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958460008486426040518663ffffffff1660e01b8152600401611630959493929190611c68565b600060405180830381600087803b15801561164a57600080fd5b505af115801561165e573d6000803e3d6000fd5b50505050506000600d60006101000a81548160ff0219169083151502179055505050565b505050565b505050565b60008135905061169b816122b8565b92915050565b6000815190506116b0816122cf565b92915050565b6000813590506116c5816122e6565b92915050565b6000602082840312156116e1576116e0611ffe565b5b60006116ef8482850161168c565b91505092915050565b6000806040838503121561170f5761170e611ffe565b5b600061171d8582860161168c565b925050602061172e8582860161168c565b9150509250929050565b60008060006060848603121561175157611750611ffe565b5b600061175f8682870161168c565b93505060206117708682870161168c565b9250506040611781868287016116b6565b9150509250925092565b600080604083850312156117a2576117a1611ffe565b5b60006117b08582860161168c565b92505060206117c1858286016116b6565b9150509250929050565b6000602082840312156117e1576117e0611ffe565b5b60006117ef848285016116a1565b91505092915050565b60006020828403121561180e5761180d611ffe565b5b600061181c848285016116b6565b91505092915050565b6000611831838361183d565b60208301905092915050565b61184681611e47565b82525050565b61185581611e47565b82525050565b600061186682611ced565b6118708185611d10565b935061187b83611cdd565b8060005b838110156118ac5781516118938882611825565b975061189e83611d03565b92505060018101905061187f565b5085935050505092915050565b6118c281611e59565b82525050565b6118d181611e9c565b82525050565b60006118e282611cf8565b6118ec8185611d21565b93506118fc818560208601611eae565b61190581612003565b840191505092915050565b600061191d602383611d21565b915061192882612014565b604082019050919050565b6000611940602683611d21565b915061194b82612063565b604082019050919050565b6000611963602283611d21565b915061196e826120b2565b604082019050919050565b6000611986601d83611d21565b915061199182612101565b602082019050919050565b60006119a9602683611d21565b91506119b48261212a565b604082019050919050565b60006119cc602083611d21565b91506119d782612179565b602082019050919050565b60006119ef601083611d21565b91506119fa826121a2565b602082019050919050565b6000611a12602583611d21565b9150611a1d826121cb565b604082019050919050565b6000611a35602483611d21565b9150611a408261221a565b604082019050919050565b6000611a58602583611d21565b9150611a6382612269565b604082019050919050565b611a7781611e85565b82525050565b611a8681611e8f565b82525050565b6000602082019050611aa1600083018461184c565b92915050565b6000604082019050611abc600083018561184c565b611ac96020830184611a6e565b9392505050565b6000602082019050611ae560008301846118b9565b92915050565b60006020820190508181036000830152611b0581846118d7565b905092915050565b60006020820190508181036000830152611b2681611910565b9050919050565b60006020820190508181036000830152611b4681611933565b9050919050565b60006020820190508181036000830152611b6681611956565b9050919050565b60006020820190508181036000830152611b8681611979565b9050919050565b60006020820190508181036000830152611ba68161199c565b9050919050565b60006020820190508181036000830152611bc6816119bf565b9050919050565b60006020820190508181036000830152611be6816119e2565b9050919050565b60006020820190508181036000830152611c0681611a05565b9050919050565b60006020820190508181036000830152611c2681611a28565b9050919050565b60006020820190508181036000830152611c4681611a4b565b9050919050565b6000602082019050611c626000830184611a6e565b92915050565b600060a082019050611c7d6000830188611a6e565b611c8a60208301876118c8565b8181036040830152611c9c818661185b565b9050611cab606083018561184c565b611cb86080830184611a6e565b9695505050505050565b6000602082019050611cd76000830184611a7d565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000611d3d82611e85565b9150611d4883611e85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d7d57611d7c611f13565b5b828201905092915050565b6000611d9382611e85565b9150611d9e83611e85565b925082611dae57611dad611f42565b5b828204905092915050565b6000611dc482611e85565b9150611dcf83611e85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611e0857611e07611f13565b5b828202905092915050565b6000611e1e82611e85565b9150611e2983611e85565b925082821015611e3c57611e3b611f13565b5b828203905092915050565b6000611e5282611e65565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611ea782611e85565b9050919050565b60005b83811015611ecc578082015181840152602081019050611eb1565b83811115611edb576000848401525b50505050565b60006002820490506001821680611ef957607f821691505b60208210811415611f0d57611f0c611f71565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6122c181611e47565b81146122cc57600080fd5b50565b6122d881611e59565b81146122e357600080fd5b50565b6122ef81611e85565b81146122fa57600080fd5b5056fea2646970667358221220bfb24116661418276264db993e53ddf1f78f1c90872df5ab84d32521b24ad5aa64736f6c634300080700330000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063590e1ae3116100b857806395d89b411161007c57806395d89b411461032a578063a457c2d714610348578063a9059cbb14610378578063acb3c073146103a8578063dd62ed3e146103c4578063f2fde38b146103f457610137565b8063590e1ae31461029857806370a08231146102b6578063715018a6146102e65780638187f516146102f05780638da5cb5b1461030c57610137565b80632c4e722e116100ff5780632c4e722e146101f45780632d806cdd14610212578063313ce5671461022e57806334fcf4371461024c578063395093511461026857610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a5780631c6a0c4c146101a857806323b872dd146101c4575b600080fd5b610144610410565b6040516101519190611aeb565b60405180910390f35b610174600480360381019061016f919061178b565b6104a2565b6040516101819190611ad0565b60405180910390f35b6101926104c5565b60405161019f9190611c4d565b60405180910390f35b6101c260048036038101906101bd91906117f8565b6104cf565b005b6101de60048036038101906101d99190611738565b610521565b6040516101eb9190611ad0565b60405180910390f35b6101fc610550565b6040516102099190611c4d565b60405180910390f35b61022c600480360381019061022791906116cb565b610556565b005b6102366105a2565b6040516102439190611cc2565b60405180910390f35b610266600480360381019061026191906117f8565b6105ab565b005b610282600480360381019061027d919061178b565b6105bd565b60405161028f9190611ad0565b60405180910390f35b6102a06105f4565b6040516102ad9190611a8c565b60405180910390f35b6102d060048036038101906102cb91906116cb565b61061a565b6040516102dd9190611c4d565b60405180910390f35b6102ee610662565b005b61030a600480360381019061030591906116cb565b610676565b005b610314610796565b6040516103219190611a8c565b60405180910390f35b6103326107c0565b60405161033f9190611aeb565b60405180910390f35b610362600480360381019061035d919061178b565b610852565b60405161036f9190611ad0565b60405180910390f35b610392600480360381019061038d919061178b565b6108c9565b60405161039f9190611ad0565b60405180910390f35b6103c260048036038101906103bd91906116cb565b6108ec565b005b6103de60048036038101906103d991906116f8565b6109c6565b6040516103eb9190611c4d565b60405180910390f35b61040e600480360381019061040991906116cb565b610a4d565b005b60606003805461041f90611ee1565b80601f016020809104026020016040519081016040528092919081815260200182805461044b90611ee1565b80156104985780601f1061046d57610100808354040283529160200191610498565b820191906000526020600020905b81548152906001019060200180831161047b57829003601f168201915b5050505050905090565b6000806104ad610ad1565b90506104ba818585610ad9565b600191505092915050565b6000600254905090565b6104d7610ca4565b3373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561051d573d6000803e3d6000fd5b5050565b60008061052c610ad1565b9050610539858285610d22565b610544858585610dae565b60019150509392505050565b600a5481565b61055e610ca4565b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60006012905090565b6105b3610ca4565b80600a8190555050565b6000806105c8610ad1565b90506105e98185856105da85896109c6565b6105e49190611d32565b610ad9565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61066a610ca4565b6106746000611139565b565b61067e610ca4565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166000196040518363ffffffff1660e01b8152600401610740929190611aa7565b602060405180830381600087803b15801561075a57600080fd5b505af115801561076e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061079291906117cb565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546107cf90611ee1565b80601f01602080910402602001604051908101604052809291908181526020018280546107fb90611ee1565b80156108485780601f1061081d57610100808354040283529160200191610848565b820191906000526020600020905b81548152906001019060200180831161082b57829003601f168201915b5050505050905090565b60008061085d610ad1565b9050600061086b82866109c6565b9050838110156108b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108a790611c2d565b60405180910390fd5b6108bd8286868403610ad9565b60019250505092915050565b6000806108d4610ad1565b90506108e1818585610dae565b600191505092915050565b6108f4610ca4565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109c330600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610ad9565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a55610ca4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90611b2d565b60405180910390fd5b610ace81611139565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090611c0d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb090611b4d565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c979190611c4d565b60405180910390a3505050565b610cac610ad1565b73ffffffffffffffffffffffffffffffffffffffff16610cca610796565b73ffffffffffffffffffffffffffffffffffffffff1614610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790611bad565b60405180910390fd5b565b6000610d2e84846109c6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610da85781811015610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190611b6d565b60405180910390fd5b610da78484848403610ad9565b5b50505050565b60008111610df1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de890611bcd565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015610e9d5750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15610eb257610ead8383836111ff565b611134565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148015610f595750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15610fd357610f9c8383610f976064610f89600a546064610f7a9190611e13565b8761147790919063ffffffff16565b61148d90919063ffffffff16565b6111ff565b610fce8330610fc96064610fbb600a548761147790919063ffffffff16565b61148d90919063ffffffff16565b6111ff565b611134565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614801561107a5750600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611128576110b183306110ac606461109e600a548761147790919063ffffffff16565b61148d90919063ffffffff16565b6111ff565b6110e56110bd3061061a565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166114a3565b611123838361111e6064611110600a5460646111019190611e13565b8761147790919063ffffffff16565b61148d90919063ffffffff16565b6111ff565b611134565b6111338383836111ff565b5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561126f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126690611bed565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d690611b0d565b60405180910390fd5b6112ea838383611682565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611370576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136790611b8d565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161145e9190611c4d565b60405180910390a3611471848484611687565b50505050565b600081836114859190611db9565b905092915050565b6000818361149b9190611d88565b905092915050565b6001600d60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156114db576114da611fcf565b5b6040519080825280602002602001820160405280156115095781602001602082028036833780820191505090505b509050308160008151811061152157611520611fa0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168160018151811061159257611591611fa0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d7958460008486426040518663ffffffff1660e01b8152600401611630959493929190611c68565b600060405180830381600087803b15801561164a57600080fd5b505af115801561165e573d6000803e3d6000fd5b50505050506000600d60006101000a81548160ff0219169083151502179055505050565b505050565b505050565b60008135905061169b816122b8565b92915050565b6000815190506116b0816122cf565b92915050565b6000813590506116c5816122e6565b92915050565b6000602082840312156116e1576116e0611ffe565b5b60006116ef8482850161168c565b91505092915050565b6000806040838503121561170f5761170e611ffe565b5b600061171d8582860161168c565b925050602061172e8582860161168c565b9150509250929050565b60008060006060848603121561175157611750611ffe565b5b600061175f8682870161168c565b93505060206117708682870161168c565b9250506040611781868287016116b6565b9150509250925092565b600080604083850312156117a2576117a1611ffe565b5b60006117b08582860161168c565b92505060206117c1858286016116b6565b9150509250929050565b6000602082840312156117e1576117e0611ffe565b5b60006117ef848285016116a1565b91505092915050565b60006020828403121561180e5761180d611ffe565b5b600061181c848285016116b6565b91505092915050565b6000611831838361183d565b60208301905092915050565b61184681611e47565b82525050565b61185581611e47565b82525050565b600061186682611ced565b6118708185611d10565b935061187b83611cdd565b8060005b838110156118ac5781516118938882611825565b975061189e83611d03565b92505060018101905061187f565b5085935050505092915050565b6118c281611e59565b82525050565b6118d181611e9c565b82525050565b60006118e282611cf8565b6118ec8185611d21565b93506118fc818560208601611eae565b61190581612003565b840191505092915050565b600061191d602383611d21565b915061192882612014565b604082019050919050565b6000611940602683611d21565b915061194b82612063565b604082019050919050565b6000611963602283611d21565b915061196e826120b2565b604082019050919050565b6000611986601d83611d21565b915061199182612101565b602082019050919050565b60006119a9602683611d21565b91506119b48261212a565b604082019050919050565b60006119cc602083611d21565b91506119d782612179565b602082019050919050565b60006119ef601083611d21565b91506119fa826121a2565b602082019050919050565b6000611a12602583611d21565b9150611a1d826121cb565b604082019050919050565b6000611a35602483611d21565b9150611a408261221a565b604082019050919050565b6000611a58602583611d21565b9150611a6382612269565b604082019050919050565b611a7781611e85565b82525050565b611a8681611e8f565b82525050565b6000602082019050611aa1600083018461184c565b92915050565b6000604082019050611abc600083018561184c565b611ac96020830184611a6e565b9392505050565b6000602082019050611ae560008301846118b9565b92915050565b60006020820190508181036000830152611b0581846118d7565b905092915050565b60006020820190508181036000830152611b2681611910565b9050919050565b60006020820190508181036000830152611b4681611933565b9050919050565b60006020820190508181036000830152611b6681611956565b9050919050565b60006020820190508181036000830152611b8681611979565b9050919050565b60006020820190508181036000830152611ba68161199c565b9050919050565b60006020820190508181036000830152611bc6816119bf565b9050919050565b60006020820190508181036000830152611be6816119e2565b9050919050565b60006020820190508181036000830152611c0681611a05565b9050919050565b60006020820190508181036000830152611c2681611a28565b9050919050565b60006020820190508181036000830152611c4681611a4b565b9050919050565b6000602082019050611c626000830184611a6e565b92915050565b600060a082019050611c7d6000830188611a6e565b611c8a60208301876118c8565b8181036040830152611c9c818661185b565b9050611cab606083018561184c565b611cb86080830184611a6e565b9695505050505050565b6000602082019050611cd76000830184611a7d565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000611d3d82611e85565b9150611d4883611e85565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611d7d57611d7c611f13565b5b828201905092915050565b6000611d9382611e85565b9150611d9e83611e85565b925082611dae57611dad611f42565b5b828204905092915050565b6000611dc482611e85565b9150611dcf83611e85565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611e0857611e07611f13565b5b828202905092915050565b6000611e1e82611e85565b9150611e2983611e85565b925082821015611e3c57611e3b611f13565b5b828203905092915050565b6000611e5282611e65565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611ea782611e85565b9050919050565b60005b83811015611ecc578082015181840152602081019050611eb1565b83811115611edb576000848401525b50505050565b60006002820490506001821680611ef957607f821691505b60208210811415611f0d57611f0c611f71565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f616d6f756e74206d757374206774203000000000000000000000000000000000600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6122c181611e47565b81146122cc57600080fd5b50565b6122d881611e59565b81146122e357600080fd5b50565b6122ef81611e85565b81146122fa57600080fd5b5056fea2646970667358221220bfb24116661418276264db993e53ddf1f78f1c90872df5ab84d32521b24ad5aa64736f6c63430008070033

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

0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d

-----Decoded View---------------
Arg [0] : _swap (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d


Deployed Bytecode Sourcemap

29841:3218:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18588:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20939:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19708:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31061:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21720:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30105:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31641:83;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19550:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31550:79;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22424:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29927:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19879:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12013:103;;;:::i;:::-;;31184:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11365:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18807:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23165:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20212:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31338:204;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20468:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12271:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18588:100;18642:13;18675:5;18668:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18588:100;:::o;20939:201::-;21022:4;21039:13;21055:12;:10;:12::i;:::-;21039:28;;21078:32;21087:5;21094:7;21103:6;21078:8;:32::i;:::-;21128:4;21121:11;;;20939:201;;;;:::o;19708:108::-;19769:7;19796:12;;19789:19;;19708:108;:::o;31061:111::-;11251:13;:11;:13::i;:::-;31136:10:::1;31128:28;;:36;31157:6;31128:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;31061:111:::0;:::o;21720:295::-;21851:4;21868:15;21886:12;:10;:12::i;:::-;21868:30;;21909:38;21925:4;21931:7;21940:6;21909:15;:38::i;:::-;21958:27;21968:4;21974:2;21978:6;21958:9;:27::i;:::-;22003:4;21996:11;;;21720:295;;;;;:::o;30105:21::-;;;;:::o;31641:83::-;11251:13;:11;:13::i;:::-;31711:5:::1;31704:6;;:12;;;;;;;;;;;;;;;;;;31641:83:::0;:::o;19550:93::-;19608:5;19633:2;19626:9;;19550:93;:::o;31550:79::-;11251:13;:11;:13::i;:::-;31616:5:::1;31611:4;:10;;;;31550:79:::0;:::o;22424:238::-;22512:4;22529:13;22545:12;:10;:12::i;:::-;22529:28;;22568:64;22577:5;22584:7;22621:10;22593:25;22603:5;22610:7;22593:9;:25::i;:::-;:38;;;;:::i;:::-;22568:8;:64::i;:::-;22650:4;22643:11;;;22424:238;;;;:::o;29927:21::-;;;;;;;;;;;;;:::o;19879:127::-;19953:7;19980:9;:18;19990:7;19980:18;;;;;;;;;;;;;;;;19973:25;;19879:127;;;:::o;12013:103::-;11251:13;:11;:13::i;:::-;12078:30:::1;12105:1;12078:18;:30::i;:::-;12013:103::o:0;31184:146::-;11251:13;:11;:13::i;:::-;31259:5:::1;31245:13;;:19;;;;;;;;;;;;;;;;;;31281:13;;;;;;;;;;;31275:28;;;31304:4;;;;;;;;;;;31319:1;31310:11;31275:47;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;31184:146:::0;:::o;11365:87::-;11411:7;11438:6;;;;;;;;;;;11431:13;;11365:87;:::o;18807:104::-;18863:13;18896:7;18889:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18807:104;:::o;23165:436::-;23258:4;23275:13;23291:12;:10;:12::i;:::-;23275:28;;23314:24;23341:25;23351:5;23358:7;23341:9;:25::i;:::-;23314:52;;23405:15;23385:16;:35;;23377:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;23498:60;23507:5;23514:7;23542:15;23523:16;:34;23498:8;:60::i;:::-;23589:4;23582:11;;;;23165:436;;;;:::o;20212:193::-;20291:4;20308:13;20324:12;:10;:12::i;:::-;20308:28;;20347;20357:5;20364:2;20368:6;20347:9;:28::i;:::-;20393:4;20386:11;;;20212:193;;;;:::o;31338:204::-;11251:13;:11;:13::i;:::-;31404:5:::1;31399:4;;:10;;;;;;;;;;;;;;;;;;31450:5;31420:15;;:36;;;;;;;;;;;;;;;;;;31467:67;31484:4;31499:15;;;;;;;;;;;31516:17;31467:8;:67::i;:::-;31338:204:::0;:::o;20468:151::-;20557:7;20584:11;:18;20596:5;20584:18;;;;;;;;;;;;;;;:27;20603:7;20584:27;;;;;;;;;;;;;;;;20577:34;;20468:151;;;;:::o;12271:201::-;11251:13;:11;:13::i;:::-;12380:1:::1;12360:22;;:8;:22;;;;12352:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12436:28;12455:8;12436:18;:28::i;:::-;12271:201:::0;:::o;9916:98::-;9969:7;9996:10;9989:17;;9916:98;:::o;27192:380::-;27345:1;27328:19;;:5;:19;;;;27320:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27426:1;27407:21;;:7;:21;;;;27399:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27510:6;27480:11;:18;27492:5;27480:18;;;;;;;;;;;;;;;:27;27499:7;27480:27;;;;;;;;;;;;;;;:36;;;;27548:7;27532:32;;27541:5;27532:32;;;27557:6;27532:32;;;;;;:::i;:::-;;;;;;;;27192:380;;;:::o;11530:132::-;11605:12;:10;:12::i;:::-;11594:23;;:7;:5;:7::i;:::-;:23;;;11586:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11530:132::o;27863:453::-;27998:24;28025:25;28035:5;28042:7;28025:9;:25::i;:::-;27998:52;;28085:17;28065:16;:37;28061:248;;28147:6;28127:16;:26;;28119:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28231:51;28240:5;28247:7;28275:6;28256:16;:25;28231:8;:51::i;:::-;28061:248;27987:329;27863:453;;;:::o;31732:880::-;31873:1;31864:6;:10;31856:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;31917:13;;;;;;;;;;;31909:21;;:4;:21;;;;:44;;;;;31940:13;;;;;;;;;;;31934:19;;:2;:19;;;;31909:44;31906:130;;;31970:33;31986:4;31992:2;31996:6;31970:15;:33::i;:::-;32018:7;;31906:130;32057:13;;;;;;;;;;;32049:21;;:4;:21;;;:37;;;;;32073:9;:13;32083:2;32073:13;;;;;;;;;;;;;;;;;;;;;;;;;32072:14;32049:37;32046:224;;;32103:56;32119:4;32125:2;32129:29;32154:3;32129:20;32144:4;;32140:3;:8;;;;:::i;:::-;32129:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;32103:15;:56::i;:::-;32174:63;32190:4;32204;32211:25;32232:3;32211:16;32222:4;;32211:6;:10;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;32174:15;:63::i;:::-;32252:7;;32046:224;32289:13;;;;;;;;;;;32283:19;;:2;:19;;;:37;;;;;32305:9;:15;32315:4;32305:15;;;;;;;;;;;;;;;;;;;;;;;;;32304:16;32283:37;32280:281;;;32337:63;32353:4;32367;32374:25;32395:3;32374:16;32385:4;;32374:6;:10;;:16;;;;:::i;:::-;:20;;:25;;;;:::i;:::-;32337:15;:63::i;:::-;32415:42;32425:24;32443:4;32425:9;:24::i;:::-;32450:6;;;;;;;;;;;32415:9;:42::i;:::-;32472:56;32488:4;32494:2;32498:29;32523:3;32498:20;32513:4;;32509:3;:8;;;;:::i;:::-;32498:6;:10;;:20;;;;:::i;:::-;:24;;:29;;;;:::i;:::-;32472:15;:56::i;:::-;32543:7;;32280:281;32571:33;32587:4;32593:2;32597:6;32571:15;:33::i;:::-;31732:880;;;;:::o;12632:191::-;12706:16;12725:6;;;;;;;;;;;12706:25;;12751:8;12742:6;;:17;;;;;;;;;;;;;;;;;;12806:8;12775:40;;12796:8;12775:40;;;;;;;;;;;;12695:128;12632:191;:::o;24071:840::-;24218:1;24202:18;;:4;:18;;;;24194:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24295:1;24281:16;;:2;:16;;;;24273:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;24350:38;24371:4;24377:2;24381:6;24350:20;:38::i;:::-;24401:19;24423:9;:15;24433:4;24423:15;;;;;;;;;;;;;;;;24401:37;;24472:6;24457:11;:21;;24449:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;24589:6;24575:11;:20;24557:9;:15;24567:4;24557:15;;;;;;;;;;;;;;;:38;;;;24792:6;24775:9;:13;24785:2;24775:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;24842:2;24827:26;;24836:4;24827:26;;;24846:6;24827:26;;;;;;:::i;:::-;;;;;;;;24866:37;24886:4;24892:2;24896:6;24866:19;:37::i;:::-;24183:728;24071:840;;;:::o;5810:98::-;5868:7;5899:1;5895;:5;;;;:::i;:::-;5888:12;;5810:98;;;;:::o;6209:::-;6267:7;6298:1;6294;:5;;;;:::i;:::-;6287:12;;6209:98;;;;:::o;32624:308::-;33007:4;32998:6;;:13;;;;;;;;;;;;;;;;;;32706:21:::1;32744:1;32730:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32706:40;;32775:4;32757;32762:1;32757:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;32801:4;;;;;;;;;;;32791;32796:1;32791:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;::::0;::::1;32816:15;;;;;;;;;;;:69;;;32886:11;32898:1;32900:4;32905:2;32908:15;32816:108;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;32695:237;33043:5:::0;33034:6;;:14;;;;;;;;;;;;;;;;;;32624:308;;:::o;28916:125::-;;;;:::o;29645:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:137::-;206:5;237:6;231:13;222:22;;253:30;277:5;253:30;:::i;:::-;152:137;;;;:::o;295:139::-;341:5;379:6;366:20;357:29;;395:33;422:5;395:33;:::i;:::-;295:139;;;;:::o;440:329::-;499:6;548:2;536:9;527:7;523:23;519:32;516:119;;;554:79;;:::i;:::-;516:119;674:1;699:53;744:7;735:6;724:9;720:22;699:53;:::i;:::-;689:63;;645:117;440:329;;;;:::o;775:474::-;843:6;851;900:2;888:9;879:7;875:23;871:32;868:119;;;906:79;;:::i;:::-;868:119;1026:1;1051:53;1096:7;1087:6;1076:9;1072:22;1051:53;:::i;:::-;1041:63;;997:117;1153:2;1179:53;1224:7;1215:6;1204:9;1200:22;1179:53;:::i;:::-;1169:63;;1124:118;775:474;;;;;:::o;1255:619::-;1332:6;1340;1348;1397:2;1385:9;1376:7;1372:23;1368:32;1365:119;;;1403:79;;:::i;:::-;1365:119;1523:1;1548:53;1593:7;1584:6;1573:9;1569:22;1548:53;:::i;:::-;1538:63;;1494:117;1650:2;1676:53;1721:7;1712:6;1701:9;1697:22;1676:53;:::i;:::-;1666:63;;1621:118;1778:2;1804:53;1849:7;1840:6;1829:9;1825:22;1804:53;:::i;:::-;1794:63;;1749:118;1255:619;;;;;:::o;1880:474::-;1948:6;1956;2005:2;1993:9;1984:7;1980:23;1976:32;1973:119;;;2011:79;;:::i;:::-;1973:119;2131:1;2156:53;2201:7;2192:6;2181:9;2177:22;2156:53;:::i;:::-;2146:63;;2102:117;2258:2;2284:53;2329:7;2320:6;2309:9;2305:22;2284:53;:::i;:::-;2274:63;;2229:118;1880:474;;;;;:::o;2360:345::-;2427:6;2476:2;2464:9;2455:7;2451:23;2447:32;2444:119;;;2482:79;;:::i;:::-;2444:119;2602:1;2627:61;2680:7;2671:6;2660:9;2656:22;2627:61;:::i;:::-;2617:71;;2573:125;2360:345;;;;:::o;2711:329::-;2770:6;2819:2;2807:9;2798:7;2794:23;2790:32;2787:119;;;2825:79;;:::i;:::-;2787:119;2945:1;2970:53;3015:7;3006:6;2995:9;2991:22;2970:53;:::i;:::-;2960:63;;2916:117;2711:329;;;;:::o;3046:179::-;3115:10;3136:46;3178:3;3170:6;3136:46;:::i;:::-;3214:4;3209:3;3205:14;3191:28;;3046:179;;;;:::o;3231:108::-;3308:24;3326:5;3308:24;:::i;:::-;3303:3;3296:37;3231:108;;:::o;3345:118::-;3432:24;3450:5;3432:24;:::i;:::-;3427:3;3420:37;3345:118;;:::o;3499:732::-;3618:3;3647:54;3695:5;3647:54;:::i;:::-;3717:86;3796:6;3791:3;3717:86;:::i;:::-;3710:93;;3827:56;3877:5;3827:56;:::i;:::-;3906:7;3937:1;3922:284;3947:6;3944:1;3941:13;3922:284;;;4023:6;4017:13;4050:63;4109:3;4094:13;4050:63;:::i;:::-;4043:70;;4136:60;4189:6;4136:60;:::i;:::-;4126:70;;3982:224;3969:1;3966;3962:9;3957:14;;3922:284;;;3926:14;4222:3;4215:10;;3623:608;;;3499:732;;;;:::o;4237:109::-;4318:21;4333:5;4318:21;:::i;:::-;4313:3;4306:34;4237:109;;:::o;4352:147::-;4447:45;4486:5;4447:45;:::i;:::-;4442:3;4435:58;4352:147;;:::o;4505:364::-;4593:3;4621:39;4654:5;4621:39;:::i;:::-;4676:71;4740:6;4735:3;4676:71;:::i;:::-;4669:78;;4756:52;4801:6;4796:3;4789:4;4782:5;4778:16;4756:52;:::i;:::-;4833:29;4855:6;4833:29;:::i;:::-;4828:3;4824:39;4817:46;;4597:272;4505:364;;;;:::o;4875:366::-;5017:3;5038:67;5102:2;5097:3;5038:67;:::i;:::-;5031:74;;5114:93;5203:3;5114:93;:::i;:::-;5232:2;5227:3;5223:12;5216:19;;4875:366;;;:::o;5247:::-;5389:3;5410:67;5474:2;5469:3;5410:67;:::i;:::-;5403:74;;5486:93;5575:3;5486:93;:::i;:::-;5604:2;5599:3;5595:12;5588:19;;5247:366;;;:::o;5619:::-;5761:3;5782:67;5846:2;5841:3;5782:67;:::i;:::-;5775:74;;5858:93;5947:3;5858:93;:::i;:::-;5976:2;5971:3;5967:12;5960:19;;5619:366;;;:::o;5991:::-;6133:3;6154:67;6218:2;6213:3;6154:67;:::i;:::-;6147:74;;6230:93;6319:3;6230:93;:::i;:::-;6348:2;6343:3;6339:12;6332:19;;5991:366;;;:::o;6363:::-;6505:3;6526:67;6590:2;6585:3;6526:67;:::i;:::-;6519:74;;6602:93;6691:3;6602:93;:::i;:::-;6720:2;6715:3;6711:12;6704:19;;6363:366;;;:::o;6735:::-;6877:3;6898:67;6962:2;6957:3;6898:67;:::i;:::-;6891:74;;6974:93;7063:3;6974:93;:::i;:::-;7092:2;7087:3;7083:12;7076:19;;6735:366;;;:::o;7107:::-;7249:3;7270:67;7334:2;7329:3;7270:67;:::i;:::-;7263:74;;7346:93;7435:3;7346:93;:::i;:::-;7464:2;7459:3;7455:12;7448:19;;7107:366;;;:::o;7479:::-;7621:3;7642:67;7706:2;7701:3;7642:67;:::i;:::-;7635:74;;7718:93;7807:3;7718:93;:::i;:::-;7836:2;7831:3;7827:12;7820:19;;7479:366;;;:::o;7851:::-;7993:3;8014:67;8078:2;8073:3;8014:67;:::i;:::-;8007:74;;8090:93;8179:3;8090:93;:::i;:::-;8208:2;8203:3;8199:12;8192:19;;7851:366;;;:::o;8223:::-;8365:3;8386:67;8450:2;8445:3;8386:67;:::i;:::-;8379:74;;8462:93;8551:3;8462:93;:::i;:::-;8580:2;8575:3;8571:12;8564:19;;8223:366;;;:::o;8595:118::-;8682:24;8700:5;8682:24;:::i;:::-;8677:3;8670:37;8595:118;;:::o;8719:112::-;8802:22;8818:5;8802:22;:::i;:::-;8797:3;8790:35;8719:112;;:::o;8837:222::-;8930:4;8968:2;8957:9;8953:18;8945:26;;8981:71;9049:1;9038:9;9034:17;9025:6;8981:71;:::i;:::-;8837:222;;;;:::o;9065:332::-;9186:4;9224:2;9213:9;9209:18;9201:26;;9237:71;9305:1;9294:9;9290:17;9281:6;9237:71;:::i;:::-;9318:72;9386:2;9375:9;9371:18;9362:6;9318:72;:::i;:::-;9065:332;;;;;:::o;9403:210::-;9490:4;9528:2;9517:9;9513:18;9505:26;;9541:65;9603:1;9592:9;9588:17;9579:6;9541:65;:::i;:::-;9403:210;;;;:::o;9619:313::-;9732:4;9770:2;9759:9;9755:18;9747:26;;9819:9;9813:4;9809:20;9805:1;9794:9;9790:17;9783:47;9847:78;9920:4;9911:6;9847:78;:::i;:::-;9839:86;;9619:313;;;;:::o;9938:419::-;10104:4;10142:2;10131:9;10127:18;10119:26;;10191:9;10185:4;10181:20;10177:1;10166:9;10162:17;10155:47;10219:131;10345:4;10219:131;:::i;:::-;10211:139;;9938:419;;;:::o;10363:::-;10529:4;10567:2;10556:9;10552:18;10544:26;;10616:9;10610:4;10606:20;10602:1;10591:9;10587:17;10580:47;10644:131;10770:4;10644:131;:::i;:::-;10636:139;;10363:419;;;:::o;10788:::-;10954:4;10992:2;10981:9;10977:18;10969:26;;11041:9;11035:4;11031:20;11027:1;11016:9;11012:17;11005:47;11069:131;11195:4;11069:131;:::i;:::-;11061:139;;10788:419;;;:::o;11213:::-;11379:4;11417:2;11406:9;11402:18;11394:26;;11466:9;11460:4;11456:20;11452:1;11441:9;11437:17;11430:47;11494:131;11620:4;11494:131;:::i;:::-;11486:139;;11213:419;;;:::o;11638:::-;11804:4;11842:2;11831:9;11827:18;11819:26;;11891:9;11885:4;11881:20;11877:1;11866:9;11862:17;11855:47;11919:131;12045:4;11919:131;:::i;:::-;11911:139;;11638:419;;;:::o;12063:::-;12229:4;12267:2;12256:9;12252:18;12244:26;;12316:9;12310:4;12306:20;12302:1;12291:9;12287:17;12280:47;12344:131;12470:4;12344:131;:::i;:::-;12336:139;;12063:419;;;:::o;12488:::-;12654:4;12692:2;12681:9;12677:18;12669:26;;12741:9;12735:4;12731:20;12727:1;12716:9;12712:17;12705:47;12769:131;12895:4;12769:131;:::i;:::-;12761:139;;12488:419;;;:::o;12913:::-;13079:4;13117:2;13106:9;13102:18;13094:26;;13166:9;13160:4;13156:20;13152:1;13141:9;13137:17;13130:47;13194:131;13320:4;13194:131;:::i;:::-;13186:139;;12913:419;;;:::o;13338:::-;13504:4;13542:2;13531:9;13527:18;13519:26;;13591:9;13585:4;13581:20;13577:1;13566:9;13562:17;13555:47;13619:131;13745:4;13619:131;:::i;:::-;13611:139;;13338:419;;;:::o;13763:::-;13929:4;13967:2;13956:9;13952:18;13944:26;;14016:9;14010:4;14006:20;14002:1;13991:9;13987:17;13980:47;14044:131;14170:4;14044:131;:::i;:::-;14036:139;;13763:419;;;:::o;14188:222::-;14281:4;14319:2;14308:9;14304:18;14296:26;;14332:71;14400:1;14389:9;14385:17;14376:6;14332:71;:::i;:::-;14188:222;;;;:::o;14416:831::-;14679:4;14717:3;14706:9;14702:19;14694:27;;14731:71;14799:1;14788:9;14784:17;14775:6;14731:71;:::i;:::-;14812:80;14888:2;14877:9;14873:18;14864:6;14812:80;:::i;:::-;14939:9;14933:4;14929:20;14924:2;14913:9;14909:18;14902:48;14967:108;15070:4;15061:6;14967:108;:::i;:::-;14959:116;;15085:72;15153:2;15142:9;15138:18;15129:6;15085:72;:::i;:::-;15167:73;15235:3;15224:9;15220:19;15211:6;15167:73;:::i;:::-;14416:831;;;;;;;;:::o;15253:214::-;15342:4;15380:2;15369:9;15365:18;15357:26;;15393:67;15457:1;15446:9;15442:17;15433:6;15393:67;:::i;:::-;15253:214;;;;:::o;15554:132::-;15621:4;15644:3;15636:11;;15674:4;15669:3;15665:14;15657:22;;15554:132;;;:::o;15692:114::-;15759:6;15793:5;15787:12;15777:22;;15692:114;;;:::o;15812:99::-;15864:6;15898:5;15892:12;15882:22;;15812:99;;;:::o;15917:113::-;15987:4;16019;16014:3;16010:14;16002:22;;15917:113;;;:::o;16036:184::-;16135:11;16169:6;16164:3;16157:19;16209:4;16204:3;16200:14;16185:29;;16036:184;;;;:::o;16226:169::-;16310:11;16344:6;16339:3;16332:19;16384:4;16379:3;16375:14;16360:29;;16226:169;;;;:::o;16401:305::-;16441:3;16460:20;16478:1;16460:20;:::i;:::-;16455:25;;16494:20;16512:1;16494:20;:::i;:::-;16489:25;;16648:1;16580:66;16576:74;16573:1;16570:81;16567:107;;;16654:18;;:::i;:::-;16567:107;16698:1;16695;16691:9;16684:16;;16401:305;;;;:::o;16712:185::-;16752:1;16769:20;16787:1;16769:20;:::i;:::-;16764:25;;16803:20;16821:1;16803:20;:::i;:::-;16798:25;;16842:1;16832:35;;16847:18;;:::i;:::-;16832:35;16889:1;16886;16882:9;16877:14;;16712:185;;;;:::o;16903:348::-;16943:7;16966:20;16984:1;16966:20;:::i;:::-;16961:25;;17000:20;17018:1;17000:20;:::i;:::-;16995:25;;17188:1;17120:66;17116:74;17113:1;17110:81;17105:1;17098:9;17091:17;17087:105;17084:131;;;17195:18;;:::i;:::-;17084:131;17243:1;17240;17236:9;17225:20;;16903:348;;;;:::o;17257:191::-;17297:4;17317:20;17335:1;17317:20;:::i;:::-;17312:25;;17351:20;17369:1;17351:20;:::i;:::-;17346:25;;17390:1;17387;17384:8;17381:34;;;17395:18;;:::i;:::-;17381:34;17440:1;17437;17433:9;17425:17;;17257:191;;;;:::o;17454:96::-;17491:7;17520:24;17538:5;17520:24;:::i;:::-;17509:35;;17454:96;;;:::o;17556:90::-;17590:7;17633:5;17626:13;17619:21;17608:32;;17556:90;;;:::o;17652:126::-;17689:7;17729:42;17722:5;17718:54;17707:65;;17652:126;;;:::o;17784:77::-;17821:7;17850:5;17839:16;;17784:77;;;:::o;17867:86::-;17902:7;17942:4;17935:5;17931:16;17920:27;;17867:86;;;:::o;17959:121::-;18017:9;18050:24;18068:5;18050:24;:::i;:::-;18037:37;;17959:121;;;:::o;18086:307::-;18154:1;18164:113;18178:6;18175:1;18172:13;18164:113;;;18263:1;18258:3;18254:11;18248:18;18244:1;18239:3;18235:11;18228:39;18200:2;18197:1;18193:10;18188:15;;18164:113;;;18295:6;18292:1;18289:13;18286:101;;;18375:1;18366:6;18361:3;18357:16;18350:27;18286:101;18135:258;18086:307;;;:::o;18399:320::-;18443:6;18480:1;18474:4;18470:12;18460:22;;18527:1;18521:4;18517:12;18548:18;18538:81;;18604:4;18596:6;18592:17;18582:27;;18538:81;18666:2;18658:6;18655:14;18635:18;18632:38;18629:84;;;18685:18;;:::i;:::-;18629:84;18450:269;18399:320;;;:::o;18725:180::-;18773:77;18770:1;18763:88;18870:4;18867:1;18860:15;18894:4;18891:1;18884:15;18911:180;18959:77;18956:1;18949:88;19056:4;19053:1;19046:15;19080:4;19077:1;19070:15;19097:180;19145:77;19142:1;19135:88;19242:4;19239:1;19232:15;19266:4;19263:1;19256:15;19283:180;19331:77;19328:1;19321:88;19428:4;19425:1;19418:15;19452:4;19449:1;19442:15;19469:180;19517:77;19514:1;19507:88;19614:4;19611:1;19604:15;19638:4;19635:1;19628:15;19778:117;19887:1;19884;19877:12;19901:102;19942:6;19993:2;19989:7;19984:2;19977:5;19973:14;19969:28;19959:38;;19901:102;;;:::o;20009:222::-;20149:34;20145:1;20137:6;20133:14;20126:58;20218:5;20213:2;20205:6;20201:15;20194:30;20009:222;:::o;20237:225::-;20377:34;20373:1;20365:6;20361:14;20354:58;20446:8;20441:2;20433:6;20429:15;20422:33;20237:225;:::o;20468:221::-;20608:34;20604:1;20596:6;20592:14;20585:58;20677:4;20672:2;20664:6;20660:15;20653:29;20468:221;:::o;20695:179::-;20835:31;20831:1;20823:6;20819:14;20812:55;20695:179;:::o;20880:225::-;21020:34;21016:1;21008:6;21004:14;20997:58;21089:8;21084:2;21076:6;21072:15;21065:33;20880:225;:::o;21111:182::-;21251:34;21247:1;21239:6;21235:14;21228:58;21111:182;:::o;21299:166::-;21439:18;21435:1;21427:6;21423:14;21416:42;21299:166;:::o;21471:224::-;21611:34;21607:1;21599:6;21595:14;21588:58;21680:7;21675:2;21667:6;21663:15;21656:32;21471:224;:::o;21701:223::-;21841:34;21837:1;21829:6;21825:14;21818:58;21910:6;21905:2;21897:6;21893:15;21886:31;21701:223;:::o;21930:224::-;22070:34;22066:1;22058:6;22054:14;22047:58;22139:7;22134:2;22126:6;22122:15;22115:32;21930:224;:::o;22160:122::-;22233:24;22251:5;22233:24;:::i;:::-;22226:5;22223:35;22213:63;;22272:1;22269;22262:12;22213:63;22160:122;:::o;22288:116::-;22358:21;22373:5;22358:21;:::i;:::-;22351:5;22348:32;22338:60;;22394:1;22391;22384:12;22338:60;22288:116;:::o;22410:122::-;22483:24;22501:5;22483:24;:::i;:::-;22476:5;22473:35;22463:63;;22522:1;22519;22512:12;22463:63;22410:122;:::o

Swarm Source

ipfs://bfb24116661418276264db993e53ddf1f78f1c90872df5ab84d32521b24ad5aa
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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