ETH Price: $2,553.67 (+3.56%)

Token

Urashima Taro (TARO)
 

Overview

Max Total Supply

100,000,000 TARO

Holders

91

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4,400,970.830610461756965552 TARO

Value
$0.00
0x71104531c5deb10cce47e39ec9a12195978ecc56
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:
CONTRACT

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-19
*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public pairedToken = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;

    bool private swapping;

    address public treasuryWallet;

    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 buyTreasuryFee;
    uint256 public buyLiquidityFee;

    uint256 public sellTotalFees;
    uint256 public sellTreasuryFee;
    uint256 public sellLiquidityFee;

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("Urashima Taro", "TARO") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

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


        uint256 _buyTreasuryFee = 2;
        uint256 _buyLiquidityFee = 0;

        uint256 _sellTreasuryFee = 3;
        uint256 _sellLiquidityFee = 0;


        uint256 totalSupply = 100_000_000 * 1e18;

        maxTransactionAmount =  totalSupply * 2 / 100; // 2% 
        maxWallet = totalSupply * 4 / 100; // 4% 
        swapTokensAtAmount = (totalSupply * 25) / 10000; // 0.25%

        buyTreasuryFee = _buyTreasuryFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyTotalFees = buyTreasuryFee + buyLiquidityFee;

        sellTreasuryFee = _sellTreasuryFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellTotalFees = sellTreasuryFee + sellLiquidityFee;

        treasuryWallet = address(0x128ACde6Cf6dC95840191fd65e82cd16af0F45bB); // set as treasury 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 onlyOwner {
        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 _treasuryFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        buyTreasuryFee = _treasuryFee;
        buyLiquidityFee = _liquidityFee;
        buyTotalFees = buyTreasuryFee + buyLiquidityFee;
        require(buyTotalFees <= 10, "Must keep fees at 10% or less");
    }

    function updateSellFees(
        uint256 _treasuryFee,
        uint256 _liquidityFee
    ) external onlyOwner {
        sellTreasuryFee = _treasuryFee;
        sellLiquidityFee = _liquidityFee;
        sellTotalFees = sellTreasuryFee + 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 updateTreasuryWallet(address newTreasuryWallet)
        external
        onlyOwner
    {
        emit treasuryWalletUpdated(newTreasuryWallet, treasuryWallet);
        treasuryWallet = newTreasuryWallet;
    }


    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],
                        "Trading is not active."
                    );
                }

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                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 &&
            swapEnabled &&
            !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 tokensForTreasury = 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;
                tokensForTreasury = (fees * sellTreasuryFee) / sellTotalFees;
            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForTreasury = (fees * buyTreasuryFee) / 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 swapTokensForPairedToken(uint256 tokenAmount) private {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = pairedToken;

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

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

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

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

        swapTokensForPairedToken(contractBalance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"treasuryWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","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":"buyTreasuryFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"pairedToken","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":"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":"sellTreasuryFee","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":"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":"treasuryWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"_treasuryFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"}],"name":"updateBuyFees","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":"_treasuryFee","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"},{"inputs":[{"internalType":"address","name":"newTreasuryWallet","type":"address"}],"name":"updateTreasuryWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600680546001600160a01b03191673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179055600b805462ffffff191660011790553480156200004657600080fd5b50604080518082018252600d81526c5572617368696d61205461726f60981b6020808301918252835180850190945260048452635441524f60e01b9084015281519192916200009891600391620005a3565b508051620000ae906004906020840190620005a3565b505050620000cb620000c56200034460201b60201c565b62000348565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000ed8160016200039a565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000138573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015e919062000649565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001b0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d6919062000649565b6001600160a01b031660a0819052620001f19060016200039a565b600260006003816a52b7d2dcc80cd2e4000000606462000212828762000691565b6200021e9190620006b3565b60085560646200023082600462000691565b6200023c9190620006b3565b600a556127106200024f82601962000691565b6200025b9190620006b3565b600955600d859055600e849055620002748486620006d6565b600c55601083905560118290556200028d8284620006d6565b600f55600780546001600160a01b03191673128acde6cf6dc95840191fd65e82cd16af0f45bb179055620002d5620002cd6005546001600160a01b031690565b600162000414565b620002e230600162000414565b620002f161dead600162000414565b62000310620003086005546001600160a01b031690565b60016200039a565b6200031d3060016200039a565b6200032c61dead60016200039a565b620003383382620004be565b5050505050506200072e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620003e95760405162461bcd60e51b815260206004820181905260248201526000805160206200266483398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146200045f5760405162461bcd60e51b81526020600482018190526024820152600080516020620026648339815191526044820152606401620003e0565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005165760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620003e0565b80600260008282546200052a9190620006d6565b90915550506001600160a01b0382166000908152602081905260408120805483929062000559908490620006d6565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b828054620005b190620006f1565b90600052602060002090601f016020900481019282620005d5576000855562000620565b82601f10620005f057805160ff191683800117855562000620565b8280016001018555821562000620579182015b828111156200062057825182559160200191906001019062000603565b506200062e92915062000632565b5090565b5b808211156200062e576000815560010162000633565b6000602082840312156200065c57600080fd5b81516001600160a01b03811681146200067457600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620006ae57620006ae6200067b565b500290565b600082620006d157634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620006ec57620006ec6200067b565b500190565b600181811c908216806200070657607f821691505b602082108114156200072857634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051611edf62000785600039600081816103fc015281816112d8015281816114e9015281816115f9015281816116a2015261175c01526000818161031501528181611a3d0152611a7c0152611edf6000f3fe60806040526004361061024a5760003560e01c8063751039fc11610139578063c18bc195116100b6578063e2f456051161007a578063e2f456051461070c578063f11a24d314610722578063f2fde38b14610738578063f637434214610758578063f8b45b051461076e578063ffc94f901461078457600080fd5b8063c18bc1951461065a578063c8c8ebe41461067a578063d257b34f14610690578063d85ba063146106b0578063dd62ed3e146106c657600080fd5b8063924de9b7116100fd578063924de9b7146105c657806395d89b41146105e6578063a9059cbb146105fb578063bbc0c7421461061b578063c02466681461063a57600080fd5b8063751039fc1461053e5780637571336a14610553578063809d458d146105735780638a8c523c146105935780638da5cb5b146105a857600080fd5b806349bd5a5e116101c75780636a486a8e1161018b5780636a486a8e146104a75780636b2fb124146104bd5780636ddd1713146104d357806370a08231146104f3578063715018a61461052957600080fd5b806349bd5a5e146103ea5780634a62bb651461041e5780634fbee193146104385780635c068a8c1461047157806366ca9b831461048757600080fd5b806318160ddd1161020e57806318160ddd1461034f578063203e727e1461036e57806323b872dd1461038e578063313ce567146103ae5780634626402b146103ca57600080fd5b806302dbd8f81461025657806306fdde0314610278578063095ea7b3146102a357806310d5de53146102d35780631694505e1461030357600080fd5b3661025157005b600080fd5b34801561026257600080fd5b50610276610271366004611af4565b6107a4565b005b34801561028457600080fd5b5061028d610844565b60405161029a9190611b16565b60405180910390f35b3480156102af57600080fd5b506102c36102be366004611b82565b6108d6565b604051901515815260200161029a565b3480156102df57600080fd5b506102c36102ee366004611bac565b60136020526000908152604090205460ff1681565b34801561030f57600080fd5b506103377f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161029a565b34801561035b57600080fd5b506002545b60405190815260200161029a565b34801561037a57600080fd5b50610276610389366004611bc7565b6108ec565b34801561039a57600080fd5b506102c36103a9366004611be0565b6109c9565b3480156103ba57600080fd5b506040516012815260200161029a565b3480156103d657600080fd5b50600754610337906001600160a01b031681565b3480156103f657600080fd5b506103377f000000000000000000000000000000000000000000000000000000000000000081565b34801561042a57600080fd5b50600b546102c39060ff1681565b34801561044457600080fd5b506102c3610453366004611bac565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561047d57600080fd5b50610360600d5481565b34801561049357600080fd5b506102766104a2366004611af4565b610a73565b3480156104b357600080fd5b50610360600f5481565b3480156104c957600080fd5b5061036060105481565b3480156104df57600080fd5b50600b546102c39062010000900460ff1681565b3480156104ff57600080fd5b5061036061050e366004611bac565b6001600160a01b031660009081526020819052604090205490565b34801561053557600080fd5b50610276610b06565b34801561054a57600080fd5b506102c3610b3c565b34801561055f57600080fd5b5061027661056e366004611c2c565b610b79565b34801561057f57600080fd5b5061027661058e366004611bac565b610bce565b34801561059f57600080fd5b50610276610c55565b3480156105b457600080fd5b506005546001600160a01b0316610337565b3480156105d257600080fd5b506102766105e1366004611c5f565b610c92565b3480156105f257600080fd5b5061028d610cd8565b34801561060757600080fd5b506102c3610616366004611b82565b610ce7565b34801561062757600080fd5b50600b546102c390610100900460ff1681565b34801561064657600080fd5b50610276610655366004611c2c565b610cf4565b34801561066657600080fd5b50610276610675366004611bc7565b610d7d565b34801561068657600080fd5b5061036060085481565b34801561069c57600080fd5b506102c36106ab366004611bc7565b610e4e565b3480156106bc57600080fd5b50610360600c5481565b3480156106d257600080fd5b506103606106e1366004611c7a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561071857600080fd5b5061036060095481565b34801561072e57600080fd5b50610360600e5481565b34801561074457600080fd5b50610276610753366004611bac565b610fa5565b34801561076457600080fd5b5061036060115481565b34801561077a57600080fd5b50610360600a5481565b34801561079057600080fd5b50600654610337906001600160a01b031681565b6005546001600160a01b031633146107d75760405162461bcd60e51b81526004016107ce90611ca4565b60405180910390fd5b601082905560118190556107eb8183611cef565b600f819055600a10156108405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064016107ce565b5050565b60606003805461085390611d07565b80601f016020809104026020016040519081016040528092919081815260200182805461087f90611d07565b80156108cc5780601f106108a1576101008083540402835291602001916108cc565b820191906000526020600020905b8154815290600101906020018083116108af57829003601f168201915b5050505050905090565b60006108e3338484611040565b50600192915050565b6005546001600160a01b031633146109165760405162461bcd60e51b81526004016107ce90611ca4565b670de0b6b3a76400006103e861092b60025490565b610936906001611d42565b6109409190611d61565b61094a9190611d61565b8110156109b15760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ce565b6109c381670de0b6b3a7640000611d42565b60085550565b60006109d6848484611164565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a5b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ce565b610a688533858403611040565b506001949350505050565b6005546001600160a01b03163314610a9d5760405162461bcd60e51b81526004016107ce90611ca4565b600d829055600e819055610ab18183611cef565b600c819055600a10156108405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064016107ce565b6005546001600160a01b03163314610b305760405162461bcd60e51b81526004016107ce90611ca4565b610b3a60006117a4565b565b6005546000906001600160a01b03163314610b695760405162461bcd60e51b81526004016107ce90611ca4565b50600b805460ff19169055600190565b6005546001600160a01b03163314610ba35760405162461bcd60e51b81526004016107ce90611ca4565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bf85760405162461bcd60e51b81526004016107ce90611ca4565b6007546040516001600160a01b03918216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63590600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c7f5760405162461bcd60e51b81526004016107ce90611ca4565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cbc5760405162461bcd60e51b81526004016107ce90611ca4565b600b8054911515620100000262ff000019909216919091179055565b60606004805461085390611d07565b60006108e3338484611164565b6005546001600160a01b03163314610d1e5760405162461bcd60e51b81526004016107ce90611ca4565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610da75760405162461bcd60e51b81526004016107ce90611ca4565b670de0b6b3a76400006103e8610dbc60025490565b610dc7906005611d42565b610dd19190611d61565b610ddb9190611d61565b811015610e365760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ce565b610e4881670de0b6b3a7640000611d42565b600a5550565b6005546000906001600160a01b03163314610e7b5760405162461bcd60e51b81526004016107ce90611ca4565b620186a0610e8860025490565b610e93906001611d42565b610e9d9190611d61565b821015610f0a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ce565b6103e8610f1660025490565b610f21906005611d42565b610f2b9190611d61565b821115610f975760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ce565b50600981905560015b919050565b6005546001600160a01b03163314610fcf5760405162461bcd60e51b81526004016107ce90611ca4565b6001600160a01b0381166110345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ce565b61103d816117a4565b50565b6001600160a01b0383166110a25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ce565b6001600160a01b0382166111035760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ce565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661118a5760405162461bcd60e51b81526004016107ce90611d83565b6001600160a01b0382166111b05760405162461bcd60e51b81526004016107ce90611dc8565b806111c6576111c1838360006117f6565b505050565b600b5460ff161561149e576005546001600160a01b038481169116148015906111fd57506005546001600160a01b03838116911614155b801561121157506001600160a01b03821615155b801561122857506001600160a01b03821661dead14155b801561123e5750600654600160a01b900460ff16155b1561149e57600b54610100900460ff166112d6576001600160a01b03831660009081526012602052604090205460ff168061129157506001600160a01b03821660009081526012602052604090205460ff165b6112d65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ce565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561133057506001600160a01b03821660009081526013602052604090205460ff16155b15611414576008548111156113a55760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ce565b600a546001600160a01b0383166000908152602081905260409020546113cb9083611cef565b111561140f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ce565b61149e565b6001600160a01b03821660009081526013602052604090205460ff1661149e57600a546001600160a01b03831660009081526020819052604090205461145a9083611cef565b111561149e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ce565b30600090815260208190526040902054600954811080159081906114ca5750600b5462010000900460ff165b80156114e05750600654600160a01b900460ff16155b801561151d57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561154257506001600160a01b03851660009081526012602052604090205460ff16155b801561156757506001600160a01b03841660009081526012602052604090205460ff16155b15611595576006805460ff60a01b1916600160a01b17905561158761194b565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806115e357506001600160a01b03851660009081526012602052604090205460ff165b156115ec575060005b6000806000831561178e577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316886001600160a01b031614801561163a57506000600f54115b156116a05761165f6064611659600f548a61199290919063ffffffff16565b906119a5565b9250600f54601154846116729190611d42565b61167c9190611d61565b9150600f546010548461168f9190611d42565b6116999190611d61565b905061173f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b03161480156116e357506000600c54115b1561173f576117026064611659600c548a61199290919063ffffffff16565b9250600c54600e54846117159190611d42565b61171f9190611d61565b9150600c54600d54846117329190611d42565b61173c9190611d61565b90505b8215611750576117508930856117f6565b811561178157611781307f0000000000000000000000000000000000000000000000000000000000000000846117f6565b61178b8388611e0b565b96505b6117998989896117f6565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661181c5760405162461bcd60e51b81526004016107ce90611d83565b6001600160a01b0382166118425760405162461bcd60e51b81526004016107ce90611dc8565b6001600160a01b038316600090815260208190526040902054818110156118ba5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ce565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118f1908490611cef565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161193d91815260200190565b60405180910390a350505050565b30600090815260208190526040902054806119635750565b600954611971906014611d42565b81111561198957600954611986906014611d42565b90505b61103d816119b1565b600061199e8284611d42565b9392505050565b600061199e8284611d61565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119e6576119e6611e22565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a1757611a17611e22565b60200260200101906001600160a01b031690816001600160a01b031681525050611a62307f000000000000000000000000000000000000000000000000000000000000000084611040565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611abe928792600092889291909116904290600401611e38565b600060405180830381600087803b158015611ad857600080fd5b505af1158015611aec573d6000803e3d6000fd5b505050505050565b60008060408385031215611b0757600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b4357858101830151858201604001528201611b27565b81811115611b55576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610fa057600080fd5b60008060408385031215611b9557600080fd5b611b9e83611b6b565b946020939093013593505050565b600060208284031215611bbe57600080fd5b61199e82611b6b565b600060208284031215611bd957600080fd5b5035919050565b600080600060608486031215611bf557600080fd5b611bfe84611b6b565b9250611c0c60208501611b6b565b9150604084013590509250925092565b80358015158114610fa057600080fd5b60008060408385031215611c3f57600080fd5b611c4883611b6b565b9150611c5660208401611c1c565b90509250929050565b600060208284031215611c7157600080fd5b61199e82611c1c565b60008060408385031215611c8d57600080fd5b611c9683611b6b565b9150611c5660208401611b6b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d0257611d02611cd9565b500190565b600181811c90821680611d1b57607f821691505b60208210811415611d3c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d5c57611d5c611cd9565b500290565b600082611d7e57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611e1d57611e1d611cd9565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e885784516001600160a01b031683529383019391830191600101611e63565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204f0dfb5445c4ac27310765f74c81263e94892123b1d039e2893defdf9e6165d364736f6c634300080a00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x60806040526004361061024a5760003560e01c8063751039fc11610139578063c18bc195116100b6578063e2f456051161007a578063e2f456051461070c578063f11a24d314610722578063f2fde38b14610738578063f637434214610758578063f8b45b051461076e578063ffc94f901461078457600080fd5b8063c18bc1951461065a578063c8c8ebe41461067a578063d257b34f14610690578063d85ba063146106b0578063dd62ed3e146106c657600080fd5b8063924de9b7116100fd578063924de9b7146105c657806395d89b41146105e6578063a9059cbb146105fb578063bbc0c7421461061b578063c02466681461063a57600080fd5b8063751039fc1461053e5780637571336a14610553578063809d458d146105735780638a8c523c146105935780638da5cb5b146105a857600080fd5b806349bd5a5e116101c75780636a486a8e1161018b5780636a486a8e146104a75780636b2fb124146104bd5780636ddd1713146104d357806370a08231146104f3578063715018a61461052957600080fd5b806349bd5a5e146103ea5780634a62bb651461041e5780634fbee193146104385780635c068a8c1461047157806366ca9b831461048757600080fd5b806318160ddd1161020e57806318160ddd1461034f578063203e727e1461036e57806323b872dd1461038e578063313ce567146103ae5780634626402b146103ca57600080fd5b806302dbd8f81461025657806306fdde0314610278578063095ea7b3146102a357806310d5de53146102d35780631694505e1461030357600080fd5b3661025157005b600080fd5b34801561026257600080fd5b50610276610271366004611af4565b6107a4565b005b34801561028457600080fd5b5061028d610844565b60405161029a9190611b16565b60405180910390f35b3480156102af57600080fd5b506102c36102be366004611b82565b6108d6565b604051901515815260200161029a565b3480156102df57600080fd5b506102c36102ee366004611bac565b60136020526000908152604090205460ff1681565b34801561030f57600080fd5b506103377f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b03909116815260200161029a565b34801561035b57600080fd5b506002545b60405190815260200161029a565b34801561037a57600080fd5b50610276610389366004611bc7565b6108ec565b34801561039a57600080fd5b506102c36103a9366004611be0565b6109c9565b3480156103ba57600080fd5b506040516012815260200161029a565b3480156103d657600080fd5b50600754610337906001600160a01b031681565b3480156103f657600080fd5b506103377f000000000000000000000000e6bc89164c964107ed24f7a0a0dea214ae61ac9b81565b34801561042a57600080fd5b50600b546102c39060ff1681565b34801561044457600080fd5b506102c3610453366004611bac565b6001600160a01b031660009081526012602052604090205460ff1690565b34801561047d57600080fd5b50610360600d5481565b34801561049357600080fd5b506102766104a2366004611af4565b610a73565b3480156104b357600080fd5b50610360600f5481565b3480156104c957600080fd5b5061036060105481565b3480156104df57600080fd5b50600b546102c39062010000900460ff1681565b3480156104ff57600080fd5b5061036061050e366004611bac565b6001600160a01b031660009081526020819052604090205490565b34801561053557600080fd5b50610276610b06565b34801561054a57600080fd5b506102c3610b3c565b34801561055f57600080fd5b5061027661056e366004611c2c565b610b79565b34801561057f57600080fd5b5061027661058e366004611bac565b610bce565b34801561059f57600080fd5b50610276610c55565b3480156105b457600080fd5b506005546001600160a01b0316610337565b3480156105d257600080fd5b506102766105e1366004611c5f565b610c92565b3480156105f257600080fd5b5061028d610cd8565b34801561060757600080fd5b506102c3610616366004611b82565b610ce7565b34801561062757600080fd5b50600b546102c390610100900460ff1681565b34801561064657600080fd5b50610276610655366004611c2c565b610cf4565b34801561066657600080fd5b50610276610675366004611bc7565b610d7d565b34801561068657600080fd5b5061036060085481565b34801561069c57600080fd5b506102c36106ab366004611bc7565b610e4e565b3480156106bc57600080fd5b50610360600c5481565b3480156106d257600080fd5b506103606106e1366004611c7a565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561071857600080fd5b5061036060095481565b34801561072e57600080fd5b50610360600e5481565b34801561074457600080fd5b50610276610753366004611bac565b610fa5565b34801561076457600080fd5b5061036060115481565b34801561077a57600080fd5b50610360600a5481565b34801561079057600080fd5b50600654610337906001600160a01b031681565b6005546001600160a01b031633146107d75760405162461bcd60e51b81526004016107ce90611ca4565b60405180910390fd5b601082905560118190556107eb8183611cef565b600f819055600a10156108405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064016107ce565b5050565b60606003805461085390611d07565b80601f016020809104026020016040519081016040528092919081815260200182805461087f90611d07565b80156108cc5780601f106108a1576101008083540402835291602001916108cc565b820191906000526020600020905b8154815290600101906020018083116108af57829003601f168201915b5050505050905090565b60006108e3338484611040565b50600192915050565b6005546001600160a01b031633146109165760405162461bcd60e51b81526004016107ce90611ca4565b670de0b6b3a76400006103e861092b60025490565b610936906001611d42565b6109409190611d61565b61094a9190611d61565b8110156109b15760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b60648201526084016107ce565b6109c381670de0b6b3a7640000611d42565b60085550565b60006109d6848484611164565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a5b5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084016107ce565b610a688533858403611040565b506001949350505050565b6005546001600160a01b03163314610a9d5760405162461bcd60e51b81526004016107ce90611ca4565b600d829055600e819055610ab18183611cef565b600c819055600a10156108405760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c65737300000060448201526064016107ce565b6005546001600160a01b03163314610b305760405162461bcd60e51b81526004016107ce90611ca4565b610b3a60006117a4565b565b6005546000906001600160a01b03163314610b695760405162461bcd60e51b81526004016107ce90611ca4565b50600b805460ff19169055600190565b6005546001600160a01b03163314610ba35760405162461bcd60e51b81526004016107ce90611ca4565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610bf85760405162461bcd60e51b81526004016107ce90611ca4565b6007546040516001600160a01b03918216918316907f02f8a1483978974a6412ba3a67040b4daa4fc0dfe9439a7295f9a9538394f63590600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c7f5760405162461bcd60e51b81526004016107ce90611ca4565b600b805462ffff00191662010100179055565b6005546001600160a01b03163314610cbc5760405162461bcd60e51b81526004016107ce90611ca4565b600b8054911515620100000262ff000019909216919091179055565b60606004805461085390611d07565b60006108e3338484611164565b6005546001600160a01b03163314610d1e5760405162461bcd60e51b81526004016107ce90611ca4565b6001600160a01b038216600081815260126020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610da75760405162461bcd60e51b81526004016107ce90611ca4565b670de0b6b3a76400006103e8610dbc60025490565b610dc7906005611d42565b610dd19190611d61565b610ddb9190611d61565b811015610e365760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b60648201526084016107ce565b610e4881670de0b6b3a7640000611d42565b600a5550565b6005546000906001600160a01b03163314610e7b5760405162461bcd60e51b81526004016107ce90611ca4565b620186a0610e8860025490565b610e93906001611d42565b610e9d9190611d61565b821015610f0a5760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b60648201526084016107ce565b6103e8610f1660025490565b610f21906005611d42565b610f2b9190611d61565b821115610f975760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b60648201526084016107ce565b50600981905560015b919050565b6005546001600160a01b03163314610fcf5760405162461bcd60e51b81526004016107ce90611ca4565b6001600160a01b0381166110345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107ce565b61103d816117a4565b50565b6001600160a01b0383166110a25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016107ce565b6001600160a01b0382166111035760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016107ce565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661118a5760405162461bcd60e51b81526004016107ce90611d83565b6001600160a01b0382166111b05760405162461bcd60e51b81526004016107ce90611dc8565b806111c6576111c1838360006117f6565b505050565b600b5460ff161561149e576005546001600160a01b038481169116148015906111fd57506005546001600160a01b03838116911614155b801561121157506001600160a01b03821615155b801561122857506001600160a01b03821661dead14155b801561123e5750600654600160a01b900460ff16155b1561149e57600b54610100900460ff166112d6576001600160a01b03831660009081526012602052604090205460ff168061129157506001600160a01b03821660009081526012602052604090205460ff165b6112d65760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b60448201526064016107ce565b7f000000000000000000000000e6bc89164c964107ed24f7a0a0dea214ae61ac9b6001600160a01b0316836001600160a01b031614801561133057506001600160a01b03821660009081526013602052604090205460ff16155b15611414576008548111156113a55760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016107ce565b600a546001600160a01b0383166000908152602081905260409020546113cb9083611cef565b111561140f5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ce565b61149e565b6001600160a01b03821660009081526013602052604090205460ff1661149e57600a546001600160a01b03831660009081526020819052604090205461145a9083611cef565b111561149e5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016107ce565b30600090815260208190526040902054600954811080159081906114ca5750600b5462010000900460ff165b80156114e05750600654600160a01b900460ff16155b801561151d57507f000000000000000000000000e6bc89164c964107ed24f7a0a0dea214ae61ac9b6001600160a01b0316846001600160a01b0316145b801561154257506001600160a01b03851660009081526012602052604090205460ff16155b801561156757506001600160a01b03841660009081526012602052604090205460ff16155b15611595576006805460ff60a01b1916600160a01b17905561158761194b565b6006805460ff60a01b191690555b6006546001600160a01b03861660009081526012602052604090205460ff600160a01b9092048216159116806115e357506001600160a01b03851660009081526012602052604090205460ff165b156115ec575060005b6000806000831561178e577f000000000000000000000000e6bc89164c964107ed24f7a0a0dea214ae61ac9b6001600160a01b0316886001600160a01b031614801561163a57506000600f54115b156116a05761165f6064611659600f548a61199290919063ffffffff16565b906119a5565b9250600f54601154846116729190611d42565b61167c9190611d61565b9150600f546010548461168f9190611d42565b6116999190611d61565b905061173f565b7f000000000000000000000000e6bc89164c964107ed24f7a0a0dea214ae61ac9b6001600160a01b0316896001600160a01b03161480156116e357506000600c54115b1561173f576117026064611659600c548a61199290919063ffffffff16565b9250600c54600e54846117159190611d42565b61171f9190611d61565b9150600c54600d54846117329190611d42565b61173c9190611d61565b90505b8215611750576117508930856117f6565b811561178157611781307f000000000000000000000000e6bc89164c964107ed24f7a0a0dea214ae61ac9b846117f6565b61178b8388611e0b565b96505b6117998989896117f6565b505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661181c5760405162461bcd60e51b81526004016107ce90611d83565b6001600160a01b0382166118425760405162461bcd60e51b81526004016107ce90611dc8565b6001600160a01b038316600090815260208190526040902054818110156118ba5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016107ce565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906118f1908490611cef565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161193d91815260200190565b60405180910390a350505050565b30600090815260208190526040902054806119635750565b600954611971906014611d42565b81111561198957600954611986906014611d42565b90505b61103d816119b1565b600061199e8284611d42565b9392505050565b600061199e8284611d61565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106119e6576119e6611e22565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611a1757611a17611e22565b60200260200101906001600160a01b031690816001600160a01b031681525050611a62307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611040565b600754604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611abe928792600092889291909116904290600401611e38565b600060405180830381600087803b158015611ad857600080fd5b505af1158015611aec573d6000803e3d6000fd5b505050505050565b60008060408385031215611b0757600080fd5b50508035926020909101359150565b600060208083528351808285015260005b81811015611b4357858101830151858201604001528201611b27565b81811115611b55576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610fa057600080fd5b60008060408385031215611b9557600080fd5b611b9e83611b6b565b946020939093013593505050565b600060208284031215611bbe57600080fd5b61199e82611b6b565b600060208284031215611bd957600080fd5b5035919050565b600080600060608486031215611bf557600080fd5b611bfe84611b6b565b9250611c0c60208501611b6b565b9150604084013590509250925092565b80358015158114610fa057600080fd5b60008060408385031215611c3f57600080fd5b611c4883611b6b565b9150611c5660208401611c1c565b90509250929050565b600060208284031215611c7157600080fd5b61199e82611c1c565b60008060408385031215611c8d57600080fd5b611c9683611b6b565b9150611c5660208401611b6b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d0257611d02611cd9565b500190565b600181811c90821680611d1b57607f821691505b60208210811415611d3c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000816000190483118215151615611d5c57611d5c611cd9565b500290565b600082611d7e57634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611e1d57611e1d611cd9565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611e885784516001600160a01b031683529383019391830191600101611e63565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204f0dfb5445c4ac27310765f74c81263e94892123b1d039e2893defdf9e6165d364736f6c634300080a0033

Deployed Bytecode Sourcemap

23331:10819:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28576:338;;;;;;;;;;-1:-1:-1;28576:338:0;;;;;:::i;:::-;;:::i;:::-;;8508:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10675:169;;;;;;;;;;-1:-1:-1;10675:169:0;;;;;:::i;:::-;;:::i;:::-;;;1471:14:1;;1464:22;1446:41;;1434:2;1419:18;10675:169:0;1306:187:1;24228:63:0;;;;;;;;;;-1:-1:-1;24228:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23409:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;23409:51:0;1689:229:1;9628:108:0;;;;;;;;;;-1:-1:-1;9716:12:0;;9628:108;;;2069:25:1;;;2057:2;2042:18;9628:108:0;1923:177:1;27319:275:0;;;;;;;;;;-1:-1:-1;27319:275:0;;;;;:::i;:::-;;:::i;11326:492::-;;;;;;;;;;-1:-1:-1;11326:492:0;;;;;:::i;:::-;;:::i;9470:93::-;;;;;;;;;;-1:-1:-1;9470:93:0;;9553:2;2765:36:1;;2753:2;2738:18;9470:93:0;2623:184:1;23622:29:0;;;;;;;;;;-1:-1:-1;23622:29:0;;;;-1:-1:-1;;;;;23622:29:0;;;23467:38;;;;;;;;;;;;;;;23775:33;;;;;;;;;;-1:-1:-1;23775:33:0;;;;;;;;29346:126;;;;;;;;;;-1:-1:-1;29346:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;29436:28:0;29412:4;29436:28;;;:19;:28;;;;;;;;;29346:126;23929:29;;;;;;;;;;;;;;;;28237:331;;;;;;;;;;-1:-1:-1;28237:331:0;;;;;:::i;:::-;;:::i;24004:28::-;;;;;;;;;;;;;;;;24039:30;;;;;;;;;;;;;;;;23855:31;;;;;;;;;;-1:-1:-1;23855:31:0;;;;;;;;;;;9799:127;;;;;;;;;;-1:-1:-1;9799:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9900:18:0;9873:7;9900:18;;;;;;;;;;;;9799:127;2420:103;;;;;;;;;;;;;:::i;26623:121::-;;;;;;;;;;;;;:::i;27866:167::-;;;;;;;;;;-1:-1:-1;27866:167:0;;;;;:::i;:::-;;:::i;29112:224::-;;;;;;;;;;-1:-1:-1;29112:224:0;;;;;:::i;:::-;;:::i;26459:112::-;;;;;;;;;;;;;:::i;1769:87::-;;;;;;;;;;-1:-1:-1;1842:6:0;;-1:-1:-1;;;;;1842:6:0;1769:87;;28129:100;;;;;;;;;;-1:-1:-1;28129:100:0;;;;;:::i;:::-;;:::i;8727:104::-;;;;;;;;;;;;;:::i;10139:175::-;;;;;;;;;;-1:-1:-1;10139:175:0;;;;;:::i;:::-;;:::i;23815:33::-;;;;;;;;;;-1:-1:-1;23815:33:0;;;;;;;;;;;28922:182;;;;;;;;;;-1:-1:-1;28922:182:0;;;;;:::i;:::-;;:::i;27602:256::-;;;;;;;;;;-1:-1:-1;27602:256:0;;;;;:::i;:::-;;:::i;23660:35::-;;;;;;;;;;;;;;;;26814:497;;;;;;;;;;-1:-1:-1;26814:497:0;;;;;:::i;:::-;;:::i;23895:27::-;;;;;;;;;;;;;;;;10377:151;;;;;;;;;;-1:-1:-1;10377:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10493:18:0;;;10466:7;10493:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10377:151;23702:33;;;;;;;;;;;;;;;;23965:30;;;;;;;;;;;;;;;;2678:201;;;;;;;;;;-1:-1:-1;2678:201:0;;;;;:::i;:::-;;:::i;24076:31::-;;;;;;;;;;;;;;;;23742:24;;;;;;;;;;;;;;;;23512:71;;;;;;;;;;-1:-1:-1;23512:71:0;;;;-1:-1:-1;;;;;23512:71:0;;;28576:338;1842:6;;-1:-1:-1;;;;;1842:6:0;716:10;1989:23;1981:68;;;;-1:-1:-1;;;1981:68:0;;;;;;;:::i;:::-;;;;;;;;;28700:15:::1;:30:::0;;;28741:16:::1;:32:::0;;;28800:34:::1;28760:13:::0;28718:12;28800:34:::1;:::i;:::-;28784:13;:50:::0;;;28870:2:::1;-1:-1:-1::0;28853:19:0::1;28845:61;;;::::0;-1:-1:-1;;;28845:61:0;;4722:2:1;28845:61:0::1;::::0;::::1;4704:21:1::0;4761:2;4741:18;;;4734:30;4800:31;4780:18;;;4773:59;4849:18;;28845:61:0::1;4520:353:1::0;28845:61:0::1;28576:338:::0;;:::o;8508:100::-;8562:13;8595:5;8588:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8508:100;:::o;10675:169::-;10758:4;10775:39;716:10;10798:7;10807:6;10775:8;:39::i;:::-;-1:-1:-1;10832:4:0;10675:169;;;;:::o;27319:275::-;1842:6;;-1:-1:-1;;;;;1842:6:0;716:10;1989:23;1981:68;;;;-1:-1:-1;;;1981:68:0;;;;;;;:::i;:::-;27456:4:::1;27448;27427:13;9716:12:::0;;;9628:108;27427:13:::1;:17;::::0;27443:1:::1;27427:17;:::i;:::-;27426:26;;;;:::i;:::-;27425:35;;;;:::i;:::-;27415:6;:45;;27393:142;;;::::0;-1:-1:-1;;;27393:142:0;;5860:2:1;27393:142:0::1;::::0;::::1;5842:21:1::0;5899:2;5879:18;;;5872:30;5938:34;5918:18;;;5911:62;-1:-1:-1;;;5989:18:1;;;5982:45;6044:19;;27393:142:0::1;5658:411:1::0;27393:142:0::1;27569:17;:6:::0;27579::::1;27569:17;:::i;:::-;27546:20;:40:::0;-1:-1:-1;27319:275:0:o;11326:492::-;11466:4;11483:36;11493:6;11501:9;11512:6;11483:9;:36::i;:::-;-1:-1:-1;;;;;11559:19:0;;11532:24;11559:19;;;:11;:19;;;;;;;;716:10;11559:33;;;;;;;;11611:26;;;;11603:79;;;;-1:-1:-1;;;11603:79:0;;6276:2:1;11603:79:0;;;6258:21:1;6315:2;6295:18;;;6288:30;6354:34;6334:18;;;6327:62;-1:-1:-1;;;6405:18:1;;;6398:38;6453:19;;11603:79:0;6074:404:1;11603:79:0;11718:57;11727:6;716:10;11768:6;11749:16;:25;11718:8;:57::i;:::-;-1:-1:-1;11806:4:0;;11326:492;-1:-1:-1;;;;11326:492:0:o;28237:331::-;1842:6;;-1:-1:-1;;;;;1842:6:0;716:10;1989:23;1981:68;;;;-1:-1:-1;;;1981:68:0;;;;;;;:::i;:::-;28360:14:::1;:29:::0;;;28400:15:::1;:31:::0;;;28457:32:::1;28418:13:::0;28377:12;28457:32:::1;:::i;:::-;28442:12;:47:::0;;;28524:2:::1;-1:-1:-1::0;28508:18:0::1;28500:60;;;::::0;-1:-1:-1;;;28500:60:0;;4722:2:1;28500:60:0::1;::::0;::::1;4704:21:1::0;4761:2;4741:18;;;4734:30;4800:31;4780:18;;;4773:59;4849:18;;28500:60:0::1;4520:353:1::0;2420:103:0;1842:6;;-1:-1:-1;;;;;1842:6:0;716:10;1989:23;1981:68;;;;-1:-1:-1;;;1981:68:0;;;;;;;:::i;:::-;2485:30:::1;2512:1;2485:18;:30::i;:::-;2420:103::o:0;26623:121::-;1842:6;;26675:4;;-1:-1:-1;;;;;1842:6:0;716:10;1989:23;1981:68;;;;-1:-1:-1;;;1981:68:0;;;;;;;:::i;:::-;-1:-1:-1;26692:14:0::1;:22:::0;;-1:-1:-1;;26692:22:0::1;::::0;;;26623:121;:::o;27866:167::-;1842:6;;-1:-1:-1;;;;;1842:6:0;716:10;1989:23;1981:68;;;;-1:-1:-1;;;1981:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27979:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;27979:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27866:167::o;29112:224::-;1842:6;;-1:-1:-1;;;;;1842:6:0;716:10;1989:23;1981:68;;;;-1:-1:-1;;;1981:68:0;;;;;;;:::i;:::-;29268:14:::1;::::0;29227:56:::1;::::0;-1:-1:-1;;;;;29268:14:0;;::::1;::::0;29227:56;::::1;::::0;::::1;::::0;29268:14:::1;::::0;29227:56:::1;29294:14;:34:::0;;-1:-1:-1;;;;;;29294:34:0::1;-1:-1:-1::0;;;;;29294:34:0;;;::::1;::::0;;;::::1;::::0;;29112:224::o;26459:112::-;1842:6;;-1:-1:-1;;;;;1842:6:0;716:10;1989:23;1981:68;;;;-1:-1:-1;;;1981:68:0;;;;;;;:::i;:::-;26514:13:::1;:20:::0;;-1:-1:-1;;26545:18:0;;;;;26459:112::o;28129:100::-;1842:6;;-1:-1:-1;;;;;1842:6:0;716:10;1989:23;1981:68;;;;-1:-1:-1;;;1981:68:0;;;;;;;:::i;:::-;28200:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;28200:21:0;;::::1;::::0;;;::::1;::::0;;28129:100::o;8727:104::-;8783:13;8816:7;8809:14;;;;;:::i;10139:175::-;10225:4;10242:42;716:10;10266:9;10277:6;10242:9;:42::i;28922:182::-;1842:6;;-1:-1:-1;;;;;1842:6:0;716:10;1989:23;1981:68;;;;-1:-1:-1;;;1981:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29007:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;29007:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;29062:34;;1446:41:1;;;29062:34:0::1;::::0;1419:18:1;29062:34:0::1;;;;;;;28922:182:::0;;:::o;27602:256::-;1842:6;;-1:-1:-1;;;;;1842:6:0;716:10;1989:23;1981:68;;;;-1:-1:-1;;;1981:68:0;;;;;;;:::i;:::-;27742:4:::1;27734;27713:13;9716:12:::0;;;9628:108;27713:13:::1;:17;::::0;27729:1:::1;27713:17;:::i;:::-;27712:26;;;;:::i;:::-;27711:35;;;;:::i;:::-;27701:6;:45;;27679:131;;;::::0;-1:-1:-1;;;27679:131:0;;6685:2:1;27679:131:0::1;::::0;::::1;6667:21:1::0;6724:2;6704:18;;;6697:30;6763:34;6743:18;;;6736:62;-1:-1:-1;;;6814:18:1;;;6807:34;6858:19;;27679:131:0::1;6483:400:1::0;27679:131:0::1;27833:17;:6:::0;27843::::1;27833:17;:::i;:::-;27821:9;:29:::0;-1:-1:-1;27602:256:0:o;26814:497::-;1842:6;;26922:4;;-1:-1:-1;;;;;1842:6:0;716:10;1989:23;1981:68;;;;-1:-1:-1;;;1981:68:0;;;;;;;:::i;:::-;27001:6:::1;26980:13;9716:12:::0;;;9628:108;26980:13:::1;:17;::::0;26996:1:::1;26980:17;:::i;:::-;26979:28;;;;:::i;:::-;26966:9;:41;;26944:144;;;::::0;-1:-1:-1;;;26944:144:0;;7090:2:1;26944:144:0::1;::::0;::::1;7072:21:1::0;7129:2;7109:18;;;7102:30;7168:34;7148:18;;;7141:62;-1:-1:-1;;;7219:18:1;;;7212:51;7280:19;;26944:144:0::1;6888:417:1::0;26944:144:0::1;27156:4;27135:13;9716:12:::0;;;9628:108;27135:13:::1;:17;::::0;27151:1:::1;27135:17;:::i;:::-;27134:26;;;;:::i;:::-;27121:9;:39;;27099:141;;;::::0;-1:-1:-1;;;27099:141:0;;7512:2:1;27099:141:0::1;::::0;::::1;7494:21:1::0;7551:2;7531:18;;;7524:30;7590:34;7570:18;;;7563:62;-1:-1:-1;;;7641:18:1;;;7634:50;7701:19;;27099:141:0::1;7310:416:1::0;27099:141:0::1;-1:-1:-1::0;27251:18:0::1;:30:::0;;;27299:4:::1;2060:1;26814:497:::0;;;:::o;2678:201::-;1842:6;;-1:-1:-1;;;;;1842:6:0;716:10;1989:23;1981:68;;;;-1:-1:-1;;;1981:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2767:22:0;::::1;2759:73;;;::::0;-1:-1:-1;;;2759:73:0;;7933:2:1;2759:73:0::1;::::0;::::1;7915:21:1::0;7972:2;7952:18;;;7945:30;8011:34;7991:18;;;7984:62;-1:-1:-1;;;8062:18:1;;;8055:36;8108:19;;2759:73:0::1;7731:402:1::0;2759:73:0::1;2843:28;2862:8;2843:18;:28::i;:::-;2678:201:::0;:::o;14167:380::-;-1:-1:-1;;;;;14303:19:0;;14295:68;;;;-1:-1:-1;;;14295:68:0;;8340:2:1;14295:68:0;;;8322:21:1;8379:2;8359:18;;;8352:30;8418:34;8398:18;;;8391:62;-1:-1:-1;;;8469:18:1;;;8462:34;8513:19;;14295:68:0;8138:400:1;14295:68:0;-1:-1:-1;;;;;14382:21:0;;14374:68;;;;-1:-1:-1;;;14374:68:0;;8745:2:1;14374:68:0;;;8727:21:1;8784:2;8764:18;;;8757:30;8823:34;8803:18;;;8796:62;-1:-1:-1;;;8874:18:1;;;8867:32;8916:19;;14374:68:0;8543:398:1;14374:68:0;-1:-1:-1;;;;;14455:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14507:32;;2069:25:1;;;14507:32:0;;2042:18:1;14507:32:0;;;;;;;14167:380;;;:::o;29480:3704::-;-1:-1:-1;;;;;29612:18:0;;29604:68;;;;-1:-1:-1;;;29604:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29691:16:0;;29683:64;;;;-1:-1:-1;;;29683:64:0;;;;;;;:::i;:::-;29764:11;29760:93;;29792:28;29808:4;29814:2;29818:1;29792:15;:28::i;:::-;29480:3704;;;:::o;29760:93::-;29869:14;;;;29865:1430;;;1842:6;;-1:-1:-1;;;;;29922:15:0;;;1842:6;;29922:15;;;;:49;;-1:-1:-1;1842:6:0;;-1:-1:-1;;;;;29958:13:0;;;1842:6;;29958:13;;29922:49;:86;;;;-1:-1:-1;;;;;;29992:16:0;;;;29922:86;:128;;;;-1:-1:-1;;;;;;30029:21:0;;30043:6;30029:21;;29922:128;:158;;;;-1:-1:-1;30072:8:0;;-1:-1:-1;;;30072:8:0;;;;30071:9;29922:158;29900:1384;;;30120:13;;;;;;;30115:223;;-1:-1:-1;;;;;30192:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;30221:23:0;;;;;;:19;:23;;;;;;;;30192:52;30158:160;;;;-1:-1:-1;;;30158:160:0;;9958:2:1;30158:160:0;;;9940:21:1;9997:2;9977:18;;;9970:30;-1:-1:-1;;;10016:18:1;;;10009:52;10078:18;;30158:160:0;9756:346:1;30158:160:0;30552:13;-1:-1:-1;;;;;30544:21:0;:4;-1:-1:-1;;;;;30544:21:0;;:82;;;;-1:-1:-1;;;;;;30591:35:0;;;;;;:31;:35;;;;;;;;30590:36;30544:82;30518:751;;;30713:20;;30703:6;:30;;30669:169;;;;-1:-1:-1;;;30669:169:0;;10309:2:1;30669:169:0;;;10291:21:1;10348:2;10328:18;;;10321:30;10387:34;10367:18;;;10360:62;-1:-1:-1;;;10438:18:1;;;10431:51;10499:19;;30669:169:0;10107:417:1;30669:169:0;30921:9;;-1:-1:-1;;;;;9900:18:0;;9873:7;9900:18;;;;;;;;;;;30895:22;;:6;:22;:::i;:::-;:35;;30861:140;;;;-1:-1:-1;;;30861:140:0;;10731:2:1;30861:140:0;;;10713:21:1;10770:2;10750:18;;;10743:30;-1:-1:-1;;;10789:18:1;;;10782:49;10848:18;;30861:140:0;10529:343:1;30861:140:0;30518:751;;;-1:-1:-1;;;;;31049:35:0;;;;;;:31;:35;;;;;;;;31044:225;;31169:9;;-1:-1:-1;;;;;9900:18:0;;9873:7;9900:18;;;;;;;;;;;31143:22;;:6;:22;:::i;:::-;:35;;31109:140;;;;-1:-1:-1;;;31109:140:0;;10731:2:1;31109:140:0;;;10713:21:1;10770:2;10750:18;;;10743:30;-1:-1:-1;;;10789:18:1;;;10782:49;10848:18;;31109:140:0;10529:343:1;31109:140:0;31356:4;31307:28;9900:18;;;;;;;;;;;31414;;31390:42;;;;;;;31463:35;;-1:-1:-1;31487:11:0;;;;;;;31463:35;:61;;;;-1:-1:-1;31516:8:0;;-1:-1:-1;;;31516:8:0;;;;31515:9;31463:61;:97;;;;;31547:13;-1:-1:-1;;;;;31541:19:0;:2;-1:-1:-1;;;;;31541:19:0;;31463:97;:140;;;;-1:-1:-1;;;;;;31578:25:0;;;;;;:19;:25;;;;;;;;31577:26;31463:140;:181;;;;-1:-1:-1;;;;;;31621:23:0;;;;;;:19;:23;;;;;;;;31620:24;31463:181;31445:313;;;31671:8;:15;;-1:-1:-1;;;;31671:15:0;-1:-1:-1;;;31671:15:0;;;31703:10;:8;:10::i;:::-;31730:8;:16;;-1:-1:-1;;;;31730:16:0;;;31445:313;31786:8;;-1:-1:-1;;;;;31896:25:0;;31770:12;31896:25;;;:19;:25;;;;;;31786:8;-1:-1:-1;;;31786:8:0;;;;;31785:9;;31896:25;;:52;;-1:-1:-1;;;;;;31925:23:0;;;;;;:19;:23;;;;;;;;31896:52;31892:100;;;-1:-1:-1;31975:5:0;31892:100;32004:12;32031:26;32072:25;32190:7;32186:945;;;32248:13;-1:-1:-1;;;;;32242:19:0;:2;-1:-1:-1;;;;;32242:19:0;;:40;;;;;32281:1;32265:13;;:17;32242:40;32238:603;;;32310:34;32340:3;32310:25;32321:13;;32310:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;32303:41;;32412:13;;32392:16;;32385:4;:23;;;;:::i;:::-;32384:41;;;;:::i;:::-;32363:62;;32491:13;;32472:15;;32465:4;:22;;;;:::i;:::-;32464:40;;;;:::i;:::-;32444:60;;32238:603;;;32574:13;-1:-1:-1;;;;;32566:21:0;:4;-1:-1:-1;;;;;32566:21:0;;:41;;;;;32606:1;32591:12;;:16;32566:41;32562:279;;;32635:33;32664:3;32635:24;32646:12;;32635:6;:10;;:24;;;;:::i;:33::-;32628:40;;32735:12;;32716:15;;32709:4;:22;;;;:::i;:::-;32708:39;;;;:::i;:::-;32687:60;;32813:12;;32795:14;;32788:4;:21;;;;:::i;:::-;32787:38;;;;:::i;:::-;32767:58;;32562:279;32861:7;;32857:90;;32889:42;32905:4;32919;32926;32889:15;:42::i;:::-;32965:22;;32961:128;;33008:65;33032:4;33039:13;33054:18;33008:15;:65::i;:::-;33105:14;33115:4;33105:14;;:::i;:::-;;;32186:945;33143:33;33159:4;33165:2;33169:6;33143:15;:33::i;:::-;29593:3591;;;;;;29480:3704;;;:::o;3039:191::-;3132:6;;;-1:-1:-1;;;;;3149:17:0;;;-1:-1:-1;;;;;;3149:17:0;;;;;;;3182:40;;3132:6;;;3149:17;3132:6;;3182:40;;3113:16;;3182:40;3102:128;3039:191;:::o;12308:733::-;-1:-1:-1;;;;;12448:20:0;;12440:70;;;;-1:-1:-1;;;12440:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12529:23:0;;12521:71;;;;-1:-1:-1;;;12521:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12689:17:0;;12665:21;12689:17;;;;;;;;;;;12725:23;;;;12717:74;;;;-1:-1:-1;;;12717:74:0;;11209:2:1;12717:74:0;;;11191:21:1;11248:2;11228:18;;;11221:30;11287:34;11267:18;;;11260:62;-1:-1:-1;;;11338:18:1;;;11331:36;11384:19;;12717:74:0;11007:402:1;12717:74:0;-1:-1:-1;;;;;12827:17:0;;;:9;:17;;;;;;;;;;;12847:22;;;12827:42;;12891:20;;;;;;;;:30;;12863:6;;12827:9;12891:30;;12863:6;;12891:30;:::i;:::-;;;;;;;;12956:9;-1:-1:-1;;;;;12939:35:0;12948:6;-1:-1:-1;;;;;12939:35:0;;12967:6;12939:35;;;;2069:25:1;;2057:2;2042:18;;1923:177;12939:35:0;;;;;;;;12429:612;12308:733;;;:::o;33798:347::-;33881:4;33837:23;9900:18;;;;;;;;;;;;33898:59;;33939:7;33798:347::o;33898:59::-;33991:18;;:23;;34012:2;33991:23;:::i;:::-;33973:15;:41;33969:115;;;34049:18;;:23;;34070:2;34049:23;:::i;:::-;34031:41;;33969:115;34096:41;34121:15;34096:24;:41::i;19299:98::-;19357:7;19384:5;19388:1;19384;:5;:::i;:::-;19377:12;19299:98;-1:-1:-1;;;19299:98:0:o;19698:::-;19756:7;19783:5;19787:1;19783;:5;:::i;33192:598::-;33350:16;;;33364:1;33350:16;;;;;;;;33326:21;;33350:16;;;;;;;;;;-1:-1:-1;33350:16:0;33326:40;;33395:4;33377;33382:1;33377:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;33377:23:0;;;:7;;;;;;;;;:23;33421:11;;33411:7;;33421:11;;;33411:4;;33421:11;;33411:7;;;;;;:::i;:::-;;;;;;:21;-1:-1:-1;;;;;33411:21:0;;;-1:-1:-1;;;;;33411:21:0;;;;;33445:62;33462:4;33477:15;33495:11;33445:8;:62::i;:::-;33727:14;;33546:236;;-1:-1:-1;;;33546:236:0;;-1:-1:-1;;;;;33546:15:0;:69;;;;;:236;;33630:11;;33656:1;;33708:4;;33727:14;;;;;33756:15;;33546:236;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33255:535;33192:598;:::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:597::-;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;;;705:6;702:1;699:13;696:91;;;775:1;770:2;761:6;750:9;746:22;742:31;735:42;696:91;-1:-1:-1;848:2:1;827:15;-1:-1:-1;;823:29:1;808:45;;;;855:2;804:54;;267:597;-1:-1:-1;;;267:597:1:o;869:173::-;937:20;;-1:-1:-1;;;;;986:31:1;;976:42;;966:70;;1032:1;1029;1022:12;1047:254;1115:6;1123;1176:2;1164:9;1155:7;1151:23;1147:32;1144:52;;;1192:1;1189;1182:12;1144:52;1215:29;1234:9;1215:29;:::i;:::-;1205:39;1291:2;1276:18;;;;1263:32;;-1:-1:-1;;;1047:254:1:o;1498:186::-;1557:6;1610:2;1598:9;1589:7;1585:23;1581:32;1578:52;;;1626:1;1623;1616:12;1578:52;1649:29;1668:9;1649:29;:::i;2105:180::-;2164:6;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;-1:-1:-1;2256:23:1;;2105:180;-1:-1:-1;2105:180:1:o;2290:328::-;2367:6;2375;2383;2436:2;2424:9;2415:7;2411:23;2407:32;2404:52;;;2452:1;2449;2442:12;2404:52;2475:29;2494:9;2475:29;:::i;:::-;2465:39;;2523:38;2557:2;2546:9;2542:18;2523:38;:::i;:::-;2513:48;;2608:2;2597:9;2593:18;2580:32;2570:42;;2290:328;;;;;:::o;3020:160::-;3085:20;;3141:13;;3134:21;3124:32;;3114:60;;3170:1;3167;3160:12;3185:254;3250:6;3258;3311:2;3299:9;3290:7;3286:23;3282:32;3279:52;;;3327:1;3324;3317:12;3279:52;3350:29;3369:9;3350:29;:::i;:::-;3340:39;;3398:35;3429:2;3418:9;3414:18;3398:35;:::i;:::-;3388:45;;3185:254;;;;;:::o;3444:180::-;3500:6;3553:2;3541:9;3532:7;3528:23;3524:32;3521:52;;;3569:1;3566;3559:12;3521:52;3592:26;3608:9;3592:26;:::i;3629:260::-;3697:6;3705;3758:2;3746:9;3737:7;3733:23;3729:32;3726:52;;;3774:1;3771;3764:12;3726:52;3797:29;3816:9;3797:29;:::i;:::-;3787:39;;3845:38;3879:2;3868:9;3864:18;3845:38;:::i;3894:356::-;4096:2;4078:21;;;4115:18;;;4108:30;4174:34;4169:2;4154:18;;4147:62;4241:2;4226:18;;3894:356::o;4255:127::-;4316:10;4311:3;4307:20;4304:1;4297:31;4347:4;4344:1;4337:15;4371:4;4368:1;4361:15;4387:128;4427:3;4458:1;4454:6;4451:1;4448:13;4445:39;;;4464:18;;:::i;:::-;-1:-1:-1;4500:9:1;;4387:128::o;4878:380::-;4957:1;4953:12;;;;5000;;;5021:61;;5075:4;5067:6;5063:17;5053:27;;5021:61;5128:2;5120:6;5117:14;5097:18;5094:38;5091:161;;;5174:10;5169:3;5165:20;5162:1;5155:31;5209:4;5206:1;5199:15;5237:4;5234:1;5227:15;5091:161;;4878:380;;;:::o;5263:168::-;5303:7;5369:1;5365;5361:6;5357:14;5354:1;5351:21;5346:1;5339:9;5332:17;5328:45;5325:71;;;5376:18;;:::i;:::-;-1:-1:-1;5416:9:1;;5263:168::o;5436:217::-;5476:1;5502;5492:132;;5546:10;5541:3;5537:20;5534:1;5527:31;5581:4;5578:1;5571:15;5609:4;5606:1;5599:15;5492:132;-1:-1:-1;5638:9:1;;5436:217::o;8946:401::-;9148:2;9130:21;;;9187:2;9167:18;;;9160:30;9226:34;9221:2;9206:18;;9199:62;-1:-1:-1;;;9292:2:1;9277:18;;9270:35;9337:3;9322:19;;8946:401::o;9352:399::-;9554:2;9536:21;;;9593:2;9573:18;;;9566:30;9632:34;9627:2;9612:18;;9605:62;-1:-1:-1;;;9698:2:1;9683:18;;9676:33;9741:3;9726:19;;9352:399::o;10877:125::-;10917:4;10945:1;10942;10939:8;10936:34;;;10950:18;;:::i;:::-;-1:-1:-1;10987:9:1;;10877:125::o;11546:127::-;11607:10;11602:3;11598:20;11595:1;11588:31;11638:4;11635:1;11628:15;11662:4;11659:1;11652:15;11678:980;11940:4;11988:3;11977:9;11973:19;12019:6;12008:9;12001:25;12045:2;12083:6;12078:2;12067:9;12063:18;12056:34;12126:3;12121:2;12110:9;12106:18;12099:31;12150:6;12185;12179:13;12216:6;12208;12201:22;12254:3;12243:9;12239:19;12232:26;;12293:2;12285:6;12281:15;12267:29;;12314:1;12324:195;12338:6;12335:1;12332:13;12324:195;;;12403:13;;-1:-1:-1;;;;;12399:39:1;12387:52;;12494:15;;;;12459:12;;;;12435:1;12353:9;12324:195;;;-1:-1:-1;;;;;;;12575:32:1;;;;12570:2;12555:18;;12548:60;-1:-1:-1;;;12639:3:1;12624:19;12617:35;12536:3;11678:980;-1:-1:-1;;;11678:980:1:o

Swarm Source

ipfs://4f0dfb5445c4ac27310765f74c81263e94892123b1d039e2893defdf9e6165d3
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.