ETH Price: $3,490.68 (+7.53%)
Gas: 6 Gwei

Token

FuckYouMoney (TESLA)
 

Overview

Max Total Supply

100,000,000 TESLA

Holders

166

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.106575468330208506 TESLA

Value
$0.00
0x5abbc66af123319b72ece7ed4ab68de97fb18d7f
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:
TESLA

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-09-29
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: popi.sol

//SPDX-License-Identifier: MIT




pragma solidity 0.8.19;

interface DexFactory {
    function createPair(
        address tokenA,
        address tokenB
    ) external returns (address pair);
}

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

    function WETH() external pure returns (address);

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

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

contract TESLA is ERC20, Ownable {
    struct Tax {
        uint256 marketingTax;
    }

    uint256 private constant _totalSupply = 100_000_000 * 1e18;

    //Router
    DexRouter public immutable uniswapRouter;
    address public immutable pairAddress;

    //Taxes
    Tax public buyTaxes = Tax(15);
    Tax public sellTaxes = Tax(15);
    Tax public transferTaxes = Tax(15);



    //Whitelisting from taxes/maxwallet/txlimit/etc
    mapping(address => bool) private whitelisted;
    mapping(address => bool) private isblacklisted;
    mapping(address => uint256) private _holderLastTransferTimestamp;

    //Swapping
    uint256 public swapTokensAtAmount = _totalSupply / 1_000_000; //after 0.01% of total supply, swap them
    bool public swapAndLiquifyEnabled = true;
    bool public isSwapping = false;
    bool public tradingEnabled = false;
    uint256 public startTradingBlock;
    bool public transferDelayEnabled = true;

    //Wallets
    address public marketingWallet = _msgSender() ;
    uint256 public maxWalletPercentage = 4;


    //Events
    event BuyFeesUpdated(uint256 indexed _trFee);
    event SellFeesUpdated(uint256 indexed _trFee);
    event marketingWalletChanged(address indexed _trWallet);
    event SwapThresholdUpdated(uint256 indexed _newThreshold);
    event InternalSwapStatusUpdated(bool indexed _status);
    event Whitelist(address indexed _target, bool indexed _status);
    event MaxWalletChanged(uint256 percentage);

    constructor() ERC20("FuckYouMoney", "TESLA") {


       uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // mainet
        pairAddress = DexFactory(uniswapRouter.factory()).createPair(
            address(this),
            uniswapRouter.WETH()
        );
        whitelisted[msg.sender] = true;
        whitelisted[address(uniswapRouter)] = true;
        whitelisted[address(this)] = true;       
        _mint(msg.sender, _totalSupply);
 
    }

    function setmarketingWallet(address _newmarketing) external onlyOwner {
        require(
            _newmarketing != address(0),
            "can not set marketing to dead wallet"
        );
        marketingWallet = _newmarketing;
        emit marketingWalletChanged(_newmarketing);
    }
    function enableTrading() external onlyOwner {
        require(!tradingEnabled, "Trading is already enabled");
        tradingEnabled = true;
        startTradingBlock = block.number;
    }

    function setBuyTaxes(uint256 _marketingTax) external onlyOwner {
        buyTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit BuyFeesUpdated(_marketingTax);
    }

    function setSellTaxes(uint256 _marketingTax) external onlyOwner {
        sellTaxes.marketingTax = _marketingTax;
        require(_marketingTax <= 30, "Can not set buy fees higher than 30%");
        emit SellFeesUpdated(_marketingTax);
    }

    function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner {
        require(
            _newAmount > 0 && _newAmount <= (_totalSupply * 5) / 1000,
            "Minimum swap amount must be greater than 0 and less than 0.5% of total supply!"
        );
        swapTokensAtAmount = _newAmount;
        emit SwapThresholdUpdated(swapTokensAtAmount);
    }

    function toggleSwapping() external onlyOwner {
        swapAndLiquifyEnabled = (swapAndLiquifyEnabled) ? false : true;
    }

    function setWhitelistStatus(
        address _wallet,
        bool _status
    ) external onlyOwner {
        whitelisted[_wallet] = _status;
        emit Whitelist(_wallet, _status);
    }

    function checkWhitelist(address _wallet) external view returns (bool) {
        return whitelisted[_wallet];
    }
    function setMaxWalletPercentage(uint256 _percentage) external onlyOwner {
    require(_percentage > 1, "Percentage must be greater than 1%");
    require(_percentage <= 100, "Percentage must be less than or equal to 100");
    maxWalletPercentage = _percentage;
    emit MaxWalletChanged(_percentage);
}


    // this function is reponsible for managing tax, if _from or _to is whitelisted, we simply return _amount and skip all the limitations
function _takeTax(
        address _from,
        address _to,
        uint256 _amount
    ) internal returns (uint256) {
        if (whitelisted[_from] || whitelisted[_to]) {
            return _amount;
        }

        uint256 totalTax = transferTaxes.marketingTax;

        if (_to == pairAddress) {
            totalTax = sellTaxes.marketingTax;
        } else if (_from == pairAddress) {
            totalTax = buyTaxes.marketingTax;
        }


        uint256 tax = 0;
        if (totalTax > 0) {
            tax = (_amount * totalTax) / 100;
            super._transfer(_from, address(this), tax);
        }
        return (_amount - tax);
    }

function _transfer(
    address _from,
    address _to,
    uint256 _amount
) internal virtual override {
    // Add transfer delay logic
    if (transferDelayEnabled) {
        if (_to != address(pairAddress) && _to != address(pairAddress)) {
            require(_holderLastTransferTimestamp[tx.origin] < block.number, "Only one transfer per block allowed.");
            _holderLastTransferTimestamp[tx.origin] = block.number;
        }
    }

    require(_from != address(0), "transfer from address zero");
    require(_to != address(0), "transfer to address zero");
    require(_amount > 0, "Transfer amount must be greater than zero");

    // Check if the addresses are blacklisted
    require(!isblacklisted[_from], "Transfer from blacklisted address");
    require(!isblacklisted[_to], "Transfer to blacklisted address");

    // Calculate the maximum wallet amount based on the total supply and the maximum wallet percentage
    uint256 maxWalletAmount = _totalSupply * maxWalletPercentage / 100;

    // Check if the transaction is within the maximum wallet limit
    if (!whitelisted[_from] && !whitelisted[_to] && _to != address(0) && _to != address(this) && _to != pairAddress) {
        require(balanceOf(_to) + _amount <= maxWalletAmount, "Exceeds maximum wallet amount");
    }

    uint256 toTransfer = _takeTax(_from, _to, _amount);

    bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount;
    if (!whitelisted[_from] && !whitelisted[_to]) {
        require(tradingEnabled, "Trading not active");
        if (pairAddress == _to && swapAndLiquifyEnabled && canSwap && !isSwapping) {
            internalSwap();
        }
    }

    super._transfer(_from, _to, toTransfer);
}

    function internalSwap() internal {
        isSwapping = true;
        uint256 taxAmount = balanceOf(address(this)); 
        if (taxAmount == 0) {
            return;
        }
        swapToETH(balanceOf(address(this)));
       (bool success, ) = marketingWallet.call{value: address(this).balance}("");
        require(success, "Transfer failed.");
        isSwapping = false;
    }
    function Isblacklisted(address a) public view returns (bool){
      return isblacklisted[a];
    }

    function addtoblacklist(address[] memory isblacklisted_) public onlyOwner {
        for (uint i = 0; i < isblacklisted_.length; i++) {
            isblacklisted[isblacklisted_[i]] = true;
        }
    }

    function removefromblacklist(address[] memory isnotblacklisted_) public onlyOwner {
      for (uint i = 0; i < isnotblacklisted_.length; i++) {
          isblacklisted[isnotblacklisted_[i]] = false;
      }
    }

        function removeLimits() external onlyOwner{
        maxWalletPercentage =100;
        transferDelayEnabled=false;
        transferTaxes.marketingTax = 0;
    }

    function swapToETH(uint256 _amount) internal {
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapRouter.WETH();
        _approve(address(this), address(uniswapRouter), _amount);
        uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(
            _amount,
            0,
            path,
            address(this),
            block.timestamp
        );
    }

    receive() external payable {}
}

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":"uint256","name":"_trFee","type":"uint256"}],"name":"BuyFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"InternalSwapStatusUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"percentage","type":"uint256"}],"name":"MaxWalletChanged","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":"uint256","name":"_trFee","type":"uint256"}],"name":"SellFeesUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"_newThreshold","type":"uint256"}],"name":"SwapThresholdUpdated","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":"_target","type":"address"},{"indexed":true,"internalType":"bool","name":"_status","type":"bool"}],"name":"Whitelist","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_trWallet","type":"address"}],"name":"marketingWalletChanged","type":"event"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"Isblacklisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"isblacklisted_","type":"address[]"}],"name":"addtoblacklist","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletPercentage","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":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"isnotblacklisted_","type":"address[]"}],"name":"removefromblacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_percentage","type":"uint256"}],"name":"setMaxWalletPercentage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newmarketing","type":"address"}],"name":"setmarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTradingBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","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":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600f60c0819052600681905560e081905260078190556101206040526101008190526008556200003e620f42406a52b7d2dcc80cd2e400000062000413565b600c55600d805462ffffff19166001908117909155600f805460ff19169091179055620000683390565b600f60016101000a8154816001600160a01b0302191690836001600160a01b031602179055506004601055348015620000a057600080fd5b506040518060400160405280600c81526020016b4675636b596f754d6f6e657960a01b815250604051806040016040528060058152602001645445534c4160d81b8152508160039081620000f59190620004da565b506004620001048282620004da565b505050620001216200011b620002f260201b60201c565b620002f6565b737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000177573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200019d9190620005a6565b6001600160a01b031663c9c65396306080516001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ed573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002139190620005a6565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000261573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002879190620005a6565b6001600160a01b0390811660a052336000818152600960205260408082208054600160ff199182168117909255608051909516835281832080548616821790553083529120805490931617909155620002ec906a52b7d2dcc80cd2e400000062000348565b62000600565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003a35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620003b79190620005d8565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6000826200043157634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200046157607f821691505b6020821081036200048257634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200040e57600081815260208120601f850160051c81016020861015620004b15750805b601f850160051c820191505b81811015620004d257828155600101620004bd565b505050505050565b81516001600160401b03811115620004f657620004f662000436565b6200050e816200050784546200044c565b8462000488565b602080601f8311600181146200054657600084156200052d5750858301515b600019600386901b1c1916600185901b178555620004d2565b600085815260208120601f198616915b82811015620005775788860151825594840194600190910190840162000556565b5085821015620005965787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620005b957600080fd5b81516001600160a01b0381168114620005d157600080fd5b9392505050565b80820180821115620005fa57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a05161208e62000665600039600081816105fb015281816111410152818161117e015281816114bd015281816116330152818161175101526117850152600081816104a001528181611aea01528181611ba30152611bdf015261208e6000f3fe60806040526004361061023f5760003560e01c806376be96f31161012e578063afa4f3b2116100ab578063e5f320041161006f578063e5f32004146106cc578063e64b012f14610705578063ef586f7114610725578063f2fde38b1461073a578063f66895a31461075a57600080fd5b8063afa4f3b21461063d578063b88631151461065d578063c876d0b91461067c578063dd62ed3e14610696578063e2f45605146106b657600080fd5b806395d89b41116100f257806395d89b4114610594578063a3ca847d146105a9578063a457c2d7146105c9578063a8b08982146105e9578063a9059cbb1461061d57600080fd5b806376be96f3146105145780637a845ece1461052a578063864701a51461054a5780638a8c523c146105615780638da5cb5b1461057657600080fd5b806339509351116101bc57806370a082311161018057806370a0823114610443578063715018a614610479578063735de9f71461048e578063751039fc146104da57806375f0a874146104ef57600080fd5b806339509351146103bc5780634a74bb02146103dc5780634ada218b146103f65780635331803c14610416578063599ca3971461042d57600080fd5b806318160ddd1161020357806318160ddd146103085780631950c21814610327578063224611731461036057806323b872dd14610380578063313ce567146103a057600080fd5b806306fdde031461024b5780630940bbc714610276578063095ea7b3146102985780630c424284146102c857806315fac9f4146102e857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610771565b60405161026d9190611c4b565b60405180910390f35b34801561028257600080fd5b50610296610291366004611c99565b610803565b005b3480156102a457600080fd5b506102b86102b3366004611cd7565b610868565b604051901515815260200161026d565b3480156102d457600080fd5b506102966102e3366004611d03565b610882565b3480156102f457600080fd5b50610296610303366004611d57565b6108de565b34801561031457600080fd5b506002545b60405190815260200161026d565b34801561033357600080fd5b506102b8610342366004611e1c565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561036c57600080fd5b5061029661037b366004611e1c565b610952565b34801561038c57600080fd5b506102b861039b366004611e39565b610a0e565b3480156103ac57600080fd5b506040516012815260200161026d565b3480156103c857600080fd5b506102b86103d7366004611cd7565b610a34565b3480156103e857600080fd5b50600d546102b89060ff1681565b34801561040257600080fd5b50600d546102b89062010000900460ff1681565b34801561042257600080fd5b506008546103199081565b34801561043957600080fd5b5061031960105481565b34801561044f57600080fd5b5061031961045e366004611e1c565b6001600160a01b031660009081526020819052604090205490565b34801561048557600080fd5b50610296610a56565b34801561049a57600080fd5b506104c27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161026d565b3480156104e657600080fd5b50610296610a6a565b3480156104fb57600080fd5b50600f546104c29061010090046001600160a01b031681565b34801561052057600080fd5b50610319600e5481565b34801561053657600080fd5b50610296610545366004611c99565b610a88565b34801561055657600080fd5b506006546103199081565b34801561056d57600080fd5b50610296610b8c565b34801561058257600080fd5b506005546001600160a01b03166104c2565b3480156105a057600080fd5b50610260610c04565b3480156105b557600080fd5b506102966105c4366004611c99565b610c13565b3480156105d557600080fd5b506102b86105e4366004611cd7565b610c6f565b3480156105f557600080fd5b506104c27f000000000000000000000000000000000000000000000000000000000000000081565b34801561062957600080fd5b506102b8610638366004611cd7565b610cf5565b34801561064957600080fd5b50610296610658366004611c99565b610d03565b34801561066957600080fd5b50600d546102b890610100900460ff1681565b34801561068857600080fd5b50600f546102b89060ff1681565b3480156106a257600080fd5b506103196106b1366004611e7a565b610df9565b3480156106c257600080fd5b50610319600c5481565b3480156106d857600080fd5b506102b86106e7366004611e1c565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561071157600080fd5b50610296610720366004611d57565b610e24565b34801561073157600080fd5b50610296610e94565b34801561074657600080fd5b50610296610755366004611e1c565b610ec3565b34801561076657600080fd5b506007546103199081565b60606003805461078090611ea8565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90611ea8565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b61080b610f3c565b6007819055601e81111561083a5760405162461bcd60e51b815260040161083190611ee2565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610876818585610f96565b60019150505b92915050565b61088a610f3c565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108e6610f3c565b60005b815181101561094e576001600a600084848151811061090a5761090a611f26565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094681611f52565b9150506108e9565b5050565b61095a610f3c565b6001600160a01b0381166109bc5760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b6064820152608401610831565b600f8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610a1c8582856110ba565b610a27858585611134565b60019150505b9392505050565b600033610876818585610a478383610df9565b610a519190611f6b565b610f96565b610a5e610f3c565b610a6860006116a7565b565b610a72610f3c565b6064601055600f805460ff191690556000600855565b610a90610f3c565b60018111610aeb5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b6064820152608401610831565b6064811115610b515760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b6064820152608401610831565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b94610f3c565b600d5462010000900460ff1615610bed5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610831565b600d805462ff000019166201000017905543600e55565b60606004805461078090611ea8565b610c1b610f3c565b6006819055601e811115610c415760405162461bcd60e51b815260040161083190611ee2565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c7d8286610df9565b905083811015610cdd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610831565b610cea8286868403610f96565b506001949350505050565b600033610876818585611134565b610d0b610f3c565b600081118015610d3d57506103e8610d2f6a52b7d2dcc80cd2e40000006005611f7e565b610d399190611f95565b8111155b610dc65760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a401610831565b600c81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2c610f3c565b60005b815181101561094e576000600a6000848481518110610e5057610e50611f26565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e8c81611f52565b915050610e2f565b610e9c610f3c565b600d5460ff16610ead576001610eb0565b60005b600d805460ff1916911515919091179055565b610ecb610f3c565b6001600160a01b038116610f305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b610f39816116a7565b50565b6005546001600160a01b03163314610a685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610831565b6001600160a01b038316610ff85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610831565b6001600160a01b0382166110595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610831565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110c68484610df9565b9050600019811461112e57818110156111215760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610831565b61112e8484848403610f96565b50505050565b600f5460ff1615611235577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316141580156111b357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561123557326000908152600b602052604090205443116112225760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b6064820152608401610831565b326000908152600b602052604090204390555b6001600160a01b03831661128b5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610831565b6001600160a01b0382166112e15760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610831565b600081116113435760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610831565b6001600160a01b0383166000908152600a602052604090205460ff16156113b65760405162461bcd60e51b815260206004820152602160248201527f5472616e736665722066726f6d20626c61636b6c6973746564206164647265736044820152607360f81b6064820152608401610831565b6001600160a01b0382166000908152600a602052604090205460ff161561141f5760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220746f20626c61636b6c69737465642061646472657373006044820152606401610831565b600060646010546a52b7d2dcc80cd2e400000061143c9190611f7e565b6114469190611f95565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561148b57506001600160a01b03831660009081526009602052604090205460ff16155b801561149f57506001600160a01b03831615155b80156114b457506001600160a01b0383163014155b80156114f257507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614155b15611570578082611518856001600160a01b031660009081526020819052604090205490565b6115229190611f6b565b11156115705760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610831565b600061157d8585856116f9565b600c5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff161580156115d557506001600160a01b03851660009081526009602052604090205460ff16155b1561169457600d5462010000900460ff166116275760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610831565b846001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031614801561166a5750600d5460ff165b80156116735750805b80156116875750600d54610100900460ff16155b1561169457611694611800565b61169f8686846118ef565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061173857506001600160a01b03831660009081526009602052604090205460ff165b15611744575080610a2d565b6008546001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169085160361178357506007546117c1565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316856001600160a01b0316036117c157506006545b600081156117ec5760646117d58386611f7e565b6117df9190611f95565b90506117ec8630836118ef565b6117f68185611fb7565b9695505050505050565b600d805461ff0019166101001790553060009081526020819052604081205490508060000361182c5750565b3060009081526020819052604090205461184590611a93565b600f5460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114611897576040519150601f19603f3d011682016040523d82523d6000602084013e61189c565b606091505b50509050806118e05760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610831565b5050600d805461ff0019169055565b6001600160a01b0383166119535760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610831565b6001600160a01b0382166119b55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610831565b6001600160a01b03831660009081526020819052604090205481811015611a2d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610831565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361112e565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ac857611ac8611f26565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6a9190611fca565b81600181518110611b7d57611b7d611f26565b60200260200101906001600160a01b031690816001600160a01b031681525050611bc8307f000000000000000000000000000000000000000000000000000000000000000084610f96565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611c1d908590600090869030904290600401611fe7565b600060405180830381600087803b158015611c3757600080fd5b505af115801561169f573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611c7857858101830151858201604001528201611c5c565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611cab57600080fd5b5035919050565b6001600160a01b0381168114610f3957600080fd5b8035611cd281611cb2565b919050565b60008060408385031215611cea57600080fd5b8235611cf581611cb2565b946020939093013593505050565b60008060408385031215611d1657600080fd5b8235611d2181611cb2565b915060208301358015158114611d3657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611d6a57600080fd5b823567ffffffffffffffff80821115611d8257600080fd5b818501915085601f830112611d9657600080fd5b813581811115611da857611da8611d41565b8060051b604051601f19603f83011681018181108582111715611dcd57611dcd611d41565b604052918252848201925083810185019188831115611deb57600080fd5b938501935b82851015611e1057611e0185611cc7565b84529385019392850192611df0565b98975050505050505050565b600060208284031215611e2e57600080fd5b8135610a2d81611cb2565b600080600060608486031215611e4e57600080fd5b8335611e5981611cb2565b92506020840135611e6981611cb2565b929592945050506040919091013590565b60008060408385031215611e8d57600080fd5b8235611e9881611cb2565b91506020830135611d3681611cb2565b600181811c90821680611ebc57607f821691505b602082108103611edc57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611f6457611f64611f3c565b5060010190565b8082018082111561087c5761087c611f3c565b808202811582820484141761087c5761087c611f3c565b600082611fb257634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561087c5761087c611f3c565b600060208284031215611fdc57600080fd5b8151610a2d81611cb2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120375784516001600160a01b031683529383019391830191600101612012565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203cc7f0130669f06898cb6b7412b897d27b6963ec5c2619447fa20d3c2a2a6fdd64736f6c63430008130033

