ETH Price: $2,300.26 (+1.56%)

Token

DRACARYS (DRACARYS)
 

Overview

Max Total Supply

100,000,000 DRACARYS

Holders

50

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.003461691138015281 DRACARYS

Value
$0.00
0xb49617b323f42132afa3f211c99ceaad6dfd46c7
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:
Dracarys

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/******

$Dracarys is a hyper deflationary token that burns its tokens , increasing the rarity of all existing tokens. On top of that we are the FIRST EVER project to develop and implement a burn bot 🔥 (similar to BobbyBuyBot but it shows the burn amount). This bot will be adopted in multiple projects in the future and will also have a  paid promo side to it , just imagine the bullishness! 
Meme lovers will absolutely love this burning moonshot ! 🚀🚀

Token Details:

Network:- ERC-20
supply:- 100 Million

Tax:

Buy:- 4% 
Sell:- 6%  


Join Our Community below! 👇

TG:https://t.me/Dracarysjoin
Twitter:-https://twitter.com/Dracaryseth
Website:-https://dracarys.finance/

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

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
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 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);
}
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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


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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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

    function createPair(address tokenA, address tokenB)
        external
        returns (address pair);
}
interface IUniswapV2Router02 {
    function factory() external pure returns (address);

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

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

    IUniswapV2Router02 public immutable uniswapV2Router;
    address public immutable uniswapV2Pair;
    address public constant deadAddress = address(0xdead);
    address public USDC = 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48;
    address public burnAddress = deadAddress;

    bool private swapping;

    address public devWallet;

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

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

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


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


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

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


    event ExcludeFromFees(address indexed account, bool isExcluded);

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

    constructor() ERC20("DRACARYS", "DRACARYS") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);

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

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


        uint256 _buyDevFee = 8;
        uint256 _buyLiquidityFee = 0;
        uint256  _buyBurnFee = 0;


        uint256 _sellDevFee = 12;
        uint256  _sellBurnFee = 0;

        uint256 _sellLiquidityFee = 0;

        uint256 totalSupply = 100_000_000 * 1e18;

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

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

        sellDevFee = _sellDevFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellBurnFee = _sellBurnFee;
        sellTotalFees = sellDevFee + sellLiquidityFee + buyBurnFee;

        devWallet = address(0xF548EA703C5d7E9276E64DC0C3AD0BF574209855); // Dev Wallet

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

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

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

    receive() external payable {}

    // once enabled, can never be turned off
    function enableTrading() external onlyOwner {
        tradingActive = true;
        swapEnabled = true;
    }

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

    function setDeadAddress(address addy) public onlyOwner{
            burnAddress = addy;
    }

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

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

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

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

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

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

    function updateSellFees(
        uint256 _devFee,
        uint256 _liquidityFee, uint256 _sellBurnFee
    ) external onlyOwner {
        sellDevFee = _devFee;
        sellLiquidityFee = _liquidityFee;
        sellBurnFee = _sellBurnFee;

        sellTotalFees = sellDevFee + sellLiquidityFee;
        require(sellTotalFees <= 10, "Must keep fees at 10% or less");
    }

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

    function updateDevWallet(address newDevWallet)
        external
        onlyOwner
    {
        emit devWalletUpdated(newDevWallet, devWallet);
        devWallet = newDevWallet;
    }


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

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

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

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

                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.
                //when buy
                if (
                    from == uniswapV2Pair &&
                    !_isExcludedMaxTransactionAmount[to]
                ) {
                    require(
                        amount <= maxTransactionAmount,
                        "Buy transfer amount exceeds the maxTransactionAmount."
                    );
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
                else if (!_isExcludedMaxTransactionAmount[to]) {
                    require(
                        amount + balanceOf(to) <= maxWallet,
                        "Max wallet exceeded"
                    );
                }
            }
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

            }
            // on buy
            else if (from == uniswapV2Pair && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
                tokensForLiquidity = (fees * buyLiquidityFee) / buyTotalFees; 
                tokensForDev = (fees * buyDevFee) / buyTotalFees;
                tokensForBurn = (fees * buyBurnFee) / buyTotalFees;

            }

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

            if(tokensForBurn > 0){
                super._transfer(address(this), burnAddress, tokensForBurn);
            }

            amount -= fees;
        }

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

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

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

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

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

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

        swapTokensForUSDC(contractBalance);
    }

}

Contract Security Audit

Contract ABI

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

60c0604052600680546001600160a01b031990811673a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48179091556007805490911661dead179055600c80546201000162ffffff199091161790553480156200005a57600080fd5b50604080518082018252600880825267445241434152595360c01b60208084018290528451808601909552918452908301529060036200009b838262000673565b506004620000aa828262000673565b505050620000c7620000c16200036b60201b60201c565b6200036f565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e9816001620003c1565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000134573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200015a91906200073f565b6006546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c65396906044016020604051808303816000875af1158015620001ac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d291906200073f565b6001600160a01b031660a0819052620001ed906001620003c1565b6008600080600c81806a52b7d2dcc80cd2e400000060646200021182600162000787565b6200021d9190620007a9565b60095560646200022f82600262000787565b6200023b9190620007a9565b600b556127106200024e82600562000787565b6200025a9190620007a9565b600a55600e879055600f869055601085905584620002798789620007cc565b620002859190620007cc565b600d55601284905560138290556014839055601054620002a68386620007cc565b620002b29190620007cc565b601155600880546001600160a01b03191673f548ea703c5d7e9276e64dc0c3ad0bf574209855179055620002fa620002f26005546001600160a01b031690565b60016200043b565b620003073060016200043b565b6200031661dead60016200043b565b620003356200032d6005546001600160a01b031690565b6001620003c1565b62000342306001620003c1565b6200035161dead6001620003c1565b6200035d3382620004e5565b5050505050505050620007e7565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004105760405162461bcd60e51b815260206004820181905260248201526000805160206200289c83398151915260448201526064015b60405180910390fd5b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314620004865760405162461bcd60e51b815260206004820181905260248201526000805160206200289c833981519152604482015260640162000407565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b0382166200053d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000407565b8060026000828254620005519190620007cc565b90915550506001600160a01b0382166000908152602081905260408120805483929062000580908490620007cc565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005fa57607f821691505b6020821081036200061b57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005ca57600081815260208120601f850160051c810160208610156200064a5750805b601f850160051c820191505b818110156200066b5782815560010162000656565b505050505050565b81516001600160401b038111156200068f576200068f620005cf565b620006a781620006a08454620005e5565b8462000621565b602080601f831160018114620006df5760008415620006c65750858301515b600019600386901b1c1916600185901b1785556200066b565b600085815260208120601f198616915b828110156200071057888601518255948401946001909101908401620006ef565b50858210156200072f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200075257600080fd5b81516001600160a01b03811681146200076a57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615620007a457620007a462000771565b500290565b600082620007c757634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007e257620007e262000771565b500190565b60805160a05161205e6200083e60003960008181610429015281816113f10152818161160201528181611713015281816117d901526118b001526000818161032a01528181611bb30152611bf2015261205e6000f3fe6080604052600436106102815760003560e01c80638a8c523c1161014f578063c17b5b8c116100c1578063e2f456051161007a578063e2f45605146107cf578063e71dc3f5146107e5578063f11a24d3146107fb578063f2fde38b14610811578063f637434214610831578063f8b45b051461084757600080fd5b8063c17b5b8c146106fd578063c18bc1951461071d578063c8c8ebe41461073d578063d257b34f14610753578063d85ba06314610773578063dd62ed3e1461078957600080fd5b80639c3b4fdc116101135780639c3b4fdc1461065c578063a0d82dc514610672578063a9059cbb14610688578063adb873bd146106a8578063bbc0c742146106be578063c0246668146106dd57600080fd5b80638a8c523c146105d45780638da5cb5b146105e95780638ea5220f14610607578063924de9b71461062757806395d89b411461064757600080fd5b80634a62bb65116101f3578063715018a6116101ac578063715018a61461052a578063751039fc1461053f5780637571336a1461055457806377975e0b146105745780638095d5641461059457806389a30271146105b457600080fd5b80634a62bb651461044b5780634fbee193146104655780636a486a8e1461049e5780636ddd1713146104b457806370a08231146104d457806370d5ae051461050a57600080fd5b80631816467f116102455780631816467f14610383578063203e727e146103a557806323b872dd146103c557806327c8f835146103e5578063313ce567146103fb57806349bd5a5e1461041757600080fd5b806306fdde031461028d578063095ea7b3146102b857806310d5de53146102e85780631694505e1461031857806318160ddd1461036457600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102a261085d565b6040516102af9190611c6a565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004611cd6565b6108ef565b60405190151581526020016102af565b3480156102f457600080fd5b506102d8610303366004611d00565b60166020526000908152604090205460ff1681565b34801561032457600080fd5b5061034c7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016102af565b34801561037057600080fd5b506002545b6040519081526020016102af565b34801561038f57600080fd5b506103a361039e366004611d00565b610905565b005b3480156103b157600080fd5b506103a36103c0366004611d1b565b610995565b3480156103d157600080fd5b506102d86103e0366004611d34565b610a72565b3480156103f157600080fd5b5061034c61dead81565b34801561040757600080fd5b50604051601281526020016102af565b34801561042357600080fd5b5061034c7f000000000000000000000000000000000000000000000000000000000000000081565b34801561045757600080fd5b50600c546102d89060ff1681565b34801561047157600080fd5b506102d8610480366004611d00565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104aa57600080fd5b5061037560115481565b3480156104c057600080fd5b50600c546102d89062010000900460ff1681565b3480156104e057600080fd5b506103756104ef366004611d00565b6001600160a01b031660009081526020819052604090205490565b34801561051657600080fd5b5060075461034c906001600160a01b031681565b34801561053657600080fd5b506103a3610b1c565b34801561054b57600080fd5b506102d8610b52565b34801561056057600080fd5b506103a361056f366004611d80565b610b8f565b34801561058057600080fd5b506103a361058f366004611d00565b610be4565b3480156105a057600080fd5b506103a36105af366004611db3565b610c30565b3480156105c057600080fd5b5060065461034c906001600160a01b031681565b3480156105e057600080fd5b506103a3610cd8565b3480156105f557600080fd5b506005546001600160a01b031661034c565b34801561061357600080fd5b5060085461034c906001600160a01b031681565b34801561063357600080fd5b506103a3610642366004611ddf565b610d15565b34801561065357600080fd5b506102a2610d5b565b34801561066857600080fd5b50610375600e5481565b34801561067e57600080fd5b5061037560125481565b34801561069457600080fd5b506102d86106a3366004611cd6565b610d6a565b3480156106b457600080fd5b5061037560145481565b3480156106ca57600080fd5b50600c546102d890610100900460ff1681565b3480156106e957600080fd5b506103a36106f8366004611d80565b610d77565b34801561070957600080fd5b506103a3610718366004611db3565b610e00565b34801561072957600080fd5b506103a3610738366004611d1b565b610e98565b34801561074957600080fd5b5061037560095481565b34801561075f57600080fd5b506102d861076e366004611d1b565b610f69565b34801561077f57600080fd5b50610375600d5481565b34801561079557600080fd5b506103756107a4366004611dfa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107db57600080fd5b50610375600a5481565b3480156107f157600080fd5b5061037560105481565b34801561080757600080fd5b50610375600f5481565b34801561081d57600080fd5b506103a361082c366004611d00565b6110c0565b34801561083d57600080fd5b5061037560135481565b34801561085357600080fd5b50610375600b5481565b60606003805461086c90611e24565b80601f016020809104026020016040519081016040528092919081815260200182805461089890611e24565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b60006108fc33848461115b565b50600192915050565b6005546001600160a01b031633146109385760405162461bcd60e51b815260040161092f90611e5e565b60405180910390fd5b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109bf5760405162461bcd60e51b815260040161092f90611e5e565b670de0b6b3a76400006103e86109d460025490565b6109df906001611ea9565b6109e99190611ec8565b6109f39190611ec8565b811015610a5a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161092f565b610a6c81670de0b6b3a7640000611ea9565b60095550565b6000610a7f84848461127f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161092f565b610b11853385840361115b565b506001949350505050565b6005546001600160a01b03163314610b465760405162461bcd60e51b815260040161092f90611e5e565b610b506000611917565b565b6005546000906001600160a01b03163314610b7f5760405162461bcd60e51b815260040161092f90611e5e565b50600c805460ff19169055600190565b6005546001600160a01b03163314610bb95760405162461bcd60e51b815260040161092f90611e5e565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c0e5760405162461bcd60e51b815260040161092f90611e5e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c5a5760405162461bcd60e51b815260040161092f90611e5e565b600e839055600f829055601081905580610c748385611eea565b610c7e9190611eea565b600d819055600a1015610cd35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161092f565b505050565b6005546001600160a01b03163314610d025760405162461bcd60e51b815260040161092f90611e5e565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161092f90611e5e565b600c8054911515620100000262ff000019909216919091179055565b60606004805461086c90611e24565b60006108fc33848461127f565b6005546001600160a01b03163314610da15760405162461bcd60e51b815260040161092f90611e5e565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e2a5760405162461bcd60e51b815260040161092f90611e5e565b601283905560138290556014819055610e438284611eea565b6011819055600a1015610cd35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161092f565b6005546001600160a01b03163314610ec25760405162461bcd60e51b815260040161092f90611e5e565b670de0b6b3a76400006103e8610ed760025490565b610ee2906005611ea9565b610eec9190611ec8565b610ef69190611ec8565b811015610f515760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161092f565b610f6381670de0b6b3a7640000611ea9565b600b5550565b6005546000906001600160a01b03163314610f965760405162461bcd60e51b815260040161092f90611e5e565b620186a0610fa360025490565b610fae906001611ea9565b610fb89190611ec8565b8210156110255760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161092f565b6103e861103160025490565b61103c906005611ea9565b6110469190611ec8565b8211156110b25760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161092f565b50600a81905560015b919050565b6005546001600160a01b031633146110ea5760405162461bcd60e51b815260040161092f90611e5e565b6001600160a01b03811661114f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092f565b61115881611917565b50565b6001600160a01b0383166111bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161092f565b6001600160a01b03821661121e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161092f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112a55760405162461bcd60e51b815260040161092f90611f02565b6001600160a01b0382166112cb5760405162461bcd60e51b815260040161092f90611f47565b806000036112df57610cd383836000611969565b600c5460ff16156115b7576005546001600160a01b0384811691161480159061131657506005546001600160a01b03838116911614155b801561132a57506001600160a01b03821615155b801561134157506001600160a01b03821661dead14155b80156113575750600754600160a01b900460ff16155b156115b757600c54610100900460ff166113ef576001600160a01b03831660009081526015602052604090205460ff16806113aa57506001600160a01b03821660009081526015602052604090205460ff165b6113ef5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161092f565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316836001600160a01b031614801561144957506001600160a01b03821660009081526016602052604090205460ff16155b1561152d576009548111156114be5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161092f565b600b546001600160a01b0383166000908152602081905260409020546114e49083611eea565b11156115285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b6115b7565b6001600160a01b03821660009081526016602052604090205460ff166115b757600b546001600160a01b0383166000908152602081905260409020546115739083611eea565b11156115b75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b30600090815260208190526040902054600a54811080159081906115e35750600c5462010000900460ff165b80156115f95750600754600160a01b900460ff16155b801561163657507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846001600160a01b0316145b801561165b57506001600160a01b03851660009081526015602052604090205460ff16155b801561168057506001600160a01b03841660009081526015602052604090205460ff16155b156116ae576007805460ff60a01b1916600160a01b1790556116a0611abe565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526015602052604090205460ff600160a01b9092048216159116806116fc57506001600160a01b03851660009081526015602052604090205460ff165b15611705575060005b6000806000808415611900577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316896001600160a01b031614801561175457506000601154115b156117d75761177960646117736011548b611b0890919063ffffffff16565b90611b1b565b93506011546013548561178c9190611ea9565b6117969190611ec8565b9250601154601254856117a99190611ea9565b6117b39190611ec8565b9150601154601454856117c69190611ea9565b6117d09190611ec8565b9050611893565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168a6001600160a01b031614801561181a57506000600d54115b15611893576118396064611773600d548b611b0890919063ffffffff16565b9350600d54600f548561184c9190611ea9565b6118569190611ec8565b9250600d54600e54856118699190611ea9565b6118739190611ec8565b9150600d54601054856118869190611ea9565b6118909190611ec8565b90505b83156118a4576118a48a3086611969565b82156118d5576118d5307f000000000000000000000000000000000000000000000000000000000000000085611969565b80156118f3576007546118f39030906001600160a01b031683611969565b6118fd8489611f8a565b97505b61190b8a8a8a611969565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661198f5760405162461bcd60e51b815260040161092f90611f02565b6001600160a01b0382166119b55760405162461bcd60e51b815260040161092f90611f47565b6001600160a01b03831660009081526020819052604090205481811015611a2d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161092f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a64908490611eea565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab091815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611ad95750565b600a54611ae7906014611ea9565b811115611aff57600a54611afc906014611ea9565b90505b61115881611b27565b6000611b148284611ea9565b9392505050565b6000611b148284611ec8565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b5c57611b5c611fa1565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611b8d57611b8d611fa1565b60200260200101906001600160a01b031690816001600160a01b031681525050611bd8307f00000000000000000000000000000000000000000000000000000000000000008461115b565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000811692635c11d79592611c34928792600092889291909116904290600401611fb7565b600060405180830381600087803b158015611c4e57600080fd5b505af1158015611c62573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611c9757858101830151858201604001528201611c7b565b81811115611ca9576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146110bb57600080fd5b60008060408385031215611ce957600080fd5b611cf283611cbf565b946020939093013593505050565b600060208284031215611d1257600080fd5b611b1482611cbf565b600060208284031215611d2d57600080fd5b5035919050565b600080600060608486031215611d4957600080fd5b611d5284611cbf565b9250611d6060208501611cbf565b9150604084013590509250925092565b803580151581146110bb57600080fd5b60008060408385031215611d9357600080fd5b611d9c83611cbf565b9150611daa60208401611d70565b90509250929050565b600080600060608486031215611dc857600080fd5b505081359360208301359350604090920135919050565b600060208284031215611df157600080fd5b611b1482611d70565b60008060408385031215611e0d57600080fd5b611e1683611cbf565b9150611daa60208401611cbf565b600181811c90821680611e3857607f821691505b602082108103611e5857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ec357611ec3611e93565b500290565b600082611ee557634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611efd57611efd611e93565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611f9c57611f9c611e93565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120075784516001600160a01b031683529383019391830191600101611fe2565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f4b096ee1104a1738cd1bb814bef2bf9adbc10124131e4eb7db9c3ec8cdec48e64736f6c634300080f00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572

Deployed Bytecode

0x6080604052600436106102815760003560e01c80638a8c523c1161014f578063c17b5b8c116100c1578063e2f456051161007a578063e2f45605146107cf578063e71dc3f5146107e5578063f11a24d3146107fb578063f2fde38b14610811578063f637434214610831578063f8b45b051461084757600080fd5b8063c17b5b8c146106fd578063c18bc1951461071d578063c8c8ebe41461073d578063d257b34f14610753578063d85ba06314610773578063dd62ed3e1461078957600080fd5b80639c3b4fdc116101135780639c3b4fdc1461065c578063a0d82dc514610672578063a9059cbb14610688578063adb873bd146106a8578063bbc0c742146106be578063c0246668146106dd57600080fd5b80638a8c523c146105d45780638da5cb5b146105e95780638ea5220f14610607578063924de9b71461062757806395d89b411461064757600080fd5b80634a62bb65116101f3578063715018a6116101ac578063715018a61461052a578063751039fc1461053f5780637571336a1461055457806377975e0b146105745780638095d5641461059457806389a30271146105b457600080fd5b80634a62bb651461044b5780634fbee193146104655780636a486a8e1461049e5780636ddd1713146104b457806370a08231146104d457806370d5ae051461050a57600080fd5b80631816467f116102455780631816467f14610383578063203e727e146103a557806323b872dd146103c557806327c8f835146103e5578063313ce567146103fb57806349bd5a5e1461041757600080fd5b806306fdde031461028d578063095ea7b3146102b857806310d5de53146102e85780631694505e1461031857806318160ddd1461036457600080fd5b3661028857005b600080fd5b34801561029957600080fd5b506102a261085d565b6040516102af9190611c6a565b60405180910390f35b3480156102c457600080fd5b506102d86102d3366004611cd6565b6108ef565b60405190151581526020016102af565b3480156102f457600080fd5b506102d8610303366004611d00565b60166020526000908152604090205460ff1681565b34801561032457600080fd5b5061034c7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016102af565b34801561037057600080fd5b506002545b6040519081526020016102af565b34801561038f57600080fd5b506103a361039e366004611d00565b610905565b005b3480156103b157600080fd5b506103a36103c0366004611d1b565b610995565b3480156103d157600080fd5b506102d86103e0366004611d34565b610a72565b3480156103f157600080fd5b5061034c61dead81565b34801561040757600080fd5b50604051601281526020016102af565b34801561042357600080fd5b5061034c7f00000000000000000000000086c73cfc2673231b5326d9e38f018d9c0cffc63981565b34801561045757600080fd5b50600c546102d89060ff1681565b34801561047157600080fd5b506102d8610480366004611d00565b6001600160a01b031660009081526015602052604090205460ff1690565b3480156104aa57600080fd5b5061037560115481565b3480156104c057600080fd5b50600c546102d89062010000900460ff1681565b3480156104e057600080fd5b506103756104ef366004611d00565b6001600160a01b031660009081526020819052604090205490565b34801561051657600080fd5b5060075461034c906001600160a01b031681565b34801561053657600080fd5b506103a3610b1c565b34801561054b57600080fd5b506102d8610b52565b34801561056057600080fd5b506103a361056f366004611d80565b610b8f565b34801561058057600080fd5b506103a361058f366004611d00565b610be4565b3480156105a057600080fd5b506103a36105af366004611db3565b610c30565b3480156105c057600080fd5b5060065461034c906001600160a01b031681565b3480156105e057600080fd5b506103a3610cd8565b3480156105f557600080fd5b506005546001600160a01b031661034c565b34801561061357600080fd5b5060085461034c906001600160a01b031681565b34801561063357600080fd5b506103a3610642366004611ddf565b610d15565b34801561065357600080fd5b506102a2610d5b565b34801561066857600080fd5b50610375600e5481565b34801561067e57600080fd5b5061037560125481565b34801561069457600080fd5b506102d86106a3366004611cd6565b610d6a565b3480156106b457600080fd5b5061037560145481565b3480156106ca57600080fd5b50600c546102d890610100900460ff1681565b3480156106e957600080fd5b506103a36106f8366004611d80565b610d77565b34801561070957600080fd5b506103a3610718366004611db3565b610e00565b34801561072957600080fd5b506103a3610738366004611d1b565b610e98565b34801561074957600080fd5b5061037560095481565b34801561075f57600080fd5b506102d861076e366004611d1b565b610f69565b34801561077f57600080fd5b50610375600d5481565b34801561079557600080fd5b506103756107a4366004611dfa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156107db57600080fd5b50610375600a5481565b3480156107f157600080fd5b5061037560105481565b34801561080757600080fd5b50610375600f5481565b34801561081d57600080fd5b506103a361082c366004611d00565b6110c0565b34801561083d57600080fd5b5061037560135481565b34801561085357600080fd5b50610375600b5481565b60606003805461086c90611e24565b80601f016020809104026020016040519081016040528092919081815260200182805461089890611e24565b80156108e55780601f106108ba576101008083540402835291602001916108e5565b820191906000526020600020905b8154815290600101906020018083116108c857829003601f168201915b5050505050905090565b60006108fc33848461115b565b50600192915050565b6005546001600160a01b031633146109385760405162461bcd60e51b815260040161092f90611e5e565b60405180910390fd5b6008546040516001600160a01b03918216918316907f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74390600090a3600880546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b031633146109bf5760405162461bcd60e51b815260040161092f90611e5e565b670de0b6b3a76400006103e86109d460025490565b6109df906001611ea9565b6109e99190611ec8565b6109f39190611ec8565b811015610a5a5760405162461bcd60e51b815260206004820152602f60248201527f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060448201526e6c6f776572207468616e20302e312560881b606482015260840161092f565b610a6c81670de0b6b3a7640000611ea9565b60095550565b6000610a7f84848461127f565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610b045760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b606482015260840161092f565b610b11853385840361115b565b506001949350505050565b6005546001600160a01b03163314610b465760405162461bcd60e51b815260040161092f90611e5e565b610b506000611917565b565b6005546000906001600160a01b03163314610b7f5760405162461bcd60e51b815260040161092f90611e5e565b50600c805460ff19169055600190565b6005546001600160a01b03163314610bb95760405162461bcd60e51b815260040161092f90611e5e565b6001600160a01b03919091166000908152601660205260409020805460ff1916911515919091179055565b6005546001600160a01b03163314610c0e5760405162461bcd60e51b815260040161092f90611e5e565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6005546001600160a01b03163314610c5a5760405162461bcd60e51b815260040161092f90611e5e565b600e839055600f829055601081905580610c748385611eea565b610c7e9190611eea565b600d819055600a1015610cd35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161092f565b505050565b6005546001600160a01b03163314610d025760405162461bcd60e51b815260040161092f90611e5e565b600c805462ffff00191662010100179055565b6005546001600160a01b03163314610d3f5760405162461bcd60e51b815260040161092f90611e5e565b600c8054911515620100000262ff000019909216919091179055565b60606004805461086c90611e24565b60006108fc33848461127f565b6005546001600160a01b03163314610da15760405162461bcd60e51b815260040161092f90611e5e565b6001600160a01b038216600081815260156020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6005546001600160a01b03163314610e2a5760405162461bcd60e51b815260040161092f90611e5e565b601283905560138290556014819055610e438284611eea565b6011819055600a1015610cd35760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206665657320617420313025206f72206c657373000000604482015260640161092f565b6005546001600160a01b03163314610ec25760405162461bcd60e51b815260040161092f90611e5e565b670de0b6b3a76400006103e8610ed760025490565b610ee2906005611ea9565b610eec9190611ec8565b610ef69190611ec8565b811015610f515760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b606482015260840161092f565b610f6381670de0b6b3a7640000611ea9565b600b5550565b6005546000906001600160a01b03163314610f965760405162461bcd60e51b815260040161092f90611e5e565b620186a0610fa360025490565b610fae906001611ea9565b610fb89190611ec8565b8210156110255760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b606482015260840161092f565b6103e861103160025490565b61103c906005611ea9565b6110469190611ec8565b8211156110b25760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b606482015260840161092f565b50600a81905560015b919050565b6005546001600160a01b031633146110ea5760405162461bcd60e51b815260040161092f90611e5e565b6001600160a01b03811661114f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161092f565b61115881611917565b50565b6001600160a01b0383166111bd5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161092f565b6001600160a01b03821661121e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161092f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166112a55760405162461bcd60e51b815260040161092f90611f02565b6001600160a01b0382166112cb5760405162461bcd60e51b815260040161092f90611f47565b806000036112df57610cd383836000611969565b600c5460ff16156115b7576005546001600160a01b0384811691161480159061131657506005546001600160a01b03838116911614155b801561132a57506001600160a01b03821615155b801561134157506001600160a01b03821661dead14155b80156113575750600754600160a01b900460ff16155b156115b757600c54610100900460ff166113ef576001600160a01b03831660009081526015602052604090205460ff16806113aa57506001600160a01b03821660009081526015602052604090205460ff165b6113ef5760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b604482015260640161092f565b7f00000000000000000000000086c73cfc2673231b5326d9e38f018d9c0cffc6396001600160a01b0316836001600160a01b031614801561144957506001600160a01b03821660009081526016602052604090205460ff16155b1561152d576009548111156114be5760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b606482015260840161092f565b600b546001600160a01b0383166000908152602081905260409020546114e49083611eea565b11156115285760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b6115b7565b6001600160a01b03821660009081526016602052604090205460ff166115b757600b546001600160a01b0383166000908152602081905260409020546115739083611eea565b11156115b75760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b604482015260640161092f565b30600090815260208190526040902054600a54811080159081906115e35750600c5462010000900460ff165b80156115f95750600754600160a01b900460ff16155b801561163657507f00000000000000000000000086c73cfc2673231b5326d9e38f018d9c0cffc6396001600160a01b0316846001600160a01b0316145b801561165b57506001600160a01b03851660009081526015602052604090205460ff16155b801561168057506001600160a01b03841660009081526015602052604090205460ff16155b156116ae576007805460ff60a01b1916600160a01b1790556116a0611abe565b6007805460ff60a01b191690555b6007546001600160a01b03861660009081526015602052604090205460ff600160a01b9092048216159116806116fc57506001600160a01b03851660009081526015602052604090205460ff165b15611705575060005b6000806000808415611900577f00000000000000000000000086c73cfc2673231b5326d9e38f018d9c0cffc6396001600160a01b0316896001600160a01b031614801561175457506000601154115b156117d75761177960646117736011548b611b0890919063ffffffff16565b90611b1b565b93506011546013548561178c9190611ea9565b6117969190611ec8565b9250601154601254856117a99190611ea9565b6117b39190611ec8565b9150601154601454856117c69190611ea9565b6117d09190611ec8565b9050611893565b7f00000000000000000000000086c73cfc2673231b5326d9e38f018d9c0cffc6396001600160a01b03168a6001600160a01b031614801561181a57506000600d54115b15611893576118396064611773600d548b611b0890919063ffffffff16565b9350600d54600f548561184c9190611ea9565b6118569190611ec8565b9250600d54600e54856118699190611ea9565b6118739190611ec8565b9150600d54601054856118869190611ea9565b6118909190611ec8565b90505b83156118a4576118a48a3086611969565b82156118d5576118d5307f00000000000000000000000086c73cfc2673231b5326d9e38f018d9c0cffc63985611969565b80156118f3576007546118f39030906001600160a01b031683611969565b6118fd8489611f8a565b97505b61190b8a8a8a611969565b50505050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03831661198f5760405162461bcd60e51b815260040161092f90611f02565b6001600160a01b0382166119b55760405162461bcd60e51b815260040161092f90611f47565b6001600160a01b03831660009081526020819052604090205481811015611a2d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161092f565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611a64908490611eea565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ab091815260200190565b60405180910390a350505050565b3060009081526020819052604081205490819003611ad95750565b600a54611ae7906014611ea9565b811115611aff57600a54611afc906014611ea9565b90505b61115881611b27565b6000611b148284611ea9565b9392505050565b6000611b148284611ec8565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611b5c57611b5c611fa1565b6001600160a01b039283166020918202929092010152600654825191169082906001908110611b8d57611b8d611fa1565b60200260200101906001600160a01b031690816001600160a01b031681525050611bd8307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461115b565b600854604051635c11d79560e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d811692635c11d79592611c34928792600092889291909116904290600401611fb7565b600060405180830381600087803b158015611c4e57600080fd5b505af1158015611c62573d6000803e3d6000fd5b505050505050565b600060208083528351808285015260005b81811015611c9757858101830151858201604001528201611c7b565b81811115611ca9576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b03811681146110bb57600080fd5b60008060408385031215611ce957600080fd5b611cf283611cbf565b946020939093013593505050565b600060208284031215611d1257600080fd5b611b1482611cbf565b600060208284031215611d2d57600080fd5b5035919050565b600080600060608486031215611d4957600080fd5b611d5284611cbf565b9250611d6060208501611cbf565b9150604084013590509250925092565b803580151581146110bb57600080fd5b60008060408385031215611d9357600080fd5b611d9c83611cbf565b9150611daa60208401611d70565b90509250929050565b600080600060608486031215611dc857600080fd5b505081359360208301359350604090920135919050565b600060208284031215611df157600080fd5b611b1482611d70565b60008060408385031215611e0d57600080fd5b611e1683611cbf565b9150611daa60208401611cbf565b600181811c90821680611e3857607f821691505b602082108103611e5857634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611ec357611ec3611e93565b500290565b600082611ee557634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115611efd57611efd611e93565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b600082821015611f9c57611f9c611e93565b500390565b634e487b7160e01b600052603260045260246000fd5b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156120075784516001600160a01b031683529383019391830191600101611fe2565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220f4b096ee1104a1738cd1bb814bef2bf9adbc10124131e4eb7db9c3ec8cdec48e64736f6c634300080f0033

Deployed Bytecode Sourcemap

21338:11559:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6724:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8891:169;;;;;;;;;;-1:-1:-1;8891:169:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;8891:169:0;1053:187:1;22416:63:0;;;;;;;;;;-1:-1:-1;22416:63:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;21416:51;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;1626:32:1;;;1608:51;;1596:2;1581:18;21416:51:0;1436:229:1;7844:108:0;;;;;;;;;;-1:-1:-1;7932:12:0;;7844:108;;;1816:25:1;;;1804:2;1789:18;7844:108:0;1670:177:1;27642:189:0;;;;;;;;;;-1:-1:-1;27642:189:0;;;;;:::i;:::-;;:::i;:::-;;25767:275;;;;;;;;;;-1:-1:-1;25767:275:0;;;;;:::i;:::-;;:::i;9542:492::-;;;;;;;;;;-1:-1:-1;9542:492:0;;;;;:::i;:::-;;:::i;21519:53::-;;;;;;;;;;;;21565:6;21519:53;;7686:93;;;;;;;;;;-1:-1:-1;7686:93:0;;7769:2;2720:36:1;;2708:2;2693:18;7686:93:0;2578:184:1;21474:38:0;;;;;;;;;;;;;;;21877:33;;;;;;;;;;-1:-1:-1;21877:33:0;;;;;;;;27841:126;;;;;;;;;;-1:-1:-1;27841:126:0;;;;;:::i;:::-;-1:-1:-1;;;;;27931:28:0;27907:4;27931:28;;;:19;:28;;;;;;;;;27841:126;22134:28;;;;;;;;;;;;;;;;21957:30;;;;;;;;;;-1:-1:-1;21957:30:0;;;;;;;;;;;8015:127;;;;;;;;;;-1:-1:-1;8015:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;8116:18:0;8089:7;8116:18;;;;;;;;;;;;8015:127;21650:40;;;;;;;;;;-1:-1:-1;21650:40:0;;;;-1:-1:-1;;;;;21650:40:0;;;2036:103;;;;;;;;;;;;;:::i;24968:121::-;;;;;;;;;;;;;:::i;26314:167::-;;;;;;;;;;-1:-1:-1;26314:167:0;;;;;:::i;:::-;;:::i;25097:95::-;;;;;;;;;;-1:-1:-1;25097:95:0;;;;;:::i;:::-;;:::i;26685:372::-;;;;;;;;;;-1:-1:-1;26685:372:0;;;;;:::i;:::-;;:::i;21579:64::-;;;;;;;;;;-1:-1:-1;21579:64:0;;;;-1:-1:-1;;;;;21579:64:0;;;24804:112;;;;;;;;;;;;;:::i;1385:87::-;;;;;;;;;;-1:-1:-1;1458:6:0;;-1:-1:-1;;;;;1458:6:0;1385:87;;21729:24;;;;;;;;;;-1:-1:-1;21729:24:0;;;;-1:-1:-1;;;;;21729:24:0;;;26577:100;;;;;;;;;;-1:-1:-1;26577:100:0;;;;;:::i;:::-;;:::i;6943:104::-;;;;;;;;;;;;;:::i;22030:24::-;;;;;;;;;;;;;;;;22169:25;;;;;;;;;;;;;;;;8355:175;;;;;;;;;;-1:-1:-1;8355:175:0;;;;;:::i;:::-;;:::i;22239:26::-;;;;;;;;;;;;;;;;21917:33;;;;;;;;;;-1:-1:-1;21917:33:0;;;;;;;;;;;27452:182;;;;;;;;;;-1:-1:-1;27452:182:0;;;;;:::i;:::-;;:::i;27065:379::-;;;;;;;;;;-1:-1:-1;27065:379:0;;;;;:::i;:::-;;:::i;26050:256::-;;;;;;;;;;-1:-1:-1;26050:256:0;;;;;:::i;:::-;;:::i;21762:35::-;;;;;;;;;;;;;;;;25262:497;;;;;;;;;;-1:-1:-1;25262:497:0;;;;;:::i;:::-;;:::i;21996:27::-;;;;;;;;;;;;;;;;8593:151;;;;;;;;;;-1:-1:-1;8593:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;8709:18:0;;;8682:7;8709:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8593:151;21804:33;;;;;;;;;;;;;;;;22098:25;;;;;;;;;;;;;;;;22061:30;;;;;;;;;;;;;;;;2294:201;;;;;;;;;;-1:-1:-1;2294:201:0;;;;;:::i;:::-;;:::i;22201:31::-;;;;;;;;;;;;;;;;21844:24;;;;;;;;;;;;;;;;6724:100;6778:13;6811:5;6804:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6724:100;:::o;8891:169::-;8974:4;8991:39;841:10;9014:7;9023:6;8991:8;:39::i;:::-;-1:-1:-1;9048:4:0;8891:169;;;;:::o;27642:189::-;1458:6;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;;;;;;;;;27778:9:::1;::::0;27747:41:::1;::::0;-1:-1:-1;;;;;27778:9:0;;::::1;::::0;27747:41;::::1;::::0;::::1;::::0;27778:9:::1;::::0;27747:41:::1;27799:9;:24:::0;;-1:-1:-1;;;;;;27799:24:0::1;-1:-1:-1::0;;;;;27799:24:0;;;::::1;::::0;;;::::1;::::0;;27642:189::o;25767:275::-;1458:6;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;25904:4:::1;25896;25875:13;7932:12:::0;;;7844:108;25875:13:::1;:17;::::0;25891:1:::1;25875:17;:::i;:::-;25874:26;;;;:::i;:::-;25873:35;;;;:::i;:::-;25863:6;:45;;25841:142;;;::::0;-1:-1:-1;;;25841:142:0;;5437:2:1;25841:142:0::1;::::0;::::1;5419:21:1::0;5476:2;5456:18;;;5449:30;5515:34;5495:18;;;5488:62;-1:-1:-1;;;5566:18:1;;;5559:45;5621:19;;25841:142:0::1;5235:411:1::0;25841:142:0::1;26017:17;:6:::0;26027::::1;26017:17;:::i;:::-;25994:20;:40:::0;-1:-1:-1;25767:275:0:o;9542:492::-;9682:4;9699:36;9709:6;9717:9;9728:6;9699:9;:36::i;:::-;-1:-1:-1;;;;;9775:19:0;;9748:24;9775:19;;;:11;:19;;;;;;;;841:10;9775:33;;;;;;;;9827:26;;;;9819:79;;;;-1:-1:-1;;;9819:79:0;;5853:2:1;9819:79:0;;;5835:21:1;5892:2;5872:18;;;5865:30;5931:34;5911:18;;;5904:62;-1:-1:-1;;;5982:18:1;;;5975:38;6030:19;;9819:79:0;5651:404:1;9819:79:0;9934:57;9943:6;841:10;9984:6;9965:16;:25;9934:8;:57::i;:::-;-1:-1:-1;10022:4:0;;9542:492;-1:-1:-1;;;;9542:492:0:o;2036:103::-;1458:6;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;2101:30:::1;2128:1;2101:18;:30::i;:::-;2036:103::o:0;24968:121::-;1458:6;;25020:4;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;-1:-1:-1;25037:14:0::1;:22:::0;;-1:-1:-1;;25037:22:0::1;::::0;;;24968:121;:::o;26314:167::-;1458:6;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26427:39:0;;;::::1;;::::0;;;:31:::1;:39;::::0;;;;:46;;-1:-1:-1;;26427:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;26314:167::o;25097:95::-;1458:6;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;25166:11:::1;:18:::0;;-1:-1:-1;;;;;;25166:18:0::1;-1:-1:-1::0;;;;;25166:18:0;;;::::1;::::0;;;::::1;::::0;;25097:95::o;26685:372::-;1458:6;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;26821:9:::1;:19:::0;;;26851:15:::1;:31:::0;;;26893:10:::1;:21:::0;;;26906:8;26940:27:::1;26869:13:::0;26833:7;26940:27:::1;:::i;:::-;:38;;;;:::i;:::-;26925:12;:53:::0;;;27013:2:::1;-1:-1:-1::0;26997:18:0::1;26989:60;;;::::0;-1:-1:-1;;;26989:60:0;;6395:2:1;26989:60:0::1;::::0;::::1;6377:21:1::0;6434:2;6414:18;;;6407:30;6473:31;6453:18;;;6446:59;6522:18;;26989:60:0::1;6193:353:1::0;26989:60:0::1;26685:372:::0;;;:::o;24804:112::-;1458:6;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;24859:13:::1;:20:::0;;-1:-1:-1;;24890:18:0;;;;;24804:112::o;26577:100::-;1458:6;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;26648:11:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;26648:21:0;;::::1;::::0;;;::::1;::::0;;26577:100::o;6943:104::-;6999:13;7032:7;7025:14;;;;;:::i;8355:175::-;8441:4;8458:42;841:10;8482:9;8493:6;8458:9;:42::i;27452:182::-;1458:6;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27537:28:0;::::1;;::::0;;;:19:::1;:28;::::0;;;;;;;;:39;;-1:-1:-1;;27537:39:0::1;::::0;::::1;;::::0;;::::1;::::0;;;27592:34;;1193:41:1;;;27592:34:0::1;::::0;1166:18:1;27592:34:0::1;;;;;;;27452:182:::0;;:::o;27065:379::-;1458:6;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;27206:10:::1;:20:::0;;;27237:16:::1;:32:::0;;;27280:11:::1;:26:::0;;;27335:29:::1;27256:13:::0;27219:7;27335:29:::1;:::i;:::-;27319:13;:45:::0;;;27400:2:::1;-1:-1:-1::0;27383:19:0::1;27375:61;;;::::0;-1:-1:-1;;;27375:61:0;;6395:2:1;27375:61:0::1;::::0;::::1;6377:21:1::0;6434:2;6414:18;;;6407:30;6473:31;6453:18;;;6446:59;6522:18;;27375:61:0::1;6193:353:1::0;26050:256:0;1458:6;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;26190:4:::1;26182;26161:13;7932:12:::0;;;7844:108;26161:13:::1;:17;::::0;26177:1:::1;26161:17;:::i;:::-;26160:26;;;;:::i;:::-;26159:35;;;;:::i;:::-;26149:6;:45;;26127:131;;;::::0;-1:-1:-1;;;26127:131:0;;6753:2:1;26127:131:0::1;::::0;::::1;6735:21:1::0;6792:2;6772:18;;;6765:30;6831:34;6811:18;;;6804:62;-1:-1:-1;;;6882:18:1;;;6875:34;6926:19;;26127:131:0::1;6551:400:1::0;26127:131:0::1;26281:17;:6:::0;26291::::1;26281:17;:::i;:::-;26269:9;:29:::0;-1:-1:-1;26050:256:0:o;25262:497::-;1458:6;;25370:4;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;25449:6:::1;25428:13;7932:12:::0;;;7844:108;25428:13:::1;:17;::::0;25444:1:::1;25428:17;:::i;:::-;25427:28;;;;:::i;:::-;25414:9;:41;;25392:144;;;::::0;-1:-1:-1;;;25392:144:0;;7158:2:1;25392:144:0::1;::::0;::::1;7140:21:1::0;7197:2;7177:18;;;7170:30;7236:34;7216:18;;;7209:62;-1:-1:-1;;;7287:18:1;;;7280:51;7348:19;;25392:144:0::1;6956:417:1::0;25392:144:0::1;25604:4;25583:13;7932:12:::0;;;7844:108;25583:13:::1;:17;::::0;25599:1:::1;25583:17;:::i;:::-;25582:26;;;;:::i;:::-;25569:9;:39;;25547:141;;;::::0;-1:-1:-1;;;25547:141:0;;7580:2:1;25547:141:0::1;::::0;::::1;7562:21:1::0;7619:2;7599:18;;;7592:30;7658:34;7638:18;;;7631:62;-1:-1:-1;;;7709:18:1;;;7702:50;7769:19;;25547:141:0::1;7378:416:1::0;25547:141:0::1;-1:-1:-1::0;25699:18:0::1;:30:::0;;;25747:4:::1;1676:1;25262:497:::0;;;:::o;2294:201::-;1458:6;;-1:-1:-1;;;;;1458:6:0;841:10;1605:23;1597:68;;;;-1:-1:-1;;;1597:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2383:22:0;::::1;2375:73;;;::::0;-1:-1:-1;;;2375:73:0;;8001:2:1;2375:73:0::1;::::0;::::1;7983:21:1::0;8040:2;8020:18;;;8013:30;8079:34;8059:18;;;8052:62;-1:-1:-1;;;8130:18:1;;;8123:36;8176:19;;2375:73:0::1;7799:402:1::0;2375:73:0::1;2459:28;2478:8;2459:18;:28::i;:::-;2294:201:::0;:::o;12383:380::-;-1:-1:-1;;;;;12519:19:0;;12511:68;;;;-1:-1:-1;;;12511:68:0;;8408:2:1;12511:68:0;;;8390:21:1;8447:2;8427:18;;;8420:30;8486:34;8466:18;;;8459:62;-1:-1:-1;;;8537:18:1;;;8530:34;8581:19;;12511:68:0;8206:400:1;12511:68:0;-1:-1:-1;;;;;12598:21:0;;12590:68;;;;-1:-1:-1;;;12590:68:0;;8813:2:1;12590:68:0;;;8795:21:1;8852:2;8832:18;;;8825:30;8891:34;8871:18;;;8864:62;-1:-1:-1;;;8942:18:1;;;8935:32;8984:19;;12590:68:0;8611:398:1;12590:68:0;-1:-1:-1;;;;;12671:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12723:32;;1816:25:1;;;12723:32:0;;1789:18:1;12723:32:0;;;;;;;12383:380;;;:::o;27975:3989::-;-1:-1:-1;;;;;28107:18:0;;28099:68;;;;-1:-1:-1;;;28099:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28186:16:0;;28178:64;;;;-1:-1:-1;;;28178:64:0;;;;;;;:::i;:::-;28259:6;28269:1;28259:11;28255:93;;28287:28;28303:4;28309:2;28313:1;28287:15;:28::i;28255:93::-;28364:14;;;;28360:1430;;;1458:6;;-1:-1:-1;;;;;28417:15:0;;;1458:6;;28417:15;;;;:49;;-1:-1:-1;1458:6:0;;-1:-1:-1;;;;;28453:13:0;;;1458:6;;28453:13;;28417:49;:86;;;;-1:-1:-1;;;;;;28487:16:0;;;;28417:86;:128;;;;-1:-1:-1;;;;;;28524:21:0;;28538:6;28524:21;;28417:128;:158;;;;-1:-1:-1;28567:8:0;;-1:-1:-1;;;28567:8:0;;;;28566:9;28417:158;28395:1384;;;28615:13;;;;;;;28610:223;;-1:-1:-1;;;;;28687:25:0;;;;;;:19;:25;;;;;;;;;:52;;-1:-1:-1;;;;;;28716:23:0;;;;;;:19;:23;;;;;;;;28687:52;28653:160;;;;-1:-1:-1;;;28653:160:0;;10026:2:1;28653:160:0;;;10008:21:1;10065:2;10045:18;;;10038:30;-1:-1:-1;;;10084:18:1;;;10077:52;10146:18;;28653:160:0;9824:346:1;28653:160:0;29047:13;-1:-1:-1;;;;;29039:21:0;:4;-1:-1:-1;;;;;29039:21:0;;:82;;;;-1:-1:-1;;;;;;29086:35:0;;;;;;:31;:35;;;;;;;;29085:36;29039:82;29013:751;;;29208:20;;29198:6;:30;;29164:169;;;;-1:-1:-1;;;29164:169:0;;10377:2:1;29164:169:0;;;10359:21:1;10416:2;10396:18;;;10389:30;10455:34;10435:18;;;10428:62;-1:-1:-1;;;10506:18:1;;;10499:51;10567:19;;29164:169:0;10175:417:1;29164:169:0;29416:9;;-1:-1:-1;;;;;8116:18:0;;8089:7;8116:18;;;;;;;;;;;29390:22;;:6;:22;:::i;:::-;:35;;29356:140;;;;-1:-1:-1;;;29356:140:0;;10799:2:1;29356:140:0;;;10781:21:1;10838:2;10818:18;;;10811:30;-1:-1:-1;;;10857:18:1;;;10850:49;10916:18;;29356:140:0;10597:343:1;29356:140:0;29013:751;;;-1:-1:-1;;;;;29544:35:0;;;;;;:31;:35;;;;;;;;29539:225;;29664:9;;-1:-1:-1;;;;;8116:18:0;;8089:7;8116:18;;;;;;;;;;;29638:22;;:6;:22;:::i;:::-;:35;;29604:140;;;;-1:-1:-1;;;29604:140:0;;10799:2:1;29604:140:0;;;10781:21:1;10838:2;10818:18;;;10811:30;-1:-1:-1;;;10857:18:1;;;10850:49;10916:18;;29604:140:0;10597:343:1;29604:140:0;29851:4;29802:28;8116:18;;;;;;;;;;;29909;;29885:42;;;;;;;29958:35;;-1:-1:-1;29982:11:0;;;;;;;29958:35;:61;;;;-1:-1:-1;30011:8:0;;-1:-1:-1;;;30011:8:0;;;;30010:9;29958:61;:97;;;;;30042:13;-1:-1:-1;;;;;30036:19:0;:2;-1:-1:-1;;;;;30036:19:0;;29958:97;:140;;;;-1:-1:-1;;;;;;30073:25:0;;;;;;:19;:25;;;;;;;;30072:26;29958:140;:181;;;;-1:-1:-1;;;;;;30116:23:0;;;;;;:19;:23;;;;;;;;30115:24;29958:181;29940:313;;;30166:8;:15;;-1:-1:-1;;;;30166:15:0;-1:-1:-1;;;30166:15:0;;;30198:10;:8;:10::i;:::-;30225:8;:16;;-1:-1:-1;;;;30225:16:0;;;29940:313;30281:8;;-1:-1:-1;;;;;30391:25:0;;30265:12;30391:25;;;:19;:25;;;;;;30281:8;-1:-1:-1;;;30281:8:0;;;;;30280:9;;30391:25;;:52;;-1:-1:-1;;;;;;30420:23:0;;;;;;:19;:23;;;;;;;;30391:52;30387:100;;;-1:-1:-1;30470:5:0;30387:100;30499:12;30526:26;30567:20;30602:21;30716:7;30712:1199;;;30774:13;-1:-1:-1;;;;;30768:19:0;:2;-1:-1:-1;;;;;30768:19:0;;:40;;;;;30807:1;30791:13;;:17;30768:40;30764:727;;;30836:34;30866:3;30836:25;30847:13;;30836:6;:10;;:25;;;;:::i;:::-;:29;;:34::i;:::-;30829:41;;30938:13;;30918:16;;30911:4;:23;;;;:::i;:::-;30910:41;;;;:::i;:::-;30889:62;;31007:13;;30993:10;;30986:4;:17;;;;:::i;:::-;30985:35;;;;:::i;:::-;30970:50;;31078:13;;31063:11;;31056:4;:18;;;;:::i;:::-;31055:36;;;;:::i;:::-;31039:52;;30764:727;;;31163:13;-1:-1:-1;;;;;31155:21:0;:4;-1:-1:-1;;;;;31155:21:0;;:41;;;;;31195:1;31180:12;;:16;31155:41;31151:340;;;31224:33;31253:3;31224:24;31235:12;;31224:6;:10;;:24;;;;:::i;:33::-;31217:40;;31324:12;;31305:15;;31298:4;:22;;;;:::i;:::-;31297:39;;;;:::i;:::-;31276:60;;31392:12;;31379:9;;31372:4;:16;;;;:::i;:::-;31371:33;;;;:::i;:::-;31356:48;;31461:12;;31447:10;;31440:4;:17;;;;:::i;:::-;31439:34;;;;:::i;:::-;31423:50;;31151:340;31511:7;;31507:90;;31539:42;31555:4;31569;31576;31539:15;:42::i;:::-;31615:22;;31611:128;;31658:65;31682:4;31689:13;31704:18;31658:15;:65::i;:::-;31758:17;;31755:114;;31826:11;;31795:58;;31819:4;;-1:-1:-1;;;;;31826:11:0;31839:13;31795:15;:58::i;:::-;31885:14;31895:4;31885:14;;:::i;:::-;;;30712:1199;31923:33;31939:4;31945:2;31949:6;31923:15;:33::i;:::-;28088:3876;;;;;;;27975:3989;;;:::o;2655:191::-;2748:6;;;-1:-1:-1;;;;;2765:17:0;;;-1:-1:-1;;;;;;2765:17:0;;;;;;;2798:40;;2748:6;;;2765:17;2748:6;;2798:40;;2729:16;;2798:40;2718:128;2655:191;:::o;10524:733::-;-1:-1:-1;;;;;10664:20:0;;10656:70;;;;-1:-1:-1;;;10656:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10745:23:0;;10737:71;;;;-1:-1:-1;;;10737:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10905:17:0;;10881:21;10905:17;;;;;;;;;;;10941:23;;;;10933:74;;;;-1:-1:-1;;;10933:74:0;;11277:2:1;10933:74:0;;;11259:21:1;11316:2;11296:18;;;11289:30;11355:34;11335:18;;;11328:62;-1:-1:-1;;;11406:18:1;;;11399:36;11452:19;;10933:74:0;11075:402:1;10933:74:0;-1:-1:-1;;;;;11043:17:0;;;:9;:17;;;;;;;;;;;11063:22;;;11043:42;;11107:20;;;;;;;;:30;;11079:6;;11043:9;11107:30;;11079:6;;11107:30;:::i;:::-;;;;;;;;11172:9;-1:-1:-1;;;;;11155:35:0;11164:6;-1:-1:-1;;;;;11155:35:0;;11183:6;11155:35;;;;1816:25:1;;1804:2;1789:18;;1670:177;11155:35:0;;;;;;;;10645:612;10524:733;;;:::o;32552:340::-;32635:4;32591:23;8116:18;;;;;;;;;;;;32656:20;;;32652:59;;32693:7;32552:340::o;32652:59::-;32745:18;;:23;;32766:2;32745:23;:::i;:::-;32727:15;:41;32723:115;;;32803:18;;:23;;32824:2;32803:23;:::i;:::-;32785:41;;32723:115;32850:34;32868:15;32850:17;:34::i;17310:98::-;17368:7;17395:5;17399:1;17395;:5;:::i;:::-;17388:12;17310:98;-1:-1:-1;;;17310:98:0:o;17709:::-;17767:7;17794:5;17798:1;17794;:5;:::i;31972:572::-;32123:16;;;32137:1;32123:16;;;;;;;;32099:21;;32123:16;;;;;;;;;;-1:-1:-1;32123:16:0;32099:40;;32168:4;32150;32155:1;32150:7;;;;;;;;:::i;:::-;-1:-1:-1;;;;;32150:23:0;;;:7;;;;;;;;;:23;32194:4;;32184:7;;32194:4;;;32184;;32194;;32184:7;;;;;;:::i;:::-;;;;;;:14;-1:-1:-1;;;;;32184:14:0;;;-1:-1:-1;;;;;32184:14:0;;;;;32211:62;32228:4;32243:15;32261:11;32211:8;:62::i;:::-;32486:9;;32312:224;;-1:-1:-1;;;32312:224:0;;-1:-1:-1;;;;;32312:15:0;:69;;;;;:224;;32396:11;;32422:1;;32467:4;;32486:9;;;;;32510:15;;32312:224;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32028:516;31972:572;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;794:254;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1245:186::-;1304:6;1357:2;1345:9;1336:7;1332:23;1328:32;1325:52;;;1373:1;1370;1363:12;1325:52;1396:29;1415:9;1396:29;:::i;1852:180::-;1911:6;1964:2;1952:9;1943:7;1939:23;1935:32;1932:52;;;1980:1;1977;1970:12;1932:52;-1:-1:-1;2003:23:1;;1852:180;-1:-1:-1;1852:180:1:o;2037:328::-;2114:6;2122;2130;2183:2;2171:9;2162:7;2158:23;2154:32;2151:52;;;2199:1;2196;2189:12;2151:52;2222:29;2241:9;2222:29;:::i;:::-;2212:39;;2270:38;2304:2;2293:9;2289:18;2270:38;:::i;:::-;2260:48;;2355:2;2344:9;2340:18;2327:32;2317:42;;2037:328;;;;;:::o;2767:160::-;2832:20;;2888:13;;2881:21;2871:32;;2861:60;;2917:1;2914;2907:12;2932:254;2997:6;3005;3058:2;3046:9;3037:7;3033:23;3029:32;3026:52;;;3074:1;3071;3064:12;3026:52;3097:29;3116:9;3097:29;:::i;:::-;3087:39;;3145:35;3176:2;3165:9;3161:18;3145:35;:::i;:::-;3135:45;;2932:254;;;;;:::o;3191:316::-;3268:6;3276;3284;3337:2;3325:9;3316:7;3312:23;3308:32;3305:52;;;3353:1;3350;3343:12;3305:52;-1:-1:-1;;3376:23:1;;;3446:2;3431:18;;3418:32;;-1:-1:-1;3497:2:1;3482:18;;;3469:32;;3191:316;-1:-1:-1;3191:316:1:o;3512:180::-;3568:6;3621:2;3609:9;3600:7;3596:23;3592:32;3589:52;;;3637:1;3634;3627:12;3589:52;3660:26;3676:9;3660:26;:::i;3697:260::-;3765:6;3773;3826:2;3814:9;3805:7;3801:23;3797:32;3794:52;;;3842:1;3839;3832:12;3794:52;3865:29;3884:9;3865:29;:::i;:::-;3855:39;;3913:38;3947:2;3936:9;3932:18;3913:38;:::i;3962:380::-;4041:1;4037:12;;;;4084;;;4105:61;;4159:4;4151:6;4147:17;4137:27;;4105:61;4212:2;4204:6;4201:14;4181:18;4178:38;4175:161;;4258:10;4253:3;4249:20;4246:1;4239:31;4293:4;4290:1;4283:15;4321:4;4318:1;4311:15;4175:161;;3962:380;;;:::o;4347:356::-;4549:2;4531:21;;;4568:18;;;4561:30;4627:34;4622:2;4607:18;;4600:62;4694:2;4679:18;;4347:356::o;4708:127::-;4769:10;4764:3;4760:20;4757:1;4750:31;4800:4;4797:1;4790:15;4824:4;4821:1;4814:15;4840:168;4880:7;4946:1;4942;4938:6;4934:14;4931:1;4928:21;4923:1;4916:9;4909:17;4905:45;4902:71;;;4953:18;;:::i;:::-;-1:-1:-1;4993:9:1;;4840:168::o;5013:217::-;5053:1;5079;5069:132;;5123:10;5118:3;5114:20;5111:1;5104:31;5158:4;5155:1;5148:15;5186:4;5183:1;5176:15;5069:132;-1:-1:-1;5215:9:1;;5013:217::o;6060:128::-;6100:3;6131:1;6127:6;6124:1;6121:13;6118:39;;;6137:18;;:::i;:::-;-1:-1:-1;6173:9:1;;6060:128::o;9014:401::-;9216:2;9198:21;;;9255:2;9235:18;;;9228:30;9294:34;9289:2;9274:18;;9267:62;-1:-1:-1;;;9360:2:1;9345:18;;9338:35;9405:3;9390:19;;9014:401::o;9420:399::-;9622:2;9604:21;;;9661:2;9641:18;;;9634:30;9700:34;9695:2;9680:18;;9673:62;-1:-1:-1;;;9766:2:1;9751:18;;9744:33;9809:3;9794:19;;9420:399::o;10945:125::-;10985:4;11013:1;11010;11007:8;11004:34;;;11018:18;;:::i;:::-;-1:-1:-1;11055:9:1;;10945:125::o;11614:127::-;11675:10;11670:3;11666:20;11663:1;11656:31;11706:4;11703:1;11696:15;11730:4;11727:1;11720:15;11746:980;12008:4;12056:3;12045:9;12041:19;12087:6;12076:9;12069:25;12113:2;12151:6;12146:2;12135:9;12131:18;12124:34;12194:3;12189:2;12178:9;12174:18;12167:31;12218:6;12253;12247:13;12284:6;12276;12269:22;12322:3;12311:9;12307:19;12300:26;;12361:2;12353:6;12349:15;12335:29;;12382:1;12392:195;12406:6;12403:1;12400:13;12392:195;;;12471:13;;-1:-1:-1;;;;;12467:39:1;12455:52;;12562:15;;;;12527:12;;;;12503:1;12421:9;12392:195;;;-1:-1:-1;;;;;;;12643:32:1;;;;12638:2;12623:18;;12616:60;-1:-1:-1;;;12707:3:1;12692:19;12685:35;12604:3;11746:980;-1:-1:-1;;;11746:980:1:o

Swarm Source

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