ETH Price: $3,387.09 (-1.74%)
Gas: 1 Gwei

Token

0xRunes (0XRUNES)
 

Overview

Max Total Supply

1,000,000,000 0XRUNES

Holders

37

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,595,694.607534480477322734 0XRUNES

Value
$0.00
0xf5b1b8b206845cd8abbb71f6b68e54adb2ec9022
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:
XRUNES

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-04-21
*/

/*
::'#####:::'##::::'##:'########::'##::::'##:'##::: ##:'########::'######::
:'##.. ##::. ##::'##:: ##.... ##: ##:::: ##: ###:: ##: ##.....::'##... ##:
'##:::: ##::. ##'##::: ##:::: ##: ##:::: ##: ####: ##: ##::::::: ##:::..::
 ##:::: ##:::. ###:::: ########:: ##:::: ##: ## ## ##: ######:::. ######::
 ##:::: ##::: ## ##::: ##.. ##::: ##:::: ##: ##. ####: ##...:::::..... ##:
. ##:: ##::: ##:. ##:: ##::. ##:: ##:::: ##: ##:. ###: ##:::::::'##::: ##:
:. #####::: ##:::. ##: ##:::. ##:. #######:: ##::. ##: ########:. ######::
::.....::::..:::::..::..:::::..:::.......:::..::::..::........:::......:::
 * SPDX-License-Identifier: MIT
 *
 * Seamlessly swap, transfer, bridge, etch, mint RUNES and other BTC/BRC type standard 'Tokens' between EVM and Bitcoin networks.
 * 
 * With the introduction along earning through staking, farming protocol with basic, premium and fast pools, NFT bridge and AMM protocols.
 * 
 * Website: https://0xRunes.exchange 
 * Telegram: https://t.me/OxRunes
 * Twitter: https://x.com/0xRunes_ERC20
 * Dapp: https://dapp.0xrunes.exchange            
*/

pragma solidity 0.8.19;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(
        uint256 a,
        uint256 b
    ) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

interface 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
    );
}

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);
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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 upd 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 upd 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 upd allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(
            currentAllowance >= subtractedValue,
            "ERC20: decreased allowance below zero"
        );
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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);
    }
}

interface IDexFactory {
    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 IDexRouter {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

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

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

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

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

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

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

    IDexRouter private immutable dexRouter;
    address public immutable dexPair;

    // Swapback
    bool private swapping;

    bool private swapbackEnabled = false;
    uint256 private swapBackValueMin;
    uint256 private swapBackValueMax;

    //Anti-whale
    bool private limitsInEffect = true;
    bool private transferDelayEnabled = true;
    uint256 private maxWallet;
    uint256 private maxTx;
    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch

    bool public tradingLive = false;

    uint256 private split = 20;


    // Fee receivers
    address private mktReceiver;
    address private devReceiver;

    uint256 private totalBuyFee;
    uint256 private buyMktFee;
    uint256 private buyDevFee;

    uint256 private totalSellFee;
    uint256 private sellMktFee;
    uint256 private sellDevFee;

    uint256 private tokensForMarketing;
    uint256 private tokensForDev;

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private isFeeExempt;
    mapping(address => bool) private isTxLimitExempt;
    mapping(address => bool) private automatedMarketMakerPairs;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount

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

    event ExcludeFromFees(address indexed account, bool isExcluded);
    event ExcludeFromLimits(address indexed account, bool isExcluded);
    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);
    event TradingEnabled(uint256 indexed timestamp);
    event LimitsRemoved(uint256 indexed timestamp);
    event DisabledTransferDelay(uint256 indexed timestamp);

    event SwapbackSettingsUpdated(
        bool enabled,
        uint256 swapBackValueMin,
        uint256 swapBackValueMax
    );
    event MaxTxUpdated(uint256 maxTx);
    event MaxWalletUpdated(uint256 maxWallet);

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

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

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

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

    event BuyFeeUpdated(
        uint256 totalBuyFee,
        uint256 buyMktFee,
        uint256 buyDevFee
    );

    event SellFeeUpdated(
        uint256 totalSellFee,
        uint256 sellMktFee,
        uint256 sellDevFee
    );