Deployed Bytecode

0x60806040526004361061023f5760003560e01c806376be96f31161012e578063afa4f3b2116100ab578063e5f320041161006f578063e5f32004146106cc578063e64b012f14610705578063ef586f7114610725578063f2fde38b1461073a578063f66895a31461075a57600080fd5b8063afa4f3b21461063d578063b88631151461065d578063c876d0b91461067c578063dd62ed3e14610696578063e2f45605146106b657600080fd5b806395d89b41116100f257806395d89b4114610594578063a3ca847d146105a9578063a457c2d7146105c9578063a8b08982146105e9578063a9059cbb1461061d57600080fd5b806376be96f3146105145780637a845ece1461052a578063864701a51461054a5780638a8c523c146105615780638da5cb5b1461057657600080fd5b806339509351116101bc57806370a082311161018057806370a0823114610443578063715018a614610479578063735de9f71461048e578063751039fc146104da57806375f0a874146104ef57600080fd5b806339509351146103bc5780634a74bb02146103dc5780634ada218b146103f65780635331803c14610416578063599ca3971461042d57600080fd5b806318160ddd1161020357806318160ddd146103085780631950c21814610327578063224611731461036057806323b872dd14610380578063313ce567146103a057600080fd5b806306fdde031461024b5780630940bbc714610276578063095ea7b3146102985780630c424284146102c857806315fac9f4146102e857600080fd5b3661024657005b600080fd5b34801561025757600080fd5b50610260610771565b60405161026d9190611c4b565b60405180910390f35b34801561028257600080fd5b50610296610291366004611c99565b610803565b005b3480156102a457600080fd5b506102b86102b3366004611cd7565b610868565b604051901515815260200161026d565b3480156102d457600080fd5b506102966102e3366004611d03565b610882565b3480156102f457600080fd5b50610296610303366004611d57565b6108de565b34801561031457600080fd5b506002545b60405190815260200161026d565b34801561033357600080fd5b506102b8610342366004611e1c565b6001600160a01b031660009081526009602052604090205460ff1690565b34801561036c57600080fd5b5061029661037b366004611e1c565b610952565b34801561038c57600080fd5b506102b861039b366004611e39565b610a0e565b3480156103ac57600080fd5b506040516012815260200161026d565b3480156103c857600080fd5b506102b86103d7366004611cd7565b610a34565b3480156103e857600080fd5b50600d546102b89060ff1681565b34801561040257600080fd5b50600d546102b89062010000900460ff1681565b34801561042257600080fd5b506008546103199081565b34801561043957600080fd5b5061031960105481565b34801561044f57600080fd5b5061031961045e366004611e1c565b6001600160a01b031660009081526020819052604090205490565b34801561048557600080fd5b50610296610a56565b34801561049a57600080fd5b506104c27f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161026d565b3480156104e657600080fd5b50610296610a6a565b3480156104fb57600080fd5b50600f546104c29061010090046001600160a01b031681565b34801561052057600080fd5b50610319600e5481565b34801561053657600080fd5b50610296610545366004611c99565b610a88565b34801561055657600080fd5b506006546103199081565b34801561056d57600080fd5b50610296610b8c565b34801561058257600080fd5b506005546001600160a01b03166104c2565b3480156105a057600080fd5b50610260610c04565b3480156105b557600080fd5b506102966105c4366004611c99565b610c13565b3480156105d557600080fd5b506102b86105e4366004611cd7565b610c6f565b3480156105f557600080fd5b506104c27f000000000000000000000000a6054547c65a2dadc0d6aa840eb7701341304b8881565b34801561062957600080fd5b506102b8610638366004611cd7565b610cf5565b34801561064957600080fd5b50610296610658366004611c99565b610d03565b34801561066957600080fd5b50600d546102b890610100900460ff1681565b34801561068857600080fd5b50600f546102b89060ff1681565b3480156106a257600080fd5b506103196106b1366004611e7a565b610df9565b3480156106c257600080fd5b50610319600c5481565b3480156106d857600080fd5b506102b86106e7366004611e1c565b6001600160a01b03166000908152600a602052604090205460ff1690565b34801561071157600080fd5b50610296610720366004611d57565b610e24565b34801561073157600080fd5b50610296610e94565b34801561074657600080fd5b50610296610755366004611e1c565b610ec3565b34801561076657600080fd5b506007546103199081565b60606003805461078090611ea8565b80601f01602080910402602001604051908101604052809291908181526020018280546107ac90611ea8565b80156107f95780601f106107ce576101008083540402835291602001916107f9565b820191906000526020600020905b8154815290600101906020018083116107dc57829003601f168201915b5050505050905090565b61080b610f3c565b6007819055601e81111561083a5760405162461bcd60e51b815260040161083190611ee2565b60405180910390fd5b60405181907f16df2c25b3392f376a685a3826b941b25140108d95899d6b1bd983feafbc1c5590600090a250565b600033610876818585610f96565b60019150505b92915050565b61088a610f3c565b6001600160a01b038216600081815260096020526040808220805460ff191685151590811790915590519092917f5a25e09a5dba33161281055e015f1279b6b10204d8f90dd56a8ce2b82322d43d91a35050565b6108e6610f3c565b60005b815181101561094e576001600a600084848151811061090a5761090a611f26565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061094681611f52565b9150506108e9565b5050565b61095a610f3c565b6001600160a01b0381166109bc5760405162461bcd60e51b8152602060048201526024808201527f63616e206e6f7420736574206d61726b6574696e6720746f20646561642077616044820152631b1b195d60e21b6064820152608401610831565b600f8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040517fd1a6f806ccf6e5a2241d358891af2601bbf89feaad0fb4a891c9fbde2933761990600090a250565b600033610a1c8582856110ba565b610a27858585611134565b60019150505b9392505050565b600033610876818585610a478383610df9565b610a519190611f6b565b610f96565b610a5e610f3c565b610a6860006116a7565b565b610a72610f3c565b6064601055600f805460ff191690556000600855565b610a90610f3c565b60018111610aeb5760405162461bcd60e51b815260206004820152602260248201527f50657263656e74616765206d7573742062652067726561746572207468616e20604482015261312560f01b6064820152608401610831565b6064811115610b515760405162461bcd60e51b815260206004820152602c60248201527f50657263656e74616765206d757374206265206c657373207468616e206f722060448201526b0657175616c20746f203130360a41b6064820152608401610831565b60108190556040518181527fd79b8c9aaacc4db9fee532137a1ade40c7238016bff71cb2abc1a3cf8b6cdff69060200160405180910390a150565b610b94610f3c565b600d5462010000900460ff1615610bed5760405162461bcd60e51b815260206004820152601a60248201527f54726164696e6720697320616c726561647920656e61626c65640000000000006044820152606401610831565b600d805462ff000019166201000017905543600e55565b60606004805461078090611ea8565b610c1b610f3c565b6006819055601e811115610c415760405162461bcd60e51b815260040161083190611ee2565b60405181907f491005465ab6f82fd10f4b13a1b1e5ca452bc4856b019f63775e33a6b1ad2feb90600090a250565b60003381610c7d8286610df9565b905083811015610cdd5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610831565b610cea8286868403610f96565b506001949350505050565b600033610876818585611134565b610d0b610f3c565b600081118015610d3d57506103e8610d2f6a52b7d2dcc80cd2e40000006005611f7e565b610d399190611f95565b8111155b610dc65760405162461bcd60e51b815260206004820152604e60248201527f4d696e696d756d207377617020616d6f756e74206d757374206265206772656160448201527f746572207468616e203020616e64206c657373207468616e20302e3525206f6660648201526d20746f74616c20737570706c792160901b608482015260a401610831565b600c81905560405181907f18ff2fc8464635e4f668567019152095047e34d7a2ab4b97661ba4dc7fd0647690600090a250565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610e2c610f3c565b60005b815181101561094e576000600a6000848481518110610e5057610e50611f26565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e8c81611f52565b915050610e2f565b610e9c610f3c565b600d5460ff16610ead576001610eb0565b60005b600d805460ff1916911515919091179055565b610ecb610f3c565b6001600160a01b038116610f305760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610831565b610f39816116a7565b50565b6005546001600160a01b03163314610a685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610831565b6001600160a01b038316610ff85760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610831565b6001600160a01b0382166110595760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610831565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006110c68484610df9565b9050600019811461112e57818110156111215760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610831565b61112e8484848403610f96565b50505050565b600f5460ff1615611235577f000000000000000000000000a6054547c65a2dadc0d6aa840eb7701341304b886001600160a01b0316826001600160a01b0316141580156111b357507f000000000000000000000000a6054547c65a2dadc0d6aa840eb7701341304b886001600160a01b0316826001600160a01b031614155b1561123557326000908152600b602052604090205443116112225760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f6e65207472616e736665722070657220626c6f636b20616c6c6f6044820152633bb2b21760e11b6064820152608401610831565b326000908152600b602052604090204390555b6001600160a01b03831661128b5760405162461bcd60e51b815260206004820152601a60248201527f7472616e736665722066726f6d2061646472657373207a65726f0000000000006044820152606401610831565b6001600160a01b0382166112e15760405162461bcd60e51b815260206004820152601860248201527f7472616e7366657220746f2061646472657373207a65726f00000000000000006044820152606401610831565b600081116113435760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d7573742062652067726561746572206044820152687468616e207a65726f60b81b6064820152608401610831565b6001600160a01b0383166000908152600a602052604090205460ff16156113b65760405162461bcd60e51b815260206004820152602160248201527f5472616e736665722066726f6d20626c61636b6c6973746564206164647265736044820152607360f81b6064820152608401610831565b6001600160a01b0382166000908152600a602052604090205460ff161561141f5760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657220746f20626c61636b6c69737465642061646472657373006044820152606401610831565b600060646010546a52b7d2dcc80cd2e400000061143c9190611f7e565b6114469190611f95565b6001600160a01b03851660009081526009602052604090205490915060ff1615801561148b57506001600160a01b03831660009081526009602052604090205460ff16155b801561149f57506001600160a01b03831615155b80156114b457506001600160a01b0383163014155b80156114f257507f000000000000000000000000a6054547c65a2dadc0d6aa840eb7701341304b886001600160a01b0316836001600160a01b031614155b15611570578082611518856001600160a01b031660009081526020819052604090205490565b6115229190611f6b565b11156115705760405162461bcd60e51b815260206004820152601d60248201527f45786365656473206d6178696d756d2077616c6c657420616d6f756e740000006044820152606401610831565b600061157d8585856116f9565b600c5430600090815260208181526040808320546001600160a01b038b16845260099092529091205492935010159060ff161580156115d557506001600160a01b03851660009081526009602052604090205460ff16155b1561169457600d5462010000900460ff166116275760405162461bcd60e51b815260206004820152601260248201527154726164696e67206e6f742061637469766560701b6044820152606401610831565b846001600160a01b03167f000000000000000000000000a6054547c65a2dadc0d6aa840eb7701341304b886001600160a01b031614801561166a5750600d5460ff165b80156116735750805b80156116875750600d54610100900460ff16155b1561169457611694611800565b61169f8686846118ef565b505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831660009081526009602052604081205460ff168061173857506001600160a01b03831660009081526009602052604090205460ff165b15611744575080610a2d565b6008546001600160a01b037f000000000000000000000000a6054547c65a2dadc0d6aa840eb7701341304b8881169085160361178357506007546117c1565b7f000000000000000000000000a6054547c65a2dadc0d6aa840eb7701341304b886001600160a01b0316856001600160a01b0316036117c157506006545b600081156117ec5760646117d58386611f7e565b6117df9190611f95565b90506117ec8630836118ef565b6117f68185611fb7565b9695505050505050565b600d805461ff0019166101001790553060009081526020819052604081205490508060000361182c5750565b3060009081526020819052604090205461184590611a93565b600f5460405160009161010090046001600160a01b03169047908381818185875af1925050503d8060008114611897576040519150601f19603f3d011682016040523d82523d6000602084013e61189c565b606091505b50509050806118e05760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610831565b5050600d805461ff0019169055565b6001600160a01b0383166119535760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610831565b6001600160a01b0382166119b55760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610831565b6001600160a01b03831660009081526020819052604090205481811015611a2d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610831565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361112e565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611ac857611ac8611f26565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611b46573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b6a9190611fca565b81600181518110611b7d57611b7d611f26565b60200260200101906001600160a01b031690816001600160a01b031681525050611bc8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610f96565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611c1d908590600090869030904290600401611fe7565b600060405180830381600087803b158015611c3757600080fd5b505af115801561169f573d6000803e3d6000fd5b600060208083528351808285015260005b81811015611c7857858101830151858201604001528201611c5c565b506000604082860101526040601f19601f8301168501019250505092915050565b600060208284031215611cab57600080fd5b5035919050565b6001600160a01b0381168114610f3957600080fd5b8035611cd281611cb2565b919050565b60008060408385031215611cea57600080fd5b8235611cf581611cb2565b946020939093013593505050565b60008060408385031215611d1657600080fd5b8235611d2181611cb2565b915060208301358015158114611d3657600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215611d6a57600080fd5b823567ffffffffffffffff80821115611d8257600080fd5b818501915085601f830112611d9657600080fd5b813581811115611da857611da8611d41565b8060051b604051601f19603f83011681018181108582111715611dcd57611dcd611d41565b604052918252848201925083810185019188831115611deb57600080fd5b938501935b82851015611e1057611e0185611cc7565b84529385019392850192611df0565b98975050505050505050565b600060208284031215611e2e57600080fd5b8135610a2d81611cb2565b600080600060608486031215611e4e57600080fd5b8335611e5981611cb2565b92506020840135611e6981611cb2565b929592945050506040919091013590565b60008060408385031215611e8d57600080fd5b8235611e9881611cb2565b91506020830135611d3681611cb2565b600181811c90821680611ebc57607f821691505b602082108103611edc57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526024908201527f43616e206e6f742073657420627579206665657320686967686572207468616e6040820152632033302560e01b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611f6457611f64611f3c565b5060010190565b8082018082111561087c5761087c611f3c565b808202811582820484141761087c5761087c611f3c565b600082611fb257634e487b7160e01b600052601260045260246000fd5b500490565b8181038181111561087c5761087c611f3c565b600060208284031215611fdc57600080fd5b8151610a2d81611cb2565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120375784516001600160a01b031683529383019391830191600101612012565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212203cc7f0130669f06898cb6b7412b897d27b6963ec5c2619447fa20d3c2a2a6fdd64736f6c63430008130033

