ETH Price: $3,278.50 (+0.25%)
Gas: 3.87 Gwei

Token

TarotLandToken (TLT)
 

Overview

Max Total Supply

10,000,000,000 TLT

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
125,470,077.729120527541738444 TLT

Value
$0.00
0x7736c2bec1e3ec01fb82c209cd3e9f3971c9a011
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:
TarotLand

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;
pragma experimental ABIEncoderV2;

////// lib/openzeppelin-contracts/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

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

////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol)

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

interface ITarotNFT {

    function tokenOfOwnerByIndex(address owner, uint256 index)
        external
        view
        returns (uint256 tokenId);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);
}
    
contract TarotLand is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
    address public tarot_NFT;
    bool private swapping;

    address public devWallet;

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

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public swapEnabled = false;

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

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

    ITarotNFT TarotNFT;

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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);
    event devWalletUpdated(
        address indexed newWallet,
        address indexed oldWallet
    );

    constructor(address _tarot_nft) ERC20("TarotLandToken", "TLT") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        tarot_NFT = _tarot_nft;
        TarotNFT = ITarotNFT(_tarot_nft);
        
        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

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


        uint256 _buyDevFee = 2;
        uint256 _buyLiquidityFee = 3;

        uint256 _sellDevFee = 3;
        uint256 _sellLiquidityFee = 4;

        uint256 totalSupply = 10_000_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 1 / 100; // 1% from total supply maxTransactionAmountTxn
        maxWallet = totalSupply * 2 / 100; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyDevFee = _buyDevFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyDevFee + buyLiquidityFee;

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

        devWallet = address(0x78a238A12E40295aCba375c52F083449D6D693CD); // set as dev wallet

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

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

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external  {
        require(msg.sender == owner() || msg.sender == tarot_NFT, "Not Tarot Controller");
        tradingActive = true;
        swapEnabled = true;
    }

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

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

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

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

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

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

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

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

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

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }
   
    
    function isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

    

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to] || TarotNFT.balanceOf(from) > 0 || TarotNFT.balanceOf(to) > 0,
                        "Trading is not active."
                    );
                }
                
                
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

        // make the swap
        uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(
            tokenAmount,
            0, // accept any amount of USDC
            path,
            devWallet,
            block.timestamp
        );
    }

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        if (contractBalance == 0) {
            return;
        }

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

        swapTokensForUSDC(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_tarot_nft","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"inputs":[],"name":"USDC","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tarot_NFT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newDevWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600c805462ffffff191660011790553480156200004657600080fd5b50604051620028c4380380620028c48339810160408190526200006991620005f4565b6040518060400160405280600e81526020016d2a30b937ba2630b7322a37b5b2b760911b8152506040518060400160405280600381526020016215131560ea1b8152508160039081620000bd9190620006ca565b506004620000cc8282620006ca565b505050620000e9620000e36200039060201b60201c565b62000394565b600780546001600160a01b0383166001600160a01b03199182168117909255601380549091169091179055737a250d5630b4cf539739df2c5dacb4c659f2488d62000136816001620003e6565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000181573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a79190620005f4565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001f9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021f9190620005f4565b6001600160a01b031660a08190526200023a906001620003e6565b600260038060046b204fce5e3e2502611000000060646200025d826001620007ac565b620002699190620007cc565b60095560646200027b826002620007ac565b620002879190620007cc565b600b556127106200029a826005620007ac565b620002a69190620007cc565b600a55600e859055600f849055620002bf8486620007ef565b600d5560118390556012829055620002d88284620007ef565b601055600880546001600160a01b0319167378a238a12e40295acba375c52f083449d6d693cd17905562000320620003186005546001600160a01b031690565b600162000460565b6200032d30600162000460565b6200033c61dead600162000460565b6200035b620003536005546001600160a01b031690565b6001620003e6565b62000368306001620003e6565b6200037761dead6001620003e6565b6200038333826200050a565b5050505050505062000805565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004355760405162461bcd60e51b81526020600482018190526024820152600080516020620028a483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004ab5760405162461bcd60e51b81526020600482018190526024820152600080516020620028a483398151915260448201526064016200042c565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005625760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200042c565b8060026000828254620005769190620007ef565b90915550506001600160a01b03821660009081526020819052604081208054839290620005a5908490620007ef565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b6000602082840312156200060757600080fd5b81516001600160a01b03811681146200061f57600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200065157607f821691505b6020821081036200067257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005ef57600081815260208120601f850160051c81016020861015620006a15750805b601f850160051c820191505b81811015620006c257828155600101620006ad565b505050505050565b81516001600160401b03811115620006e657620006e662000626565b620006fe81620006f784546200063c565b8462000678565b602080601f8311600181146200073657600084156200071d5750858301515b600019600386901b1c1916600185901b178555620006c2565b600085815260208120601f198616915b82811015620007675788860151825594840194600190910190840162000746565b5085821015620007865787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007c657620007c662000796565b92915050565b600082620007ea57634e487b7160e01b600052601260045260246000fd5b500490565b80820180821115620007c657620007c662000796565b60805160a0516120486200085c60003960008181610448015281816114520152818161164f0152818161175f0152818161180801526118c201526000818161036301528181611ba60152611be501526120486000f3fe6080604052600436106102605760003560e01c80637571336a11610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610732578063e2f4560514610778578063f11a24d31461078e578063f2fde38b146107a4578063f6374342146107c4578063f8b45b05146107da57600080fd5b8063c0246668146106a6578063c18bc195146106c6578063c8c8ebe4146106e6578063d257b34f146106fc578063d85ba0631461071c57600080fd5b8063924de9b711610108578063924de9b71461060657806395d89b41146106265780639c3b4fdc1461063b578063a0d82dc514610651578063a9059cbb14610667578063bbc0c7421461068757600080fd5b80637571336a1461057357806389a30271146105935780638a8c523c146105b35780638da5cb5b146105c85780638ea5220f146105e657600080fd5b806327c8f835116101dd57806366ca9b83116101a157806366ca9b83146104bd5780636a486a8e146104dd5780636ddd1713146104f357806370a0823114610513578063715018a614610549578063751039fc1461055e57600080fd5b806327c8f83514610404578063313ce5671461041a57806349bd5a5e146104365780634a62bb651461046a5780634fbee1931461048457600080fd5b80631694505e116102245780631694505e1461035157806318160ddd146103855780631816467f146103a4578063203e727e146103c457806323b872dd146103e457600080fd5b806302dbd8f81461026c57806306fdde031461028e578063095ea7b3146102b95780630af37f61146102e957806310d5de531461032157600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611c5d565b6107f0565b005b34801561029a57600080fd5b506102a3610890565b6040516102b09190611c7f565b60405180910390f35b3480156102c557600080fd5b506102d96102d4366004611ce4565b610922565b60405190151581526020016102b0565b3480156102f557600080fd5b50600754610309906001600160a01b031681565b6040516001600160a01b0390911681526020016102b0565b34801561032d57600080fd5b506102d961033c366004611d0e565b60156020526000908152604090205460ff1681565b34801561035d57600080fd5b506103097f000000000000000000000000000000000000000000000000000000000000000081565b34801561039157600080fd5b506002545b6040519081526020016102b0565b3480156103b057600080fd5b5061028c6103bf366004611d0e565b610939565b3480156103d057600080fd5b5061028c6103df366004611d29565b6109c0565b3480156103f057600080fd5b506102d96103ff366004611d42565b610a9d565b34801561041057600080fd5b5061030961dead81565b34801561042657600080fd5b50604051601281526020016102b0565b34801561044257600080fd5b506103097f000000000000000000000000000000000000000000000000000000000000000081565b34801561047657600080fd5b50600c546102d99060ff1681565b34801561049057600080fd5b506102d961049f366004611d0e565b6001600160a01b031660009081526014602052604090205460ff1690565b3480156104c957600080fd5b5061028c6104d8366004611c5d565b610b47565b3480156104e957600080fd5b5061039660105481565b3480156104ff57600080fd5b50600c546102d99062010000900460ff1681565b34801561051f57600080fd5b5061039661052e366004611d0e565b6001600160a01b031660009081526020819052604090205490565b34801561055557600080fd5b5061028c610bda565b34801561056a57600080fd5b506102d9610c10565b34801561057f57600080fd5b5061028c61058e366004611d8e565b610c4d565b34801561059f57600080fd5b50600654610309906001600160a01b031681565b3480156105bf57600080fd5b5061028c610ca2565b3480156105d457600080fd5b506005546001600160a01b0316610309565b3480156105f257600080fd5b50600854610309906001600160a01b031681565b34801561061257600080fd5b5061028c610621366004611dc1565b610d1b565b34801561063257600080fd5b506102a3610d61565b34801561064757600080fd5b50610396600e5481565b34801561065d57600080fd5b5061039660115481565b34801561067357600080fd5b506102d9610682366004611ce4565b610d70565b34801561069357600080fd5b50600c546102d990610100900460ff1681565b3480156106b257600080fd5b5061028c6106c1366004611d8e565b610d7d565b3480156106d257600080fd5b5061028c6106e1366004611d29565b610e06565b3480156106f257600080fd5b5061039660095481565b34801561070857600080fd5b506102d9610717366004611d29565b610ed7565b34801561072857600080fd5b50610396600d5481565b34801561073e57600080fd5b5061039661074d366004611ddc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078457600080fd5b50610396600a5481565b34801561079a57600080fd5b50610396600f5481565b3480156107b057600080fd5b5061028c6107bf366004611d0e565b61102e565b3480156107d057600080fd5b5061039660125481565b3480156107e657600080fd5b50610396600b5481565b6005546001600160a01b031633146108235760405162461bcd60e51b815260040161081a90611e06565b60405180910390fd5b601182905560128190556108378183611e51565b6010819055600a101561088c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161081a565b5050565b60606003805461089f90611e64565b80601f01602080910402602001604051908101604052809291908181526020018280546108cb90611e64565b80156109185780601f106108ed57610100808354040283529160200191610918565b820191906000526020600020905b8154815290600101906020018083116108fb57829003601f168201915b5050505050905090565b600061092f3384846110c9565b5060015b92915050565b6005546001600160a01b031633146109635760405162461bcd60e51b815260040161081a90611e06565b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109ea5760405162461bcd60e51b815260040161081a90611e06565b670de0b6b3a76400006103e86109ff60025490565b610a0a906001611e9e565b610a149190611eb5565b610a1e9190611eb5565b811015610a855760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161081a565b610a9781670de0b6b3a7640000611e9e565b60095550565b6000610aaa8484846111ed565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b2f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161081a565b610b3c85338584036110c9565b506001949350505050565b6005546001600160a01b03163314610b715760405162461bcd60e51b815260040161081a90611e06565b600e829055600f819055610b858183611e51565b600d819055600a101561088c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161081a565b6005546001600160a01b03163314610c045760405162461bcd60e51b815260040161081a90611e06565b610c0e600061190a565b565b6005546000906001600160a01b03163314610c3d5760405162461bcd60e51b815260040161081a90611e06565b50600c805460ff19169055600190565b6005546001600160a01b03163314610c775760405162461bcd60e51b815260040161081a90611e06565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331480610cc557506007546001600160a01b031633145b610d085760405162461bcd60e51b81526020600482015260146024820152732737ba102a30b937ba1021b7b73a3937b63632b960611b604482015260640161081a565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610d455760405162461bcd60e51b815260040161081a90611e06565b600c8054911515620100000262ff000019909216919091179055565b60606004805461089f90611e64565b600061092f3384846111ed565b6005546001600160a01b03163314610da75760405162461bcd60e51b815260040161081a90611e06565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e305760405162461bcd60e51b815260040161081a90611e06565b670de0b6b3a76400006103e8610e4560025490565b610e50906005611e9e565b610e5a9190611eb5565b610e649190611eb5565b811015610ebf5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161081a565b610ed181670de0b6b3a7640000611e9e565b600b5550565b6005546000906001600160a01b03163314610f045760405162461bcd60e51b815260040161081a90611e06565b620186a0610f1160025490565b610f1c906001611e9e565b610f269190611eb5565b821015610f935760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161081a565b6103e8610f9f60025490565b610faa906005611e9e565b610fb49190611eb5565b8211156110205760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161081a565b50600a81905560015b919050565b6005546001600160a01b031633146110585760405162461bcd60e51b815260040161081a90611e06565b6001600160a01b0381166110bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081a565b6110c68161190a565b50565b6001600160a01b03831661112b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161081a565b6001600160a01b03821661118c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161081a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112135760405162461bcd60e51b815260040161081a90611ed7565b6001600160a01b0382166112395760405162461bcd60e51b815260040161081a90611f1c565b806000036112525761124d8383600061195c565b505050565b600c5460ff1615611618576005546001600160a01b0384811691161480159061128957506005546001600160a01b03838116911614155b801561129d57506001600160a01b03821615155b80156112b457506001600160a01b03821661dead14155b80156112ca5750600754600160a01b900460ff16155b1561161857600c54610100900460ff16611450576001600160a01b03831660009081526014602052604090205460ff168061131d57506001600160a01b03821660009081526014602052604090205460ff165b8061139457506013546040516370a0823160e01b81526001600160a01b03858116600483015260009216906370a0823190602401602060405180830381865afa15801561136e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113929190611f5f565b115b8061140b57506013546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a0823190602401602060405180830381865afa1580156113e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114099190611f5f565b115b6114505760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161081a565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b03161480156114aa57506001600160a01b03821660009081526015602052604090205460ff16155b1561158e5760095481111561151f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161081a565b600b546001600160a01b0383166000908152602081905260409020546115459083611e51565b11156115895760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161081a565b611618565b6001600160a01b03821660009081526015602052604090205460ff1661161857600b546001600160a01b0383166000908152602081905260409020546115d49083611e51565b11156116185760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161081a565b30600090815260208190526040902054600a54811080159081906116465750600754600160a01b900460ff16155b801561168357507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b80156116a857506001600160a01b03851660009081526014602052604090205460ff16155b80156116cd57506001600160a01b03841660009081526014602052604090205460ff16155b156116fb576007805460ff60a01b1916600160a01b1790556116ed611ab1565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061174957506001600160a01b03851660009081526014602052604090205460ff165b15611752575060005b600080600083156118f4577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b03161480156117a057506000601054115b15611806576117c560646117bf6010548a611afb90919063ffffffff16565b90611b0e565b9250601054601254846117d89190611e9e565b6117e29190611eb5565b9150601054601154846117f59190611e9e565b6117ff9190611eb5565b90506118a5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561184957506000600d54115b156118a55761186860646117bf600d548a611afb90919063ffffffff16565b9250600d54600f548461187b9190611e9e565b6118859190611eb5565b9150600d54600e54846118989190611e9e565b6118a29190611eb5565b90505b82156118b6576118b689308561195c565b81156118e7576118e7307f00000000000000000000000000000000000000000000000000000000000000008461195c565b6118f18388611f78565b96505b6118ff89898961195c565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166119825760405162461bcd60e51b815260040161081a90611ed7565b6001600160a01b0382166119a85760405162461bcd60e51b815260040161081a90611f1c565b6001600160a01b03831660009081526020819052604090205481811015611a205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161081a565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a57908490611e51565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aa391815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611acc5750565b600a54611ada906014611e9e565b811115611af257600a54611aef906014611e9e565b90505b6110c681611b1a565b6000611b078284611e9e565b9392505050565b6000611b078284611eb5565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b4f57611b4f611f8b565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611b8057611b80611f8b565b60200260200101906001600160a01b031690816001600160a01b031681525050611bcb307f0000000000000000000000000000000000000000000000000000000000000000846110c9565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611c27928792600092889291909116904290600401611fa1565b600060405180830381600087803b158015611c4157600080fd5b505af1158015611c55573d6000803e3d6000fd5b505050505050565b60008060408385031215611c7057600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611cac57858101830151858201604001528201611c90565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461102957600080fd5b60008060408385031215611cf757600080fd5b611d0083611ccd565b946020939093013593505050565b600060208284031215611d2057600080fd5b611b0782611ccd565b600060208284031215611d3b57600080fd5b5035919050565b600080600060608486031215611d5757600080fd5b611d6084611ccd565b9250611d6e60208501611ccd565b9150604084013590509250925092565b8035801515811461102957600080fd5b60008060408385031215611da157600080fd5b611daa83611ccd565b9150611db860208401611d7e565b90509250929050565b600060208284031215611dd357600080fd5b611b0782611d7e565b60008060408385031215611def57600080fd5b611df883611ccd565b9150611db860208401611ccd565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561093357610933611e3b565b600181811c90821680611e7857607f821691505b602082108103611e9857634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761093357610933611e3b565b600082611ed257634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060208284031215611f7157600080fd5b5051919050565b8181038181111561093357610933611e3b565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ff15784516001600160a01b031683529383019391830191600101611fcc565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220405e1356e6eec9fd9f0992e455f83d125adca545b96bfe1b87d3a8d943a5d43764736f6c634300081100334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000058db84c12d8a559f25b52e9ace34a97fdbbd5f0

Deployed Bytecode

0x6080604052600436106102605760003560e01c80637571336a11610144578063c0246668116100b6578063dd62ed3e1161007a578063dd62ed3e14610732578063e2f4560514610778578063f11a24d31461078e578063f2fde38b146107a4578063f6374342146107c4578063f8b45b05146107da57600080fd5b8063c0246668146106a6578063c18bc195146106c6578063c8c8ebe4146106e6578063d257b34f146106fc578063d85ba0631461071c57600080fd5b8063924de9b711610108578063924de9b71461060657806395d89b41146106265780639c3b4fdc1461063b578063a0d82dc514610651578063a9059cbb14610667578063bbc0c7421461068757600080fd5b80637571336a1461057357806389a30271146105935780638a8c523c146105b35780638da5cb5b146105c85780638ea5220f146105e657600080fd5b806327c8f835116101dd57806366ca9b83116101a157806366ca9b83146104bd5780636a486a8e146104dd5780636ddd1713146104f357806370a0823114610513578063715018a614610549578063751039fc1461055e57600080fd5b806327c8f83514610404578063313ce5671461041a57806349bd5a5e146104365780634a62bb651461046a5780634fbee1931461048457600080fd5b80631694505e116102245780631694505e1461035157806318160ddd146103855780631816467f146103a4578063203e727e146103c457806323b872dd146103e457600080fd5b806302dbd8f81461026c57806306fdde031461028e578063095ea7b3146102b95780630af37f61146102e957806310d5de531461032157600080fd5b3661026757005b600080fd5b34801561027857600080fd5b5061028c610287366004611c5d565b6107f0565b005b34801561029a57600080fd5b506102a3610890565b6040516102b09190611c7f565b60405180910390f35b3480156102c557600080fd5b506102d96102d4366004611ce4565b610922565b60405190151581526020016102b0565b3480156102f557600080fd5b50600754610309906001600160a01b031681565b6040516001600160a01b0390911681526020016102b0565b34801561032d57600080fd5b506102d961033c366004611d0e565b60156020526000908152604090205460ff1681565b34801561035d57600080fd5b506103097f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b34801561039157600080fd5b506002545b6040519081526020016102b0565b3480156103b057600080fd5b5061028c6103bf366004611d0e565b610939565b3480156103d057600080fd5b5061028c6103df366004611d29565b6109c0565b3480156103f057600080fd5b506102d96103ff366004611d42565b610a9d565b34801561041057600080fd5b5061030961dead81565b34801561042657600080fd5b50604051601281526020016102b0565b34801561044257600080fd5b506103097f0000000000000000000000007219ff9cd95fcf68b4a733786aa02c00bb511dd881565b34801561047657600080fd5b50600c546102d99060ff1681565b34801561049057600080fd5b506102d961049f366004611d0e565b6001600160a01b031660009081526014602052604090205460ff1690565b3480156104c957600080fd5b5061028c6104d8366004611c5d565b610b47565b3480156104e957600080fd5b5061039660105481565b3480156104ff57600080fd5b50600c546102d99062010000900460ff1681565b34801561051f57600080fd5b5061039661052e366004611d0e565b6001600160a01b031660009081526020819052604090205490565b34801561055557600080fd5b5061028c610bda565b34801561056a57600080fd5b506102d9610c10565b34801561057f57600080fd5b5061028c61058e366004611d8e565b610c4d565b34801561059f57600080fd5b50600654610309906001600160a01b031681565b3480156105bf57600080fd5b5061028c610ca2565b3480156105d457600080fd5b506005546001600160a01b0316610309565b3480156105f257600080fd5b50600854610309906001600160a01b031681565b34801561061257600080fd5b5061028c610621366004611dc1565b610d1b565b34801561063257600080fd5b506102a3610d61565b34801561064757600080fd5b50610396600e5481565b34801561065d57600080fd5b5061039660115481565b34801561067357600080fd5b506102d9610682366004611ce4565b610d70565b34801561069357600080fd5b50600c546102d990610100900460ff1681565b3480156106b257600080fd5b5061028c6106c1366004611d8e565b610d7d565b3480156106d257600080fd5b5061028c6106e1366004611d29565b610e06565b3480156106f257600080fd5b5061039660095481565b34801561070857600080fd5b506102d9610717366004611d29565b610ed7565b34801561072857600080fd5b50610396600d5481565b34801561073e57600080fd5b5061039661074d366004611ddc565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561078457600080fd5b50610396600a5481565b34801561079a57600080fd5b50610396600f5481565b3480156107b057600080fd5b5061028c6107bf366004611d0e565b61102e565b3480156107d057600080fd5b5061039660125481565b3480156107e657600080fd5b50610396600b5481565b6005546001600160a01b031633146108235760405162461bcd60e51b815260040161081a90611e06565b60405180910390fd5b601182905560128190556108378183611e51565b6010819055600a101561088c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161081a565b5050565b60606003805461089f90611e64565b80601f01602080910402602001604051908101604052809291908181526020018280546108cb90611e64565b80156109185780601f106108ed57610100808354040283529160200191610918565b820191906000526020600020905b8154815290600101906020018083116108fb57829003601f168201915b5050505050905090565b600061092f3384846110c9565b5060015b92915050565b6005546001600160a01b031633146109635760405162461bcd60e51b815260040161081a90611e06565b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109ea5760405162461bcd60e51b815260040161081a90611e06565b670de0b6b3a76400006103e86109ff60025490565b610a0a906001611e9e565b610a149190611eb5565b610a1e9190611eb5565b811015610a855760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161081a565b610a9781670de0b6b3a7640000611e9e565b60095550565b6000610aaa8484846111ed565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b2f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161081a565b610b3c85338584036110c9565b506001949350505050565b6005546001600160a01b03163314610b715760405162461bcd60e51b815260040161081a90611e06565b600e829055600f819055610b858183611e51565b600d819055600a101561088c5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161081a565b6005546001600160a01b03163314610c045760405162461bcd60e51b815260040161081a90611e06565b610c0e600061190a565b565b6005546000906001600160a01b03163314610c3d5760405162461bcd60e51b815260040161081a90611e06565b50600c805460ff19169055600190565b6005546001600160a01b03163314610c775760405162461bcd60e51b815260040161081a90611e06565b6001600160a01b03919091166000908152601560205260409020805460ff1916911515919091179055565b6005546001600160a01b0316331480610cc557506007546001600160a01b031633145b610d085760405162461bcd60e51b81526020600482015260146024820152732737ba102a30b937ba1021b7b73a3937b63632b960611b604482015260640161081a565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610d455760405162461bcd60e51b815260040161081a90611e06565b600c8054911515620100000262ff000019909216919091179055565b60606004805461089f90611e64565b600061092f3384846111ed565b6005546001600160a01b03163314610da75760405162461bcd60e51b815260040161081a90611e06565b6001600160a01b038216600081815260146020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e305760405162461bcd60e51b815260040161081a90611e06565b670de0b6b3a76400006103e8610e4560025490565b610e50906005611e9e565b610e5a9190611eb5565b610e649190611eb5565b811015610ebf5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161081a565b610ed181670de0b6b3a7640000611e9e565b600b5550565b6005546000906001600160a01b03163314610f045760405162461bcd60e51b815260040161081a90611e06565b620186a0610f1160025490565b610f1c906001611e9e565b610f269190611eb5565b821015610f935760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161081a565b6103e8610f9f60025490565b610faa906005611e9e565b610fb49190611eb5565b8211156110205760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161081a565b50600a81905560015b919050565b6005546001600160a01b031633146110585760405162461bcd60e51b815260040161081a90611e06565b6001600160a01b0381166110bd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161081a565b6110c68161190a565b50565b6001600160a01b03831661112b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161081a565b6001600160a01b03821661118c5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161081a565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112135760405162461bcd60e51b815260040161081a90611ed7565b6001600160a01b0382166112395760405162461bcd60e51b815260040161081a90611f1c565b806000036112525761124d8383600061195c565b505050565b600c5460ff1615611618576005546001600160a01b0384811691161480159061128957506005546001600160a01b03838116911614155b801561129d57506001600160a01b03821615155b80156112b457506001600160a01b03821661dead14155b80156112ca5750600754600160a01b900460ff16155b1561161857600c54610100900460ff16611450576001600160a01b03831660009081526014602052604090205460ff168061131d57506001600160a01b03821660009081526014602052604090205460ff165b8061139457506013546040516370a0823160e01b81526001600160a01b03858116600483015260009216906370a0823190602401602060405180830381865afa15801561136e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113929190611f5f565b115b8061140b57506013546040516370a0823160e01b81526001600160a01b03848116600483015260009216906370a0823190602401602060405180830381865afa1580156113e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114099190611f5f565b115b6114505760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161081a565b7f0000000000000000000000007219ff9cd95fcf68b4a733786aa02c00bb511dd86001600160a01b0316836001600160a01b03161480156114aa57506001600160a01b03821660009081526015602052604090205460ff16155b1561158e5760095481111561151f5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161081a565b600b546001600160a01b0383166000908152602081905260409020546115459083611e51565b11156115895760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161081a565b611618565b6001600160a01b03821660009081526015602052604090205460ff1661161857600b546001600160a01b0383166000908152602081905260409020546115d49083611e51565b11156116185760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161081a565b30600090815260208190526040902054600a54811080159081906116465750600754600160a01b900460ff16155b801561168357507f0000000000000000000000007219ff9cd95fcf68b4a733786aa02c00bb511dd86001600160a01b0316846001600160a01b0316145b80156116a857506001600160a01b03851660009081526014602052604090205460ff16155b80156116cd57506001600160a01b03841660009081526014602052604090205460ff16155b156116fb576007805460ff60a01b1916600160a01b1790556116ed611ab1565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526014602052604090205460ff600160a01b90920482161591168061174957506001600160a01b03851660009081526014602052604090205460ff165b15611752575060005b600080600083156118f4577f0000000000000000000000007219ff9cd95fcf68b4a733786aa02c00bb511dd86001600160a01b0316886001600160a01b03161480156117a057506000601054115b15611806576117c560646117bf6010548a611afb90919063ffffffff16565b90611b0e565b9250601054601254846117d89190611e9e565b6117e29190611eb5565b9150601054601154846117f59190611e9e565b6117ff9190611eb5565b90506118a5565b7f0000000000000000000000007219ff9cd95fcf68b4a733786aa02c00bb511dd86001600160a01b0316896001600160a01b031614801561184957506000600d54115b156118a55761186860646117bf600d548a611afb90919063ffffffff16565b9250600d54600f548461187b9190611e9e565b6118859190611eb5565b9150600d54600e54846118989190611e9e565b6118a29190611eb5565b90505b82156118b6576118b689308561195c565b81156118e7576118e7307f0000000000000000000000007219ff9cd95fcf68b4a733786aa02c00bb511dd88461195c565b6118f18388611f78565b96505b6118ff89898961195c565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166119825760405162461bcd60e51b815260040161081a90611ed7565b6001600160a01b0382166119a85760405162461bcd60e51b815260040161081a90611f1c565b6001600160a01b03831660009081526020819052604090205481811015611a205760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161081a565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a57908490611e51565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611aa391815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611acc5750565b600a54611ada906014611e9e565b811115611af257600a54611aef906014611e9e565b90505b6110c681611b1a565b6000611b078284611e9e565b9392505050565b6000611b078284611eb5565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b4f57611b4f611f8b565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611b8057611b80611f8b565b60200260200101906001600160a01b031690816001600160a01b031681525050611bcb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846110c9565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611c27928792600092889291909116904290600401611fa1565b600060405180830381600087803b158015611c4157600080fd5b505af1158015611c55573d6000803e3d6000fd5b505050505050565b60008060408385031215611c7057600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611cac57858101830151858201604001528201611c90565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461102957600080fd5b60008060408385031215611cf757600080fd5b611d0083611ccd565b946020939093013593505050565b600060208284031215611d2057600080fd5b611b0782611ccd565b600060208284031215611d3b57600080fd5b5035919050565b600080600060608486031215611d5757600080fd5b611d6084611ccd565b9250611d6e60208501611ccd565b9150604084013590509250925092565b8035801515811461102957600080fd5b60008060408385031215611da157600080fd5b611daa83611ccd565b9150611db860208401611d7e565b90509250929050565b600060208284031215611dd357600080fd5b611b0782611d7e565b60008060408385031215611def57600080fd5b611df883611ccd565b9150611db860208401611ccd565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b8082018082111561093357610933611e3b565b600181811c90821680611e7857607f821691505b602082108103611e9857634e487b7160e01b600052602260045260246000fd5b50919050565b808202811582820484141761093357610933611e3b565b600082611ed257634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600060208284031215611f7157600080fd5b5051919050565b8181038181111561093357610933611e3b565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611ff15784516001600160a01b031683529383019391830191600101611fcc565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220405e1356e6eec9fd9f0992e455f83d125adca545b96bfe1b87d3a8d943a5d43764736f6c63430008110033

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

000000000000000000000000058db84c12d8a559f25b52e9ace34a97fdbbd5f0

-----Decoded View---------------
Arg [0] : _tarot_nft (address): 0x058dB84c12D8A559f25B52e9Ace34a97fdbBD5f0

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000058db84c12d8a559f25b52e9ace34a97fdbbd5f0


Deployed Bytecode Sourcemap

25007:10953:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30560:318;;;;;;;;;;-1:-1:-1;30560:318:0;;;;;:::i;:::-;;:::i;:::-;;9531:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11698:169;;;;;;;;;;-1:-1:-1;11698:169:0;;;;;:::i;:::-;;:::i;:::-;;;1422:14:1;;1415:22;1397:41;;1385:2;1370:18;11698:169:0;1257:187:1;25320:24:0;;;;;;;;;;-1:-1:-1;25320:24:0;;;;-1:-1:-1;;;;;25320:24:0;;;;;;-1:-1:-1;;;;;1613:32:1;;;1595:51;;1583:2;1568:18;25320:24:0;1449:203:1;26027:63:0;;;;;;;;;;-1:-1:-1;26027:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;25086:51;;;;;;;;;;;;;;;10651:108;;;;;;;;;;-1:-1:-1;10739:12:0;;10651:108;;;2228:25:1;;;2216:2;2201:18;10651:108:0;2082:177:1;31094:189:0;;;;;;;;;;-1:-1:-1;31094:189:0;;;;;:::i;:::-;;:::i;29323:275::-;;;;;;;;;;-1:-1:-1;29323:275:0;;;;;:::i;:::-;;:::i;12349:492::-;;;;;;;;;;-1:-1:-1;12349:492:0;;;;;:::i;:::-;;:::i;25189:53::-;;;;;;;;;;;;25235:6;25189:53;;10493:93;;;;;;;;;;-1:-1:-1;10493:93:0;;10576:2;2924:36:1;;2912:2;2897:18;10493:93:0;2782:184:1;25144:38:0;;;;;;;;;;;;;;;25529:33;;;;;;;;;;-1:-1:-1;25529:33:0;;;;;;;;31300:126;;;;;;;;;;-1:-1:-1;31300:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;31390:28:0;31366:4;31390:28;;;:19;:28;;;;;;;;;31300:126;30241:311;;;;;;;;;;-1:-1:-1;30241:311:0;;;;;:::i;:::-;;:::i;25753:28::-;;;;;;;;;;;;;;;;25609:31;;;;;;;;;;-1:-1:-1;25609:31:0;;;;;;;;;;;10822:127;;;;;;;;;;-1:-1:-1;10822:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;10923:18:0;10896:7;10923:18;;;;;;;;;;;;10822:127;2766:103;;;;;;;;;;;;;:::i;28627:121::-;;;;;;;;;;;;;:::i;29870:167::-;;;;;;;;;;-1:-1:-1;29870:167:0;;;;;:::i;:::-;;:::i;25249:64::-;;;;;;;;;;-1:-1:-1;25249:64:0;;;;-1:-1:-1;;;;;25249:64:0;;;28380:195;;;;;;;;;;;;;:::i;2115:87::-;;;;;;;;;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;2188:6:0;2115:87;;25381:24;;;;;;;;;;-1:-1:-1;25381:24:0;;;;-1:-1:-1;;;;;25381:24:0;;;30133:100;;;;;;;;;;-1:-1:-1;30133:100:0;;;;;:::i;:::-;;:::i;9750:104::-;;;;;;;;;;;;;:::i;25683:24::-;;;;;;;;;;;;;;;;25788:25;;;;;;;;;;;;;;;;11162:175;;;;;;;;;;-1:-1:-1;11162:175:0;;;;;:::i;:::-;;:::i;25569:33::-;;;;;;;;;;-1:-1:-1;25569:33:0;;;;;;;;;;;30904:182;;;;;;;;;;-1:-1:-1;30904:182:0;;;;;:::i;:::-;;:::i;29606:256::-;;;;;;;;;;-1:-1:-1;29606:256:0;;;;;:::i;:::-;;:::i;25414:35::-;;;;;;;;;;;;;;;;28818:497;;;;;;;;;;-1:-1:-1;28818:497:0;;;;;:::i;:::-;;:::i;25649:27::-;;;;;;;;;;;;;;;;11400:151;;;;;;;;;;-1:-1:-1;11400:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;11516:18:0;;;11489:7;11516:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11400:151;25456:33;;;;;;;;;;;;;;;;25714:30;;;;;;;;;;;;;;;;3024:201;;;;;;;;;;-1:-1:-1;3024:201:0;;;;;:::i;:::-;;:::i;25820:31::-;;;;;;;;;;;;;;;;25496:24;;;;;;;;;;;;;;;;30560:318;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;;;;;;;;;30679:10:::1;:20:::0;;;30710:16:::1;:32:::0;;;30769:29:::1;30729:13:::0;30692:7;30769:29:::1;:::i;:::-;30753:13;:45:::0;;;30834:2:::1;-1:-1:-1::0;30817:19:0::1;30809:61;;;::::0;-1:-1:-1;;;30809:61:0;;4670:2:1;30809:61:0::1;::::0;::::1;4652:21:1::0;4709:2;4689:18;;;4682:30;4748:31;4728:18;;;4721:59;4797:18;;30809:61:0::1;4468:353:1::0;30809:61:0::1;30560:318:::0;;:::o;9531:100::-;9585:13;9618:5;9611:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9531:100;:::o;11698:169::-;11781:4;11798:39;868:10;11821:7;11830:6;11798:8;:39::i;:::-;-1:-1:-1;11855:4:0;11698:169;;;;;:::o;31094:189::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;31230:9:::1;::::0;31199:41:::1;::::0;-1:-1:-1;;;;;31230:9:0;;::::1;::::0;31199:41;::::1;::::0;::::1;::::0;31230:9:::1;::::0;31199:41:::1;31251:9;:24:::0;;-1:-1:-1;;;;;;31251:24:0::1;-1:-1:-1::0;;;;;31251:24:0;;;::::1;::::0;;;::::1;::::0;;31094:189::o;29323:275::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;29460:4:::1;29452;29431:13;10739:12:::0;;;10651:108;29431:13:::1;:17;::::0;29447:1:::1;29431:17;:::i;:::-;29430:26;;;;:::i;:::-;29429:35;;;;:::i;:::-;29419:6;:45;;29397:142;;;::::0;-1:-1:-1;;;29397:142:0;;5808:2:1;29397:142:0::1;::::0;::::1;5790:21:1::0;5847:2;5827:18;;;5820:30;5886:34;5866:18;;;5859:62;-1:-1:-1;;;5937:18:1;;;5930:45;5992:19;;29397:142:0::1;5606:411:1::0;29397:142:0::1;29573:17;:6:::0;29583::::1;29573:17;:::i;:::-;29550:20;:40:::0;-1:-1:-1;29323:275:0:o;12349:492::-;12489:4;12506:36;12516:6;12524:9;12535:6;12506:9;:36::i;:::-;-1:-1:-1;;;;;12582:19:0;;12555:24;12582:19;;;:11;:19;;;;;;;;868:10;12582:33;;;;;;;;12634:26;;;;12626:79;;;;-1:-1:-1;;;12626:79:0;;6224:2:1;12626:79:0;;;6206:21:1;6263:2;6243:18;;;6236:30;6302:34;6282:18;;;6275:62;-1:-1:-1;;;6353:18:1;;;6346:38;6401:19;;12626:79:0;6022:404:1;12626:79:0;12741:57;12750:6;868:10;12791:6;12772:16;:25;12741:8;:57::i;:::-;-1:-1:-1;12829:4:0;;12349:492;-1:-1:-1;;;;12349:492:0:o;30241:311::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;30359:9:::1;:19:::0;;;30389:15:::1;:31:::0;;;30446:27:::1;30407:13:::0;30371:7;30446:27:::1;:::i;:::-;30431:12;:42:::0;;;30508:2:::1;-1:-1:-1::0;30492:18:0::1;30484:60;;;::::0;-1:-1:-1;;;30484:60:0;;4670:2:1;30484:60:0::1;::::0;::::1;4652:21:1::0;4709:2;4689:18;;;4682:30;4748:31;4728:18;;;4721:59;4797:18;;30484:60:0::1;4468:353:1::0;2766:103:0;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;2831:30:::1;2858:1;2831:18;:30::i;:::-;2766:103::o:0;28627:121::-;2188:6;;28679:4;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;28696:14:0::1;:22:::0;;-1:-1:-1;;28696:22:0::1;::::0;;;28627:121;:::o;29870:167::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29983:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;29983:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29870:167::o;28380:195::-;2188:6;;-1:-1:-1;;;;;2188:6:0;28434:10;:21;;:48;;-1:-1:-1;28473:9:0;;-1:-1:-1;;;;;28473:9:0;28459:10;:23;28434:48;28426:81;;;;-1:-1:-1;;;28426:81:0;;6633:2:1;28426:81:0;;;6615:21:1;6672:2;6652:18;;;6645:30;-1:-1:-1;;;6691:18:1;;;6684:50;6751:18;;28426:81:0;6431:344:1;28426:81:0;28518:13;:20;;-1:-1:-1;;28549:18:0;;;;;28380:195::o;30133:100::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;30204:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;30204:21:0;;::::1;::::0;;;::::1;::::0;;30133:100::o;9750:104::-;9806:13;9839:7;9832:14;;;;;:::i;11162:175::-;11248:4;11265:42;868:10;11289:9;11300:6;11265:9;:42::i;30904:182::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30989:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;30989:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;31044:34;;1397:41:1;;;31044:34:0::1;::::0;1370:18:1;31044:34:0::1;;;;;;;30904:182:::0;;:::o;29606:256::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;29746:4:::1;29738;29717:13;10739:12:::0;;;10651:108;29717:13:::1;:17;::::0;29733:1:::1;29717:17;:::i;:::-;29716:26;;;;:::i;:::-;29715:35;;;;:::i;:::-;29705:6;:45;;29683:131;;;::::0;-1:-1:-1;;;29683:131:0;;6982:2:1;29683:131:0::1;::::0;::::1;6964:21:1::0;7021:2;7001:18;;;6994:30;7060:34;7040:18;;;7033:62;-1:-1:-1;;;7111:18:1;;;7104:34;7155:19;;29683:131:0::1;6780:400:1::0;29683:131:0::1;29837:17;:6:::0;29847::::1;29837:17;:::i;:::-;29825:9;:29:::0;-1:-1:-1;29606:256:0:o;28818:497::-;2188:6;;28926:4;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;29005:6:::1;28984:13;10739:12:::0;;;10651:108;28984:13:::1;:17;::::0;29000:1:::1;28984:17;:::i;:::-;28983:28;;;;:::i;:::-;28970:9;:41;;28948:144;;;::::0;-1:-1:-1;;;28948:144:0;;7387:2:1;28948:144:0::1;::::0;::::1;7369:21:1::0;7426:2;7406:18;;;7399:30;7465:34;7445:18;;;7438:62;-1:-1:-1;;;7516:18:1;;;7509:51;7577:19;;28948:144:0::1;7185:417:1::0;28948:144:0::1;29160:4;29139:13;10739:12:::0;;;10651:108;29139:13:::1;:17;::::0;29155:1:::1;29139:17;:::i;:::-;29138:26;;;;:::i;:::-;29125:9;:39;;29103:141;;;::::0;-1:-1:-1;;;29103:141:0;;7809:2:1;29103:141:0::1;::::0;::::1;7791:21:1::0;7848:2;7828:18;;;7821:30;7887:34;7867:18;;;7860:62;-1:-1:-1;;;7938:18:1;;;7931:50;7998:19;;29103:141:0::1;7607:416:1::0;29103:141:0::1;-1:-1:-1::0;29255:18:0::1;:30:::0;;;29303:4:::1;2406:1;28818:497:::0;;;:::o;3024:201::-;2188:6;;-1:-1:-1;;;;;2188:6:0;868:10;2335:23;2327:68;;;;-1:-1:-1;;;2327:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3113:22:0;::::1;3105:73;;;::::0;-1:-1:-1;;;3105:73:0;;8230:2:1;3105:73:0::1;::::0;::::1;8212:21:1::0;8269:2;8249:18;;;8242:30;8308:34;8288:18;;;8281:62;-1:-1:-1;;;8359:18:1;;;8352:36;8405:19;;3105:73:0::1;8028:402:1::0;3105:73:0::1;3189:28;3208:8;3189:18;:28::i;:::-;3024:201:::0;:::o;15190:380::-;-1:-1:-1;;;;;15326:19:0;;15318:68;;;;-1:-1:-1;;;15318:68:0;;8637:2:1;15318:68:0;;;8619:21:1;8676:2;8656:18;;;8649:30;8715:34;8695:18;;;8688:62;-1:-1:-1;;;8766:18:1;;;8759:34;8810:19;;15318:68:0;8435:400:1;15318:68:0;-1:-1:-1;;;;;15405:21:0;;15397:68;;;;-1:-1:-1;;;15397:68:0;;9042:2:1;15397:68:0;;;9024:21:1;9081:2;9061:18;;;9054:30;9120:34;9100:18;;;9093:62;-1:-1:-1;;;9171:18:1;;;9164:32;9213:19;;15397:68:0;8840:398:1;15397:68:0;-1:-1:-1;;;;;15478:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15530:32;;2228:25:1;;;15530:32:0;;2201:18:1;15530:32:0;;;;;;;15190:380;;;:::o;31442:3585::-;-1:-1:-1;;;;;31574:18:0;;31566:68;;;;-1:-1:-1;;;31566:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31653:16:0;;31645:64;;;;-1:-1:-1;;;31645:64:0;;;;;;;:::i;:::-;31724:6;31734:1;31724:11;31720:93;;31752:28;31768:4;31774:2;31778:1;31752:15;:28::i;:::-;31442:3585;;;:::o;31720:93::-;31829:14;;;;31825:1366;;;2188:6;;-1:-1:-1;;;;;31882:15:0;;;2188:6;;31882:15;;;;:49;;-1:-1:-1;2188:6:0;;-1:-1:-1;;;;;31918:13:0;;;2188:6;;31918:13;;31882:49;:86;;;;-1:-1:-1;;;;;;31952:16:0;;;;31882:86;:128;;;;-1:-1:-1;;;;;;31989:21:0;;32003:6;31989:21;;31882:128;:158;;;;-1:-1:-1;32032:8:0;;-1:-1:-1;;;32032:8:0;;;;32031:9;31882:158;31860:1320;;;32080:13;;;;;;;32075:285;;-1:-1:-1;;;;;32152:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;32181:23:0;;;;;;:19;:23;;;;;;;;32152:52;:84;;;-1:-1:-1;32208:8:0;;:24;;-1:-1:-1;;;32208:24:0;;-1:-1:-1;;;;;1613:32:1;;;32208:24:0;;;1595:51:1;32235:1:0;;32208:8;;:18;;1568::1;;32208:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:28;32152:84;:114;;;-1:-1:-1;32240:8:0;;:22;;-1:-1:-1;;;32240:22:0;;-1:-1:-1;;;;;1613:32:1;;;32240:22:0;;;1595:51:1;32265:1:0;;32240:8;;:18;;1568::1;;32240:22:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;32152:114;32118:222;;;;-1:-1:-1;;;32118:222:0;;10444:2:1;32118:222:0;;;10426:21:1;10483:2;10463:18;;;10456:30;-1:-1:-1;;;10502:18:1;;;10495:52;10564:18;;32118:222:0;10242:346:1;32118:222:0;32448:13;-1:-1:-1;;;;;32440:21:0;:4;-1:-1:-1;;;;;32440:21:0;;:82;;;;-1:-1:-1;;;;;;32487:35:0;;;;;;:31;:35;;;;;;;;32486:36;32440:82;32414:751;;;32609:20;;32599:6;:30;;32565:169;;;;-1:-1:-1;;;32565:169:0;;10795:2:1;32565:169:0;;;10777:21:1;10834:2;10814:18;;;10807:30;10873:34;10853:18;;;10846:62;-1:-1:-1;;;10924:18:1;;;10917:51;10985:19;;32565:169:0;10593:417:1;32565:169:0;32817:9;;-1:-1:-1;;;;;10923:18:0;;10896:7;10923:18;;;;;;;;;;;32791:22;;:6;:22;:::i;:::-;:35;;32757:140;;;;-1:-1:-1;;;32757:140:0;;11217:2:1;32757:140:0;;;11199:21:1;11256:2;11236:18;;;11229:30;-1:-1:-1;;;11275:18:1;;;11268:49;11334:18;;32757:140:0;11015:343:1;32757:140:0;32414:751;;;-1:-1:-1;;;;;32945:35:0;;;;;;:31;:35;;;;;;;;32940:225;;33065:9;;-1:-1:-1;;;;;10923:18:0;;10896:7;10923:18;;;;;;;;;;;33039:22;;:6;:22;:::i;:::-;:35;;33005:140;;;;-1:-1:-1;;;33005:140:0;;11217:2:1;33005:140:0;;;11199:21:1;11256:2;11236:18;;;11229:30;-1:-1:-1;;;11275:18:1;;;11268:49;11334:18;;33005:140:0;11015:343:1;33005:140:0;33252:4;33203:28;10923:18;;;;;;;;;;;33310;;33286:42;;;;;;;33359:33;;-1:-1:-1;33384:8:0;;-1:-1:-1;;;33384:8:0;;;;33383:9;33359:33;:69;;;;;33415:13;-1:-1:-1;;;;;33409:19:0;:2;-1:-1:-1;;;;;33409:19:0;;33359:69;:112;;;;-1:-1:-1;;;;;;33446:25:0;;;;;;:19;:25;;;;;;;;33445:26;33359:112;:153;;;;-1:-1:-1;;;;;;33489:23:0;;;;;;:19;:23;;;;;;;;33488:24;33359:153;33341:285;;;33539:8;:15;;-1:-1:-1;;;;33539:15:0;-1:-1:-1;;;33539:15:0;;;33571:10;:8;:10::i;:::-;33598:8;:16;;-1:-1:-1;;;;33598:16:0;;;33341:285;33654:8;;-1:-1:-1;;;;;33764:25:0;;33638:12;33764:25;;;33654:8;33764:25;;;;;;33654:8;-1:-1:-1;;;33654:8:0;;;;;33653:9;;33764:25;;:52;;-1:-1:-1;;;;;;33793:23:0;;;;;;:19;:23;;;;;;;;33764:52;33760:100;;;-1:-1:-1;33843:5:0;33760:100;33872:12;33899:26;33940:20;34053:7;34049:925;;;34111:13;-1:-1:-1;;;;;34105:19:0;:2;-1:-1:-1;;;;;34105:19:0;;:40;;;;;34144:1;34128:13;;:17;34105:40;34101:583;;;34173:34;34203:3;34173:25;34184:13;;34173:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;34166:41;;34275:13;;34255:16;;34248:4;:23;;;;:::i;:::-;34247:41;;;;:::i;:::-;34226:62;;34344:13;;34330:10;;34323:4;:17;;;;:::i;:::-;34322:35;;;;:::i;:::-;34307:50;;34101:583;;;34427:13;-1:-1:-1;;;;;34419:21:0;:4;-1:-1:-1;;;;;34419:21:0;;:41;;;;;34459:1;34444:12;;:16;34419:41;34415:269;;;34488:33;34517:3;34488:24;34499:12;;34488:6;:10;;:24;;;;:::i;:33::-;34481:40;;34588:12;;34569:15;;34562:4;:22;;;;:::i;:::-;34561:39;;;;:::i;:::-;34540:60;;34656:12;;34643:9;;34636:4;:16;;;;:::i;:::-;34635:33;;;;:::i;:::-;34620:48;;34415:269;34704:7;;34700:90;;34732:42;34748:4;34762;34769;34732:15;:42::i;:::-;34808:22;;34804:128;;34851:65;34875:4;34882:13;34897:18;34851:15;:65::i;:::-;34948:14;34958:4;34948:14;;:::i;:::-;;;34049:925;34986:33;35002:4;35008:2;35012:6;34986:15;:33::i;:::-;31555:3472;;;;;;31442:3585;;;:::o;3385:191::-;3478:6;;;-1:-1:-1;;;;;3495:17:0;;;-1:-1:-1;;;;;;3495:17:0;;;;;;;3528:40;;3478:6;;;3495:17;3478:6;;3528:40;;3459:16;;3528:40;3448:128;3385:191;:::o;13331:733::-;-1:-1:-1;;;;;13471:20:0;;13463:70;;;;-1:-1:-1;;;13463:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13552:23:0;;13544:71;;;;-1:-1:-1;;;13544:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13712:17:0;;13688:21;13712:17;;;;;;;;;;;13748:23;;;;13740:74;;;;-1:-1:-1;;;13740:74:0;;11698:2:1;13740:74:0;;;11680:21:1;11737:2;11717:18;;;11710:30;11776:34;11756:18;;;11749:62;-1:-1:-1;;;11827:18:1;;;11820:36;11873:19;;13740:74:0;11496:402:1;13740:74:0;-1:-1:-1;;;;;13850:17:0;;;:9;:17;;;;;;;;;;;13870:22;;;13850:42;;13914:20;;;;;;;;:30;;13886:6;;13850:9;13914:30;;13886:6;;13914:30;:::i;:::-;;;;;;;;13979:9;-1:-1:-1;;;;;13962:35:0;13971:6;-1:-1:-1;;;;;13962:35:0;;13990:6;13962:35;;;;2228:25:1;;2216:2;2201:18;;2082:177;13962:35:0;;;;;;;;13452:612;13331:733;;;:::o;35615:340::-;35698:4;35654:23;10923:18;;;;;;;;;;;;35719:20;;;35715:59;;35756:7;35615:340::o;35715:59::-;35808:18;;:23;;35829:2;35808:23;:::i;:::-;35790:15;:41;35786:115;;;35866:18;;:23;;35887:2;35866:23;:::i;:::-;35848:41;;35786:115;35913:34;35931:15;35913:17;:34::i;20643:98::-;20701:7;20728:5;20732:1;20728;:5;:::i;:::-;20721:12;20643:98;-1:-1:-1;;;20643:98:0:o;21042:::-;21100:7;21127:5;21131:1;21127;:5;:::i;35035:572::-;35186:16;;;35200:1;35186:16;;;;;;;;35162:21;;35186:16;;;;;;;;;;-1:-1:-1;35186:16:0;35162:40;;35231:4;35213;35218:1;35213:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;35213:23:0;;;:7;;;;;;;;;:23;35257:4;;35247:7;;35257:4;;;35247;;35257;;35247:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;35247:14:0;;;-1:-1:-1;;;;;35247:14:0;;;;;35274:62;35291:4;35306:15;35324:11;35274:8;:62::i;:::-;35549:9;;35375:224;;-1:-1:-1;;;35375:224:0;;-1:-1:-1;;;;;35375:15:0;:69;;;;;:224;;35459:11;;35485:1;;35530:4;;35549:9;;;;;35573:15;;35375:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35091:516;35035:572;:::o;14:248:1:-;82:6;90;143:2;131:9;122:7;118:23;114:32;111:52;;;159:1;156;149:12;111:52;-1:-1:-1;;182:23:1;;;252:2;237:18;;;224:32;;-1:-1:-1;14:248:1:o;267:548::-;379:4;408:2;437;426:9;419:21;469:6;463:13;512:6;507:2;496:9;492:18;485:34;537:1;547:140;561:6;558:1;555:13;547:140;;;656:14;;;652:23;;646:30;622:17;;;641:2;618:26;611:66;576:10;;547:140;;;551:3;736:1;731:2;722:6;711:9;707:22;703:31;696:42;806:2;799;795:7;790:2;782:6;778:15;774:29;763:9;759:45;755:54;747:62;;;;267:548;;;;:::o;820:173::-;888:20;;-1:-1:-1;;;;;937:31:1;;927:42;;917:70;;983:1;980;973:12;998:254;1066:6;1074;1127:2;1115:9;1106:7;1102:23;1098:32;1095:52;;;1143:1;1140;1133:12;1095:52;1166:29;1185:9;1166:29;:::i;:::-;1156:39;1242:2;1227:18;;;;1214:32;;-1:-1:-1;;;998:254:1:o;1657:186::-;1716:6;1769:2;1757:9;1748:7;1744:23;1740:32;1737:52;;;1785:1;1782;1775:12;1737:52;1808:29;1827:9;1808:29;:::i;2264:180::-;2323:6;2376:2;2364:9;2355:7;2351:23;2347:32;2344:52;;;2392:1;2389;2382:12;2344:52;-1:-1:-1;2415:23:1;;2264:180;-1:-1:-1;2264:180:1:o;2449:328::-;2526:6;2534;2542;2595:2;2583:9;2574:7;2570:23;2566:32;2563:52;;;2611:1;2608;2601:12;2563:52;2634:29;2653:9;2634:29;:::i;:::-;2624:39;;2682:38;2716:2;2705:9;2701:18;2682:38;:::i;:::-;2672:48;;2767:2;2756:9;2752:18;2739:32;2729:42;;2449:328;;;;;:::o;2971:160::-;3036:20;;3092:13;;3085:21;3075:32;;3065:60;;3121:1;3118;3111:12;3136:254;3201:6;3209;3262:2;3250:9;3241:7;3237:23;3233:32;3230:52;;;3278:1;3275;3268:12;3230:52;3301:29;3320:9;3301:29;:::i;:::-;3291:39;;3349:35;3380:2;3369:9;3365:18;3349:35;:::i;:::-;3339:45;;3136:254;;;;;:::o;3395:180::-;3451:6;3504:2;3492:9;3483:7;3479:23;3475:32;3472:52;;;3520:1;3517;3510:12;3472:52;3543:26;3559:9;3543:26;:::i;3580:260::-;3648:6;3656;3709:2;3697:9;3688:7;3684:23;3680:32;3677:52;;;3725:1;3722;3715:12;3677:52;3748:29;3767:9;3748:29;:::i;:::-;3738:39;;3796:38;3830:2;3819:9;3815:18;3796:38;:::i;3845:356::-;4047:2;4029:21;;;4066:18;;;4059:30;4125:34;4120:2;4105:18;;4098:62;4192:2;4177:18;;3845:356::o;4206:127::-;4267:10;4262:3;4258:20;4255:1;4248:31;4298:4;4295:1;4288:15;4322:4;4319:1;4312:15;4338:125;4403:9;;;4424:10;;;4421:36;;;4437:18;;:::i;4826:380::-;4905:1;4901:12;;;;4948;;;4969:61;;5023:4;5015:6;5011:17;5001:27;;4969:61;5076:2;5068:6;5065:14;5045:18;5042:38;5039:161;;5122:10;5117:3;5113:20;5110:1;5103:31;5157:4;5154:1;5147:15;5185:4;5182:1;5175:15;5039:161;;4826:380;;;:::o;5211:168::-;5284:9;;;5315;;5332:15;;;5326:22;;5312:37;5302:71;;5353:18;;:::i;5384:217::-;5424:1;5450;5440:132;;5494:10;5489:3;5485:20;5482:1;5475:31;5529:4;5526:1;5519:15;5557:4;5554:1;5547:15;5440:132;-1:-1:-1;5586:9:1;;5384:217::o;9243:401::-;9445:2;9427:21;;;9484:2;9464:18;;;9457:30;9523:34;9518:2;9503:18;;9496:62;-1:-1:-1;;;9589:2:1;9574:18;;9567:35;9634:3;9619:19;;9243:401::o;9649:399::-;9851:2;9833:21;;;9890:2;9870:18;;;9863:30;9929:34;9924:2;9909:18;;9902:62;-1:-1:-1;;;9995:2:1;9980:18;;9973:33;10038:3;10023:19;;9649:399::o;10053:184::-;10123:6;10176:2;10164:9;10155:7;10151:23;10147:32;10144:52;;;10192:1;10189;10182:12;10144:52;-1:-1:-1;10215:16:1;;10053:184;-1:-1:-1;10053:184:1:o;11363:128::-;11430:9;;;11451:11;;;11448:37;;;11465:18;;:::i;12035:127::-;12096:10;12091:3;12087:20;12084:1;12077:31;12127:4;12124:1;12117:15;12151:4;12148:1;12141:15;12167:980;12429:4;12477:3;12466:9;12462:19;12508:6;12497:9;12490:25;12534:2;12572:6;12567:2;12556:9;12552:18;12545:34;12615:3;12610:2;12599:9;12595:18;12588:31;12639:6;12674;12668:13;12705:6;12697;12690:22;12743:3;12732:9;12728:19;12721:26;;12782:2;12774:6;12770:15;12756:29;;12803:1;12813:195;12827:6;12824:1;12821:13;12813:195;;;12892:13;;-1:-1:-1;;;;;12888:39:1;12876:52;;12983:15;;;;12948:12;;;;12924:1;12842:9;12813:195;;;-1:-1:-1;;;;;;;13064:32:1;;;;13059:2;13044:18;;13037:60;-1:-1:-1;;;13128:3:1;13113:19;13106:35;13025:3;12167:980;-1:-1:-1;;;12167:980:1:o

Swarm Source

ipfs://405e1356e6eec9fd9f0992e455f83d125adca545b96bfe1b87d3a8d943a5d437
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.