    constructor() ERC20("0xRunes", "0XRUNES") {
        IDexRouter _dexRouter = IDexRouter(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

        maxWalletExempt(address(_dexRouter), true);
        dexRouter = _dexRouter;

        dexPair = IDexFactory(_dexRouter.factory()).createPair(
            address(this),
            _dexRouter.WETH()
        );
        maxWalletExempt(address(dexPair), true);
        _setAutomatedMarketMakerPair(address(dexPair), true);

        uint256 _buyMktFee = 35;
        uint256 _buyDevFee = 0;

        uint256 _sellMktFee = 65;
        uint256 _sellDevFee = 0;

        uint256 _totalSupply = 1_000_000_000 * 10 ** decimals();

        maxTx = (_totalSupply * 10) / 1000;
        maxWallet = (_totalSupply * 10) / 1000;

        swapBackValueMin = (_totalSupply * 1) / 1000;
        swapBackValueMax = (_totalSupply * 2) / 100;

        buyMktFee = _buyMktFee;
        buyDevFee = _buyDevFee;
        totalBuyFee = buyMktFee + buyDevFee;

        sellMktFee = _sellMktFee;
        sellDevFee = _sellDevFee;
        totalSellFee = sellMktFee + sellDevFee;

        mktReceiver = address(0x499543B0Bd0404304C6455453Ac897C209A7C41A);
        devReceiver = address(msg.sender);

        // exclude from paying fees or having max transaction amount
        feesExempt(msg.sender, true);
        feesExempt(address(this), true);
        feesExempt(address(0xdead), true);
        feesExempt(mktReceiver, true);

        maxWalletExempt(msg.sender, true);
        maxWalletExempt(address(this), true);
        maxWalletExempt(address(0xdead), true);
        maxWalletExempt(mktReceiver, true);

        transferOwnership(msg.sender);

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

    /**
     * @notice  Information about the swapback settings
     * @return  _swapbackEnabled  if swapback is enabled
     * @return  _swapBackValueMin  the minimum amount of tokens in the contract balance to trigger swapback
     * @return  _swapBackValueMax  the maximum amount of tokens in the contract balance to trigger swapback
     */
    function swapbackInfo()
        external
        view
        returns (
            bool _swapbackEnabled,
            uint256 _swapBackValueMin,
            uint256 _swapBackValueMax
        )
    {
        _swapbackEnabled = swapbackEnabled;
        _swapBackValueMin = swapBackValueMin;
        _swapBackValueMax = swapBackValueMax;
    }

    /**
     * @notice  Information about the anti whale parameters
     * @return  _limitsInEffect  if the wallet limits are in effect
     * @return  _transferDelayEnabled  if the transfer delay is enabled
     * @return  _maxWallet  The maximum amount of tokens that can be held by a wallet
     * @return  _maxTx  The maximum amount of tokens that can be bought or sold in a single transaction
     */
    function limitValues()
        external
        view
        returns (
            bool _limitsInEffect,
            bool _transferDelayEnabled,
            uint256 _maxWallet,
            uint256 _maxTx
        )
    {
        _limitsInEffect = limitsInEffect;
        _transferDelayEnabled = transferDelayEnabled;
        _maxWallet = maxWallet;
        _maxTx = maxTx;
    }

    /**
     * @notice The wallets that receive the collected fees
     * @return _mktReceiver The wallet that receives the marketing fees
     * @return _devReceiver The wallet that receives the dev fees
     */
    function walletValues()
        external
        view
        returns (
            address _mktReceiver,
            address _devReceiver
        )
    {
        return (mktReceiver, devReceiver);
    }

    /**
     * @notice Fees for buys, sells, and transfers
     * @return _totalBuyFee The total fee for buys
     * @return _buyMktFee The fee for buys that gets sent to marketing
     * @return _buyDevFee The fee for buys that gets sent to dev
     * @return _totalSellFee The total fee for sells
     * @return _sellMktFee The fee for sells that gets sent to marketing
     * @return _sellDevFee The fee for sells that gets sent to dev
     */
    function feeValues()
        external
        view
        returns (
            uint256 _totalBuyFee,
            uint256 _buyMktFee,
            uint256 _buyDevFee,
            uint256 _totalSellFee,
            uint256 _sellMktFee,
            uint256 _sellDevFee
        )
    {
        _totalBuyFee = totalBuyFee;
        _buyMktFee = buyMktFee;
        _buyDevFee = buyDevFee;
        _totalSellFee = totalSellFee;
        _sellMktFee = sellMktFee;
        _sellDevFee = sellDevFee;
    }

    /**
     * @notice  If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair
     * @param   _target  The wallet to check
     * @return  _isFeeExempt  If the wallet is excluded from fees
     * @return  _isTxLimitExempt  If the wallet is excluded from max transaction amount
     * @return  _automatedMarketMakerPairs If the wallet is a automated market maker pair
     */
    function checkMappings(
        address _target
    )
        external
        view
        returns (
            bool _isFeeExempt,
            bool _isTxLimitExempt,
            bool _automatedMarketMakerPairs
        )
    {
        _isFeeExempt = isFeeExempt[_target];
        _isTxLimitExempt = isTxLimitExempt[_target];
        _automatedMarketMakerPairs = automatedMarketMakerPairs[_target];
    }

    receive() external payable {}

    /**
     * @notice  Opens public trading for the token
     * @dev     onlyOwner.
     */
    function enableTradingLive() external onlyOwner {
        tradingLive = true;
        swapbackEnabled = true;
        emit TradingEnabled(block.timestamp);
    }

    /**
     * @notice Removes the max wallet and max transaction limits
     * @dev onlyOwner.
     * Emits an {LimitsRemoved} event
     */
    function removeTradingLimits() external onlyOwner {
        limitsInEffect = false;
        emit LimitsRemoved(block.timestamp);
    }

    /**
     * @notice Removes the transfer delay
     * @dev onlyOwner.
     * Emits an {DisabledTransferDelay} event
     */
    function removeDelay() external onlyOwner {
        transferDelayEnabled = false;
        emit DisabledTransferDelay(block.timestamp);
    }

    /**
     * @notice sets if swapback is enabled and sets the minimum and maximum amounts
     * @dev onlyOwner.
     * Emits an {SwapbackSettingsUpdated} event
     * @param _enabled If swapback is enabled
     * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100.
     * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100.
     */
    function changeValuesForSwapback(
        bool _enabled,
        uint256 _min,
        uint256 _max
    ) external onlyOwner {
        require(
            _min >= 1,
            "Swap amount cannot be lower than 0.01% total supply."
        );
        require(_max >= _min, "maximum amount cant be higher than minimum");

        swapbackEnabled = _enabled;
        swapBackValueMin = (totalSupply() * _min) / 10000;
        swapBackValueMax = (totalSupply() * _max) / 10000;
        emit SwapbackSettingsUpdated(_enabled, _min, _max);
    }

    /**
     * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction
     * @dev onlyOwner.
     * Emits an {MaxTxUpdated} event
     * @param newLimit Base 1000, so 1% = 10
     */
    function changeMaxTxLimit(uint256 newLimit) external onlyOwner {
        require(newLimit >= 2, "Cannot set maxTx lower than 0.2%");
        maxTx = (newLimit * totalSupply()) / 1000;
        emit MaxTxUpdated(maxTx);
    }

    /**
     * @notice Changes the maximum amount of tokens a wallet can hold
     * @dev onlyOwner.
     * Emits an {MaxWalletUpdated} event
     * @param newLimit Base 1000, so 1% = 10
     */
    function changeMaxWalletLimit(uint256 newLimit) external onlyOwner {
        require(newLimit >= 5, "Cannot set maxWallet lower than 0.5%");
        maxWallet = (newLimit * totalSupply()) / 1000;
        emit MaxWalletUpdated(maxWallet);
    }

    /**
     * @notice Sets if a wallet is excluded from the max wallet and tx limits
     * @dev onlyOwner.
     * Emits an {ExcludeFromLimits} event
     * @param updAds The wallet to update
     * @param isEx If the wallet is excluded or not
     */
    function maxWalletExempt(
        address updAds,
        bool isEx
    ) public onlyOwner {
        isTxLimitExempt[updAds] = isEx;
        emit ExcludeFromLimits(updAds, isEx);
    }

    /**
     * @notice Sets the fees for buys
     * @dev onlyOwner.
     * Emits a {BuyFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function changeFeesForBuying(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        buyMktFee = _marketingFee;
        buyDevFee = _devFee;
        totalBuyFee = buyMktFee + buyDevFee;
        require(totalBuyFee <= 100, "Total buy fee cannot be higher than 100%");
        emit BuyFeeUpdated(totalBuyFee, buyMktFee, buyDevFee);
    }

    /**
     * @notice Sets the fees for sells
     * @dev onlyOwner.
     * Emits a {SellFeeUpdated} event
     * All fees added up must be less than 100
     * @param _marketingFee The fee for the marketing wallet
     * @param _devFee The fee for the dev wallet
     */
    function changeFeesForSelling(
        uint256 _marketingFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMktFee = _marketingFee;
        sellDevFee = _devFee;
        totalSellFee = sellMktFee + sellDevFee;
        require(
            totalSellFee <= 100,
            "Total sell fee cannot be higher than 100%"
        );
        emit SellFeeUpdated(totalSellFee, sellMktFee, sellDevFee);
    }

    /**
     * @notice Sets if an address is excluded from fees
     * @dev onlyOwner.
     * Emits an {ExcludeFromFees} event
     * @param account The wallet to update
     * @param excluded If the wallet is excluded or not
     */
    function feesExempt(address account, bool excluded) public onlyOwner {
        isFeeExempt[account] = excluded;
        emit ExcludeFromFees(account, excluded);
    }

    /**
     * @notice Sets an address as a new liquidity pair. You probably dont want to do this.
     * @dev onlyOwner.
     * Emits a {SetAutomatedMarketMakerPair} event
     * @param pair the address of the pair
     * @param value If the pair is a automated market maker pair or not
     */
    function setAutomatedMarketMakerPair(
        address pair,
        bool value
    ) public onlyOwner {
        require(
            pair != dexPair,
            "The pair cannot be removed from automatedMarketMakerPairs"
        );

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

    /**
     * @notice Sets the marketing wallet
     * @dev onlyOwner.
     * Emits an {mktReceiverUpdated} event
     * @param newWallet The new marketing wallet
     */
    function setMarketingWallet(address newWallet) external onlyOwner {
        emit mktReceiverUpdated(newWallet, mktReceiver);
        mktReceiver = newWallet;
    }

    /**
     * @notice Sets the dev wallet
     * @dev onlyOwner.
     * Emits an {devReceiverUpdated} event
     * @param newWallet The new dev wallet
     */
    function setDevWallet(address newWallet) external onlyOwner {
        emit devReceiverUpdated(newWallet, devReceiver);
        devReceiver = newWallet;
    }

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

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

        if (limitsInEffect) {
            if (
                from != owner() &&
                to != owner() &&
                to != address(0) &&
                to != address(0xdead) &&
                !swapping
            ) {
                if (!tradingLive) {
                    require(
                        isFeeExempt[from] || isFeeExempt[to],
                        "_transfer:: Trading is not active."
                    );
                }

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapBackValueMin;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (automatedMarketMakerPairs[to] && totalSellFee > 0) {
                fees = amount.mul(totalSellFee).div(100);
                tokensForDev += (fees * sellDevFee) / totalSellFee;
                tokensForMarketing += (fees * sellMktFee) / totalSellFee;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && totalBuyFee > 0) {
                fees = amount.mul(totalBuyFee).div(100);
                tokensForDev += (fees * buyDevFee) / totalBuyFee;
                tokensForMarketing += (fees * buyMktFee) / totalBuyFee;
            }

            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] = dexRouter.WETH();

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

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


    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        bool success;

        if (contractBalance == 0) {
            return;
        }

        if (contractBalance > swapBackValueMax) {
            contractBalance = swapBackValueMax;
        }

        uint256 amountToSwapForETH = contractBalance;

        swapTokensForEth(amountToSwapForETH);

        uint256 ethForDev = address(this).balance.mul(split).div(100);

        tokensForMarketing = 0;
        tokensForDev = 0;

        (success, ) = address(devReceiver).call{value: ethForDev}("");

        (success, ) = address(mktReceiver).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":false,"internalType":"uint256","name":"totalBuyFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyDevFee","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":false,"internalType":"uint256","name":"totalSellFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMktFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellDevFee","type":"uint256"}],"name":"SellFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"lpReceiverUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"mktReceiverUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"changeFeesForBuying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"changeFeesForSelling","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"changeMaxTxLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"changeMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"changeValuesForSwapback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"checkMappings","outputs":[{"internalType":"bool","name":"_isFeeExempt","type":"bool"},{"internalType":"bool","name":"_isTxLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTradingLive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeValues","outputs":[{"internalType":"uint256","name":"_totalBuyFee","type":"uint256"},{"internalType":"uint256","name":"_buyMktFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_totalSellFee","type":"uint256"},{"internalType":"uint256","name":"_sellMktFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"feesExempt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limitValues","outputs":[{"internalType":"bool","name":"_limitsInEffect","type":"bool"},{"internalType":"bool","name":"_transferDelayEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"maxWalletExempt","outputs":[],"stateMutability":"nonpayable","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":"removeDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeTradingLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapbackInfo","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingLive","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":"walletValues","outputs":[{"internalType":"address","name":"_mktReceiver","type":"address"},{"internalType":"address","name":"_devReceiver","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526005805460ff60a81b191690556008805461ffff1916610101179055600c805460ff191690556014600d553480156200003c57600080fd5b5060405180604001604052806007815260200166307852756e657360c81b81525060405180604001604052806007815260200166305852554e455360c81b81525081600390816200008e91906200085e565b5060046200009d82826200085e565b505050620000ba620000b46200041360201b60201c565b62000417565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000dc81600162000469565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000127573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014d91906200092a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c191906200092a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af11580156200020f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023591906200092a565b6001600160a01b031660a08190526200025090600162000469565b60a0516200026090600162000518565b6023600060418180620002766012600a62000a71565b6200028690633b9aca0062000a82565b90506103e86200029882600a62000a82565b620002a4919062000a9c565b600a9081556103e890620002ba90839062000a82565b620002c6919062000a9c565b6009556103e8620002d982600162000a82565b620002e5919062000a9c565b6006556064620002f782600262000a82565b62000303919062000a9c565b600755601185905560128490556200031c848662000abf565b6010556014839055601582905562000335828462000abf565b601355600e805473499543b0bd0404304c6455453ac897c209a7c41a6001600160a01b031991821617909155600f805433921682179055620003799060016200056c565b620003863060016200056c565b6200039561dead60016200056c565b600e54620003ae906001600160a01b031660016200056c565b620003bb33600162000469565b620003c830600162000469565b620003d761dead600162000469565b600e54620003f0906001600160a01b0316600162000469565b620003fb3362000610565b620004073382620006d0565b50505050505062000ad5565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004b85760405162461bcd60e51b815260206004820181905260248201526000805160206200310c83398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005b75760405162461bcd60e51b815260206004820181905260248201526000805160206200310c8339815191526044820152606401620004af565b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016200050c565b6005546001600160a01b031633146200065b5760405162461bcd60e51b815260206004820181905260248201526000805160206200310c8339815191526044820152606401620004af565b6001600160a01b038116620006c25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620004af565b620006cd8162000417565b50565b6001600160a01b038216620007285760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004af565b80600260008282546200073c919062000abf565b90915550506001600160a01b038216600090815260208190526040812080548392906200076b90849062000abf565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620007e557607f821691505b6020821081036200080657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007b557600081815260208120601f850160051c81016020861015620008355750805b601f850160051c820191505b81811015620008565782815560010162000841565b505050505050565b81516001600160401b038111156200087a576200087a620007ba565b62000892816200088b8454620007d0565b846200080c565b602080601f831160018114620008ca5760008415620008b15750858301515b600019600386901b1c1916600185901b17855562000856565b600085815260208120601f198616915b82811015620008fb57888601518255948401946001909101908401620008da565b50858210156200091a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200093d57600080fd5b81516001600160a01b03811681146200095557600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009b35781600019048211156200099757620009976200095c565b80851615620009a557918102915b93841c939080029062000977565b509250929050565b600082620009cc5750600162000a6b565b81620009db5750600062000a6b565b8160018114620009f45760028114620009ff5762000a1f565b600191505062000a6b565b60ff84111562000a135762000a136200095c565b50506001821b62000a6b565b5060208310610133831016604e8410600b841016171562000a44575081810a62000a6b565b62000a50838362000972565b806000190482111562000a675762000a676200095c565b0290505b92915050565b60006200095560ff841683620009bb565b808202811582820484141762000a6b5762000a6b6200095c565b60008262000aba57634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a6b5762000a6b6200095c565b60805160a0516125ee62000b1e6000396000818161072001528181610fcd01526116f00152600081816116b2015281816120610152818161211a015261215601526125ee6000f3fe6080604052600436106101fd5760003560e01c806370a082311161010d578063ae7ed567116100a0578063dd62ed3e1161006f578063dd62ed3e14610635578063e13b20071461067b578063ec30b5b6146106ee578063f242ab411461070e578063f2fde38b1461074257600080fd5b8063ae7ed5671461053f578063af21617f1461057e578063b8864a6e146105c9578063da7f19721461061557600080fd5b806395d89b41116100dc57806395d89b41146104ca5780639a7a23d6146104df578063a457c2d7146104ff578063a9059cbb1461051f57600080fd5b806370a0823114610438578063715018a61461046e57806380b5049e146104835780638da5cb5b1461049857600080fd5b80631f53ac0211610190578063313ce5671161015f578063313ce567146103a757806339509351146103c35780634539dc09146103e35780635d098b38146103f85780635eb043471461041857600080fd5b80631f53ac0214610327578063212e3b2b1461034757806323b872dd146103675780632e4e96801461038757600080fd5b80630cf3c2ef116101cc5780630cf3c2ef1461029b57806311704f52146102bb5780631595fcff146102d557806318160ddd1461030857600080fd5b8063031673ba1461020957806306fdde031461022b578063095ea7b3146102565780630c0d7da61461028657600080fd5b3661020457005b600080fd5b34801561021557600080fd5b506102296102243660046121f4565b610762565b005b34801561023757600080fd5b506102406107f5565b60405161024d9190612229565b60405180910390f35b34801561026257600080fd5b50610276610271366004612277565b610887565b604051901515815260200161024d565b34801561029257600080fd5b5061022961089e565b3480156102a757600080fd5b506102296102b63660046122a3565b6108ff565b3480156102c757600080fd5b50600c546102769060ff1681565b3480156102e157600080fd5b50600e54600f54604080516001600160a01b0393841681529290911660208301520161024d565b34801561031457600080fd5b506002545b60405190815260200161024d565b34801561033357600080fd5b506102296103423660046122c5565b6109f1565b34801561035357600080fd5b506102296103623660046122e2565b610a78565b34801561037357600080fd5b506102766103823660046122fb565b610b5b565b34801561039357600080fd5b506102296103a23660046122a3565b610c05565b3480156103b357600080fd5b506040516012815260200161024d565b3480156103cf57600080fd5b506102766103de366004612277565b610cf0565b3480156103ef57600080fd5b50610229610d2c565b34801561040457600080fd5b506102296104133660046122c5565b610d8e565b34801561042457600080fd5b506102296104333660046122e2565b610e15565b34801561044457600080fd5b506103196104533660046122c5565b6001600160a01b031660009081526020819052604090205490565b34801561047a57600080fd5b50610229610ee5565b34801561048f57600080fd5b50610229610f1b565b3480156104a457600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161024d565b3480156104d657600080fd5b50610240610f92565b3480156104eb57600080fd5b506102296104fa3660046121f4565b610fa1565b34801561050b57600080fd5b5061027661051a366004612277565b611080565b34801561052b57600080fd5b5061027661053a366004612277565b611119565b34801561054b57600080fd5b50600554600654600754600160a81b90920460ff169160408051931515845260208401929092529082015260600161024d565b34801561058a57600080fd5b506105a7600854600954600a5460ff808416946101009094041692565b604080519415158552921515602085015291830152606082015260800161024d565b3480156105d557600080fd5b50601054601154601254601354601454601554604080519687526020870195909552938501929092526060840152608083015260a082015260c00161024d565b34801561062157600080fd5b5061022961063036600461233c565b611126565b34801561064157600080fd5b5061031961065036600461236f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561068757600080fd5b506106cf6106963660046122c5565b6001600160a01b03166000908152601860209081526040808320546019835281842054601a90935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161024d565b3480156106fa57600080fd5b506102296107093660046121f4565b6112c4565b34801561071a57600080fd5b506104b27f000000000000000000000000000000000000000000000000000000000000000081565b34801561074e57600080fd5b5061022961075d3660046122c5565b611346565b6005546001600160a01b031633146107955760405162461bcd60e51b815260040161078c906123a8565b60405180910390fd5b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b606060038054610804906123dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610830906123dd565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b60006108943384846113e1565b5060015b92915050565b6005546001600160a01b031633146108c85760405162461bcd60e51b815260040161078c906123a8565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b031633146109295760405162461bcd60e51b815260040161078c906123a8565b6011829055601281905561093d818361242d565b6010819055606410156109a35760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161078c565b601054601154601254604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b6005546001600160a01b03163314610a1b5760405162461bcd60e51b815260040161078c906123a8565b600f546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610aa25760405162461bcd60e51b815260040161078c906123a8565b6005811015610aff5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161078c565b6103e8610b0b60025490565b610b159083612440565b610b1f9190612457565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6000610b68848484611505565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610bed5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161078c565b610bfa85338584036113e1565b506001949350505050565b6005546001600160a01b03163314610c2f5760405162461bcd60e51b815260040161078c906123a8565b60148290556015819055610c43818361242d565b601381905560641015610caa5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161078c565b601354601454601554604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060016109e5565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610894918590610d2790869061242d565b6113e1565b6005546001600160a01b03163314610d565760405162461bcd60e51b815260040161078c906123a8565b6008805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b03163314610db85760405162461bcd60e51b815260040161078c906123a8565b600e546040516001600160a01b03918216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161078c906123a8565b6002811015610e905760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161078c565b6103e8610e9c60025490565b610ea69083612440565b610eb09190612457565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001610b50565b6005546001600160a01b03163314610f0f5760405162461bcd60e51b815260040161078c906123a8565b610f196000611cf1565b565b6005546001600160a01b03163314610f455760405162461bcd60e51b815260040161078c906123a8565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b606060048054610804906123dd565b6005546001600160a01b03163314610fcb5760405162461bcd60e51b815260040161078c906123a8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036110725760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161078c565b61107c8282611d43565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111025760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161078c565b61110f33858584036113e1565b5060019392505050565b6000610894338484611505565b6005546001600160a01b031633146111505760405162461bcd60e51b815260040161078c906123a8565b60018210156111be5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161078c565b818110156112215760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161078c565b6005805460ff60a81b1916600160a81b8515150217905560025461271090839061124b9190612440565b6112559190612457565b6006556127108161126560025490565b61126f9190612440565b6112799190612457565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146112ee5760405162461bcd60e51b815260040161078c906123a8565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291016107e9565b6005546001600160a01b031633146113705760405162461bcd60e51b815260040161078c906123a8565b6001600160a01b0381166113d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078c565b6113de81611cf1565b50565b6001600160a01b0383166114435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078c565b6001600160a01b0382166114a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661152b5760405162461bcd60e51b815260040161078c90612479565b6001600160a01b0382166115515760405162461bcd60e51b815260040161078c906124be565b8060000361156a5761156583836000611d97565b505050565b60085460ff1615611a1b576005546001600160a01b038481169116148015906115a157506005546001600160a01b03838116911614155b80156115b557506001600160a01b03821615155b80156115cc57506001600160a01b03821661dead14155b80156115e25750600554600160a01b900460ff16155b15611a1b57600c5460ff16611687576001600160a01b03831660009081526018602052604090205460ff168061163057506001600160a01b03821660009081526018602052604090205460ff165b6116875760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161078c565b600854610100900460ff16156117d3576005546001600160a01b038381169116148015906116e757507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b801561172557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b156117d357326000908152600b602052604090205443116117c05760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161078c565b326000908152600b602052604090204390555b6001600160a01b0383166000908152601a602052604090205460ff16801561181457506001600160a01b03821660009081526019602052604090205460ff16155b156118e957600a5481111561187a5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161078c565b6009546001600160a01b0383166000908152602081905260409020546118a0908361242d565b11156118e45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078c565b611a1b565b6001600160a01b0382166000908152601a602052604090205460ff16801561192a57506001600160a01b03831660009081526019602052604090205460ff16155b1561199157600a548111156118e45760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161078c565b6001600160a01b03821660009081526019602052604090205460ff16611a1b576009546001600160a01b0383166000908152602081905260409020546119d7908361242d565b1115611a1b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078c565b3060009081526020819052604090205460065481108015908190611a485750600554600160a81b900460ff165b8015611a5e5750600554600160a01b900460ff16155b8015611a8357506001600160a01b0385166000908152601a602052604090205460ff16155b8015611aa857506001600160a01b03851660009081526018602052604090205460ff16155b8015611acd57506001600160a01b03841660009081526018602052604090205460ff16155b15611afb576005805460ff60a01b1916600160a01b179055611aed611eec565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b909204821615911680611b4957506001600160a01b03851660009081526018602052604090205460ff165b15611b52575060005b60008115611cdd576001600160a01b0386166000908152601a602052604090205460ff168015611b8457506000601354115b15611c1257611ba96064611ba360135488611feb90919063ffffffff16565b90611ffe565b905060135460155482611bbc9190612440565b611bc69190612457565b60176000828254611bd7919061242d565b9091555050601354601454611bec9083612440565b611bf69190612457565b60166000828254611c07919061242d565b90915550611cbf9050565b6001600160a01b0387166000908152601a602052604090205460ff168015611c3c57506000601054115b15611cbf57611c5b6064611ba360105488611feb90919063ffffffff16565b905060105460125482611c6e9190612440565b611c789190612457565b60176000828254611c89919061242d565b9091555050601054601154611c9e9083612440565b611ca89190612457565b60166000828254611cb9919061242d565b90915550505b8015611cd057611cd0873083611d97565b611cda8186612501565b94505b611ce8878787611d97565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611dbd5760405162461bcd60e51b815260040161078c90612479565b6001600160a01b038216611de35760405162461bcd60e51b815260040161078c906124be565b6001600160a01b03831660009081526020819052604090205481811015611e5b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161078c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e9290849061242d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ede91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611f08575050565b600754821115611f185760075491505b81611f228161200a565b6000611f3e6064611ba3600d5447611feb90919063ffffffff16565b600060168190556017819055600f546040519293506001600160a01b031691839181818185875af1925050503d8060008114611f96576040519150601f19603f3d011682016040523d82523d6000602084013e611f9b565b606091505b5050600e546040519194506001600160a01b0316904790600081818185875af1925050503d8060008114611ce8576040519150601f19603f3d011682016040523d82523d6000602084013e611ce8565b6000611ff78284612440565b9392505050565b6000611ff78284612457565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061203f5761203f612514565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e1919061252a565b816001815181106120f4576120f4612514565b60200260200101906001600160a01b031690816001600160a01b03168152505061213f307f0000000000000000000000000000000000000000000000000000000000000000846113e1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac94790612194908590600090869030904290600401612547565b600060405180830381600087803b1580156121ae57600080fd5b505af11580156121c2573d6000803e3d6000fd5b505050505050565b6001600160a01b03811681146113de57600080fd5b803580151581146121ef57600080fd5b919050565b6000806040838503121561220757600080fd5b8235612212816121ca565b9150612220602084016121df565b90509250929050565b600060208083528351808285015260005b818110156122565785810183015185820160400152820161223a565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561228a57600080fd5b8235612295816121ca565b946020939093013593505050565b600080604083850312156122b657600080fd5b50508035926020909101359150565b6000602082840312156122d757600080fd5b8135611ff7816121ca565b6000602082840312156122f457600080fd5b5035919050565b60008060006060848603121561231057600080fd5b833561231b816121ca565b9250602084013561232b816121ca565b929592945050506040919091013590565b60008060006060848603121561235157600080fd5b61235a846121df565b95602085013595506040909401359392505050565b6000806040838503121561238257600080fd5b823561238d816121ca565b9150602083013561239d816121ca565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806123f157607f821691505b60208210810361241157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561089857610898612417565b808202811582820484141761089857610898612417565b60008261247457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561089857610898612417565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561253c57600080fd5b8151611ff7816121ca565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125975784516001600160a01b031683529383019391830191600101612572565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209185c1c4c69a1ea7fb1e544551e7df25516eb6c9c95310d1fb5f4f5d14cb179764736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106101fd5760003560e01c806370a082311161010d578063ae7ed567116100a0578063dd62ed3e1161006f578063dd62ed3e14610635578063e13b20071461067b578063ec30b5b6146106ee578063f242ab411461070e578063f2fde38b1461074257600080fd5b8063ae7ed5671461053f578063af21617f1461057e578063b8864a6e146105c9578063da7f19721461061557600080fd5b806395d89b41116100dc57806395d89b41146104ca5780639a7a23d6146104df578063a457c2d7146104ff578063a9059cbb1461051f57600080fd5b806370a0823114610438578063715018a61461046e57806380b5049e146104835780638da5cb5b1461049857600080fd5b80631f53ac0211610190578063313ce5671161015f578063313ce567146103a757806339509351146103c35780634539dc09146103e35780635d098b38146103f85780635eb043471461041857600080fd5b80631f53ac0214610327578063212e3b2b1461034757806323b872dd146103675780632e4e96801461038757600080fd5b80630cf3c2ef116101cc5780630cf3c2ef1461029b57806311704f52146102bb5780631595fcff146102d557806318160ddd1461030857600080fd5b8063031673ba1461020957806306fdde031461022b578063095ea7b3146102565780630c0d7da61461028657600080fd5b3661020457005b600080fd5b34801561021557600080fd5b506102296102243660046121f4565b610762565b005b34801561023757600080fd5b506102406107f5565b60405161024d9190612229565b60405180910390f35b34801561026257600080fd5b50610276610271366004612277565b610887565b604051901515815260200161024d565b34801561029257600080fd5b5061022961089e565b3480156102a757600080fd5b506102296102b63660046122a3565b6108ff565b3480156102c757600080fd5b50600c546102769060ff1681565b3480156102e157600080fd5b50600e54600f54604080516001600160a01b0393841681529290911660208301520161024d565b34801561031457600080fd5b506002545b60405190815260200161024d565b34801561033357600080fd5b506102296103423660046122c5565b6109f1565b34801561035357600080fd5b506102296103623660046122e2565b610a78565b34801561037357600080fd5b506102766103823660046122fb565b610b5b565b34801561039357600080fd5b506102296103a23660046122a3565b610c05565b3480156103b357600080fd5b506040516012815260200161024d565b3480156103cf57600080fd5b506102766103de366004612277565b610cf0565b3480156103ef57600080fd5b50610229610d2c565b34801561040457600080fd5b506102296104133660046122c5565b610d8e565b34801561042457600080fd5b506102296104333660046122e2565b610e15565b34801561044457600080fd5b506103196104533660046122c5565b6001600160a01b031660009081526020819052604090205490565b34801561047a57600080fd5b50610229610ee5565b34801561048f57600080fd5b50610229610f1b565b3480156104a457600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161024d565b3480156104d657600080fd5b50610240610f92565b3480156104eb57600080fd5b506102296104fa3660046121f4565b610fa1565b34801561050b57600080fd5b5061027661051a366004612277565b611080565b34801561052b57600080fd5b5061027661053a366004612277565b611119565b34801561054b57600080fd5b50600554600654600754600160a81b90920460ff169160408051931515845260208401929092529082015260600161024d565b34801561058a57600080fd5b506105a7600854600954600a5460ff808416946101009094041692565b604080519415158552921515602085015291830152606082015260800161024d565b3480156105d557600080fd5b50601054601154601254601354601454601554604080519687526020870195909552938501929092526060840152608083015260a082015260c00161024d565b34801561062157600080fd5b5061022961063036600461233c565b611126565b34801561064157600080fd5b5061031961065036600461236f565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561068757600080fd5b506106cf6106963660046122c5565b6001600160a01b03166000908152601860209081526040808320546019835281842054601a90935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161024d565b3480156106fa57600080fd5b506102296107093660046121f4565b6112c4565b34801561071a57600080fd5b506104b27f00000000000000000000000040f2d2767abf9b0879fdb0b58d65db860a06466481565b34801561074e57600080fd5b5061022961075d3660046122c5565b611346565b6005546001600160a01b031633146107955760405162461bcd60e51b815260040161078c906123a8565b60405180910390fd5b6001600160a01b038216600081815260186020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b606060038054610804906123dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610830906123dd565b801561087d5780601f106108525761010080835404028352916020019161087d565b820191906000526020600020905b81548152906001019060200180831161086057829003601f168201915b5050505050905090565b60006108943384846113e1565b5060015b92915050565b6005546001600160a01b031633146108c85760405162461bcd60e51b815260040161078c906123a8565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b031633146109295760405162461bcd60e51b815260040161078c906123a8565b6011829055601281905561093d818361242d565b6010819055606410156109a35760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b606482015260840161078c565b601054601154601254604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b6005546001600160a01b03163314610a1b5760405162461bcd60e51b815260040161078c906123a8565b600f546040516001600160a01b03918216918316907fc246820312f1be47e3958d661d0c150c01b96d1fe3df1e38edd76693ffa8122b90600090a3600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610aa25760405162461bcd60e51b815260040161078c906123a8565b6005811015610aff5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161078c565b6103e8610b0b60025490565b610b159083612440565b610b1f9190612457565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace906020015b60405180910390a150565b6000610b68848484611505565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610bed5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161078c565b610bfa85338584036113e1565b506001949350505050565b6005546001600160a01b03163314610c2f5760405162461bcd60e51b815260040161078c906123a8565b60148290556015819055610c43818361242d565b601381905560641015610caa5760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b606482015260840161078c565b601354601454601554604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f1906060016109e5565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610894918590610d2790869061242d565b6113e1565b6005546001600160a01b03163314610d565760405162461bcd60e51b815260040161078c906123a8565b6008805461ff001916905560405142907f26e776fcf7ca20aa79b5b946e9b5111f47205539ece9d7a7995271dd6a8b5bad90600090a2565b6005546001600160a01b03163314610db85760405162461bcd60e51b815260040161078c906123a8565b600e546040516001600160a01b03918216918316907fa90d7598849ffffb63cb2a2b23157fa85704d50370070de404a308243fe1daec90600090a3600e80546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610e3f5760405162461bcd60e51b815260040161078c906123a8565b6002811015610e905760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e3225604482015260640161078c565b6103e8610e9c60025490565b610ea69083612440565b610eb09190612457565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a90602001610b50565b6005546001600160a01b03163314610f0f5760405162461bcd60e51b815260040161078c906123a8565b610f196000611cf1565b565b6005546001600160a01b03163314610f455760405162461bcd60e51b815260040161078c906123a8565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b606060048054610804906123dd565b6005546001600160a01b03163314610fcb5760405162461bcd60e51b815260040161078c906123a8565b7f00000000000000000000000040f2d2767abf9b0879fdb0b58d65db860a0646646001600160a01b0316826001600160a01b0316036110725760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000606482015260840161078c565b61107c8282611d43565b5050565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156111025760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161078c565b61110f33858584036113e1565b5060019392505050565b6000610894338484611505565b6005546001600160a01b031633146111505760405162461bcd60e51b815260040161078c906123a8565b60018210156111be5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b606482015260840161078c565b818110156112215760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b606482015260840161078c565b6005805460ff60a81b1916600160a81b8515150217905560025461271090839061124b9190612440565b6112559190612457565b6006556127108161126560025490565b61126f9190612440565b6112799190612457565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b031633146112ee5760405162461bcd60e51b815260040161078c906123a8565b6001600160a01b038216600081815260196020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291016107e9565b6005546001600160a01b031633146113705760405162461bcd60e51b815260040161078c906123a8565b6001600160a01b0381166113d55760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161078c565b6113de81611cf1565b50565b6001600160a01b0383166114435760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161078c565b6001600160a01b0382166114a45760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161078c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03831661152b5760405162461bcd60e51b815260040161078c90612479565b6001600160a01b0382166115515760405162461bcd60e51b815260040161078c906124be565b8060000361156a5761156583836000611d97565b505050565b60085460ff1615611a1b576005546001600160a01b038481169116148015906115a157506005546001600160a01b03838116911614155b80156115b557506001600160a01b03821615155b80156115cc57506001600160a01b03821661dead14155b80156115e25750600554600160a01b900460ff16155b15611a1b57600c5460ff16611687576001600160a01b03831660009081526018602052604090205460ff168061163057506001600160a01b03821660009081526018602052604090205460ff165b6116875760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b606482015260840161078c565b600854610100900460ff16156117d3576005546001600160a01b038381169116148015906116e757507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b801561172557507f00000000000000000000000040f2d2767abf9b0879fdb0b58d65db860a0646646001600160a01b0316826001600160a01b031614155b156117d357326000908152600b602052604090205443116117c05760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a40161078c565b326000908152600b602052604090204390555b6001600160a01b0383166000908152601a602052604090205460ff16801561181457506001600160a01b03821660009081526019602052604090205460ff16155b156118e957600a5481111561187a5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b606482015260840161078c565b6009546001600160a01b0383166000908152602081905260409020546118a0908361242d565b11156118e45760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078c565b611a1b565b6001600160a01b0382166000908152601a602052604090205460ff16801561192a57506001600160a01b03831660009081526019602052604090205460ff16155b1561199157600a548111156118e45760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b606482015260840161078c565b6001600160a01b03821660009081526019602052604090205460ff16611a1b576009546001600160a01b0383166000908152602081905260409020546119d7908361242d565b1115611a1b5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161078c565b3060009081526020819052604090205460065481108015908190611a485750600554600160a81b900460ff165b8015611a5e5750600554600160a01b900460ff16155b8015611a8357506001600160a01b0385166000908152601a602052604090205460ff16155b8015611aa857506001600160a01b03851660009081526018602052604090205460ff16155b8015611acd57506001600160a01b03841660009081526018602052604090205460ff16155b15611afb576005805460ff60a01b1916600160a01b179055611aed611eec565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526018602052604090205460ff600160a01b909204821615911680611b4957506001600160a01b03851660009081526018602052604090205460ff165b15611b52575060005b60008115611cdd576001600160a01b0386166000908152601a602052604090205460ff168015611b8457506000601354115b15611c1257611ba96064611ba360135488611feb90919063ffffffff16565b90611ffe565b905060135460155482611bbc9190612440565b611bc69190612457565b60176000828254611bd7919061242d565b9091555050601354601454611bec9083612440565b611bf69190612457565b60166000828254611c07919061242d565b90915550611cbf9050565b6001600160a01b0387166000908152601a602052604090205460ff168015611c3c57506000601054115b15611cbf57611c5b6064611ba360105488611feb90919063ffffffff16565b905060105460125482611c6e9190612440565b611c789190612457565b60176000828254611c89919061242d565b9091555050601054601154611c9e9083612440565b611ca89190612457565b60166000828254611cb9919061242d565b90915550505b8015611cd057611cd0873083611d97565b611cda8186612501565b94505b611ce8878787611d97565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166000818152601a6020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611dbd5760405162461bcd60e51b815260040161078c90612479565b6001600160a01b038216611de35760405162461bcd60e51b815260040161078c906124be565b6001600160a01b03831660009081526020819052604090205481811015611e5b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161078c565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611e9290849061242d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ede91815260200190565b60405180910390a350505050565b3060009081526020819052604081205490818103611f08575050565b600754821115611f185760075491505b81611f228161200a565b6000611f3e6064611ba3600d5447611feb90919063ffffffff16565b600060168190556017819055600f546040519293506001600160a01b031691839181818185875af1925050503d8060008114611f96576040519150601f19603f3d011682016040523d82523d6000602084013e611f9b565b606091505b5050600e546040519194506001600160a01b0316904790600081818185875af1925050503d8060008114611ce8576040519150601f19603f3d011682016040523d82523d6000602084013e611ce8565b6000611ff78284612440565b9392505050565b6000611ff78284612457565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061203f5761203f612514565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156120bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e1919061252a565b816001815181106120f4576120f4612514565b60200260200101906001600160a01b031690816001600160a01b03168152505061213f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113e1565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac94790612194908590600090869030904290600401612547565b600060405180830381600087803b1580156121ae57600080fd5b505af11580156121c2573d6000803e3d6000fd5b505050505050565b6001600160a01b03811681146113de57600080fd5b803580151581146121ef57600080fd5b919050565b6000806040838503121561220757600080fd5b8235612212816121ca565b9150612220602084016121df565b90509250929050565b600060208083528351808285015260005b818110156122565785810183015185820160400152820161223a565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561228a57600080fd5b8235612295816121ca565b946020939093013593505050565b600080604083850312156122b657600080fd5b50508035926020909101359150565b6000602082840312156122d757600080fd5b8135611ff7816121ca565b6000602082840312156122f457600080fd5b5035919050565b60008060006060848603121561231057600080fd5b833561231b816121ca565b9250602084013561232b816121ca565b929592945050506040919091013590565b60008060006060848603121561235157600080fd5b61235a846121df565b95602085013595506040909401359392505050565b6000806040838503121561238257600080fd5b823561238d816121ca565b9150602083013561239d816121ca565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806123f157607f821691505b60208210810361241157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561089857610898612417565b808202811582820484141761089857610898612417565b60008261247457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561089857610898612417565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561253c57600080fd5b8151611ff7816121ca565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156125975784516001600160a01b031683529383019391830191600101612572565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212209185c1c4c69a1ea7fb1e544551e7df25516eb6c9c95310d1fb5f4f5d14cb179764736f6c63430008130033

Deployed Bytecode Sourcemap

26381:20878:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39970:169;;;;;;;;;;-1:-1:-1;39970:169:0;;;;;:::i;:::-;;:::i;:::-;;11979:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14212:194;;;;;;;;;;-1:-1:-1;14212:194:0;;;;;:::i;:::-;;:::i;:::-;;;1673:14:1;;1666:22;1648:41;;1636:2;1621:18;14212:194:0;1508:187:1;35517:137:0;;;;;;;;;;;;;:::i;38625:379::-;;;;;;;;;;-1:-1:-1;38625:379:0;;;;;:::i;:::-;;:::i;27004:31::-;;;;;;;;;;-1:-1:-1;27004:31:0;;;;;;;;32998:212;;;;;;;;;;-1:-1:-1;33177:11:0;;33190;;32998:212;;;-1:-1:-1;;;;;33177:11:0;;;2165:34:1;;33190:11:0;;;;2230:2:1;2215:18;;2208:43;2100:18;32998:212:0;1953:304:1;13099:108:0;;;;;;;;;;-1:-1:-1;13187:12:0;;13099:108;;;2408:25:1;;;2396:2;2381:18;13099:108:0;2262:177:1;41472:160:0;;;;;;;;;;-1:-1:-1;41472:160:0;;;;;:::i;:::-;;:::i;37633:247::-;;;;;;;;;;-1:-1:-1;37633:247:0;;;;;:::i;:::-;;:::i;14884:529::-;;;;;;;;;;-1:-1:-1;14884:529:0;;;;;:::i;:::-;;:::i;39293:428::-;;;;;;;;;;-1:-1:-1;39293:428:0;;;;;:::i;:::-;;:::i;12941:93::-;;;;;;;;;;-1:-1:-1;12941:93:0;;13024:2;3484:36:1;;3472:2;3457:18;12941:93:0;3342:184:1;15818:290:0;;;;;;;;;;-1:-1:-1;15818:290:0;;;;;:::i;:::-;;:::i;35794:143::-;;;;;;;;;;;;;:::i;41132:166::-;;;;;;;;;;-1:-1:-1;41132:166:0;;;;;:::i;:::-;;:::i;37197:227::-;;;;;;;;;;-1:-1:-1;37197:227:0;;;;;:::i;:::-;;:::i;13270:143::-;;;;;;;;;;-1:-1:-1;13270:143:0;;;;;:::i;:::-;-1:-1:-1;;;;;13387:18:0;13360:7;13387:18;;;;;;;;;;;;13270:143;23318:103;;;;;;;;;;;;;:::i;35197:165::-;;;;;;;;;;;;;:::i;22667:87::-;;;;;;;;;;-1:-1:-1;22740:6:0;;-1:-1:-1;;;;;22740:6:0;22667:87;;;-1:-1:-1;;;;;3695:32:1;;;3677:51;;3665:2;3650:18;22667:87:0;3531:203:1;12198:104:0;;;;;;;;;;;;;:::i;40450:300::-;;;;;;;;;;-1:-1:-1;40450:300:0;;;;;:::i;:::-;;:::i;16607:475::-;;;;;;;;;;-1:-1:-1;16607:475:0;;;;;:::i;:::-;;:::i;13626:200::-;;;;;;;;;;-1:-1:-1;13626:200:0;;;;;:::i;:::-;;:::i;31607:353::-;;;;;;;;;;-1:-1:-1;31843:15:0;;31889:16;;31936;;-1:-1:-1;;;31843:15:0;;;;;;31607:353;;;3960:14:1;;3953:22;3935:41;;4007:2;3992:18;;3985:34;;;;4035:18;;;4028:34;3923:2;3908:18;31607:353:0;3739:329:1;32381:391:0;;;;;;;;;;;;32637:14;;32730:9;;32759:5;;32637:14;;;;;;32686:20;;;;;32381:391;;;;;4317:14:1;;4310:22;4292:41;;4376:14;;4369:22;4364:2;4349:18;;4342:50;4408:18;;;4401:34;4466:2;4451:18;;4444:34;4279:3;4264:19;32381:391:0;4073:411:1;33674:512:0;;;;;;;;;;-1:-1:-1;33992:11:0;;34027:9;;34060;;34096:12;;34133:10;;34168;;33674:512;;;4776:25:1;;;4832:2;4817:18;;4810:34;;;;4860:18;;;4853:34;;;;4918:2;4903:18;;4896:34;4961:3;4946:19;;4939:35;5005:3;4990:19;;4983:35;4763:3;4748:19;33674:512:0;4489:535:1;36402:557:0;;;;;;;;;;-1:-1:-1;36402:557:0;;;;;:::i;:::-;;:::i;13889:176::-;;;;;;;;;;-1:-1:-1;13889:176:0;;;;;:::i;:::-;-1:-1:-1;;;;;14030:18:0;;;14003:7;14030:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;13889:176;34636:418;;;;;;;;;;-1:-1:-1;34636:418:0;;;;;:::i;:::-;-1:-1:-1;;;;;34898:20:0;34756:17;34898:20;;;:11;:20;;;;;;;;;34948:15;:24;;;;;;35012:25;:34;;;;;;34898:20;;;;;34948:24;;;;35012:34;;34636:418;;;;;5952:14:1;;5945:22;5927:41;;6011:14;;6004:22;5999:2;5984:18;;5977:50;6070:14;6063:22;6043:18;;;6036:50;5915:2;5900:18;34636:418:0;5743:349:1;38148:190:0;;;;;;;;;;-1:-1:-1;38148:190:0;;;;;:::i;:::-;;:::i;26502:32::-;;;;;;;;;;;;;;;23576:238;;;;;;;;;;-1:-1:-1;23576:238:0;;;;;:::i;:::-;;:::i;39970:169::-;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;40050:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;;;;:31;;-1:-1:-1;;40050:31:0::1;::::0;::::1;;::::0;;::::1;::::0;;;40097:34;;1648:41:1;;;40097:34:0::1;::::0;1621:18:1;40097:34:0::1;;;;;;;;39970:169:::0;;:::o;11979:100::-;12033:13;12066:5;12059:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11979:100;:::o;14212:194::-;14320:4;14337:39;11065:10;14360:7;14369:6;14337:8;:39::i;:::-;-1:-1:-1;14394:4:0;14212:194;;;;;:::o;35517:137::-;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;35578:14:::1;:22:::0;;-1:-1:-1;;35578:22:0::1;::::0;;35616:30:::1;::::0;35630:15:::1;::::0;35616:30:::1;::::0;35595:5:::1;::::0;35616:30:::1;35517:137::o:0;38625:379::-;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;38749:9:::1;:25:::0;;;38785:9:::1;:19:::0;;;38829:21:::1;38797:7:::0;38761:13;38829:21:::1;:::i;:::-;38815:11;:35:::0;;;38884:3:::1;-1:-1:-1::0;38869:18:0::1;38861:71;;;::::0;-1:-1:-1;;;38861:71:0;;7307:2:1;38861:71:0::1;::::0;::::1;7289:21:1::0;7346:2;7326:18;;;7319:30;7385:34;7365:18;;;7358:62;-1:-1:-1;;;7436:18:1;;;7429:38;7484:19;;38861:71:0::1;7105:404:1::0;38861:71:0::1;38962:11;::::0;38975:9:::1;::::0;38986::::1;::::0;38948:48:::1;::::0;;7716:25:1;;;7772:2;7757:18;;7750:34;;;;7800:18;;;7793:34;38948:48:0::1;::::0;7704:2:1;7689:18;38948:48:0::1;;;;;;;;38625:379:::0;;:::o;41472:160::-;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;41578:11:::1;::::0;41548:42:::1;::::0;-1:-1:-1;;;;;41578:11:0;;::::1;::::0;41548:42;::::1;::::0;::::1;::::0;41578:11:::1;::::0;41548:42:::1;41601:11;:23:::0;;-1:-1:-1;;;;;;41601:23:0::1;-1:-1:-1::0;;;;;41601:23:0;;;::::1;::::0;;;::::1;::::0;;41472:160::o;37633:247::-;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;37731:1:::1;37719:8;:13;;37711:62;;;::::0;-1:-1:-1;;;37711:62:0;;8040:2:1;37711:62:0::1;::::0;::::1;8022:21:1::0;8079:2;8059:18;;;8052:30;8118:34;8098:18;;;8091:62;-1:-1:-1;;;8169:18:1;;;8162:34;8213:19;;37711:62:0::1;7838:400:1::0;37711:62:0::1;37825:4;37808:13;13187:12:::0;;;13099:108;37808:13:::1;37797:24;::::0;:8;:24:::1;:::i;:::-;37796:33;;;;:::i;:::-;37784:9;:45:::0;;;37845:27:::1;::::0;2408:25:1;;;37845:27:0::1;::::0;2396:2:1;2381:18;37845:27:0::1;;;;;;;;37633:247:::0;:::o;14884:529::-;15024:4;15041:36;15051:6;15059:9;15070:6;15041:9;:36::i;:::-;-1:-1:-1;;;;;15117:19:0;;15090:24;15117:19;;;:11;:19;;;;;;;;11065:10;15117:33;;;;;;;;15183:26;;;;15161:116;;;;-1:-1:-1;;;15161:116:0;;8840:2:1;15161:116:0;;;8822:21:1;8879:2;8859:18;;;8852:30;8918:34;8898:18;;;8891:62;-1:-1:-1;;;8969:18:1;;;8962:38;9017:19;;15161:116:0;8638:404:1;15161:116:0;15313:57;15322:6;11065:10;15363:6;15344:16;:25;15313:8;:57::i;:::-;-1:-1:-1;15401:4:0;;14884:529;-1:-1:-1;;;;14884:529:0:o;39293:428::-;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;39418:10:::1;:26:::0;;;39455:10:::1;:20:::0;;;39501:23:::1;39468:7:::0;39431:13;39501:23:::1;:::i;:::-;39486:12;:38:::0;;;39573:3:::1;-1:-1:-1::0;39557:19:0::1;39535:110;;;::::0;-1:-1:-1;;;39535:110:0;;9249:2:1;39535:110:0::1;::::0;::::1;9231:21:1::0;9288:2;9268:18;;;9261:30;9327:34;9307:18;;;9300:62;-1:-1:-1;;;9378:18:1;;;9371:39;9427:19;;39535:110:0::1;9047:405:1::0;39535:110:0::1;39676:12;::::0;39690:10:::1;::::0;39702::::1;::::0;39661:52:::1;::::0;;7716:25:1;;;7772:2;7757:18;;7750:34;;;;7800:18;;;7793:34;39661:52:0::1;::::0;7704:2:1;7689:18;39661:52:0::1;7514:319:1::0;15818:290:0;11065:10;15931:4;16020:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16020:34:0;;;;;;;;;;15931:4;;15948:130;;15998:7;;16020:47;;16057:10;;16020:47;:::i;:::-;15948:8;:130::i;35794:143::-;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;35847:20:::1;:28:::0;;-1:-1:-1;;35847:28:0::1;::::0;;35891:38:::1;::::0;35913:15:::1;::::0;35891:38:::1;::::0;35870:5:::1;::::0;35891:38:::1;35794:143::o:0;41132:166::-;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;41244:11:::1;::::0;41214:42:::1;::::0;-1:-1:-1;;;;;41244:11:0;;::::1;::::0;41214:42;::::1;::::0;::::1;::::0;41244:11:::1;::::0;41214:42:::1;41267:11;:23:::0;;-1:-1:-1;;;;;;41267:23:0::1;-1:-1:-1::0;;;;;41267:23:0;;;::::1;::::0;;;::::1;::::0;;41132:166::o;37197:227::-;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;37291:1:::1;37279:8;:13;;37271:58;;;::::0;-1:-1:-1;;;37271:58:0;;9659:2:1;37271:58:0::1;::::0;::::1;9641:21:1::0;;;9678:18;;;9671:30;9737:34;9717:18;;;9710:62;9789:18;;37271:58:0::1;9457:356:1::0;37271:58:0::1;37377:4;37360:13;13187:12:::0;;;13099:108;37360:13:::1;37349:24;::::0;:8;:24:::1;:::i;:::-;37348:33;;;;:::i;:::-;37340:5;:41:::0;;;37397:19:::1;::::0;2408:25:1;;;37397:19:0::1;::::0;2396:2:1;2381:18;37397:19:0::1;2262:177:1::0;23318:103:0;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;23383:30:::1;23410:1;23383:18;:30::i;:::-;23318:103::o:0;35197:165::-;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;35256:11:::1;:18:::0;;-1:-1:-1;;35256:18:0::1;35270:4;35256:18;::::0;;35285:15:::1;:22:::0;;-1:-1:-1;;;;35285:22:0::1;-1:-1:-1::0;;;35285:22:0::1;::::0;;35323:31:::1;::::0;35338:15:::1;::::0;35323:31:::1;::::0;35256:11:::1;::::0;35323:31:::1;35197:165::o:0;12198:104::-;12254:13;12287:7;12280:14;;;;;:::i;40450:300::-;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;40596:7:::1;-1:-1:-1::0;;;;;40588:15:0::1;:4;-1:-1:-1::0;;;;;40588:15:0::1;::::0;40566:122:::1;;;::::0;-1:-1:-1;;;40566:122:0;;10020:2:1;40566:122:0::1;::::0;::::1;10002:21:1::0;10059:2;10039:18;;;10032:30;10098:34;10078:18;;;10071:62;10169:27;10149:18;;;10142:55;10214:19;;40566:122:0::1;9818:421:1::0;40566:122:0::1;40701:41;40730:4;40736:5;40701:28;:41::i;:::-;40450:300:::0;;:::o;16607:475::-;11065:10;16725:4;16769:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;16769:34:0;;;;;;;;;;16836:35;;;;16814:122;;;;-1:-1:-1;;;16814:122:0;;10446:2:1;16814:122:0;;;10428:21:1;10485:2;10465:18;;;10458:30;10524:34;10504:18;;;10497:62;-1:-1:-1;;;10575:18:1;;;10568:35;10620:19;;16814:122:0;10244:401:1;16814:122:0;16972:67;11065:10;16995:7;17023:15;17004:16;:34;16972:8;:67::i;:::-;-1:-1:-1;17070:4:0;;16607:475;-1:-1:-1;;;16607:475:0:o;13626:200::-;13737:4;13754:42;11065:10;13778:9;13789:6;13754:9;:42::i;36402:557::-;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;36572:1:::1;36564:4;:9;;36542:111;;;::::0;-1:-1:-1;;;36542:111:0;;10852:2:1;36542:111:0::1;::::0;::::1;10834:21:1::0;10891:2;10871:18;;;10864:30;10930:34;10910:18;;;10903:62;-1:-1:-1;;;10981:18:1;;;10974:50;11041:19;;36542:111:0::1;10650:416:1::0;36542:111:0::1;36680:4;36672;:12;;36664:67;;;::::0;-1:-1:-1;;;36664:67:0;;11273:2:1;36664:67:0::1;::::0;::::1;11255:21:1::0;11312:2;11292:18;;;11285:30;11351:34;11331:18;;;11324:62;-1:-1:-1;;;11402:18:1;;;11395:40;11452:19;;36664:67:0::1;11071:406:1::0;36664:67:0::1;36744:15;:26:::0;;-1:-1:-1;;;;36744:26:0::1;-1:-1:-1::0;;;36744:26:0;::::1;;;;::::0;;13187:12;;36825:5:::1;::::0;36817:4;;36801:20:::1;;;;:::i;:::-;36800:30;;;;:::i;:::-;36781:16;:49:::0;36885:5:::1;36877:4:::0;36861:13:::1;13187:12:::0;;;13099:108;36861:13:::1;:20;;;;:::i;:::-;36860:30;;;;:::i;:::-;36841:16;:49:::0;36906:45:::1;::::0;;3960:14:1;;3953:22;3935:41;;4007:2;3992:18;;3985:34;;;4035:18;;;4028:34;;;36906:45:0::1;::::0;3923:2:1;3908:18;36906:45:0::1;;;;;;;36402:557:::0;;;:::o;38148:190::-;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38253:23:0;::::1;;::::0;;;:15:::1;:23;::::0;;;;;;;;:30;;-1:-1:-1;;38253:30:0::1;::::0;::::1;;::::0;;::::1;::::0;;;38299:31;;1648:41:1;;;38299:31:0::1;::::0;1621:18:1;38299:31:0::1;1508:187:1::0;23576:238:0;22740:6;;-1:-1:-1;;;;;22740:6:0;11065:10;22887:23;22879:68;;;;-1:-1:-1;;;22879:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23679:22:0;::::1;23657:110;;;::::0;-1:-1:-1;;;23657:110:0;;11684:2:1;23657:110:0::1;::::0;::::1;11666:21:1::0;11723:2;11703:18;;;11696:30;11762:34;11742:18;;;11735:62;-1:-1:-1;;;11813:18:1;;;11806:36;11859:19;;23657:110:0::1;11482:402:1::0;23657:110:0::1;23778:28;23797:8;23778:18;:28::i;:::-;23576:238:::0;:::o;20390:380::-;-1:-1:-1;;;;;20526:19:0;;20518:68;;;;-1:-1:-1;;;20518:68:0;;12091:2:1;20518:68:0;;;12073:21:1;12130:2;12110:18;;;12103:30;12169:34;12149:18;;;12142:62;-1:-1:-1;;;12220:18:1;;;12213:34;12264:19;;20518:68:0;11889:400:1;20518:68:0;-1:-1:-1;;;;;20605:21:0;;20597:68;;;;-1:-1:-1;;;20597:68:0;;12496:2:1;20597:68:0;;;12478:21:1;12535:2;12515:18;;;12508:30;12574:34;12554:18;;;12547:62;-1:-1:-1;;;12625:18:1;;;12618:32;12667:19;;20597:68:0;12294:398:1;20597:68:0;-1:-1:-1;;;;;20678:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20730:32;;2408:25:1;;;20730:32:0;;2381:18:1;20730:32:0;;;;;;;20390:380;;;:::o;41640:4297::-;-1:-1:-1;;;;;41772:18:0;;41764:68;;;;-1:-1:-1;;;41764:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;41851:16:0;;41843:64;;;;-1:-1:-1;;;41843:64:0;;;;;;;:::i;:::-;41924:6;41934:1;41924:11;41920:93;;41952:28;41968:4;41974:2;41978:1;41952:15;:28::i;:::-;41640:4297;;;:::o;41920:93::-;42029:14;;;;42025:2279;;;22740:6;;-1:-1:-1;;;;;42082:15:0;;;22740:6;;42082:15;;;;:49;;-1:-1:-1;22740:6:0;;-1:-1:-1;;;;;42118:13:0;;;22740:6;;42118:13;;42082:49;:86;;;;-1:-1:-1;;;;;;42152:16:0;;;;42082:86;:128;;;;-1:-1:-1;;;;;;42189:21:0;;42203:6;42189:21;;42082:128;:158;;;;-1:-1:-1;42232:8:0;;-1:-1:-1;;;42232:8:0;;;;42231:9;42082:158;42060:2233;;;42280:11;;;;42275:217;;-1:-1:-1;;;;;42350:17:0;;;;;;:11;:17;;;;;;;;;:36;;-1:-1:-1;;;;;;42371:15:0;;;;;;:11;:15;;;;;;;;42350:36;42316:156;;;;-1:-1:-1;;;42316:156:0;;13709:2:1;42316:156:0;;;13691:21:1;13748:2;13728:18;;;13721:30;13787:34;13767:18;;;13760:62;-1:-1:-1;;;13838:18:1;;;13831:32;13880:19;;42316:156:0;13507:398:1;42316:156:0;42648:20;;;;;;;42644:629;;;22740:6;;-1:-1:-1;;;;;42723:13:0;;;22740:6;;42723:13;;;;:66;;;42779:9;-1:-1:-1;;;;;42765:24:0;:2;-1:-1:-1;;;;;42765:24:0;;;42723:66;:117;;;;;42832:7;-1:-1:-1;;;;;42818:22:0;:2;-1:-1:-1;;;;;42818:22:0;;;42723:117;42693:561;;;42958:9;42929:39;;;;:28;:39;;;;;;43004:12;-1:-1:-1;42891:258:0;;;;-1:-1:-1;;;42891:258:0;;14112:2:1;42891:258:0;;;14094:21:1;14151:2;14131:18;;;14124:30;14190:34;14170:18;;;14163:62;14261:34;14241:18;;;14234:62;-1:-1:-1;;;14312:19:1;;;14305:40;14362:19;;42891:258:0;13910:477:1;42891:258:0;43205:9;43176:39;;;;:28;:39;;;;;43218:12;43176:54;;42693:561;-1:-1:-1;;;;;43325:31:0;;;;;;:25;:31;;;;;;;;:55;;;;-1:-1:-1;;;;;;43361:19:0;;;;;;:15;:19;;;;;;;;43360:20;43325:55;43321:957;;;43449:5;;43439:6;:15;;43405:139;;;;-1:-1:-1;;;43405:139:0;;14594:2:1;43405:139:0;;;14576:21:1;14633:2;14613:18;;;14606:30;14672:34;14652:18;;;14645:62;-1:-1:-1;;;14723:18:1;;;14716:36;14769:19;;43405:139:0;14392:402:1;43405:139:0;43627:9;;-1:-1:-1;;;;;13387:18:0;;13360:7;13387:18;;;;;;;;;;;43601:22;;:6;:22;:::i;:::-;:35;;43567:140;;;;-1:-1:-1;;;43567:140:0;;15001:2:1;43567:140:0;;;14983:21:1;15040:2;15020:18;;;15013:30;-1:-1:-1;;;15059:18:1;;;15052:49;15118:18;;43567:140:0;14799:343:1;43567:140:0;43321:957;;;-1:-1:-1;;;;;43805:29:0;;;;;;:25;:29;;;;;;;;:55;;;;-1:-1:-1;;;;;;43839:21:0;;;;;;:15;:21;;;;;;;;43838:22;43805:55;43779:499;;;43947:5;;43937:6;:15;;43903:140;;;;-1:-1:-1;;;43903:140:0;;15349:2:1;43903:140:0;;;15331:21:1;15388:2;15368:18;;;15361:30;15427:34;15407:18;;;15400:62;-1:-1:-1;;;15478:18:1;;;15471:37;15525:19;;43903:140:0;15147:403:1;43779:499:0;-1:-1:-1;;;;;44074:19:0;;;;;;:15;:19;;;;;;;;44069:209;;44178:9;;-1:-1:-1;;;;;13387:18:0;;13360:7;13387:18;;;;;;;;;;;44152:22;;:6;:22;:::i;:::-;:35;;44118:140;;;;-1:-1:-1;;;44118:140:0;;15001:2:1;44118:140:0;;;14983:21:1;15040:2;15020:18;;;15013:30;-1:-1:-1;;;15059:18:1;;;15052:49;15118:18;;44118:140:0;14799:343:1;44118:140:0;44365:4;44316:28;13387:18;;;;;;;;;;;44423:16;;44399:40;;;;;;;44470:39;;-1:-1:-1;44494:15:0;;-1:-1:-1;;;44494:15:0;;;;44470:39;:65;;;;-1:-1:-1;44527:8:0;;-1:-1:-1;;;44527:8:0;;;;44526:9;44470:65;:114;;;;-1:-1:-1;;;;;;44553:31:0;;;;;;:25;:31;;;;;;;;44552:32;44470:114;:149;;;;-1:-1:-1;;;;;;44602:17:0;;;;;;:11;:17;;;;;;;;44601:18;44470:149;:182;;;;-1:-1:-1;;;;;;44637:15:0;;;;;;:11;:15;;;;;;;;44636:16;44470:182;44452:314;;;44679:8;:15;;-1:-1:-1;;;;44679:15:0;-1:-1:-1;;;44679:15:0;;;44711:10;:8;:10::i;:::-;44738:8;:16;;-1:-1:-1;;;;44738:16:0;;;44452:314;44794:8;;-1:-1:-1;;;;;44904:17:0;;44778:12;44904:17;;;:11;:17;;;;;;44794:8;-1:-1:-1;;;44794:8:0;;;;;44793:9;;44904:17;;:36;;-1:-1:-1;;;;;;44925:15:0;;;;;;:11;:15;;;;;;;;44904:36;44900:84;;;-1:-1:-1;44967:5:0;44900:84;44996:12;45101:7;45097:787;;;-1:-1:-1;;;;;45153:29:0;;;;;;:25;:29;;;;;;;;:49;;;;;45201:1;45186:12;;:16;45153:49;45149:586;;;45230:33;45259:3;45230:24;45241:12;;45230:6;:10;;:24;;;;:::i;:::-;:28;;:33::i;:::-;45223:40;;45320:12;;45306:10;;45299:4;:17;;;;:::i;:::-;45298:34;;;;:::i;:::-;45282:12;;:50;;;;;;;:::i;:::-;;;;-1:-1:-1;;45395:12:0;;45381:10;;45374:17;;:4;:17;:::i;:::-;45373:34;;;;:::i;:::-;45351:18;;:56;;;;;;;:::i;:::-;;;;-1:-1:-1;45149:586:0;;-1:-1:-1;45149:586:0;;-1:-1:-1;;;;;45469:31:0;;;;;;:25;:31;;;;;;;;:50;;;;;45518:1;45504:11;;:15;45469:50;45465:270;;;45547:32;45575:3;45547:23;45558:11;;45547:6;:10;;:23;;;;:::i;:32::-;45540:39;;45635:11;;45622:9;;45615:4;:16;;;;:::i;:::-;45614:32;;;;:::i;:::-;45598:12;;:48;;;;;;;:::i;:::-;;;;-1:-1:-1;;45708:11:0;;45695:9;;45688:16;;:4;:16;:::i;:::-;45687:32;;;;:::i;:::-;45665:18;;:54;;;;;;;:::i;:::-;;;;-1:-1:-1;;45465:270:0;45755:8;;45751:91;;45784:42;45800:4;45814;45821;45784:15;:42::i;:::-;45858:14;45868:4;45858:14;;:::i;:::-;;;45097:787;45896:33;45912:4;45918:2;45922:6;45896:15;:33::i;:::-;41753:4184;;;;41640:4297;;;:::o;23974:191::-;24067:6;;;-1:-1:-1;;;;;24084:17:0;;;-1:-1:-1;;;;;;24084:17:0;;;;;;;24117:40;;24067:6;;;24084:17;24067:6;;24117:40;;24048:16;;24117:40;24037:128;23974:191;:::o;40758:188::-;-1:-1:-1;;;;;40841:31:0;;;;;;:25;:31;;;;;;:39;;-1:-1:-1;;40841:39:0;;;;;;;;;;40898:40;;40841:39;;:31;40898:40;;;40758:188;;:::o;17572:770::-;-1:-1:-1;;;;;17712:20:0;;17704:70;;;;-1:-1:-1;;;17704:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17793:23:0;;17785:71;;;;-1:-1:-1;;;17785:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;17953:17:0;;17929:21;17953:17;;;;;;;;;;;18003:23;;;;17981:111;;;;-1:-1:-1;;;17981:111:0;;15890:2:1;17981:111:0;;;15872:21:1;15929:2;15909:18;;;15902:30;15968:34;15948:18;;;15941:62;-1:-1:-1;;;16019:18:1;;;16012:36;16065:19;;17981:111:0;15688:402:1;17981:111:0;-1:-1:-1;;;;;18128:17:0;;;:9;:17;;;;;;;;;;;18148:22;;;18128:42;;18192:20;;;;;;;;:30;;18164:6;;18128:9;18192:30;;18164:6;;18192:30;:::i;:::-;;;;;;;;18257:9;-1:-1:-1;;;;;18240:35:0;18249:6;-1:-1:-1;;;;;18240:35:0;;18268:6;18240:35;;;;2408:25:1;;2396:2;2381:18;;2262:177;18240:35:0;;;;;;;;17693:649;17572:770;;;:::o;46526:730::-;46609:4;46565:23;13387:18;;;;;;;;;;;;46655:20;;;46651:59;;46692:7;;46526:730::o;46651:59::-;46744:16;;46726:15;:34;46722:101;;;46795:16;;46777:34;;46722:101;46864:15;46892:36;46864:15;46892:16;:36::i;:::-;46941:17;46961:41;46998:3;46961:32;46987:5;;46961:21;:25;;:32;;;;:::i;:41::-;47036:1;47015:18;:22;;;47048:12;:16;;;47099:11;;47091:47;;46941:61;;-1:-1:-1;;;;;;47099:11:0;;46941:61;;47091:47;47036:1;47091:47;46941:61;47099:11;47091:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;47173:11:0;;47165:83;;47077:61;;-1:-1:-1;;;;;;47173:11:0;;47198:21;;47165:83;;;;47198:21;47173:11;47165:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4344:98;4402:7;4429:5;4433:1;4429;:5;:::i;:::-;4422:12;4344:98;-1:-1:-1;;;4344:98:0:o;4743:::-;4801:7;4828:5;4832:1;4828;:5;:::i;45945:571::-;46095:16;;;46109:1;46095:16;;;;;;;;46071:21;;46095:16;;;;;;;;;;-1:-1:-1;46095:16:0;46071:40;;46140:4;46122;46127:1;46122:7;;;;;;;;:::i;:::-;;;;;;:23;-1:-1:-1;;;;;46122:23:0;;;-1:-1:-1;;;;;46122:23:0;;;;;46166:9;-1:-1:-1;;;;;46166:14:0;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46156:4;46161:1;46156:7;;;;;;;;:::i;:::-;;;;;;:26;-1:-1:-1;;;;;46156:26:0;;;-1:-1:-1;;;;;46156:26:0;;;;;46195:56;46212:4;46227:9;46239:11;46195:8;:56::i;:::-;46290:218;;-1:-1:-1;;;46290:218:0;;-1:-1:-1;;;;;46290:9:0;:60;;;;:218;;46365:11;;46391:1;;46435:4;;46462;;46482:15;;46290:218;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46000:516;45945:571;:::o;14:131:1:-;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:160;215:20;;271:13;;264:21;254:32;;244:60;;300:1;297;290:12;244:60;150:160;;;:::o;315:315::-;380:6;388;441:2;429:9;420:7;416:23;412:32;409:52;;;457:1;454;447:12;409:52;496:9;483:23;515:31;540:5;515:31;:::i;:::-;565:5;-1:-1:-1;589:35:1;620:2;605:18;;589:35;:::i;:::-;579:45;;315:315;;;;;:::o;635:548::-;747:4;776:2;805;794:9;787:21;837:6;831:13;880:6;875:2;864:9;860:18;853:34;905:1;915:140;929:6;926:1;923:13;915:140;;;1024:14;;;1020:23;;1014:30;990:17;;;1009:2;986:26;979:66;944:10;;915:140;;;919:3;1104:1;1099:2;1090:6;1079:9;1075:22;1071:31;1064:42;1174:2;1167;1163:7;1158:2;1150:6;1146:15;1142:29;1131:9;1127:45;1123:54;1115:62;;;;635:548;;;;:::o;1188:315::-;1256:6;1264;1317:2;1305:9;1296:7;1292:23;1288:32;1285:52;;;1333:1;1330;1323:12;1285:52;1372:9;1359:23;1391:31;1416:5;1391:31;:::i;:::-;1441:5;1493:2;1478:18;;;;1465:32;;-1:-1:-1;;;1188:315:1:o;1700:248::-;1768:6;1776;1829:2;1817:9;1808:7;1804:23;1800:32;1797:52;;;1845:1;1842;1835:12;1797:52;-1:-1:-1;;1868:23:1;;;1938:2;1923:18;;;1910:32;;-1:-1:-1;1700:248:1:o;2444:247::-;2503:6;2556:2;2544:9;2535:7;2531:23;2527:32;2524:52;;;2572:1;2569;2562:12;2524:52;2611:9;2598:23;2630:31;2655:5;2630:31;:::i;2696:180::-;2755:6;2808:2;2796:9;2787:7;2783:23;2779:32;2776:52;;;2824:1;2821;2814:12;2776:52;-1:-1:-1;2847:23:1;;2696:180;-1:-1:-1;2696:180:1:o;2881:456::-;2958:6;2966;2974;3027:2;3015:9;3006:7;3002:23;2998:32;2995:52;;;3043:1;3040;3033:12;2995:52;3082:9;3069:23;3101:31;3126:5;3101:31;:::i;:::-;3151:5;-1:-1:-1;3208:2:1;3193:18;;3180:32;3221:33;3180:32;3221:33;:::i;:::-;2881:456;;3273:7;;-1:-1:-1;;;3327:2:1;3312:18;;;;3299:32;;2881:456::o;5029:316::-;5103:6;5111;5119;5172:2;5160:9;5151:7;5147:23;5143:32;5140:52;;;5188:1;5185;5178:12;5140:52;5211:26;5227:9;5211:26;:::i;:::-;5201:36;5284:2;5269:18;;5256:32;;-1:-1:-1;5335:2:1;5320:18;;;5307:32;;5029:316;-1:-1:-1;;;5029:316:1:o;5350:388::-;5418:6;5426;5479:2;5467:9;5458:7;5454:23;5450:32;5447:52;;;5495:1;5492;5485:12;5447:52;5534:9;5521:23;5553:31;5578:5;5553:31;:::i;:::-;5603:5;-1:-1:-1;5660:2:1;5645:18;;5632:32;5673:33;5632:32;5673:33;:::i;:::-;5725:7;5715:17;;;5350:388;;;;;:::o;6097:356::-;6299:2;6281:21;;;6318:18;;;6311:30;6377:34;6372:2;6357:18;;6350:62;6444:2;6429:18;;6097:356::o;6458:380::-;6537:1;6533:12;;;;6580;;;6601:61;;6655:4;6647:6;6643:17;6633:27;;6601:61;6708:2;6700:6;6697:14;6677:18;6674:38;6671:161;;6754:10;6749:3;6745:20;6742:1;6735:31;6789:4;6786:1;6779:15;6817:4;6814:1;6807:15;6671:161;;6458:380;;;:::o;6843:127::-;6904:10;6899:3;6895:20;6892:1;6885:31;6935:4;6932:1;6925:15;6959:4;6956:1;6949:15;6975:125;7040:9;;;7061:10;;;7058:36;;;7074:18;;:::i;8243:168::-;8316:9;;;8347;;8364:15;;;8358:22;;8344:37;8334:71;;8385:18;;:::i;8416:217::-;8456:1;8482;8472:132;;8526:10;8521:3;8517:20;8514:1;8507:31;8561:4;8558:1;8551:15;8589:4;8586:1;8579:15;8472:132;-1:-1:-1;8618:9:1;;8416:217::o;12697:401::-;12899:2;12881:21;;;12938:2;12918:18;;;12911:30;12977:34;12972:2;12957:18;;12950:62;-1:-1:-1;;;13043:2:1;13028:18;;13021:35;13088:3;13073:19;;12697:401::o;13103:399::-;13305:2;13287:21;;;13344:2;13324:18;;;13317:30;13383:34;13378:2;13363:18;;13356:62;-1:-1:-1;;;13449:2:1;13434:18;;13427:33;13492:3;13477:19;;13103:399::o;15555:128::-;15622:9;;;15643:11;;;15640:37;;;15657:18;;:::i;16437:127::-;16498:10;16493:3;16489:20;16486:1;16479:31;16529:4;16526:1;16519:15;16553:4;16550:1;16543:15;16569:251;16639:6;16692:2;16680:9;16671:7;16667:23;16663:32;16660:52;;;16708:1;16705;16698:12;16660:52;16740:9;16734:16;16759:31;16784:5;16759:31;:::i;16825:980::-;17087:4;17135:3;17124:9;17120:19;17166:6;17155:9;17148:25;17192:2;17230:6;17225:2;17214:9;17210:18;17203:34;17273:3;17268:2;17257:9;17253:18;17246:31;17297:6;17332;17326:13;17363:6;17355;17348:22;17401:3;17390:9;17386:19;17379:26;;17440:2;17432:6;17428:15;17414:29;;17461:1;17471:195;17485:6;17482:1;17479:13;17471:195;;;17550:13;;-1:-1:-1;;;;;17546:39:1;17534:52;;17641:15;;;;17606:12;;;;17582:1;17500:9;17471:195;;;-1:-1:-1;;;;;;;17722:32:1;;;;17717:2;17702:18;;17695:60;-1:-1:-1;;;17786:3:1;17771:19;17764:35;17683:3;16825:980;-1:-1:-1;;;16825:980:1:o

Swarm Source

ipfs://9185c1c4c69a1ea7fb1e544551e7df25516eb6c9c95310d1fb5f4f5d14cb1797
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.