Deployed Bytecode Sourcemap

28502:8341:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16392:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31255:246;;;;;;;;;;-1:-1:-1;31255:246:0;;;;;:::i;:::-;;:::i;:::-;;18743:201;;;;;;;;;;-1:-1:-1;18743:201:0;;;;;:::i;:::-;;:::i;:::-;;;1512:14:1;;1505:22;1487:41;;1475:2;1460:18;18743:201:0;1347:187:1;32023:195:0;;;;;;;;;;-1:-1:-1;32023:195:0;;;;;:::i;:::-;;:::i;35742:207::-;;;;;;;;;;-1:-1:-1;35742:207:0;;;;;:::i;:::-;;:::i;17512:108::-;;;;;;;;;;-1:-1:-1;17600:12:0;;17512:108;;;3364:25:1;;;3352:2;3337:18;17512:108:0;3218:177:1;32226:116:0;;;;;;;;;;-1:-1:-1;32226:116:0;;;;;:::i;:::-;-1:-1:-1;;;;;32314:20:0;32290:4;32314:20;;;:11;:20;;;;;;;;;32226:116;30501:297;;;;;;;;;;-1:-1:-1;30501:297:0;;;;;:::i;:::-;;:::i;19524:295::-;;;;;;;;;;-1:-1:-1;19524:295:0;;;;;:::i;:::-;;:::i;17354:93::-;;;;;;;;;;-1:-1:-1;17354:93:0;;17437:2;4255:36:1;;4243:2;4228:18;17354:93:0;4113:184:1;20228:238:0;;;;;;;;;;-1:-1:-1;20228:238:0;;;;;:::i;:::-;;:::i;29260:40::-;;;;;;;;;;-1:-1:-1;29260:40:0;;;;;;;;29344:34;;;;;;;;;;-1:-1:-1;29344:34:0;;;;;;;;;;;28859;;;;;;;;;;-1:-1:-1;28859:34:0;;;;;;29540:38;;;;;;;;;;;;;;;;17683:127;;;;;;;;;;-1:-1:-1;17683:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;17784:18:0;17757:7;17784:18;;;;;;;;;;;;17683:127;9817:103;;;;;;;;;;;;;:::i;28681:40::-;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4484:32:1;;;4466:51;;4454:2;4439:18;28681:40:0;4302:221:1;36185:163:0;;;;;;;;;;;;;:::i;29487:45::-;;;;;;;;;;-1:-1:-1;29487:45:0;;;;;;;-1:-1:-1;;;;;29487:45:0;;;29385:32;;;;;;;;;;;;;;;;32348:308;;;;;;;;;;-1:-1:-1;32348:308:0;;;;;:::i;:::-;;:::i;28786:29::-;;;;;;;;;;-1:-1:-1;28786:29:0;;;;;;30804:192;;;;;;;;;;;;;:::i;9169:87::-;;;;;;;;;;-1:-1:-1;9242:6:0;;-1:-1:-1;;;;;9242:6:0;9169:87;;16611:104;;;;;;;;;;;;;:::i;31004:243::-;;;;;;;;;;-1:-1:-1;31004:243:0;;;;;:::i;:::-;;:::i;20969:436::-;;;;;;;;;;-1:-1:-1;20969:436:0;;;;;:::i;:::-;;:::i;28728:36::-;;;;;;;;;;;;;;;18016:193;;;;;;;;;;-1:-1:-1;18016:193:0;;;;;:::i;:::-;;:::i;31509:372::-;;;;;;;;;;-1:-1:-1;31509:372:0;;;;;:::i;:::-;;:::i;29307:30::-;;;;;;;;;;-1:-1:-1;29307:30:0;;;;;;;;;;;29424:39;;;;;;;;;;-1:-1:-1;29424:39:0;;;;;;;;18272:151;;;;;;;;;;-1:-1:-1;18272:151:0;;;;;:::i;:::-;;:::i;29152:60::-;;;;;;;;;;;;;;;;35634:100;;;;;;;;;;-1:-1:-1;35634:100:0;;;;;:::i;:::-;-1:-1:-1;;;;;35710:16:0;35689:4;35710:16;;;:13;:16;;;;;;;;;35634:100;35957:216;;;;;;;;;;-1:-1:-1;35957:216:0;;;;;:::i;:::-;;:::i;31889:126::-;;;;;;;;;;;;;:::i;10075:201::-;;;;;;;;;;-1:-1:-1;10075:201:0;;;;;:::i;:::-;;:::i;28822:30::-;;;;;;;;;;-1:-1:-1;28822:30:0;;;;;;16392:100;16446:13;16479:5;16472:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16392:100;:::o;31255:246::-;9055:13;:11;:13::i;:::-;31330:9:::1;:38:::0;;;31404:2:::1;31387:19:::0;::::1;;31379:68;;;;-1:-1:-1::0;;;31379:68:0::1;;;;;;;:::i;:::-;;;;;;;;;31463:30;::::0;31479:13;;31463:30:::1;::::0;;;::::1;31255:246:::0;:::o;18743:201::-;18826:4;7800:10;18882:32;7800:10;18898:7;18907:6;18882:8;:32::i;:::-;18932:4;18925:11;;;18743:201;;;;;:::o;32023:195::-;9055:13;:11;:13::i;:::-;-1:-1:-1;;;;;32137:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;:30;;-1:-1:-1;;32137:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;32183:27;;32137:30;;:20;32183:27:::1;::::0;::::1;32023:195:::0;;:::o;35742:207::-;9055:13;:11;:13::i;:::-;35832:6:::1;35827:115;35848:14;:21;35844:1;:25;35827:115;;;35926:4;35891:13;:32;35905:14;35920:1;35905:17;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;35891:32:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;35891:32:0;:39;;-1:-1:-1;;35891:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35871:3;::::1;::::0;::::1;:::i;:::-;;;;35827:115;;;;35742:207:::0;:::o;30501:297::-;9055:13;:11;:13::i;:::-;-1:-1:-1;;;;;30604:27:0;::::1;30582:113;;;::::0;-1:-1:-1;;;30582:113:0;;6525:2:1;30582:113:0::1;::::0;::::1;6507:21:1::0;6564:2;6544:18;;;6537:30;6603:34;6583:18;;;6576:62;-1:-1:-1;;;6654:18:1;;;6647:34;6698:19;;30582:113:0::1;6323:400:1::0;30582:113:0::1;30706:15;:31:::0;;-1:-1:-1;;;;;;30706:31:0::1;;-1:-1:-1::0;;;;;30706:31:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;30753:37:::1;::::0;::::1;::::0;-1:-1:-1;;30753:37:0::1;30501:297:::0;:::o;19524:295::-;19655:4;7800:10;19713:38;19729:4;7800:10;19744:6;19713:15;:38::i;:::-;19762:27;19772:4;19778:2;19782:6;19762:9;:27::i;:::-;19807:4;19800:11;;;19524:295;;;;;;:::o;20228:238::-;20316:4;7800:10;20372:64;7800:10;20388:7;20425:10;20397:25;7800:10;20388:7;20397:9;:25::i;:::-;:38;;;;:::i;:::-;20372:8;:64::i;9817:103::-;9055:13;:11;:13::i;:::-;9882:30:::1;9909:1;9882:18;:30::i;:::-;9817:103::o:0;36185:163::-;9055:13;:11;:13::i;:::-;36259:3:::1;36238:19;:24:::0;36273:20:::1;:26:::0;;-1:-1:-1;;36273:26:0::1;::::0;;36294:5:::1;36310:13;:30:::0;36185:163::o;32348:308::-;9055:13;:11;:13::i;:::-;32449:1:::1;32435:11;:15;32427:62;;;::::0;-1:-1:-1;;;32427:62:0;;7060:2:1;32427:62:0::1;::::0;::::1;7042:21:1::0;7099:2;7079:18;;;7072:30;7138:34;7118:18;;;7111:62;-1:-1:-1;;;7189:18:1;;;7182:32;7231:19;;32427:62:0::1;6858:398:1::0;32427:62:0::1;32519:3;32504:11;:18;;32496:75;;;::::0;-1:-1:-1;;;32496:75:0;;7463:2:1;32496:75:0::1;::::0;::::1;7445:21:1::0;7502:2;7482:18;;;7475:30;7541:34;7521:18;;;7514:62;-1:-1:-1;;;7592:18:1;;;7585:42;7644:19;;32496:75:0::1;7261:408:1::0;32496:75:0::1;32578:19;:33:::0;;;32623:29:::1;::::0;3364:25:1;;;32623:29:0::1;::::0;3352:2:1;3337:18;32623:29:0::1;;;;;;;32348:308:::0;:::o;30804:192::-;9055:13;:11;:13::i;:::-;30868:14:::1;::::0;;;::::1;;;30867:15;30859:54;;;::::0;-1:-1:-1;;;30859:54:0;;7876:2:1;30859:54:0::1;::::0;::::1;7858:21:1::0;7915:2;7895:18;;;7888:30;7954:28;7934:18;;;7927:56;8000:18;;30859:54:0::1;7674:350:1::0;30859:54:0::1;30924:14;:21:::0;;-1:-1:-1;;30924:21:0::1;::::0;::::1;::::0;;30976:12:::1;30956:17;:32:::0;30804:192::o;16611:104::-;16667:13;16700:7;16693:14;;;;;:::i;31004:243::-;9055:13;:11;:13::i;:::-;31078:8:::1;:37:::0;;;31151:2:::1;31134:19:::0;::::1;;31126:68;;;;-1:-1:-1::0;;;31126:68:0::1;;;;;;;:::i;:::-;31210:29;::::0;31225:13;;31210:29:::1;::::0;;;::::1;31004:243:::0;:::o;20969:436::-;21062:4;7800:10;21062:4;21145:25;7800:10;21162:7;21145:9;:25::i;:::-;21118:52;;21209:15;21189:16;:35;;21181:85;;;;-1:-1:-1;;;21181:85:0;;8231:2:1;21181:85:0;;;8213:21:1;8270:2;8250:18;;;8243:30;8309:34;8289:18;;;8282:62;-1:-1:-1;;;8360:18:1;;;8353:35;8405:19;;21181:85:0;8029:401:1;21181:85:0;21302:60;21311:5;21318:7;21346:15;21327:16;:34;21302:8;:60::i;:::-;-1:-1:-1;21393:4:0;;20969:436;-1:-1:-1;;;;20969:436:0:o;18016:193::-;18095:4;7800:10;18151:28;7800:10;18168:2;18172:6;18151:9;:28::i;31509:372::-;9055:13;:11;:13::i;:::-;31625:1:::1;31612:10;:14;:57;;;;-1:-1:-1::0;31665:4:0::1;31645:16;28640:18;31660:1;31645:16;:::i;:::-;31644:25;;;;:::i;:::-;31630:10;:39;;31612:57;31590:185;;;::::0;-1:-1:-1;;;31590:185:0;;9032:2:1;31590:185:0::1;::::0;::::1;9014:21:1::0;9071:2;9051:18;;;9044:30;9110:34;9090:18;;;9083:62;9181:34;9161:18;;;9154:62;-1:-1:-1;;;9232:19:1;;;9225:45;9287:19;;31590:185:0::1;8830:482:1::0;31590:185:0::1;31786:18;:31:::0;;;31833:40:::1;::::0;31807:10;;31833:40:::1;::::0;;;::::1;31509:372:::0;:::o;18272:151::-;-1:-1:-1;;;;;18388:18:0;;;18361:7;18388:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;18272:151::o;35957:216::-;9055:13;:11;:13::i;:::-;36053:6:::1;36048:118;36069:17;:24;36065:1;:28;36048:118;;;36151:5;36113:13;:35;36127:17;36145:1;36127:20;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;36113:35:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;36113:35:0;:43;;-1:-1:-1;;36113:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36095:3;::::1;::::0;::::1;:::i;:::-;;;;36048:118;;31889:126:::0;9055:13;:11;:13::i;:::-;31970:21:::1;::::0;::::1;;31969:38;;32003:4;31969:38;;;31995:5;31969:38;31945:21;:62:::0;;-1:-1:-1;;31945:62:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31889:126::o;10075:201::-;9055:13;:11;:13::i;:::-;-1:-1:-1;;;;;10164:22:0;::::1;10156:73;;;::::0;-1:-1:-1;;;10156:73:0;;9519:2:1;10156:73:0::1;::::0;::::1;9501:21:1::0;9558:2;9538:18;;;9531:30;9597:34;9577:18;;;9570:62;-1:-1:-1;;;9648:18:1;;;9641:36;9694:19;;10156:73:0::1;9317:402:1::0;10156:73:0::1;10240:28;10259:8;10240:18;:28::i;:::-;10075:201:::0;:::o;9334:132::-;9242:6;;-1:-1:-1;;;;;9242:6:0;7800:10;9398:23;9390:68;;;;-1:-1:-1;;;9390:68:0;;9926:2:1;9390:68:0;;;9908:21:1;;;9945:18;;;9938:30;10004:34;9984:18;;;9977:62;10056:18;;9390:68:0;9724:356:1;24996:380:0;-1:-1:-1;;;;;25132:19:0;;25124:68;;;;-1:-1:-1;;;25124:68:0;;10287:2:1;25124:68:0;;;10269:21:1;10326:2;10306:18;;;10299:30;10365:34;10345:18;;;10338:62;-1:-1:-1;;;10416:18:1;;;10409:34;10460:19;;25124:68:0;10085:400:1;25124:68:0;-1:-1:-1;;;;;25211:21:0;;25203:68;;;;-1:-1:-1;;;25203:68:0;;10692:2:1;25203:68:0;;;10674:21:1;10731:2;10711:18;;;10704:30;10770:34;10750:18;;;10743:62;-1:-1:-1;;;10821:18:1;;;10814:32;10863:19;;25203:68:0;10490:398:1;25203:68:0;-1:-1:-1;;;;;25284:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;25336:32;;3364:25:1;;;25336:32:0;;3337:18:1;25336:32:0;;;;;;;24996:380;;;:::o;25667:453::-;25802:24;25829:25;25839:5;25846:7;25829:9;:25::i;:::-;25802:52;;-1:-1:-1;;25869:16:0;:37;25865:248;;25951:6;25931:16;:26;;25923:68;;;;-1:-1:-1;;;25923:68:0;;11095:2:1;25923:68:0;;;11077:21:1;11134:2;11114:18;;;11107:30;11173:31;11153:18;;;11146:59;11222:18;;25923:68:0;10893:353:1;25923:68:0;26035:51;26044:5;26051:7;26079:6;26060:16;:25;26035:8;:51::i;:::-;25791:329;25667:453;;;:::o;33485:1742::-;33637:20;;;;33633:307;;;33689:11;-1:-1:-1;;;;;33674:27:0;:3;-1:-1:-1;;;;;33674:27:0;;;:58;;;;;33720:11;-1:-1:-1;;;;;33705:27:0;:3;-1:-1:-1;;;;;33705:27:0;;;33674:58;33670:263;;;33786:9;33757:39;;;;:28;:39;;;;;;33799:12;-1:-1:-1;33749:103:0;;;;-1:-1:-1;;;33749:103:0;;11453:2:1;33749:103:0;;;11435:21:1;11492:2;11472:18;;;11465:30;11531:34;11511:18;;;11504:62;-1:-1:-1;;;11582:18:1;;;11575:34;11626:19;;33749:103:0;11251:400:1;33749:103:0;33896:9;33867:39;;;;:28;:39;;;;;33909:12;33867:54;;33670:263;-1:-1:-1;;;;;33956:19:0;;33948:58;;;;-1:-1:-1;;;33948:58:0;;11858:2:1;33948:58:0;;;11840:21:1;11897:2;11877:18;;;11870:30;11936:28;11916:18;;;11909:56;11982:18;;33948:58:0;11656:350:1;33948:58:0;-1:-1:-1;;;;;34021:17:0;;34013:54;;;;-1:-1:-1;;;34013:54:0;;12213:2:1;34013:54:0;;;12195:21:1;12252:2;12232:18;;;12225:30;12291:26;12271:18;;;12264:54;12335:18;;34013:54:0;12011:348:1;34013:54:0;34092:1;34082:7;:11;34074:65;;;;-1:-1:-1;;;34074:65:0;;12566:2:1;34074:65:0;;;12548:21:1;12605:2;12585:18;;;12578:30;12644:34;12624:18;;;12617:62;-1:-1:-1;;;12695:18:1;;;12688:39;12744:19;;34074:65:0;12364:405:1;34074:65:0;-1:-1:-1;;;;;34204:20:0;;;;;;:13;:20;;;;;;;;34203:21;34195:67;;;;-1:-1:-1;;;34195:67:0;;12976:2:1;34195:67:0;;;12958:21:1;13015:2;12995:18;;;12988:30;13054:34;13034:18;;;13027:62;-1:-1:-1;;;13105:18:1;;;13098:31;13146:19;;34195:67:0;12774:397:1;34195:67:0;-1:-1:-1;;;;;34278:18:0;;;;;;:13;:18;;;;;;;;34277:19;34269:63;;;;-1:-1:-1;;;34269:63:0;;13378:2:1;34269:63:0;;;13360:21:1;13417:2;13397:18;;;13390:30;13456:33;13436:18;;;13429:61;13507:18;;34269:63:0;13176:355:1;34269:63:0;34445:23;34508:3;34486:19;;28640:18;34471:34;;;;:::i;:::-;:40;;;;:::i;:::-;-1:-1:-1;;;;;34593:18:0;;;;;;:11;:18;;;;;;34445:66;;-1:-1:-1;34593:18:0;;34592:19;:40;;;;-1:-1:-1;;;;;;34616:16:0;;;;;;:11;:16;;;;;;;;34615:17;34592:40;:61;;;;-1:-1:-1;;;;;;34636:17:0;;;;34592:61;:85;;;;-1:-1:-1;;;;;;34657:20:0;;34672:4;34657:20;;34592:85;:107;;;;;34688:11;-1:-1:-1;;;;;34681:18:0;:3;-1:-1:-1;;;;;34681:18:0;;;34592:107;34588:217;;;34748:15;34737:7;34720:14;34730:3;-1:-1:-1;;;;;17784:18:0;17757:7;17784:18;;;;;;;;;;;;17683:127;34720:14;:24;;;;:::i;:::-;:43;;34712:85;;;;-1:-1:-1;;;34712:85:0;;13738:2:1;34712:85:0;;;13720:21:1;13777:2;13757:18;;;13750:30;13816:31;13796:18;;;13789:59;13865:18;;34712:85:0;13536:353:1;34712:85:0;34813:18;34834:29;34843:5;34850:3;34855:7;34834:8;:29::i;:::-;34915:18;;34905:4;34872:12;17784:18;;;;;;;;;;;;-1:-1:-1;;;;;34945:18:0;;;;:11;:18;;;;;;;34813:50;;-1:-1:-1;;34887:46:0;;34945:18;;34944:19;:40;;;;-1:-1:-1;;;;;;34968:16:0;;;;;;:11;:16;;;;;;;;34967:17;34944:40;34940:236;;;35005:14;;;;;;;34997:45;;;;-1:-1:-1;;;34997:45:0;;14096:2:1;34997:45:0;;;14078:21:1;14135:2;14115:18;;;14108:30;-1:-1:-1;;;14154:18:1;;;14147:48;14212:18;;34997:45:0;13894:342:1;34997:45:0;35072:3;-1:-1:-1;;;;;35057:18:0;:11;-1:-1:-1;;;;;35057:18:0;;:43;;;;-1:-1:-1;35079:21:0;;;;35057:43;:54;;;;;35104:7;35057:54;:69;;;;-1:-1:-1;35116:10:0;;;;;;;35115:11;35057:69;35053:116;;;35143:14;:12;:14::i;:::-;35184:39;35200:5;35207:3;35212:10;35184:15;:39::i;:::-;33593:1634;;;33485:1742;;;:::o;10436:191::-;10529:6;;;-1:-1:-1;;;;;10546:17:0;;;-1:-1:-1;;;;;;10546:17:0;;;;;;;10579:40;;10529:6;;;10546:17;10529:6;;10579:40;;10510:16;;10579:40;10499:128;10436:191;:::o;32802:679::-;-1:-1:-1;;;;;32941:18:0;;32917:7;32941:18;;;:11;:18;;;;;;;;;:38;;-1:-1:-1;;;;;;32963:16:0;;;;;;:11;:16;;;;;;;;32941:38;32937:85;;;-1:-1:-1;33003:7:0;32996:14;;32937:85;33053:13;:26;-1:-1:-1;;;;;33103:11:0;33096:18;;;;;;33092:175;;-1:-1:-1;33142:9:0;:22;33092:175;;;33195:11;-1:-1:-1;;;;;33186:20:0;:5;-1:-1:-1;;;;;33186:20:0;;33182:85;;-1:-1:-1;33234:8:0;:21;33182:85;33281:11;33311:12;;33307:134;;33369:3;33347:18;33357:8;33347:7;:18;:::i;:::-;33346:26;;;;:::i;:::-;33340:32;;33387:42;33403:5;33418:4;33425:3;33387:15;:42::i;:::-;33459:13;33469:3;33459:7;:13;:::i;:::-;33451:22;32802:679;-1:-1:-1;;;;;;32802:679:0:o;35235:393::-;35279:10;:17;;-1:-1:-1;;35279:17:0;;;;;35345:4;-1:-1:-1;17784:18:0;;;;;;;;;;;35307:44;;35367:9;35380:1;35367:14;35363:53;;35398:7;35235:393::o;35363:53::-;35454:4;17757:7;17784:18;;;;;;;;;;;35426:35;;:9;:35::i;:::-;35490:15;;:54;;35472:12;;35490:15;;;-1:-1:-1;;;;;35490:15:0;;35518:21;;35472:12;35490:54;35472:12;35490:54;35518:21;35490:15;:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35471:73;;;35563:7;35555:36;;;;-1:-1:-1;;;35555:36:0;;14786:2:1;35555:36:0;;;14768:21:1;14825:2;14805:18;;;14798:30;-1:-1:-1;;;14844:18:1;;;14837:46;14900:18;;35555:36:0;14584:340:1;35555:36:0;-1:-1:-1;;35602:10:0;:18;;-1:-1:-1;;35602:18:0;;;35235:393::o;21875:840::-;-1:-1:-1;;;;;22006:18:0;;21998:68;;;;-1:-1:-1;;;21998:68:0;;15131:2:1;21998:68:0;;;15113:21:1;15170:2;15150:18;;;15143:30;15209:34;15189:18;;;15182:62;-1:-1:-1;;;15260:18:1;;;15253:35;15305:19;;21998:68:0;14929:401:1;21998:68:0;-1:-1:-1;;;;;22085:16:0;;22077:64;;;;-1:-1:-1;;;22077:64:0;;15537:2:1;22077:64:0;;;15519:21:1;15576:2;15556:18;;;15549:30;15615:34;15595:18;;;15588:62;-1:-1:-1;;;15666:18:1;;;15659:33;15709:19;;22077:64:0;15335:399:1;22077:64:0;-1:-1:-1;;;;;22227:15:0;;22205:19;22227:15;;;;;;;;;;;22261:21;;;;22253:72;;;;-1:-1:-1;;;22253:72:0;;15941:2:1;22253:72:0;;;15923:21:1;15980:2;15960:18;;;15953:30;16019:34;15999:18;;;15992:62;-1:-1:-1;;;16070:18:1;;;16063:36;16116:19;;22253:72:0;15739:402:1;22253:72:0;-1:-1:-1;;;;;22361:15:0;;;:9;:15;;;;;;;;;;;22379:20;;;22361:38;;22579:13;;;;;;;;;;:23;;;;;;22631:26;;3364:25:1;;;22579:13:0;;22631:26;;3337:18:1;22631:26:0;;;;;;;22670:37;26720:125;36356:447;36436:16;;;36450:1;36436:16;;;;;;;;36412:21;;36436:16;;;;;;;;;;-1:-1:-1;36436:16:0;36412:40;;36481:4;36463;36468:1;36463:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;36463:23:0;;;-1:-1:-1;;;;;36463:23:0;;;;;36507:13;-1:-1:-1;;;;;36507:18:0;;:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;36497:4;36502:1;36497:7;;;;;;;;:::i;:::-;;;;;;:30;-1:-1:-1;;;;;36497:30:0;;;-1:-1:-1;;;;;36497:30:0;;;;;36538:56;36555:4;36570:13;36586:7;36538:8;:56::i;:::-;36605:190;;-1:-1:-1;;;36605:190:0;;-1:-1:-1;;;;;36605:13:0;:64;;;;:190;;36684:7;;36706:1;;36722:4;;36749;;36769:15;;36605:190;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:548: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;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:180::-;626:6;679:2;667:9;658:7;654:23;650:32;647:52;;;695:1;692;685:12;647:52;-1:-1:-1;718:23:1;;567:180;-1:-1:-1;567:180:1:o;752:131::-;-1:-1:-1;;;;;827:31:1;;817:42;;807:70;;873:1;870;863:12;888:134;956:20;;985:31;956:20;985:31;:::i;:::-;888:134;;;:::o;1027:315::-;1095:6;1103;1156:2;1144:9;1135:7;1131:23;1127:32;1124:52;;;1172:1;1169;1162:12;1124:52;1211:9;1198:23;1230:31;1255:5;1230:31;:::i;:::-;1280:5;1332:2;1317:18;;;;1304:32;;-1:-1:-1;;;1027:315:1:o;1539:416::-;1604:6;1612;1665:2;1653:9;1644:7;1640:23;1636:32;1633:52;;;1681:1;1678;1671:12;1633:52;1720:9;1707:23;1739:31;1764:5;1739:31;:::i;:::-;1789:5;-1:-1:-1;1846:2:1;1831:18;;1818:32;1888:15;;1881:23;1869:36;;1859:64;;1919:1;1916;1909:12;1859:64;1942:7;1932:17;;;1539:416;;;;;:::o;1960:127::-;2021:10;2016:3;2012:20;2009:1;2002:31;2052:4;2049:1;2042:15;2076:4;2073:1;2066:15;2092:1121;2176:6;2207:2;2250;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2306:9;2293:23;2335:18;2376:2;2368:6;2365:14;2362:34;;;2392:1;2389;2382:12;2362:34;2430:6;2419:9;2415:22;2405:32;;2475:7;2468:4;2464:2;2460:13;2456:27;2446:55;;2497:1;2494;2487:12;2446:55;2533:2;2520:16;2555:2;2551;2548:10;2545:36;;;2561:18;;:::i;:::-;2607:2;2604:1;2600:10;2639:2;2633:9;2702:2;2698:7;2693:2;2689;2685:11;2681:25;2673:6;2669:38;2757:6;2745:10;2742:22;2737:2;2725:10;2722:18;2719:46;2716:72;;;2768:18;;:::i;:::-;2804:2;2797:22;2854:18;;;2888:15;;;;-1:-1:-1;2930:11:1;;;2926:20;;;2958:19;;;2955:39;;;2990:1;2987;2980:12;2955:39;3014:11;;;;3034:148;3050:6;3045:3;3042:15;3034:148;;;3116:23;3135:3;3116:23;:::i;:::-;3104:36;;3067:12;;;;3160;;;;3034:148;;;3201:6;2092:1121;-1:-1:-1;;;;;;;;2092:1121:1:o;3400:247::-;3459:6;3512:2;3500:9;3491:7;3487:23;3483:32;3480:52;;;3528:1;3525;3518:12;3480:52;3567:9;3554:23;3586:31;3611:5;3586:31;:::i;3652:456::-;3729:6;3737;3745;3798:2;3786:9;3777:7;3773:23;3769:32;3766:52;;;3814:1;3811;3804:12;3766:52;3853:9;3840:23;3872:31;3897:5;3872:31;:::i;:::-;3922:5;-1:-1:-1;3979:2:1;3964:18;;3951:32;3992:33;3951:32;3992:33;:::i;:::-;3652:456;;4044:7;;-1:-1:-1;;;4098:2:1;4083:18;;;;4070:32;;3652:456::o;4736:388::-;4804:6;4812;4865:2;4853:9;4844:7;4840:23;4836:32;4833:52;;;4881:1;4878;4871:12;4833:52;4920:9;4907:23;4939:31;4964:5;4939:31;:::i;:::-;4989:5;-1:-1:-1;5046:2:1;5031:18;;5018:32;5059:33;5018:32;5059:33;:::i;5129:380::-;5208:1;5204:12;;;;5251;;;5272:61;;5326:4;5318:6;5314:17;5304:27;;5272:61;5379:2;5371:6;5368:14;5348:18;5345:38;5342:161;;5425:10;5420:3;5416:20;5413:1;5406:31;5460:4;5457:1;5450:15;5488:4;5485:1;5478:15;5342:161;;5129:380;;;:::o;5514:400::-;5716:2;5698:21;;;5755:2;5735:18;;;5728:30;5794:34;5789:2;5774:18;;5767:62;-1:-1:-1;;;5860:2:1;5845:18;;5838:34;5904:3;5889:19;;5514:400::o;5919:127::-;5980:10;5975:3;5971:20;5968:1;5961:31;6011:4;6008:1;6001:15;6035:4;6032:1;6025:15;6051:127;6112:10;6107:3;6103:20;6100:1;6093:31;6143:4;6140:1;6133:15;6167:4;6164:1;6157:15;6183:135;6222:3;6243:17;;;6240:43;;6263:18;;:::i;:::-;-1:-1:-1;6310:1:1;6299:13;;6183:135::o;6728:125::-;6793:9;;;6814:10;;;6811:36;;;6827:18;;:::i;8435:168::-;8508:9;;;8539;;8556:15;;;8550:22;;8536:37;8526:71;;8577:18;;:::i;8608:217::-;8648:1;8674;8664:132;;8718:10;8713:3;8709:20;8706:1;8699:31;8753:4;8750:1;8743:15;8781:4;8778:1;8771:15;8664:132;-1:-1:-1;8810:9:1;;8608:217::o;14241:128::-;14308:9;;;14329:11;;;14326:37;;;14343:18;;:::i;16146:251::-;16216:6;16269:2;16257:9;16248:7;16244:23;16240:32;16237:52;;;16285:1;16282;16275:12;16237:52;16317:9;16311:16;16336:31;16361:5;16336:31;:::i;16402:980::-;16664:4;16712:3;16701:9;16697:19;16743:6;16732:9;16725:25;16769:2;16807:6;16802:2;16791:9;16787:18;16780:34;16850:3;16845:2;16834:9;16830:18;16823:31;16874:6;16909;16903:13;16940:6;16932;16925:22;16978:3;16967:9;16963:19;16956:26;;17017:2;17009:6;17005:15;16991:29;;17038:1;17048:195;17062:6;17059:1;17056:13;17048:195;;;17127:13;;-1:-1:-1;;;;;17123:39:1;17111:52;;17218:15;;;;17183:12;;;;17159:1;17077:9;17048:195;;;-1:-1:-1;;;;;;;17299:32:1;;;;17294:2;17279:18;;17272:60;-1:-1:-1;;;17363:3:1;17348:19;17341:35;17260:3;16402:980;-1:-1:-1;;;16402:980:1:o

Swarm Source

ipfs://3cc7f0130669f06898cb6b7412b897d27b6963ec5c2619447fa20d3c2a2a6fdd
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.