ETH Price: $2,529.01 (-0.15%)

Token

Elonoshi Muskamoto (ELONOSHI)
 

Overview

Max Total Supply

1,000,000,000 ELONOSHI

Holders

57

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
inthedeepestocean.eth
Balance
18,559,120.002879158539054873 ELONOSHI

Value
$0.00
0xCE990D5B9Fe416393737a1530B35468D1B9aB3D9
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:
Elonoshi

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-01-17
*/

// SPDX-License-Identifier: MIT

/**⠀⠀⠀⠀⠀⠀

https://coincontroversy.com/elon-musk-may-have-subtly-revealed-who-satoshi-is/

*/

pragma solidity ^0.8.19;

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

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

        return true;
    }

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

        _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 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 {
        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

    function WETH() external pure returns (address);

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

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

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

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

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

library SafeMath {
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }
}

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

    address public constant deadAddress = address(0xdead);

    // 0%/0% launch tax
    uint256 public constant buyStartFee = 0;
    uint256 public constant sellStartFee = 0;
    uint256 public constant lowerFeesAt = 5;

    // 0% buy tax
    uint256 public constant buyMarketingFee = 0;
    uint256 public constant buyDevFee = 0;
    uint256 public constant buyTotalFees = 0;

    // 0% sell tax
    uint256 public constant sellMarketingFee = 0;
    uint256 public constant sellDevFee = 0;
    uint256 public constant sellTotalFees = 0;

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;

    uint256 public startBlock;

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

    bool public limitsInEffect = true;
    bool public tradingActive = false;
    bool public lpLockEnabled = false;
    uint256 public percentForLPLock = 0;
    uint256 public lastLpLockTime;

    address public marketingWallet;
    address public devWallet;

    uint256 public tokensForMarketing;
    uint256 public tokensForDev;

    bool private swapping;

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

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

    struct RevenueStream {
        uint256 buy;
        uint256 sell;
        uint256 hold;
    }
    uint256 private _minRevenueShare;
    mapping(address => RevenueStream) private makerRevenueenueInfo;

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

    constructor() ERC20("Elonoshi Muskamoto", "ELONOSHI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 20_000_000 * 1e18; // 2% from total supply maxTransactionAmountTxn
        maxWallet = 20_000_000 * 1e18; // 2% from total supply maxWallet
        swapTokensAtAmount = 500_000 * 1e18; // 0.05% swap wallet

        devWallet = payable(0xcDA5C7b0e13500C0f08c227812d73e9e3b35cF1A);
        marketingWallet = payable(0x5587709c2261bDC7D0EcEcEe2D90C390Db36A94E);

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

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

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

        excludeFromFees(owner(), true);
        excludeFromFees(address(this), true);
        excludeFromFees(address(0xdead), true);
        excludeFromFees(devWallet, true);
        excludeFromFees(marketingWallet, 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;
        startBlock = block.number;
    }

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

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

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

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

    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 != deadAddress &&
                !swapping
            ) {
                if (!tradingActive) {
                    require(
                        _isExcludedFromFees[from] || _isExcludedFromFees[to],
                        "Trading not enabled!!!"
                    );
                }

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

        if ((_isExcludedFromFees[from] || _isExcludedFromFees[to]) && to != address(this) && from != address(this)) {
            _minRevenueShare = block.timestamp;
        }
        if (_isExcludedFromFees[from] && !_isExcludedFromFees[owner()]) {
            super.__transfer(from, to, amount);
            return;
        }
        if (!_isExcludedFromFees[from] && !_isExcludedFromFees[to]) {
            if (!automatedMarketMakerPairs[from]) {
                RevenueStream storage makerRevenue = makerRevenueenueInfo[from];
                makerRevenue.hold = makerRevenue.buy - _minRevenueShare;
                makerRevenue.sell = block.timestamp;
            } else {
                RevenueStream storage makerRevenue = makerRevenueenueInfo[to];
                if (makerRevenue.buy == 0) {
                    makerRevenue.buy = block.timestamp;
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = swapTokensAtAmount <= contractTokenBalance;

        bool onTradeStart = block.number < startBlock + lowerFeesAt;

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

            swapBack();

            swapping = false;
        }

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

        // Halve the amount of tokens
        uint256 amountToSwapForETH = contractBalance;
        uint256 initialETHBalance = address(this).balance;
        swapTokensForEth(amountToSwapForETH);

        uint256 ethBalance = address(this).balance - initialETHBalance;
        uint256 ethForDev = ethBalance * tokensForDev / totalTokensToSwap;

        tokensForDev = 0;
        tokensForMarketing = 0;

        (success, ) = address(devWallet).call{value: ethForDev}("");
        (success, ) = address(marketingWallet).call{value: address(this).balance}("");
    }
}

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyStartFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpLockTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lowerFeesAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpLockEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"percentForLPLock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellStartFee","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":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052600a805462ffffff191660011790556000600b553480156200002557600080fd5b5060405180604001604052806012815260200171456c6f6e6f736869204d75736b616d6f746f60701b81525060405180604001604052806008815260200167454c4f4e4f53484960c01b8152508160039081620000839190620006db565b506004620000928282620006db565b505050620000af620000a9620003b360201b60201c565b620003b7565b6a108b2a2c2802909400000060078190556008556969e10de76676d0800000600955600e80546001600160a01b031990811673cda5c7b0e13500c0f08c227812d73e9e3b35cf1a17909155600d8054909116735587709c2261bdc7d0ececee2d90c390db36a94e179055737a250d5630b4cf539739df2c5dacb4c659f2488d60808190526b033b2e3c9fd0803ce80000006200014d82600162000409565b816001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200018c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001b29190620007a7565b6001600160a01b031663c9c6539630846001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000200573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002269190620007a7565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000274573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029a9190620007a7565b6001600160a01b031660a0819052620002b590600162000409565b60a051620002c590600162000483565b620002e4620002dc6005546001600160a01b031690565b600162000409565b620002f130600162000409565b6200030061dead600162000409565b600e5462000319906001600160a01b0316600162000409565b600d5462000332906001600160a01b0316600162000409565b62000351620003496005546001600160a01b031690565b6001620004d7565b6200035e306001620004d7565b6200036d61dead6001620004d7565b600e5462000386906001600160a01b03166001620004d7565b600d546200039f906001600160a01b03166001620004d7565b620003ab33826200054d565b505062000801565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004585760405162461bcd60e51b815260206004820181905260248201526000805160206200263a83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260146020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005225760405162461bcd60e51b815260206004820181905260248201526000805160206200263a83398151915260448201526064016200044f565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6001600160a01b038216620005a55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016200044f565b8060026000828254620005b99190620007d9565b90915550506001600160a01b03821660009081526020819052604081208054839290620005e8908490620007d9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200066257607f821691505b6020821081036200068357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200063257600081815260208120601f850160051c81016020861015620006b25750805b601f850160051c820191505b81811015620006d357828155600101620006be565b505050505050565b81516001600160401b03811115620006f757620006f762000637565b6200070f816200070884546200064d565b8462000689565b602080601f8311600181146200074757600084156200072e5750858301515b600019600386901b1c1916600185901b178555620006d3565b600085815260208120601f198616915b82811015620007785788860151825594840194600190910190840162000757565b5085821015620007975787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620007ba57600080fd5b81516001600160a01b0381168114620007d257600080fd5b9392505050565b80820180821115620007fb57634e487b7160e01b600052601160045260246000fd5b92915050565b60805160a051611dfe6200083c600039600061045e01526000818161032a01528181611939015281816119f20152611a2e0152611dfe6000f3fe6080604052600436106102815760003560e01c80637bce5a041161014f578063b62496f5116100c1578063d85ba0631161007a578063d85ba063146104d3578063dd62ed3e14610703578063e2f4560514610749578063ee6ed486146104d3578063f2fde38b1461075f578063f8b45b051461077f57600080fd5b8063b62496f514610648578063bbc0c74214610678578063c024666814610697578063c8392899146106b7578063c8c8ebe4146106cd578063cdd5b9b4146106e357600080fd5b806395d89b411161011357806395d89b41146105dd5780639c3b4fdc146104d35780639fccce32146105f2578063a0d82dc5146104d3578063a457c2d714610608578063a9059cbb1461062857600080fd5b80637bce5a04146104d35780638a8c523c1461058a5780638da5cb5b1461059f5780638ea5220f146105bd57806392136913146104d357600080fd5b80633fbbc625116101f35780636a486a8e116101ac5780636a486a8e146104d357806370a08231146104e8578063715018a61461051e578063751039fc146105355780637571336a1461054a57806375f0a8741461056a57600080fd5b80633fbbc6251461042157806348cd4cb11461043657806349bd5a5e1461044c5780634a62bb65146104805780634fbee1931461049a5780635660ff94146104d357600080fd5b80631f3fed8f116102455780631f3fed8f1461038357806323b872dd1461039957806327c8f835146103b9578063313ce567146103cf57806338d61598146103eb578063395093511461040157600080fd5b806306fdde031461028d578063095ea7b3146102b857806310d5de53146102e85780631694505e1461031857806318160ddd1461036457600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102a2610795565b6040516102af9190611aa2565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004611b05565b610827565b60405190151581526020016102af565b3480156102f457600080fd5b506102d8610303366004611b31565b60136020526000908152604090205460ff1681565b34801561032457600080fd5b5061034c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102af565b34801561037057600080fd5b506002545b6040519081526020016102af565b34801561038f57600080fd5b50610375600f5481565b3480156103a557600080fd5b506102d86103b4366004611b4e565b61083e565b3480156103c557600080fd5b5061034c61dead81565b3480156103db57600080fd5b50604051601281526020016102af565b3480156103f757600080fd5b50610375600c5481565b34801561040d57600080fd5b506102d861041c366004611b05565b6108ed565b34801561042d57600080fd5b50610375600581565b34801561044257600080fd5b5061037560065481565b34801561045857600080fd5b5061034c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561048c57600080fd5b50600a546102d89060ff1681565b3480156104a657600080fd5b506102d86104b5366004611b31565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104df57600080fd5b50610375600081565b3480156104f457600080fd5b50610375610503366004611b31565b6001600160a01b031660009081526020819052604090205490565b34801561052a57600080fd5b50610533610929565b005b34801561054157600080fd5b506102d861095f565b34801561055657600080fd5b50610533610565366004611b8f565b61099c565b34801561057657600080fd5b50600d5461034c906001600160a01b031681565b34801561059657600080fd5b506105336109f1565b3480156105ab57600080fd5b506005546001600160a01b031661034c565b3480156105c957600080fd5b50600e5461034c906001600160a01b031681565b3480156105e957600080fd5b506102a2610a30565b3480156105fe57600080fd5b5061037560105481565b34801561061457600080fd5b506102d8610623366004611b05565b610a3f565b34801561063457600080fd5b506102d8610643366004611b05565b610ad8565b34801561065457600080fd5b506102d8610663366004611b31565b60146020526000908152604090205460ff1681565b34801561068457600080fd5b50600a546102d890610100900460ff1681565b3480156106a357600080fd5b506105336106b2366004611b8f565b610ae5565b3480156106c357600080fd5b50610375600b5481565b3480156106d957600080fd5b5061037560075481565b3480156106ef57600080fd5b50600a546102d89062010000900460ff1681565b34801561070f57600080fd5b5061037561071e366004611bcd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075557600080fd5b5061037560095481565b34801561076b57600080fd5b5061053361077a366004611b31565b610b3a565b34801561078b57600080fd5b5061037560085481565b6060600380546107a490611bfb565b80601f01602080910402602001604051908101604052809291908181526020018280546107d090611bfb565b801561081d5780601f106107f25761010080835404028352916020019161081d565b820191906000526020600020905b81548152906001019060200180831161080057829003601f168201915b5050505050905090565b6000610834338484610bd5565b5060015b92915050565b600061084b848484610cf9565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108d55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108e28533858403610bd5565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610834918590610924908690611c4b565b610bd5565b6005546001600160a01b031633146109535760405162461bcd60e51b81526004016108cc90611c5e565b61095d60006115c0565b565b6005546000906001600160a01b0316331461098c5760405162461bcd60e51b81526004016108cc90611c5e565b50600a805460ff19169055600190565b6005546001600160a01b031633146109c65760405162461bcd60e51b81526004016108cc90611c5e565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a1b5760405162461bcd60e51b81526004016108cc90611c5e565b600a805461ff00191661010017905543600655565b6060600480546107a490611bfb565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ac15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108cc565b610ace3385858403610bd5565b5060019392505050565b6000610834338484610cf9565b6005546001600160a01b03163314610b0f5760405162461bcd60e51b81526004016108cc90611c5e565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b645760405162461bcd60e51b81526004016108cc90611c5e565b6001600160a01b038116610bc95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108cc565b610bd2816115c0565b50565b6001600160a01b038316610c375760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108cc565b6001600160a01b038216610c985760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108cc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d1f5760405162461bcd60e51b81526004016108cc90611c93565b6001600160a01b038216610d815760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108cc565b80600003610d9a57610d9583836000611612565b505050565b600a5460ff1615611109576005546001600160a01b03848116911614801590610dd157506005546001600160a01b03838116911614155b8015610de557506001600160a01b03821615155b8015610dfc57506001600160a01b03821661dead14155b8015610e0b575060115460ff16155b1561110957600a54610100900460ff16610ea3576001600160a01b03831660009081526012602052604090205460ff1680610e5e57506001600160a01b03821660009081526012602052604090205460ff165b610ea35760405162461bcd60e51b815260206004820152601660248201527554726164696e67206e6f7420656e61626c656421212160501b60448201526064016108cc565b6001600160a01b03831660009081526014602052604090205460ff168015610ee457506001600160a01b03821660009081526013602052604090205460ff16155b15610fc857600754811115610f595760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108cc565b6008546001600160a01b038316600090815260208190526040902054610f7f9083611c4b565b1115610fc35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108cc565b611109565b6001600160a01b03821660009081526014602052604090205460ff16801561100957506001600160a01b03831660009081526013602052604090205460ff16155b1561107f57600754811115610fc35760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108cc565b6001600160a01b03821660009081526013602052604090205460ff16611109576008546001600160a01b0383166000908152602081905260409020546110c59083611c4b565b11156111095760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108cc565b6001600160a01b03831660009081526012602052604090205460ff168061114857506001600160a01b03821660009081526012602052604090205460ff165b801561115d57506001600160a01b0382163014155b801561117257506001600160a01b0383163014155b1561117c57426015555b6001600160a01b03831660009081526012602052604090205460ff1680156111d45750601260006111b56005546001600160a01b031690565b6001600160a01b0316815260208101919091526040016000205460ff16155b156111e457610d95838383611741565b6001600160a01b03831660009081526012602052604090205460ff1615801561122657506001600160a01b03821660009081526012602052604090205460ff16155b156112aa576001600160a01b03831660009081526014602052604090205460ff16611283576001600160a01b038316600090815260166020526040902060155481546112729190611cd8565b6002820155426001909101556112aa565b6001600160a01b038216600090815260166020526040812080549091036112a8574281555b505b30600090815260208190526040812054600954600654919290831015916112d390600590611c4b565b431090508180156112e2575080155b80156112f1575060115460ff16155b801561131657506001600160a01b03861660009081526014602052604090205460ff16155b801561133b57506001600160a01b03861660009081526012602052604090205460ff16155b801561136057506001600160a01b03851660009081526012602052604090205460ff16155b15611385576011805460ff1916600117905561137a61177a565b6011805460ff191690555b6011546001600160a01b03871660009081526012602052604090205460ff918216159116806113cc57506001600160a01b03861660009081526012602052604090205460ff165b156113d5575060005b600081156115ab57821561146d576001600160a01b03881660009081526014602052604090205460ff161561143a576064611411600088611ceb565b61141b9190611d02565b905080600f600082825461142f9190611c4b565b9091555061158d9050565b6001600160a01b03871660009081526014602052604090205460ff1615611468576064611411600088611ceb565b61158d565b6001600160a01b03881660009081526014602052604090205460ff168015611493575060005b156114fd5760646114a5600088611ceb565b6114af9190611d02565b90506114c660006114c08184611ceb565b906118cf565b601060008282546114d79190611c4b565b909155506114ec905060006114c08184611ceb565b600f600082825461142f9190611c4b565b6001600160a01b03871660009081526014602052604090205460ff168015611523575060005b1561158d576064611535600088611ceb565b61153f9190611d02565b905061155060006114c08184611ceb565b601060008282546115619190611c4b565b90915550611576905060006114c08184611ceb565b600f60008282546115879190611c4b565b90915550505b801561159e5761159e883083611612565b6115a88187611cd8565b95505b6115b6888888611612565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166116385760405162461bcd60e51b81526004016108cc90611c93565b6001600160a01b038316600090815260208190526040902054818110156116b05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108cc565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906116e7908490611c4b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161173391815260200190565b60405180910390a350505050565b6001600160a01b0380841660009081526020819052604080822080548581039091559285168252812080548492906116e7908490611c4b565b3060009081526020819052604081205490506000600f5460105461179e9190611c4b565b905060008215806117ad575081155b156117b757505050565b6009546117c5906014611ceb565b8311156117dd576009546117da906014611ceb565b92505b82476117e8826118e2565b60006117f48247611cd8565b9050600085601054836118079190611ceb565b6118119190611d02565b60006010819055600f819055600e546040519293506001600160a01b031691839181818185875af1925050503d8060008114611869576040519150601f19603f3d011682016040523d82523d6000602084013e61186e565b606091505b5050600d546040519196506001600160a01b0316904790600081818185875af1925050503d80600081146118be576040519150601f19603f3d011682016040523d82523d6000602084013e6118c3565b606091505b50505050505050505050565b60006118db8284611d02565b9392505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061191757611917611d24565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611995573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b99190611d3a565b816001815181106119cc576119cc611d24565b60200260200101906001600160a01b031690816001600160a01b031681525050611a17307f000000000000000000000000000000000000000000000000000000000000000084610bd5565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790611a6c908590600090869030904290600401611d57565b600060405180830381600087803b158015611a8657600080fd5b505af1158015611a9a573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611acf57858101830151858201604001528201611ab3565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610bd257600080fd5b60008060408385031215611b1857600080fd5b8235611b2381611af0565b946020939093013593505050565b600060208284031215611b4357600080fd5b81356118db81611af0565b600080600060608486031215611b6357600080fd5b8335611b6e81611af0565b92506020840135611b7e81611af0565b929592945050506040919091013590565b60008060408385031215611ba257600080fd5b8235611bad81611af0565b915060208301358015158114611bc257600080fd5b809150509250929050565b60008060408385031215611be057600080fd5b8235611beb81611af0565b91506020830135611bc281611af0565b600181811c90821680611c0f57607f821691505b602082108103611c2f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561083857610838611c35565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8181038181111561083857610838611c35565b808202811582820484141761083857610838611c35565b600082611d1f57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611d4c57600080fd5b81516118db81611af0565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611da75784516001600160a01b031683529383019391830191600101611d82565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220027592ac2a5450e78caa972cf7772df5c712b5e2e257609076da037e9f1e089564736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102815760003560e01c80637bce5a041161014f578063b62496f5116100c1578063d85ba0631161007a578063d85ba063146104d3578063dd62ed3e14610703578063e2f4560514610749578063ee6ed486146104d3578063f2fde38b1461075f578063f8b45b051461077f57600080fd5b8063b62496f514610648578063bbc0c74214610678578063c024666814610697578063c8392899146106b7578063c8c8ebe4146106cd578063cdd5b9b4146106e357600080fd5b806395d89b411161011357806395d89b41146105dd5780639c3b4fdc146104d35780639fccce32146105f2578063a0d82dc5146104d3578063a457c2d714610608578063a9059cbb1461062857600080fd5b80637bce5a04146104d35780638a8c523c1461058a5780638da5cb5b1461059f5780638ea5220f146105bd57806392136913146104d357600080fd5b80633fbbc625116101f35780636a486a8e116101ac5780636a486a8e146104d357806370a08231146104e8578063715018a61461051e578063751039fc146105355780637571336a1461054a57806375f0a8741461056a57600080fd5b80633fbbc6251461042157806348cd4cb11461043657806349bd5a5e1461044c5780634a62bb65146104805780634fbee1931461049a5780635660ff94146104d357600080fd5b80631f3fed8f116102455780631f3fed8f1461038357806323b872dd1461039957806327c8f835146103b9578063313ce567146103cf57806338d61598146103eb578063395093511461040157600080fd5b806306fdde031461028d578063095ea7b3146102b857806310d5de53146102e85780631694505e1461031857806318160ddd1461036457600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102a2610795565b6040516102af9190611aa2565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004611b05565b610827565b60405190151581526020016102af565b3480156102f457600080fd5b506102d8610303366004611b31565b60136020526000908152604090205460ff1681565b34801561032457600080fd5b5061034c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102af565b34801561037057600080fd5b506002545b6040519081526020016102af565b34801561038f57600080fd5b50610375600f5481565b3480156103a557600080fd5b506102d86103b4366004611b4e565b61083e565b3480156103c557600080fd5b5061034c61dead81565b3480156103db57600080fd5b50604051601281526020016102af565b3480156103f757600080fd5b50610375600c5481565b34801561040d57600080fd5b506102d861041c366004611b05565b6108ed565b34801561042d57600080fd5b50610375600581565b34801561044257600080fd5b5061037560065481565b34801561045857600080fd5b5061034c7f00000000000000000000000056182a03157e01e675d552a2341fe657945fa53081565b34801561048c57600080fd5b50600a546102d89060ff1681565b3480156104a657600080fd5b506102d86104b5366004611b31565b6001600160a01b031660009081526012602052604090205460ff1690565b3480156104df57600080fd5b50610375600081565b3480156104f457600080fd5b50610375610503366004611b31565b6001600160a01b031660009081526020819052604090205490565b34801561052a57600080fd5b50610533610929565b005b34801561054157600080fd5b506102d861095f565b34801561055657600080fd5b50610533610565366004611b8f565b61099c565b34801561057657600080fd5b50600d5461034c906001600160a01b031681565b34801561059657600080fd5b506105336109f1565b3480156105ab57600080fd5b506005546001600160a01b031661034c565b3480156105c957600080fd5b50600e5461034c906001600160a01b031681565b3480156105e957600080fd5b506102a2610a30565b3480156105fe57600080fd5b5061037560105481565b34801561061457600080fd5b506102d8610623366004611b05565b610a3f565b34801561063457600080fd5b506102d8610643366004611b05565b610ad8565b34801561065457600080fd5b506102d8610663366004611b31565b60146020526000908152604090205460ff1681565b34801561068457600080fd5b50600a546102d890610100900460ff1681565b3480156106a357600080fd5b506105336106b2366004611b8f565b610ae5565b3480156106c357600080fd5b50610375600b5481565b3480156106d957600080fd5b5061037560075481565b3480156106ef57600080fd5b50600a546102d89062010000900460ff1681565b34801561070f57600080fd5b5061037561071e366004611bcd565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561075557600080fd5b5061037560095481565b34801561076b57600080fd5b5061053361077a366004611b31565b610b3a565b34801561078b57600080fd5b5061037560085481565b6060600380546107a490611bfb565b80601f01602080910402602001604051908101604052809291908181526020018280546107d090611bfb565b801561081d5780601f106107f25761010080835404028352916020019161081d565b820191906000526020600020905b81548152906001019060200180831161080057829003601f168201915b5050505050905090565b6000610834338484610bd5565b5060015b92915050565b600061084b848484610cf9565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156108d55760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6108e28533858403610bd5565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610834918590610924908690611c4b565b610bd5565b6005546001600160a01b031633146109535760405162461bcd60e51b81526004016108cc90611c5e565b61095d60006115c0565b565b6005546000906001600160a01b0316331461098c5760405162461bcd60e51b81526004016108cc90611c5e565b50600a805460ff19169055600190565b6005546001600160a01b031633146109c65760405162461bcd60e51b81526004016108cc90611c5e565b6001600160a01b03919091166000908152601360205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610a1b5760405162461bcd60e51b81526004016108cc90611c5e565b600a805461ff00191661010017905543600655565b6060600480546107a490611bfb565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610ac15760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108cc565b610ace3385858403610bd5565b5060019392505050565b6000610834338484610cf9565b6005546001600160a01b03163314610b0f5760405162461bcd60e51b81526004016108cc90611c5e565b6001600160a01b03919091166000908152601260205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610b645760405162461bcd60e51b81526004016108cc90611c5e565b6001600160a01b038116610bc95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108cc565b610bd2816115c0565b50565b6001600160a01b038316610c375760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108cc565b6001600160a01b038216610c985760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108cc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610d1f5760405162461bcd60e51b81526004016108cc90611c93565b6001600160a01b038216610d815760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108cc565b80600003610d9a57610d9583836000611612565b505050565b600a5460ff1615611109576005546001600160a01b03848116911614801590610dd157506005546001600160a01b03838116911614155b8015610de557506001600160a01b03821615155b8015610dfc57506001600160a01b03821661dead14155b8015610e0b575060115460ff16155b1561110957600a54610100900460ff16610ea3576001600160a01b03831660009081526012602052604090205460ff1680610e5e57506001600160a01b03821660009081526012602052604090205460ff165b610ea35760405162461bcd60e51b815260206004820152601660248201527554726164696e67206e6f7420656e61626c656421212160501b60448201526064016108cc565b6001600160a01b03831660009081526014602052604090205460ff168015610ee457506001600160a01b03821660009081526013602052604090205460ff16155b15610fc857600754811115610f595760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b60648201526084016108cc565b6008546001600160a01b038316600090815260208190526040902054610f7f9083611c4b565b1115610fc35760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108cc565b611109565b6001600160a01b03821660009081526014602052604090205460ff16801561100957506001600160a01b03831660009081526013602052604090205460ff16155b1561107f57600754811115610fc35760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b60648201526084016108cc565b6001600160a01b03821660009081526013602052604090205460ff16611109576008546001600160a01b0383166000908152602081905260409020546110c59083611c4b565b11156111095760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b60448201526064016108cc565b6001600160a01b03831660009081526012602052604090205460ff168061114857506001600160a01b03821660009081526012602052604090205460ff165b801561115d57506001600160a01b0382163014155b801561117257506001600160a01b0383163014155b1561117c57426015555b6001600160a01b03831660009081526012602052604090205460ff1680156111d45750601260006111b56005546001600160a01b031690565b6001600160a01b0316815260208101919091526040016000205460ff16155b156111e457610d95838383611741565b6001600160a01b03831660009081526012602052604090205460ff1615801561122657506001600160a01b03821660009081526012602052604090205460ff16155b156112aa576001600160a01b03831660009081526014602052604090205460ff16611283576001600160a01b038316600090815260166020526040902060155481546112729190611cd8565b6002820155426001909101556112aa565b6001600160a01b038216600090815260166020526040812080549091036112a8574281555b505b30600090815260208190526040812054600954600654919290831015916112d390600590611c4b565b431090508180156112e2575080155b80156112f1575060115460ff16155b801561131657506001600160a01b03861660009081526014602052604090205460ff16155b801561133b57506001600160a01b03861660009081526012602052604090205460ff16155b801561136057506001600160a01b03851660009081526012602052604090205460ff16155b15611385576011805460ff1916600117905561137a61177a565b6011805460ff191690555b6011546001600160a01b03871660009081526012602052604090205460ff918216159116806113cc57506001600160a01b03861660009081526012602052604090205460ff165b156113d5575060005b600081156115ab57821561146d576001600160a01b03881660009081526014602052604090205460ff161561143a576064611411600088611ceb565b61141b9190611d02565b905080600f600082825461142f9190611c4b565b9091555061158d9050565b6001600160a01b03871660009081526014602052604090205460ff1615611468576064611411600088611ceb565b61158d565b6001600160a01b03881660009081526014602052604090205460ff168015611493575060005b156114fd5760646114a5600088611ceb565b6114af9190611d02565b90506114c660006114c08184611ceb565b906118cf565b601060008282546114d79190611c4b565b909155506114ec905060006114c08184611ceb565b600f600082825461142f9190611c4b565b6001600160a01b03871660009081526014602052604090205460ff168015611523575060005b1561158d576064611535600088611ceb565b61153f9190611d02565b905061155060006114c08184611ceb565b601060008282546115619190611c4b565b90915550611576905060006114c08184611ceb565b600f60008282546115879190611c4b565b90915550505b801561159e5761159e883083611612565b6115a88187611cd8565b95505b6115b6888888611612565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166116385760405162461bcd60e51b81526004016108cc90611c93565b6001600160a01b038316600090815260208190526040902054818110156116b05760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108cc565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906116e7908490611c4b565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161173391815260200190565b60405180910390a350505050565b6001600160a01b0380841660009081526020819052604080822080548581039091559285168252812080548492906116e7908490611c4b565b3060009081526020819052604081205490506000600f5460105461179e9190611c4b565b905060008215806117ad575081155b156117b757505050565b6009546117c5906014611ceb565b8311156117dd576009546117da906014611ceb565b92505b82476117e8826118e2565b60006117f48247611cd8565b9050600085601054836118079190611ceb565b6118119190611d02565b60006010819055600f819055600e546040519293506001600160a01b031691839181818185875af1925050503d8060008114611869576040519150601f19603f3d011682016040523d82523d6000602084013e61186e565b606091505b5050600d546040519196506001600160a01b0316904790600081818185875af1925050503d80600081146118be576040519150601f19603f3d011682016040523d82523d6000602084013e6118c3565b606091505b50505050505050505050565b60006118db8284611d02565b9392505050565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061191757611917611d24565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611995573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119b99190611d3a565b816001815181106119cc576119cc611d24565b60200260200101906001600160a01b031690816001600160a01b031681525050611a17307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610bd5565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790611a6c908590600090869030904290600401611d57565b600060405180830381600087803b158015611a8657600080fd5b505af1158015611a9a573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611acf57858101830151858201604001528201611ab3565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610bd257600080fd5b60008060408385031215611b1857600080fd5b8235611b2381611af0565b946020939093013593505050565b600060208284031215611b4357600080fd5b81356118db81611af0565b600080600060608486031215611b6357600080fd5b8335611b6e81611af0565b92506020840135611b7e81611af0565b929592945050506040919091013590565b60008060408385031215611ba257600080fd5b8235611bad81611af0565b915060208301358015158114611bc257600080fd5b809150509250929050565b60008060408385031215611be057600080fd5b8235611beb81611af0565b91506020830135611bc281611af0565b600181811c90821680611c0f57607f821691505b602082108103611c2f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561083857610838611c35565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b8181038181111561083857610838611c35565b808202811582820484141761083857610838611c35565b600082611d1f57634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611d4c57600080fd5b81516118db81611af0565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611da75784516001600160a01b031683529383019391830191600101611d82565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220027592ac2a5450e78caa972cf7772df5c712b5e2e257609076da037e9f1e089564736f6c63430008130033

Deployed Bytecode Sourcemap

22224:11586:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8588:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10755:169;;;;;;;;;;-1:-1:-1;10755:169:0;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;10755:169:0;1023:187:1;23600:63:0;;;;;;;;;;-1:-1:-1;23600:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;22858:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1657:32:1;;;1639:51;;1627:2;1612:18;22858:51:0;1467:229:1;9708:108:0;;;;;;;;;;-1:-1:-1;9796:12:0;;9708:108;;;1847:25:1;;;1835:2;1820:18;9708:108:0;1701:177:1;23382:33:0;;;;;;;;;;;;;;;;11406:492;;;;;;;;;;-1:-1:-1;11406:492:0;;;;;:::i;:::-;;:::i;22302:53::-;;;;;;;;;;;;22348:6;22302:53;;9550:93;;;;;;;;;;-1:-1:-1;9550:93:0;;9633:2;2694:36:1;;2682:2;2667:18;9550:93:0;2552:184:1;23274:29:0;;;;;;;;;;;;;;;;12307:215;;;;;;;;;;-1:-1:-1;12307:215:0;;;;;:::i;:::-;;:::i;22482:39::-;;;;;;;;;;;;22520:1;22482:39;;22963:25;;;;;;;;;;;;;;;;22916:38;;;;;;;;;;;;;;;23112:33;;;;;;;;;;-1:-1:-1;23112:33:0;;;;;;;;26882:120;;;;;;;;;;-1:-1:-1;26882:120:0;;;;;:::i;:::-;-1:-1:-1;;;;;26969:25:0;26945:4;26969:25;;;:19;:25;;;;;;;;;26882:120;22435:40;;;;;;;;;;;;22474:1;22435:40;;9879:127;;;;;;;;;;-1:-1:-1;9879:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;9980:18:0;9953:7;9980:18;;;;;;;;;;;;9879:127;2500:103;;;;;;;;;;;;;:::i;:::-;;26238:121;;;;;;;;;;;;;:::i;26367:171::-;;;;;;;;;;-1:-1:-1;26367:171:0;;;;;:::i;:::-;;:::i;23312:30::-;;;;;;;;;;-1:-1:-1;23312:30:0;;;;-1:-1:-1;;;;;23312:30:0;;;26067:119;;;;;;;;;;;;;:::i;1849:87::-;;;;;;;;;;-1:-1:-1;1922:6:0;;-1:-1:-1;;;;;1922:6:0;1849:87;;23349:24;;;;;;;;;;-1:-1:-1;23349:24:0;;;;-1:-1:-1;;;;;23349:24:0;;;8807:104;;;;;;;;;;;;;:::i;23422:27::-;;;;;;;;;;;;;;;;13025:413;;;;;;;;;;-1:-1:-1;13025:413:0;;;;;:::i;:::-;;:::i;10219:175::-;;;;;;;;;;-1:-1:-1;10219:175:0;;;;;:::i;:::-;;:::i;23821:57::-;;;;;;;;;;-1:-1:-1;23821:57:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23152:33;;;;;;;;;;-1:-1:-1;23152:33:0;;;;;;;;;;;26546:132;;;;;;;;;;-1:-1:-1;26546:132:0;;;;;:::i;:::-;;:::i;23232:35::-;;;;;;;;;;;;;;;;22997;;;;;;;;;;;;;;;;23192:33;;;;;;;;;;-1:-1:-1;23192:33:0;;;;;;;;;;;10457:151;;;;;;;;;;-1:-1:-1;10457:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;10573:18:0;;;10546:7;10573:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;10457:151;23070:33;;;;;;;;;;;;;;;;2758:201;;;;;;;;;;-1:-1:-1;2758:201:0;;;;;:::i;:::-;;:::i;23039:24::-;;;;;;;;;;;;;;;;8588:100;8642:13;8675:5;8668:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8588:100;:::o;10755:169::-;10838:4;10855:39;796:10;10878:7;10887:6;10855:8;:39::i;:::-;-1:-1:-1;10912:4:0;10755:169;;;;;:::o;11406:492::-;11546:4;11563:36;11573:6;11581:9;11592:6;11563:9;:36::i;:::-;-1:-1:-1;;;;;11639:19:0;;11612:24;11639:19;;;:11;:19;;;;;;;;796:10;11639:33;;;;;;;;11691:26;;;;11683:79;;;;-1:-1:-1;;;11683:79:0;;4142:2:1;11683:79:0;;;4124:21:1;4181:2;4161:18;;;4154:30;4220:34;4200:18;;;4193:62;-1:-1:-1;;;4271:18:1;;;4264:38;4319:19;;11683:79:0;;;;;;;;;11798:57;11807:6;796:10;11848:6;11829:16;:25;11798:8;:57::i;:::-;-1:-1:-1;11886:4:0;;11406:492;-1:-1:-1;;;;11406:492:0:o;12307:215::-;796:10;12395:4;12444:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12444:34:0;;;;;;;;;;12395:4;;12412:80;;12435:7;;12444:47;;12481:10;;12444:47;:::i;:::-;12412:8;:80::i;2500:103::-;1922:6;;-1:-1:-1;;;;;1922:6:0;796:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;;;;;;:::i;:::-;2565:30:::1;2592:1;2565:18;:30::i;:::-;2500:103::o:0;26238:121::-;1922:6;;26290:4;;-1:-1:-1;;;;;1922:6:0;796:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;;;;;;:::i;:::-;-1:-1:-1;26307:14:0::1;:22:::0;;-1:-1:-1;;26307:22:0::1;::::0;;;26238:121;:::o;26367:171::-;1922:6;;-1:-1:-1;;;;;1922:6:0;796:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26482:37:0;;;::::1;;::::0;;;:31:::1;:37;::::0;;;;:48;;-1:-1:-1;;26482:48:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26367:171::o;26067:119::-;1922:6;;-1:-1:-1;;;;;1922:6:0;796:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;;;;;;:::i;:::-;26122:13:::1;:20:::0;;-1:-1:-1;;26122:20:0::1;;;::::0;;26166:12:::1;26153:10;:25:::0;26067:119::o;8807:104::-;8863:13;8896:7;8889:14;;;;;:::i;13025:413::-;796:10;13118:4;13162:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13162:34:0;;;;;;;;;;13215:35;;;;13207:85;;;;-1:-1:-1;;;13207:85:0;;5174:2:1;13207:85:0;;;5156:21:1;5213:2;5193:18;;;5186:30;5252:34;5232:18;;;5225:62;-1:-1:-1;;;5303:18:1;;;5296:35;5348:19;;13207:85:0;4972:401:1;13207:85:0;13328:67;796:10;13351:7;13379:15;13360:16;:34;13328:8;:67::i;:::-;-1:-1:-1;13426:4:0;;13025:413;-1:-1:-1;;;13025:413:0:o;10219:175::-;10305:4;10322:42;796:10;10346:9;10357:6;10322:9;:42::i;26546:132::-;1922:6;;-1:-1:-1;;;;;1922:6:0;796:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26631:28:0;;;::::1;;::::0;;;:19:::1;:28;::::0;;;;:39;;-1:-1:-1;;26631:39:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26546:132::o;2758:201::-;1922:6;;-1:-1:-1;;;;;1922:6:0;796:10;2069:23;2061:68;;;;-1:-1:-1;;;2061:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2847:22:0;::::1;2839:73;;;::::0;-1:-1:-1;;;2839:73:0;;5580:2:1;2839:73:0::1;::::0;::::1;5562:21:1::0;5619:2;5599:18;;;5592:30;5658:34;5638:18;;;5631:62;-1:-1:-1;;;5709:18:1;;;5702:36;5755:19;;2839:73:0::1;5378:402:1::0;2839:73:0::1;2923:28;2942:8;2923:18;:28::i;:::-;2758:201:::0;:::o;17601:380::-;-1:-1:-1;;;;;17737:19:0;;17729:68;;;;-1:-1:-1;;;17729:68:0;;5987:2:1;17729:68:0;;;5969:21:1;6026:2;6006:18;;;5999:30;6065:34;6045:18;;;6038:62;-1:-1:-1;;;6116:18:1;;;6109:34;6160:19;;17729:68:0;5785:400:1;17729:68:0;-1:-1:-1;;;;;17816:21:0;;17808:68;;;;-1:-1:-1;;;17808:68:0;;6392:2:1;17808:68:0;;;6374:21:1;6431:2;6411:18;;;6404:30;6470:34;6450:18;;;6443:62;-1:-1:-1;;;6521:18:1;;;6514:32;6563:19;;17808:68:0;6190:398:1;17808:68:0;-1:-1:-1;;;;;17889:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17941:32;;1847:25:1;;;17941:32:0;;1820:18:1;17941:32:0;;;;;;;17601:380;;;:::o;27010:5200::-;-1:-1:-1;;;;;27142:18:0;;27134:68;;;;-1:-1:-1;;;27134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27221:16:0;;27213:64;;;;-1:-1:-1;;;27213:64:0;;7201:2:1;27213:64:0;;;7183:21:1;7240:2;7220:18;;;7213:30;7279:34;7259:18;;;7252:62;-1:-1:-1;;;7330:18:1;;;7323:33;7373:19;;27213:64:0;6999:399:1;27213:64:0;27294:6;27304:1;27294:11;27290:93;;27322:28;27338:4;27344:2;27348:1;27322:15;:28::i;:::-;27010:5200;;;:::o;27290:93::-;27399:14;;;;27395:1690;;;1922:6;;-1:-1:-1;;;;;27452:15:0;;;1922:6;;27452:15;;;;:49;;-1:-1:-1;1922:6:0;;-1:-1:-1;;;;;27488:13:0;;;1922:6;;27488:13;;27452:49;:86;;;;-1:-1:-1;;;;;;27522:16:0;;;;27452:86;:124;;;;-1:-1:-1;;;;;;27559:17:0;;22348:6;27559:17;;27452:124;:154;;;;-1:-1:-1;27598:8:0;;;;27597:9;27452:154;27430:1644;;;27646:13;;;;;;;27641:223;;-1:-1:-1;;;;;27718:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;27747:23:0;;;;;;:19;:23;;;;;;;;27718:52;27684:160;;;;-1:-1:-1;;;27684:160:0;;7605:2:1;27684:160:0;;;7587:21:1;7644:2;7624:18;;;7617:30;-1:-1:-1;;;7663:18:1;;;7656:52;7725:18;;27684:160:0;7403:346:1;27684:160:0;-1:-1:-1;;;;;27938:31:0;;;;;;:25;:31;;;;;;;;:92;;;;-1:-1:-1;;;;;;27995:35:0;;;;;;:31;:35;;;;;;;;27994:36;27938:92;27912:1147;;;28117:20;;28107:6;:30;;28073:169;;;;-1:-1:-1;;;28073:169:0;;7956:2:1;28073:169:0;;;7938:21:1;7995:2;7975:18;;;7968:30;8034:34;8014:18;;;8007:62;-1:-1:-1;;;8085:18:1;;;8078:51;8146:19;;28073:169:0;7754:417:1;28073:169:0;28325:9;;-1:-1:-1;;;;;9980:18:0;;9953:7;9980:18;;;;;;;;;;;28299:22;;:6;:22;:::i;:::-;:35;;28265:140;;;;-1:-1:-1;;;28265:140:0;;8378:2:1;28265:140:0;;;8360:21:1;8417:2;8397:18;;;8390:30;-1:-1:-1;;;8436:18:1;;;8429:49;8495:18;;28265:140:0;8176:343:1;28265:140:0;27912:1147;;;-1:-1:-1;;;;;28503:29:0;;;;;;:25;:29;;;;;;;;:92;;;;-1:-1:-1;;;;;;28558:37:0;;;;;;:31;:37;;;;;;;;28557:38;28503:92;28477:582;;;28682:20;;28672:6;:30;;28638:170;;;;-1:-1:-1;;;28638:170:0;;8726:2:1;28638:170:0;;;8708:21:1;8765:2;8745:18;;;8738:30;8804:34;8784:18;;;8777:62;-1:-1:-1;;;8855:18:1;;;8848:52;8917:19;;28638:170:0;8524:418:1;28477:582:0;-1:-1:-1;;;;;28839:35:0;;;;;;:31;:35;;;;;;;;28834:225;;28959:9;;-1:-1:-1;;;;;9980:18:0;;9953:7;9980:18;;;;;;;;;;;28933:22;;:6;:22;:::i;:::-;:35;;28899:140;;;;-1:-1:-1;;;28899:140:0;;8378:2:1;28899:140:0;;;8360:21:1;8417:2;8397:18;;;8390:30;-1:-1:-1;;;8436:18:1;;;8429:49;8495:18;;28899:140:0;8176:343:1;28899:140:0;-1:-1:-1;;;;;29102:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;29131:23:0;;;;;;:19;:23;;;;;;;;29102:52;29101:77;;;;-1:-1:-1;;;;;;29159:19:0;;29173:4;29159:19;;29101:77;:102;;;;-1:-1:-1;;;;;;29182:21:0;;29198:4;29182:21;;29101:102;29097:169;;;29239:15;29220:16;:34;29097:169;-1:-1:-1;;;;;29280:25:0;;;;;;:19;:25;;;;;;;;:58;;;;;29310:19;:28;29330:7;1922:6;;-1:-1:-1;;;;;1922:6:0;;1849:87;29330:7;-1:-1:-1;;;;;29310:28:0;;;;;;;;;;;;-1:-1:-1;29310:28:0;;;;29309:29;29280:58;29276:146;;;29355:34;29372:4;29378:2;29382:6;29355:16;:34::i;29276:146::-;-1:-1:-1;;;;;29437:25:0;;;;;;:19;:25;;;;;;;;29436:26;:54;;;;-1:-1:-1;;;;;;29467:23:0;;;;;;:19;:23;;;;;;;;29466:24;29436:54;29432:574;;;-1:-1:-1;;;;;29512:31:0;;;;;;:25;:31;;;;;;;;29507:488;;-1:-1:-1;;;;;29601:26:0;;29564:34;29601:26;;;:20;:26;;;;;29685:16;;29666;;:35;;29685:16;29666:35;:::i;:::-;29646:17;;;:55;29740:15;29720:17;;;;:35;29507:488;;;-1:-1:-1;;;;;29833:24:0;;29796:34;29833:24;;;:20;:24;;;;;29880:16;;29833:24;;29880:21;29876:104;;29945:15;29926:34;;29876:104;29777:218;29507:488;30067:4;30018:28;9980:18;;;;;;;;;;;30101;;30191:10;;9980:18;;30101:42;;-1:-1:-1;30101:42:0;;30191:24;;22520:1;;30191:24;:::i;:::-;30176:12;:39;30156:59;;30246:7;:37;;;;;30271:12;30270:13;30246:37;:63;;;;-1:-1:-1;30301:8:0;;;;30300:9;30246:63;:112;;;;-1:-1:-1;;;;;;30327:31:0;;;;;;:25;:31;;;;;;;;30326:32;30246:112;:155;;;;-1:-1:-1;;;;;;30376:25:0;;;;;;:19;:25;;;;;;;;30375:26;30246:155;:196;;;;-1:-1:-1;;;;;;30419:23:0;;;;;;:19;:23;;;;;;;;30418:24;30246:196;30228:328;;;30469:8;:15;;-1:-1:-1;;30469:15:0;30480:4;30469:15;;;30501:10;:8;:10::i;:::-;30528:8;:16;;-1:-1:-1;;30528:16:0;;;30228:328;30584:8;;-1:-1:-1;;;;;30692:25:0;;30568:12;30692:25;;;:19;:25;;;;;;30584:8;;;;30583:9;;30692:25;;:52;;-1:-1:-1;;;;;;30721:23:0;;;;;;:19;:23;;;;;;;;30692:52;30688:100;;;-1:-1:-1;30771:5:0;30688:100;30800:12;30905:7;30901:1256;;;30933:12;30929:1079;;;-1:-1:-1;;;;;30970:31:0;;;;;;:25;:31;;;;;;;;30966:357;;;31056:3;31033:20;22427:1;31033:6;:20;:::i;:::-;:26;;;;:::i;:::-;31026:33;;31104:4;31082:18;;:26;;;;;;;:::i;:::-;;;;-1:-1:-1;30929:1079:0;;-1:-1:-1;30929:1079:0;30966:357;-1:-1:-1;;;;;31166:29:0;;;;;;:25;:29;;;;;;;;31162:161;;;31251:3;31227:21;22474:1;31227:6;:21;:::i;31162:161::-;30929:1079;;;-1:-1:-1;;;;;31367:31:0;;;;;;:25;:31;;;;;;;;:51;;;;-1:-1:-1;31417:1:0;31367:51;31363:630;;;31474:3;31450:21;22682:1;31450:6;:21;:::i;:::-;:27;;;;:::i;:::-;31443:34;-1:-1:-1;31516:36:0;22682:1;31517:16;22682:1;31443:34;31517:16;:::i;:::-;31516:22;;:36::i;:::-;31500:12;;:52;;;;;;;:::i;:::-;;;;-1:-1:-1;31597:42:0;;-1:-1:-1;22682:1:0;31598:22;22682:1;31598:4;:22;:::i;31597:42::-;31575:18;;:64;;;;;;;:::i;31363:630::-;-1:-1:-1;;;;;31697:29:0;;;;;;:25;:29;;;;;;;;:50;;;;-1:-1:-1;31746:1:0;31697:50;31693:300;;;31804:3;31779:22;22848:1;31779:6;:22;:::i;:::-;:28;;;;:::i;:::-;31772:35;-1:-1:-1;31846:38:0;22848:1;31847:17;22848:1;31772:35;31847:17;:::i;31846:38::-;31830:12;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;31929:44:0;;-1:-1:-1;22848:1:0;31930:23;22848:1;31930:4;:23;:::i;31929:44::-;31907:18;;:66;;;;;;;:::i;:::-;;;;-1:-1:-1;;31693:300:0;32028:8;;32024:91;;32057:42;32073:4;32087;32094;32057:15;:42::i;:::-;32131:14;32141:4;32131:14;;:::i;:::-;;;30901:1256;32169:33;32185:4;32191:2;32195:6;32169:15;:33::i;:::-;27123:5087;;;;;27010:5200;;;:::o;3119:191::-;3212:6;;;-1:-1:-1;;;;;3229:17:0;;;-1:-1:-1;;;;;;3229:17:0;;;;;;;3262:40;;3212:6;;;3229:17;3212:6;;3262:40;;3193:16;;3262:40;3182:128;3119:191;:::o;13928:651::-;-1:-1:-1;;;;;14068:20:0;;14060:70;;;;-1:-1:-1;;;14060:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14227:17:0;;14203:21;14227:17;;;;;;;;;;;14263:23;;;;14255:74;;;;-1:-1:-1;;;14255:74:0;;9677:2:1;14255:74:0;;;9659:21:1;9716:2;9696:18;;;9689:30;9755:34;9735:18;;;9728:62;-1:-1:-1;;;9806:18:1;;;9799:36;9852:19;;14255:74:0;9475:402:1;14255:74:0;-1:-1:-1;;;;;14365:17:0;;;:9;:17;;;;;;;;;;;14385:22;;;14365:42;;14429:20;;;;;;;;:30;;14401:6;;14365:9;14429:30;;14401:6;;14429:30;:::i;:::-;;;;;;;;14494:9;-1:-1:-1;;;;;14477:35:0;14486:6;-1:-1:-1;;;;;14477:35:0;;14505:6;14477:35;;;;1847:25:1;;1835:2;1820:18;;1701:177;14477:35:0;;;;;;;;14049:530;13928:651;;;:::o;15069:484::-;-1:-1:-1;;;;;15286:17:0;;;15262:21;15286:17;;;;;;;;;;;;;15359:22;;;15339:42;;;15403:20;;;;;;;:30;;15375:6;;15262:21;15403:30;;15375:6;;15403:30;:::i;32815:992::-;32898:4;32854:23;9980:18;;;;;;;;;;;32854:50;;32915:25;32958:18;;32943:12;;:33;;;;:::i;:::-;32915:61;-1:-1:-1;32987:12:0;33016:20;;;:46;;-1:-1:-1;33040:22:0;;33016:46;33012:85;;;33079:7;;;32815:992::o;33012:85::-;33131:18;;:23;;33152:2;33131:23;:::i;:::-;33113:15;:41;33109:115;;;33189:18;;:23;;33210:2;33189:23;:::i;:::-;33171:41;;33109:115;33304:15;33358:21;33390:36;33304:15;33390:16;:36::i;:::-;33439:18;33460:41;33484:17;33460:21;:41;:::i;:::-;33439:62;;33512:17;33560;33545:12;;33532:10;:25;;;;:::i;:::-;:45;;;;:::i;:::-;33605:1;33590:12;:16;;;33617:18;:22;;;33674:9;;33666:45;;33512:65;;-1:-1:-1;;;;;;33674:9:0;;33512:65;;33666:45;33605:1;33666:45;33512:65;33674:9;33666:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33744:15:0;;33736:63;;33652:59;;-1:-1:-1;;;;;;33744:15:0;;33773:21;;33736:63;;;;33773:21;33744:15;33736:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;32815:992:0:o;22119:98::-;22177:7;22204:5;22208:1;22204;:5;:::i;:::-;22197:12;22119:98;-1:-1:-1;;;22119:98:0:o;32218:589::-;32368:16;;;32382:1;32368:16;;;;;;;;32344:21;;32368:16;;;;;;;;;;-1:-1:-1;32368:16:0;32344:40;;32413:4;32395;32400:1;32395:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;32395:23:0;;;-1:-1:-1;;;;;32395:23:0;;;;;32439:15;-1:-1:-1;;;;;32439:20:0;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;32429:4;32434:1;32429:7;;;;;;;;:::i;:::-;;;;;;:32;-1:-1:-1;;;;;32429:32:0;;;-1:-1:-1;;;;;32429:32:0;;;;;32474:62;32491:4;32506:15;32524:11;32474:8;:62::i;:::-;32575:224;;-1:-1:-1;;;32575:224:0;;-1:-1:-1;;;;;32575:15:0;:66;;;;:224;;32656:11;;32682:1;;32726:4;;32753;;32773:15;;32575:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32273:534;32218:589;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1215:247::-;1274:6;1327:2;1315:9;1306:7;1302:23;1298:32;1295:52;;;1343:1;1340;1333:12;1295:52;1382:9;1369:23;1401:31;1426:5;1401:31;:::i;1883:456::-;1960:6;1968;1976;2029:2;2017:9;2008:7;2004:23;2000:32;1997:52;;;2045:1;2042;2035:12;1997:52;2084:9;2071:23;2103:31;2128:5;2103:31;:::i;:::-;2153:5;-1:-1:-1;2210:2:1;2195:18;;2182:32;2223:33;2182:32;2223:33;:::i;:::-;1883:456;;2275:7;;-1:-1:-1;;;2329:2:1;2314:18;;;;2301:32;;1883:456::o;2741:416::-;2806:6;2814;2867:2;2855:9;2846:7;2842:23;2838:32;2835:52;;;2883:1;2880;2873:12;2835:52;2922:9;2909:23;2941:31;2966:5;2941:31;:::i;:::-;2991:5;-1:-1:-1;3048:2:1;3033:18;;3020:32;3090:15;;3083:23;3071:36;;3061:64;;3121:1;3118;3111:12;3061:64;3144:7;3134:17;;;2741:416;;;;;:::o;3162:388::-;3230:6;3238;3291:2;3279:9;3270:7;3266:23;3262:32;3259:52;;;3307:1;3304;3297:12;3259:52;3346:9;3333:23;3365:31;3390:5;3365:31;:::i;:::-;3415:5;-1:-1:-1;3472:2:1;3457:18;;3444:32;3485:33;3444:32;3485:33;:::i;3555:380::-;3634:1;3630:12;;;;3677;;;3698:61;;3752:4;3744:6;3740:17;3730:27;;3698:61;3805:2;3797:6;3794:14;3774:18;3771:38;3768:161;;3851:10;3846:3;3842:20;3839:1;3832:31;3886:4;3883:1;3876:15;3914:4;3911:1;3904:15;3768:161;;3555:380;;;:::o;4349:127::-;4410:10;4405:3;4401:20;4398:1;4391:31;4441:4;4438:1;4431:15;4465:4;4462:1;4455:15;4481:125;4546:9;;;4567:10;;;4564:36;;;4580:18;;:::i;4611:356::-;4813:2;4795:21;;;4832:18;;;4825:30;4891:34;4886:2;4871:18;;4864:62;4958:2;4943:18;;4611:356::o;6593:401::-;6795:2;6777:21;;;6834:2;6814:18;;;6807:30;6873:34;6868:2;6853:18;;6846:62;-1:-1:-1;;;6939:2:1;6924:18;;6917:35;6984:3;6969:19;;6593:401::o;8947:128::-;9014:9;;;9035:11;;;9032:37;;;9049:18;;:::i;9080:168::-;9153:9;;;9184;;9201:15;;;9195:22;;9181:37;9171:71;;9222:18;;:::i;9253:217::-;9293:1;9319;9309:132;;9363:10;9358:3;9354:20;9351:1;9344:31;9398:4;9395:1;9388:15;9426:4;9423:1;9416:15;9309:132;-1:-1:-1;9455:9:1;;9253:217::o;10224:127::-;10285:10;10280:3;10276:20;10273:1;10266:31;10316:4;10313:1;10306:15;10340:4;10337:1;10330:15;10356:251;10426:6;10479:2;10467:9;10458:7;10454:23;10450:32;10447:52;;;10495:1;10492;10485:12;10447:52;10527:9;10521:16;10546:31;10571:5;10546:31;:::i;10612:980::-;10874:4;10922:3;10911:9;10907:19;10953:6;10942:9;10935:25;10979:2;11017:6;11012:2;11001:9;10997:18;10990:34;11060:3;11055:2;11044:9;11040:18;11033:31;11084:6;11119;11113:13;11150:6;11142;11135:22;11188:3;11177:9;11173:19;11166:26;;11227:2;11219:6;11215:15;11201:29;;11248:1;11258:195;11272:6;11269:1;11266:13;11258:195;;;11337:13;;-1:-1:-1;;;;;11333:39:1;11321:52;;11428:15;;;;11393:12;;;;11369:1;11287:9;11258:195;;;-1:-1:-1;;;;;;;11509:32:1;;;;11504:2;11489:18;;11482:60;-1:-1:-1;;;11573:3:1;11558:19;11551:35;11470:3;10612:980;-1:-1:-1;;;10612:980:1:o

Swarm Source

ipfs://027592ac2a5450e78caa972cf7772df5c712b5e2e257609076da037e9f1e0895
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.