ETH Price: $2,625.80 (+1.38%)

Token

Milk Supremacy (MILK)
 

Overview

Max Total Supply

1,000,000,000,000 MILK

Holders

217

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000631399613421 MILK

Value
$0.00
0x0fC3d112Ae07eF60Ae5c8354848E4CcF86CbbA89
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:
MILK

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}

// File: @uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol

pragma solidity >=0.6.2;


interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}

// File: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

pragma solidity >=0.5.0;

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

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

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

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

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev 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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 default value returned by this function, unless
     * it's 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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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);
    }
}

// File: template.sol

//SPDX-License-Identifier: MIT

pragma solidity =0.8.9;

contract MILK is ERC20, Ownable {

    uint256 constant DECIMAL_POINTS = 10000;

    uint256 public developmentTax;
    address public development;
    uint256 public maxPerWallet;
    address public router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; //uniswap router address
    uint256 public slippage = 200;

    uint256 private _feesOnContract;

    mapping(address => bool) public blacklist;
    mapping(address => bool) public whitelist;

    error Blacklisted();
    error InvalidAddress();
    error TransferLimitExceeded();

    event RouterUpdated(address router);
    event developmentUpdated(address development);
    event developmentTaxUpdated(uint256 developmentTax);
    event SlippageUpdated(uint256 slippage);
    event MaxPerWalletUpdated(uint256 maxPerWallet);

    constructor(
        uint256 _developmentTax,
        address _development,
        uint256 _maxPerWallet
    ) ERC20("Milk Supremacy", "MILK") {
        if (_development == address(0)) revert InvalidAddress();

        _mint(msg.sender, 1_000_000_000_000 ether);

        developmentTax = _developmentTax;
        development = _development;
        maxPerWallet = _maxPerWallet;
    }

    function _transfer(
        address _from,
        address _to,
        uint256 _amount
    ) internal virtual override {
        if (blacklist[_from] || blacklist[_to]) revert Blacklisted();

        address _pair = _getPair(address(this), _getWETH());

        if (
            _to != _pair &&
            _to != address(this) &&
            _to != owner() &&
            !whitelist[_to]
        ) {
            _checkValidTransfer(_to, _amount);
        }

        if (
            (_pair == _to &&
                _from != address(this) &&
                _from != owner() &&
                !whitelist[_from]) ||
            (_pair == _from &&
                _to != address(this) &&
                _to != owner() &&
                !whitelist[_to])
        ) {
            uint256 _feeAmount = (_amount * developmentTax) / DECIMAL_POINTS;

            super._transfer(_from, address(this), _feeAmount);

            _feesOnContract += _feeAmount;

            if (_from != _pair) {
                _swap(
                    _feesOnContract,
                    _getPath(address(this), _getWETH()),
                    development
                );

                _feesOnContract = 0;
            } else {
                _checkValidTransfer(_to, _amount);
            }

            return super._transfer(_from, _to, _amount - _feeAmount);
        } else return super._transfer(_from, _to, _amount);
    }

    function _checkValidTransfer(address _to, uint256 _amount) private view {
        uint256 _validTokenTransfer = ((totalSupply() * maxPerWallet) /
            DECIMAL_POINTS) - balanceOf(_to);
        if (_amount > _validTokenTransfer) revert TransferLimitExceeded();
    }

    function _getFactory() private view returns (address) {
        return IUniswapV2Router02(router).factory();
    }

    function _getWETH() private view returns (address) {
        return IUniswapV2Router02(router).WETH();
    }

    function _getPair(address _tokenA, address _tokenB)
        private
        view
        returns (address)
    {
        return IUniswapV2Factory(_getFactory()).getPair(_tokenA, _tokenB);
    }

    function _getPath(address _tokenA, address _tokenB)
        private
        view
        returns (address[] memory)
    {
        address[] memory path;
        address WETH = _getWETH();

        if (_tokenA == WETH || _tokenB == WETH) {
            path = new address[](2);
            path[0] = _tokenA;
            path[1] = _tokenB;
        } else {
            path = new address[](3);
            path[0] = _tokenA;
            path[1] = WETH;
            path[2] = _tokenB;
        }

        return path;
    }

    function _swap(
        uint256 _amountIn,
        address[] memory _path,
        address _to
    ) private {
        if (_amountIn > 0) {
            IERC20(_path[0]).approve(router, _amountIn);

            uint256 _amountOutMin = (IUniswapV2Router02(router).getAmountsOut(
                _amountIn,
                _path
            )[_path.length - 1] * (DECIMAL_POINTS - slippage)) / DECIMAL_POINTS;

            IUniswapV2Router02(router)
                .swapExactTokensForTokensSupportingFeeOnTransferTokens(
                    _amountIn,
                    _amountOutMin,
                    _path,
                    _to,
                    block.timestamp
                );
        }
    }

    function updateRouter(address _router) external onlyOwner {
        if (_router == address(0)) revert InvalidAddress();
        router = _router;

        emit RouterUpdated(_router);
    }

    function updatedevelopment(address _development) external onlyOwner {
        if (_development == address(0)) revert InvalidAddress();
        development = _development;

        emit developmentUpdated(_development);
    }

    function updatedevelopmentTax(uint256 _developmentTax) external onlyOwner {
        developmentTax = _developmentTax;

        emit developmentTaxUpdated(_developmentTax);
    }

    function updateMaxPerWallet(uint256 _maxPerWallet) external onlyOwner {
        maxPerWallet = _maxPerWallet;

        emit MaxPerWalletUpdated(_maxPerWallet);
    }

    function updateSlippage(uint256 _slippage) external onlyOwner {
        slippage = _slippage;

        emit SlippageUpdated(_slippage);
    }

    function addBlacklist(address _account) external onlyOwner {
        require(!blacklist[_account]);
        blacklist[_account] = true;
    }

    function removeBlacklist(address _account) external onlyOwner {
        require(blacklist[_account]);
        blacklist[_account] = false;
    }

    function addWhitelist(address _account) external onlyOwner {
        require(!whitelist[_account]);
        whitelist[_account] = true;
    }

    function removeWhitelist(address _account) external onlyOwner {
        require(whitelist[_account]);
        whitelist[_account] = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_developmentTax","type":"uint256"},{"internalType":"address","name":"_development","type":"address"},{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"Blacklisted","type":"error"},{"inputs":[],"name":"InvalidAddress","type":"error"},{"inputs":[],"name":"TransferLimitExceeded","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"name":"MaxPerWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"router","type":"address"}],"name":"RouterUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"slippage","type":"uint256"}],"name":"SlippageUpdated","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":false,"internalType":"uint256","name":"developmentTax","type":"uint256"}],"name":"developmentTaxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"development","type":"address"}],"name":"developmentUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"addBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"blacklist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"development","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxPerWallet","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":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeBlacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"slippage","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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":[{"internalType":"uint256","name":"_maxPerWallet","type":"uint256"}],"name":"updateMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_router","type":"address"}],"name":"updateRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_slippage","type":"uint256"}],"name":"updateSlippage","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_development","type":"address"}],"name":"updatedevelopment","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_developmentTax","type":"uint256"}],"name":"updatedevelopmentTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6080604052737a250d5630b4cf539739df2c5dacb4c659f2488d600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060c8600a553480156200006b57600080fd5b50604051620038b1380380620038b18339818101604052810190620000919190620005cb565b6040518060400160405280600e81526020017f4d696c6b2053757072656d6163790000000000000000000000000000000000008152506040518060400160405280600481526020017f4d494c4b0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200011592919062000476565b5080600490805190602001906200012e92919062000476565b50505062000151620001456200023060201b60201c565b6200023860201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620001b9576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620001d8336c0c9f2c9cd04674edea40000000620002fe60201b60201c565b8260068190555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600881905550505050620007c9565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000371576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003689062000688565b60405180910390fd5b62000385600083836200046c60201b60201c565b8060026000828254620003999190620006d9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200044c919062000747565b60405180910390a362000468600083836200047160201b60201c565b5050565b505050565b505050565b828054620004849062000793565b90600052602060002090601f016020900481019282620004a85760008555620004f4565b82601f10620004c357805160ff1916838001178555620004f4565b82800160010185558215620004f4579182015b82811115620004f3578251825591602001919060010190620004d6565b5b50905062000503919062000507565b5090565b5b808211156200052257600081600090555060010162000508565b5090565b600080fd5b6000819050919050565b62000540816200052b565b81146200054c57600080fd5b50565b600081519050620005608162000535565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005938262000566565b9050919050565b620005a58162000586565b8114620005b157600080fd5b50565b600081519050620005c5816200059a565b92915050565b600080600060608486031215620005e757620005e662000526565b5b6000620005f7868287016200054f565b93505060206200060a86828701620005b4565b92505060406200061d868287016200054f565b9150509250925092565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000670601f8362000627565b91506200067d8262000638565b602082019050919050565b60006020820190508181036000830152620006a38162000661565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620006e6826200052b565b9150620006f3836200052b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200072b576200072a620006aa565b5b828201905092915050565b62000741816200052b565b82525050565b60006020820190506200075e600083018462000736565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620007ac57607f821691505b60208210811415620007c357620007c262000764565b5b50919050565b6130d880620007d96000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063d0dfff2a116100a2578063f80f5dd511610071578063f80f5dd514610557578063f887ea4014610573578063f9f92be414610591578063fecfda49146105c1576101da565b8063d0dfff2a146104d3578063dd62ed3e146104ef578063eb91e6511461051f578063f2fde38b1461053b576101da565b80639cfe42da116100de5780639cfe42da1461043b578063a457c2d714610457578063a9059cbb14610487578063c851cc32146104b7576101da565b80638da5cb5b146103cf57806395d89b41146103ed5780639b19251a1461040b576101da565b80633e032a3b1161017c578063738205851161014b578063738205851461035b57806378c8cda7146103775780637a6d66dc146103935780637b929c27146103b1576101da565b80633e032a3b146102e5578063453c23101461030357806370a0823114610321578063715018a614610351576101da565b806318160ddd116101b857806318160ddd1461024957806323b872dd14610267578063313ce5671461029757806339509351146102b5576101da565b806306fdde03146101df578063095ea7b3146101fd57806315b0d4961461022d575b600080fd5b6101e76105dd565b6040516101f49190612336565b60405180910390f35b61021760048036038101906102129190612400565b61066f565b604051610224919061245b565b60405180910390f35b61024760048036038101906102429190612476565b610692565b005b6102516106db565b60405161025e91906124b2565b60405180910390f35b610281600480360381019061027c91906124cd565b6106e5565b60405161028e919061245b565b60405180910390f35b61029f610714565b6040516102ac919061253c565b60405180910390f35b6102cf60048036038101906102ca9190612400565b61071d565b6040516102dc919061245b565b60405180910390f35b6102ed610754565b6040516102fa91906124b2565b60405180910390f35b61030b61075a565b60405161031891906124b2565b60405180910390f35b61033b60048036038101906103369190612557565b610760565b60405161034891906124b2565b60405180910390f35b6103596107a8565b005b61037560048036038101906103709190612476565b6107bc565b005b610391600480360381019061038c9190612557565b610805565b005b61039b6108be565b6040516103a891906124b2565b60405180910390f35b6103b96108c4565b6040516103c69190612593565b60405180910390f35b6103d76108ea565b6040516103e49190612593565b60405180910390f35b6103f5610914565b6040516104029190612336565b60405180910390f35b61042560048036038101906104209190612557565b6109a6565b604051610432919061245b565b60405180910390f35b61045560048036038101906104509190612557565b6109c6565b005b610471600480360381019061046c9190612400565b610a80565b60405161047e919061245b565b60405180910390f35b6104a1600480360381019061049c9190612400565b610af7565b6040516104ae919061245b565b60405180910390f35b6104d160048036038101906104cc9190612557565b610b1a565b005b6104ed60048036038101906104e89190612557565b610c04565b005b610509600480360381019061050491906125ae565b610cee565b60405161051691906124b2565b60405180910390f35b61053960048036038101906105349190612557565b610d75565b005b61055560048036038101906105509190612557565b610e2e565b005b610571600480360381019061056c9190612557565b610eb2565b005b61057b610f6c565b6040516105889190612593565b60405180910390f35b6105ab60048036038101906105a69190612557565b610f92565b6040516105b8919061245b565b60405180910390f35b6105db60048036038101906105d69190612476565b610fb2565b005b6060600380546105ec9061261d565b80601f01602080910402602001604051908101604052809291908181526020018280546106189061261d565b80156106655780601f1061063a57610100808354040283529160200191610665565b820191906000526020600020905b81548152906001019060200180831161064857829003601f168201915b5050505050905090565b60008061067a610ffb565b9050610687818585611003565b600191505092915050565b61069a6111ce565b80600a819055507ff5a802650e0a86db227cc342f06327d2ca0ff5cf2b12e0084fc5d8a7db2c54fd816040516106d091906124b2565b60405180910390a150565b6000600254905090565b6000806106f0610ffb565b90506106fd85828561124c565b6107088585856112d8565b60019150509392505050565b60006012905090565b600080610728610ffb565b905061074981858561073a8589610cee565b610744919061267e565b611003565b600191505092915050565b600a5481565b60085481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107b06111ce565b6107ba60006117d2565b565b6107c46111ce565b806006819055507fe3ec2f748c138e773c39bdcef1f7363902df13b028d5e1209bd91671cd708ca8816040516107fa91906124b2565b60405180910390a150565b61080d6111ce565b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661086357600080fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60065481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109239061261d565b80601f016020809104026020016040519081016040528092919081815260200182805461094f9061261d565b801561099c5780601f106109715761010080835404028352916020019161099c565b820191906000526020600020905b81548152906001019060200180831161097f57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b6109ce6111ce565b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610a2557600080fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610a8b610ffb565b90506000610a998286610cee565b905083811015610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590612746565b60405180910390fd5b610aeb8286868403611003565b60019250505092915050565b600080610b02610ffb565b9050610b0f8185856112d8565b600191505092915050565b610b226111ce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b89576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc8081604051610bf99190612593565b60405180910390a150565b610c0c6111ce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c73576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb3ea1c57ca26d4b552ff40f0b50cf608daaaf0bd5faf75fd7b8f0c6da725144b81604051610ce39190612593565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d7d6111ce565b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610dd357600080fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e366111ce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906127d8565b60405180910390fd5b610eaf816117d2565b50565b610eba6111ce565b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f1157600080fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b610fba6111ce565b806008819055507f97e4f91a4b7e108aff6d29a03d7b9f94705ad90ed51b377784a1943ea32257e781604051610ff091906124b2565b60405180910390a150565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a9061286a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da906128fc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111c191906124b2565b60405180910390a3505050565b6111d6610ffb565b73ffffffffffffffffffffffffffffffffffffffff166111f46108ea565b73ffffffffffffffffffffffffffffffffffffffff161461124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190612968565b60405180910390fd5b565b60006112588484610cee565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112d257818110156112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb906129d4565b60405180910390fd5b6112d18484848403611003565b5b50505050565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113795750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156113b0576040517f09550c7700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113c3306113be611898565b61193f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561142d57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561146c575061143c6108ea565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156114c25750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114d2576114d183836119db565b5b8273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614801561153957503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561157857506115486108ea565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156115ce5750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b806116d157508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614801561163b57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561167a575061164a6108ea565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156116d05750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b156117c0576000612710600654846116e991906129f4565b6116f39190612a7d565b9050611700853083611a53565b80600b6000828254611712919061267e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146117985761178b600b546117633061175e611898565b611ccb565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611f78565b6000600b819055506117a3565b6117a284846119db565b5b6117b9858583866117b49190612aae565b611a53565b50506117cd565b6117cb848484611a53565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561190257600080fd5b505afa158015611916573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193a9190612af7565b905090565b60006119496121ec565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390584846040518363ffffffff1660e01b8152600401611983929190612b24565b60206040518083038186803b15801561199b57600080fd5b505afa1580156119af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d39190612af7565b905092915050565b60006119e683610760565b6127106008546119f46106db565b6119fe91906129f4565b611a089190612a7d565b611a129190612aae565b905080821115611a4e576040517f3525bb0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba90612bbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a90612c51565b60405180910390fd5b611b3e838383612293565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90612ce3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cb291906124b2565b60405180910390a3611cc5848484612298565b50505050565b6060806000611cd8611898565b90508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611d3f57508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b15611e3357600267ffffffffffffffff811115611d5f57611d5e612d03565b5b604051908082528060200260200182016040528015611d8d5781602001602082028036833780820191505090505b5091508482600081518110611da557611da4612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508382600181518110611df457611df3612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f6d565b600367ffffffffffffffff811115611e4e57611e4d612d03565b5b604051908082528060200260200182016040528015611e7c5781602001602082028036833780820191505090505b5091508482600081518110611e9457611e93612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508082600181518110611ee357611ee2612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508382600281518110611f3257611f31612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b819250505092915050565b60008311156121e75781600081518110611f9557611f94612d32565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401611ff9929190612d61565b602060405180830381600087803b15801561201357600080fd5b505af1158015612027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061204b9190612db6565b506000612710600a546127106120619190612aae565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f87876040518363ffffffff1660e01b81526004016120be929190612ea1565b60006040518083038186803b1580156120d657600080fd5b505afa1580156120ea573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906121139190612fff565b600186516121219190612aae565b8151811061213257612131612d32565b5b602002602001015161214491906129f4565b61214e9190612a7d565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79585838686426040518663ffffffff1660e01b81526004016121b3959493929190613048565b600060405180830381600087803b1580156121cd57600080fd5b505af11580156121e1573d6000803e3d6000fd5b50505050505b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561225657600080fd5b505afa15801561226a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061228e9190612af7565b905090565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122d75780820151818401526020810190506122bc565b838111156122e6576000848401525b50505050565b6000601f19601f8301169050919050565b60006123088261229d565b61231281856122a8565b93506123228185602086016122b9565b61232b816122ec565b840191505092915050565b6000602082019050818103600083015261235081846122fd565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123978261236c565b9050919050565b6123a78161238c565b81146123b257600080fd5b50565b6000813590506123c48161239e565b92915050565b6000819050919050565b6123dd816123ca565b81146123e857600080fd5b50565b6000813590506123fa816123d4565b92915050565b6000806040838503121561241757612416612362565b5b6000612425858286016123b5565b9250506020612436858286016123eb565b9150509250929050565b60008115159050919050565b61245581612440565b82525050565b6000602082019050612470600083018461244c565b92915050565b60006020828403121561248c5761248b612362565b5b600061249a848285016123eb565b91505092915050565b6124ac816123ca565b82525050565b60006020820190506124c760008301846124a3565b92915050565b6000806000606084860312156124e6576124e5612362565b5b60006124f4868287016123b5565b9350506020612505868287016123b5565b9250506040612516868287016123eb565b9150509250925092565b600060ff82169050919050565b61253681612520565b82525050565b6000602082019050612551600083018461252d565b92915050565b60006020828403121561256d5761256c612362565b5b600061257b848285016123b5565b91505092915050565b61258d8161238c565b82525050565b60006020820190506125a86000830184612584565b92915050565b600080604083850312156125c5576125c4612362565b5b60006125d3858286016123b5565b92505060206125e4858286016123b5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061263557607f821691505b60208210811415612649576126486125ee565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612689826123ca565b9150612694836123ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126c9576126c861264f565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127306025836122a8565b915061273b826126d4565b604082019050919050565b6000602082019050818103600083015261275f81612723565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127c26026836122a8565b91506127cd82612766565b604082019050919050565b600060208201905081810360008301526127f1816127b5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006128546024836122a8565b915061285f826127f8565b604082019050919050565b6000602082019050818103600083015261288381612847565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128e66022836122a8565b91506128f18261288a565b604082019050919050565b60006020820190508181036000830152612915816128d9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129526020836122a8565b915061295d8261291c565b602082019050919050565b6000602082019050818103600083015261298181612945565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129be601d836122a8565b91506129c982612988565b602082019050919050565b600060208201905081810360008301526129ed816129b1565b9050919050565b60006129ff826123ca565b9150612a0a836123ca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a4357612a4261264f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a88826123ca565b9150612a93836123ca565b925082612aa357612aa2612a4e565b5b828204905092915050565b6000612ab9826123ca565b9150612ac4836123ca565b925082821015612ad757612ad661264f565b5b828203905092915050565b600081519050612af18161239e565b92915050565b600060208284031215612b0d57612b0c612362565b5b6000612b1b84828501612ae2565b91505092915050565b6000604082019050612b396000830185612584565b612b466020830184612584565b9392505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ba96025836122a8565b9150612bb482612b4d565b604082019050919050565b60006020820190508181036000830152612bd881612b9c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c3b6023836122a8565b9150612c4682612bdf565b604082019050919050565b60006020820190508181036000830152612c6a81612c2e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ccd6026836122a8565b9150612cd882612c71565b604082019050919050565b60006020820190508181036000830152612cfc81612cc0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050612d766000830185612584565b612d8360208301846124a3565b9392505050565b612d9381612440565b8114612d9e57600080fd5b50565b600081519050612db081612d8a565b92915050565b600060208284031215612dcc57612dcb612362565b5b6000612dda84828501612da1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e188161238c565b82525050565b6000612e2a8383612e0f565b60208301905092915050565b6000602082019050919050565b6000612e4e82612de3565b612e588185612dee565b9350612e6383612dff565b8060005b83811015612e94578151612e7b8882612e1e565b9750612e8683612e36565b925050600181019050612e67565b5085935050505092915050565b6000604082019050612eb660008301856124a3565b8181036020830152612ec88184612e43565b90509392505050565b600080fd5b612edf826122ec565b810181811067ffffffffffffffff82111715612efe57612efd612d03565b5b80604052505050565b6000612f11612358565b9050612f1d8282612ed6565b919050565b600067ffffffffffffffff821115612f3d57612f3c612d03565b5b602082029050602081019050919050565b600080fd5b600081519050612f62816123d4565b92915050565b6000612f7b612f7684612f22565b612f07565b90508083825260208201905060208402830185811115612f9e57612f9d612f4e565b5b835b81811015612fc75780612fb38882612f53565b845260208401935050602081019050612fa0565b5050509392505050565b600082601f830112612fe657612fe5612ed1565b5b8151612ff6848260208601612f68565b91505092915050565b60006020828403121561301557613014612362565b5b600082015167ffffffffffffffff81111561303357613032612367565b5b61303f84828501612fd1565b91505092915050565b600060a08201905061305d60008301886124a3565b61306a60208301876124a3565b818103604083015261307c8186612e43565b905061308b6060830185612584565b61309860808301846124a3565b969550505050505056fea2646970667358221220c66c2ec6fd8a4106a36c5060b4b8ed7cf1f672821db11a5a8445b8bdb78602ec64736f6c634300080900330000000000000000000000000000000000000000000000000000000000000190000000000000000000000000e56497a90c0c51ce8466fcffad81cf3de5c0f7b90000000000000000000000000000000000000000000000000000000000000064

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80638da5cb5b11610104578063d0dfff2a116100a2578063f80f5dd511610071578063f80f5dd514610557578063f887ea4014610573578063f9f92be414610591578063fecfda49146105c1576101da565b8063d0dfff2a146104d3578063dd62ed3e146104ef578063eb91e6511461051f578063f2fde38b1461053b576101da565b80639cfe42da116100de5780639cfe42da1461043b578063a457c2d714610457578063a9059cbb14610487578063c851cc32146104b7576101da565b80638da5cb5b146103cf57806395d89b41146103ed5780639b19251a1461040b576101da565b80633e032a3b1161017c578063738205851161014b578063738205851461035b57806378c8cda7146103775780637a6d66dc146103935780637b929c27146103b1576101da565b80633e032a3b146102e5578063453c23101461030357806370a0823114610321578063715018a614610351576101da565b806318160ddd116101b857806318160ddd1461024957806323b872dd14610267578063313ce5671461029757806339509351146102b5576101da565b806306fdde03146101df578063095ea7b3146101fd57806315b0d4961461022d575b600080fd5b6101e76105dd565b6040516101f49190612336565b60405180910390f35b61021760048036038101906102129190612400565b61066f565b604051610224919061245b565b60405180910390f35b61024760048036038101906102429190612476565b610692565b005b6102516106db565b60405161025e91906124b2565b60405180910390f35b610281600480360381019061027c91906124cd565b6106e5565b60405161028e919061245b565b60405180910390f35b61029f610714565b6040516102ac919061253c565b60405180910390f35b6102cf60048036038101906102ca9190612400565b61071d565b6040516102dc919061245b565b60405180910390f35b6102ed610754565b6040516102fa91906124b2565b60405180910390f35b61030b61075a565b60405161031891906124b2565b60405180910390f35b61033b60048036038101906103369190612557565b610760565b60405161034891906124b2565b60405180910390f35b6103596107a8565b005b61037560048036038101906103709190612476565b6107bc565b005b610391600480360381019061038c9190612557565b610805565b005b61039b6108be565b6040516103a891906124b2565b60405180910390f35b6103b96108c4565b6040516103c69190612593565b60405180910390f35b6103d76108ea565b6040516103e49190612593565b60405180910390f35b6103f5610914565b6040516104029190612336565b60405180910390f35b61042560048036038101906104209190612557565b6109a6565b604051610432919061245b565b60405180910390f35b61045560048036038101906104509190612557565b6109c6565b005b610471600480360381019061046c9190612400565b610a80565b60405161047e919061245b565b60405180910390f35b6104a1600480360381019061049c9190612400565b610af7565b6040516104ae919061245b565b60405180910390f35b6104d160048036038101906104cc9190612557565b610b1a565b005b6104ed60048036038101906104e89190612557565b610c04565b005b610509600480360381019061050491906125ae565b610cee565b60405161051691906124b2565b60405180910390f35b61053960048036038101906105349190612557565b610d75565b005b61055560048036038101906105509190612557565b610e2e565b005b610571600480360381019061056c9190612557565b610eb2565b005b61057b610f6c565b6040516105889190612593565b60405180910390f35b6105ab60048036038101906105a69190612557565b610f92565b6040516105b8919061245b565b60405180910390f35b6105db60048036038101906105d69190612476565b610fb2565b005b6060600380546105ec9061261d565b80601f01602080910402602001604051908101604052809291908181526020018280546106189061261d565b80156106655780601f1061063a57610100808354040283529160200191610665565b820191906000526020600020905b81548152906001019060200180831161064857829003601f168201915b5050505050905090565b60008061067a610ffb565b9050610687818585611003565b600191505092915050565b61069a6111ce565b80600a819055507ff5a802650e0a86db227cc342f06327d2ca0ff5cf2b12e0084fc5d8a7db2c54fd816040516106d091906124b2565b60405180910390a150565b6000600254905090565b6000806106f0610ffb565b90506106fd85828561124c565b6107088585856112d8565b60019150509392505050565b60006012905090565b600080610728610ffb565b905061074981858561073a8589610cee565b610744919061267e565b611003565b600191505092915050565b600a5481565b60085481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107b06111ce565b6107ba60006117d2565b565b6107c46111ce565b806006819055507fe3ec2f748c138e773c39bdcef1f7363902df13b028d5e1209bd91671cd708ca8816040516107fa91906124b2565b60405180910390a150565b61080d6111ce565b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661086357600080fd5b6000600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b60065481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546109239061261d565b80601f016020809104026020016040519081016040528092919081815260200182805461094f9061261d565b801561099c5780601f106109715761010080835404028352916020019161099c565b820191906000526020600020905b81548152906001019060200180831161097f57829003601f168201915b5050505050905090565b600d6020528060005260406000206000915054906101000a900460ff1681565b6109ce6111ce565b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610a2557600080fd5b6001600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610a8b610ffb565b90506000610a998286610cee565b905083811015610ade576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad590612746565b60405180910390fd5b610aeb8286868403611003565b60019250505092915050565b600080610b02610ffb565b9050610b0f8185856112d8565b600191505092915050565b610b226111ce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b89576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f7aed1d3e8155a07ccf395e44ea3109a0e2d6c9b29bbbe9f142d9790596f4dc8081604051610bf99190612593565b60405180910390a150565b610c0c6111ce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c73576040517fe6c4247b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb3ea1c57ca26d4b552ff40f0b50cf608daaaf0bd5faf75fd7b8f0c6da725144b81604051610ce39190612593565b60405180910390a150565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d7d6111ce565b600c60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610dd357600080fd5b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b610e366111ce565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ea6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9d906127d8565b60405180910390fd5b610eaf816117d2565b50565b610eba6111ce565b600d60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f1157600080fd5b6001600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c6020528060005260406000206000915054906101000a900460ff1681565b610fba6111ce565b806008819055507f97e4f91a4b7e108aff6d29a03d7b9f94705ad90ed51b377784a1943ea32257e781604051610ff091906124b2565b60405180910390a150565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611073576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106a9061286a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110da906128fc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516111c191906124b2565b60405180910390a3505050565b6111d6610ffb565b73ffffffffffffffffffffffffffffffffffffffff166111f46108ea565b73ffffffffffffffffffffffffffffffffffffffff161461124a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124190612968565b60405180910390fd5b565b60006112588484610cee565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112d257818110156112c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112bb906129d4565b60405180910390fd5b6112d18484848403611003565b5b50505050565b600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113795750600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156113b0576040517f09550c7700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006113c3306113be611898565b61193f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561142d57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561146c575061143c6108ea565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156114c25750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156114d2576114d183836119db565b5b8273ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614801561153957503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561157857506115486108ea565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156115ce5750600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b806116d157508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614801561163b57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561167a575061164a6108ea565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156116d05750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b5b156117c0576000612710600654846116e991906129f4565b6116f39190612a7d565b9050611700853083611a53565b80600b6000828254611712919061267e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16146117985761178b600b546117633061175e611898565b611ccb565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611f78565b6000600b819055506117a3565b6117a284846119db565b5b6117b9858583866117b49190612aae565b611a53565b50506117cd565b6117cb848484611a53565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b15801561190257600080fd5b505afa158015611916573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061193a9190612af7565b905090565b60006119496121ec565b73ffffffffffffffffffffffffffffffffffffffff1663e6a4390584846040518363ffffffff1660e01b8152600401611983929190612b24565b60206040518083038186803b15801561199b57600080fd5b505afa1580156119af573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119d39190612af7565b905092915050565b60006119e683610760565b6127106008546119f46106db565b6119fe91906129f4565b611a089190612a7d565b611a129190612aae565b905080821115611a4e576040517f3525bb0b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611ac3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aba90612bbf565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b33576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2a90612c51565b60405180910390fd5b611b3e838383612293565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90612ce3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611cb291906124b2565b60405180910390a3611cc5848484612298565b50505050565b6060806000611cd8611898565b90508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611d3f57508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16145b15611e3357600267ffffffffffffffff811115611d5f57611d5e612d03565b5b604051908082528060200260200182016040528015611d8d5781602001602082028036833780820191505090505b5091508482600081518110611da557611da4612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508382600181518110611df457611df3612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611f6d565b600367ffffffffffffffff811115611e4e57611e4d612d03565b5b604051908082528060200260200182016040528015611e7c5781602001602082028036833780820191505090505b5091508482600081518110611e9457611e93612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508082600181518110611ee357611ee2612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508382600281518110611f3257611f31612d32565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b819250505092915050565b60008311156121e75781600081518110611f9557611f94612d32565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401611ff9929190612d61565b602060405180830381600087803b15801561201357600080fd5b505af1158015612027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061204b9190612db6565b506000612710600a546127106120619190612aae565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d06ca61f87876040518363ffffffff1660e01b81526004016120be929190612ea1565b60006040518083038186803b1580156120d657600080fd5b505afa1580156120ea573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906121139190612fff565b600186516121219190612aae565b8151811061213257612131612d32565b5b602002602001015161214491906129f4565b61214e9190612a7d565b9050600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16635c11d79585838686426040518663ffffffff1660e01b81526004016121b3959493929190613048565b600060405180830381600087803b1580156121cd57600080fd5b505af11580156121e1573d6000803e3d6000fd5b50505050505b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b15801561225657600080fd5b505afa15801561226a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061228e9190612af7565b905090565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156122d75780820151818401526020810190506122bc565b838111156122e6576000848401525b50505050565b6000601f19601f8301169050919050565b60006123088261229d565b61231281856122a8565b93506123228185602086016122b9565b61232b816122ec565b840191505092915050565b6000602082019050818103600083015261235081846122fd565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123978261236c565b9050919050565b6123a78161238c565b81146123b257600080fd5b50565b6000813590506123c48161239e565b92915050565b6000819050919050565b6123dd816123ca565b81146123e857600080fd5b50565b6000813590506123fa816123d4565b92915050565b6000806040838503121561241757612416612362565b5b6000612425858286016123b5565b9250506020612436858286016123eb565b9150509250929050565b60008115159050919050565b61245581612440565b82525050565b6000602082019050612470600083018461244c565b92915050565b60006020828403121561248c5761248b612362565b5b600061249a848285016123eb565b91505092915050565b6124ac816123ca565b82525050565b60006020820190506124c760008301846124a3565b92915050565b6000806000606084860312156124e6576124e5612362565b5b60006124f4868287016123b5565b9350506020612505868287016123b5565b9250506040612516868287016123eb565b9150509250925092565b600060ff82169050919050565b61253681612520565b82525050565b6000602082019050612551600083018461252d565b92915050565b60006020828403121561256d5761256c612362565b5b600061257b848285016123b5565b91505092915050565b61258d8161238c565b82525050565b60006020820190506125a86000830184612584565b92915050565b600080604083850312156125c5576125c4612362565b5b60006125d3858286016123b5565b92505060206125e4858286016123b5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061263557607f821691505b60208210811415612649576126486125ee565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612689826123ca565b9150612694836123ca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156126c9576126c861264f565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006127306025836122a8565b915061273b826126d4565b604082019050919050565b6000602082019050818103600083015261275f81612723565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006127c26026836122a8565b91506127cd82612766565b604082019050919050565b600060208201905081810360008301526127f1816127b5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006128546024836122a8565b915061285f826127f8565b604082019050919050565b6000602082019050818103600083015261288381612847565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006128e66022836122a8565b91506128f18261288a565b604082019050919050565b60006020820190508181036000830152612915816128d9565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006129526020836122a8565b915061295d8261291c565b602082019050919050565b6000602082019050818103600083015261298181612945565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006129be601d836122a8565b91506129c982612988565b602082019050919050565b600060208201905081810360008301526129ed816129b1565b9050919050565b60006129ff826123ca565b9150612a0a836123ca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612a4357612a4261264f565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a88826123ca565b9150612a93836123ca565b925082612aa357612aa2612a4e565b5b828204905092915050565b6000612ab9826123ca565b9150612ac4836123ca565b925082821015612ad757612ad661264f565b5b828203905092915050565b600081519050612af18161239e565b92915050565b600060208284031215612b0d57612b0c612362565b5b6000612b1b84828501612ae2565b91505092915050565b6000604082019050612b396000830185612584565b612b466020830184612584565b9392505050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612ba96025836122a8565b9150612bb482612b4d565b604082019050919050565b60006020820190508181036000830152612bd881612b9c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612c3b6023836122a8565b9150612c4682612bdf565b604082019050919050565b60006020820190508181036000830152612c6a81612c2e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612ccd6026836122a8565b9150612cd882612c71565b604082019050919050565b60006020820190508181036000830152612cfc81612cc0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050612d766000830185612584565b612d8360208301846124a3565b9392505050565b612d9381612440565b8114612d9e57600080fd5b50565b600081519050612db081612d8a565b92915050565b600060208284031215612dcc57612dcb612362565b5b6000612dda84828501612da1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612e188161238c565b82525050565b6000612e2a8383612e0f565b60208301905092915050565b6000602082019050919050565b6000612e4e82612de3565b612e588185612dee565b9350612e6383612dff565b8060005b83811015612e94578151612e7b8882612e1e565b9750612e8683612e36565b925050600181019050612e67565b5085935050505092915050565b6000604082019050612eb660008301856124a3565b8181036020830152612ec88184612e43565b90509392505050565b600080fd5b612edf826122ec565b810181811067ffffffffffffffff82111715612efe57612efd612d03565b5b80604052505050565b6000612f11612358565b9050612f1d8282612ed6565b919050565b600067ffffffffffffffff821115612f3d57612f3c612d03565b5b602082029050602081019050919050565b600080fd5b600081519050612f62816123d4565b92915050565b6000612f7b612f7684612f22565b612f07565b90508083825260208201905060208402830185811115612f9e57612f9d612f4e565b5b835b81811015612fc75780612fb38882612f53565b845260208401935050602081019050612fa0565b5050509392505050565b600082601f830112612fe657612fe5612ed1565b5b8151612ff6848260208601612f68565b91505092915050565b60006020828403121561301557613014612362565b5b600082015167ffffffffffffffff81111561303357613032612367565b5b61303f84828501612fd1565b91505092915050565b600060a08201905061305d60008301886124a3565b61306a60208301876124a3565b818103604083015261307c8186612e43565b905061308b6060830185612584565b61309860808301846124a3565b969550505050505056fea2646970667358221220c66c2ec6fd8a4106a36c5060b4b8ed7cf1f672821db11a5a8445b8bdb78602ec64736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000000000190000000000000000000000000e56497a90c0c51ce8466fcffad81cf3de5c0f7b90000000000000000000000000000000000000000000000000000000000000064

-----Decoded View---------------
Arg [0] : _developmentTax (uint256): 400
Arg [1] : _development (address): 0xE56497A90c0c51Ce8466fcffAd81CF3De5c0f7b9
Arg [2] : _maxPerWallet (uint256): 100

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000190
Arg [1] : 000000000000000000000000e56497a90c0c51ce8466fcffad81cf3de5c0f7b9
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000064


Deployed Bytecode Sourcemap

26142:6276:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12370:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14730:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31656:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13499:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15511:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13341:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16181:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26432:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26300:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13670:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25239:103;;;:::i;:::-;;31290:181;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32268:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26231:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26267:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24598:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12589:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26558:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31809:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16922:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14003:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30851:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31053:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14259:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31961:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25497:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32116:144;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26334:66;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26510:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31479:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12370:100;12424:13;12457:5;12450:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12370:100;:::o;14730:201::-;14813:4;14830:13;14846:12;:10;:12::i;:::-;14830:28;;14869:32;14878:5;14885:7;14894:6;14869:8;:32::i;:::-;14919:4;14912:11;;;14730:201;;;;:::o;31656:145::-;24484:13;:11;:13::i;:::-;31740:9:::1;31729:8;:20;;;;31767:26;31783:9;31767:26;;;;;;:::i;:::-;;;;;;;;31656:145:::0;:::o;13499:108::-;13560:7;13587:12;;13580:19;;13499:108;:::o;15511:261::-;15608:4;15625:15;15643:12;:10;:12::i;:::-;15625:30;;15666:38;15682:4;15688:7;15697:6;15666:15;:38::i;:::-;15715:27;15725:4;15731:2;15735:6;15715:9;:27::i;:::-;15760:4;15753:11;;;15511:261;;;;;:::o;13341:93::-;13399:5;13424:2;13417:9;;13341:93;:::o;16181:238::-;16269:4;16286:13;16302:12;:10;:12::i;:::-;16286:28;;16325:64;16334:5;16341:7;16378:10;16350:25;16360:5;16367:7;16350:9;:25::i;:::-;:38;;;;:::i;:::-;16325:8;:64::i;:::-;16407:4;16400:11;;;16181:238;;;;:::o;26432:29::-;;;;:::o;26300:27::-;;;;:::o;13670:127::-;13744:7;13771:9;:18;13781:7;13771:18;;;;;;;;;;;;;;;;13764:25;;13670:127;;;:::o;25239:103::-;24484:13;:11;:13::i;:::-;25304:30:::1;25331:1;25304:18;:30::i;:::-;25239:103::o:0;31290:181::-;24484:13;:11;:13::i;:::-;31392:15:::1;31375:14;:32;;;;31425:38;31447:15;31425:38;;;;;;:::i;:::-;;;;;;;;31290:181:::0;:::o;32268:147::-;24484:13;:11;:13::i;:::-;32349:9:::1;:19;32359:8;32349:19;;;;;;;;;;;;;;;;;;;;;;;;;32341:28;;;::::0;::::1;;32402:5;32380:9;:19;32390:8;32380:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;32268:147:::0;:::o;26231:29::-;;;;:::o;26267:26::-;;;;;;;;;;;;;:::o;24598:87::-;24644:7;24671:6;;;;;;;;;;;24664:13;;24598:87;:::o;12589:104::-;12645:13;12678:7;12671:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12589:104;:::o;26558:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;31809:144::-;24484:13;:11;:13::i;:::-;31888:9:::1;:19;31898:8;31888:19;;;;;;;;;;;;;;;;;;;;;;;;;31887:20;31879:29;;;::::0;::::1;;31941:4;31919:9;:19;31929:8;31919:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;31809:144:::0;:::o;16922:436::-;17015:4;17032:13;17048:12;:10;:12::i;:::-;17032:28;;17071:24;17098:25;17108:5;17115:7;17098:9;:25::i;:::-;17071:52;;17162:15;17142:16;:35;;17134:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;17255:60;17264:5;17271:7;17299:15;17280:16;:34;17255:8;:60::i;:::-;17346:4;17339:11;;;;16922:436;;;;:::o;14003:193::-;14082:4;14099:13;14115:12;:10;:12::i;:::-;14099:28;;14138;14148:5;14155:2;14159:6;14138:9;:28::i;:::-;14184:4;14177:11;;;14003:193;;;;:::o;30851:194::-;24484:13;:11;:13::i;:::-;30943:1:::1;30924:21;;:7;:21;;;30920:50;;;30954:16;;;;;;;;;;;;;;30920:50;30990:7;30981:6;;:16;;;;;;;;;;;;;;;;;;31015:22;31029:7;31015:22;;;;;;:::i;:::-;;;;;;;;30851:194:::0;:::o;31053:229::-;24484:13;:11;:13::i;:::-;31160:1:::1;31136:26;;:12;:26;;;31132:55;;;31171:16;;;;;;;;;;;;;;31132:55;31212:12;31198:11;;:26;;;;;;;;;;;;;;;;;;31242:32;31261:12;31242:32;;;;;;:::i;:::-;;;;;;;;31053:229:::0;:::o;14259:151::-;14348:7;14375:11;:18;14387:5;14375:18;;;;;;;;;;;;;;;:27;14394:7;14375:27;;;;;;;;;;;;;;;;14368:34;;14259:151;;;;:::o;31961:147::-;24484:13;:11;:13::i;:::-;32042:9:::1;:19;32052:8;32042:19;;;;;;;;;;;;;;;;;;;;;;;;;32034:28;;;::::0;::::1;;32095:5;32073:9;:19;32083:8;32073:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31961:147:::0;:::o;25497:201::-;24484:13;:11;:13::i;:::-;25606:1:::1;25586:22;;:8;:22;;;;25578:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;25662:28;25681:8;25662:18;:28::i;:::-;25497:201:::0;:::o;32116:144::-;24484:13;:11;:13::i;:::-;32195:9:::1;:19;32205:8;32195:19;;;;;;;;;;;;;;;;;;;;;;;;;32194:20;32186:29;;;::::0;::::1;;32248:4;32226:9;:19;32236:8;32226:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;32116:144:::0;:::o;26334:66::-;;;;;;;;;;;;;:::o;26510:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;31479:169::-;24484:13;:11;:13::i;:::-;31575::::1;31560:12;:28;;;;31606:34;31626:13;31606:34;;;;;;:::i;:::-;;;;;;;;31479:169:::0;:::o;10008:98::-;10061:7;10088:10;10081:17;;10008:98;:::o;20915:346::-;21034:1;21017:19;;:5;:19;;;;21009:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21115:1;21096:21;;:7;:21;;;;21088:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21199:6;21169:11;:18;21181:5;21169:18;;;;;;;;;;;;;;;:27;21188:7;21169:27;;;;;;;;;;;;;;;:36;;;;21237:7;21221:32;;21230:5;21221:32;;;21246:6;21221:32;;;;;;:::i;:::-;;;;;;;;20915:346;;;:::o;24763:132::-;24838:12;:10;:12::i;:::-;24827:23;;:7;:5;:7::i;:::-;:23;;;24819:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24763:132::o;21552:419::-;21653:24;21680:25;21690:5;21697:7;21680:9;:25::i;:::-;21653:52;;21740:17;21720:16;:37;21716:248;;21802:6;21782:16;:26;;21774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21886:51;21895:5;21902:7;21930:6;21911:16;:25;21886:8;:51::i;:::-;21716:248;21642:329;21552:419;;;:::o;27361:1465::-;27500:9;:16;27510:5;27500:16;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;;27520:9;:14;27530:3;27520:14;;;;;;;;;;;;;;;;;;;;;;;;;27500:34;27496:60;;;27543:13;;;;;;;;;;;;;;27496:60;27569:13;27585:35;27602:4;27609:10;:8;:10::i;:::-;27585:8;:35::i;:::-;27569:51;;27658:5;27651:12;;:3;:12;;;;:49;;;;;27695:4;27680:20;;:3;:20;;;;27651:49;:80;;;;;27724:7;:5;:7::i;:::-;27717:14;;:3;:14;;;;27651:80;:112;;;;;27749:9;:14;27759:3;27749:14;;;;;;;;;;;;;;;;;;;;;;;;;27748:15;27651:112;27633:202;;;27790:33;27810:3;27815:7;27790:19;:33::i;:::-;27633:202;27875:3;27866:12;;:5;:12;;;:55;;;;;27916:4;27899:22;;:5;:22;;;;27866:55;:92;;;;;27951:7;:5;:7::i;:::-;27942:16;;:5;:16;;;;27866:92;:130;;;;;27980:9;:16;27990:5;27980:16;;;;;;;;;;;;;;;;;;;;;;;;;27979:17;27866:130;27865:277;;;;28024:5;28015:14;;:5;:14;;;:55;;;;;28065:4;28050:20;;:3;:20;;;;28015:55;:90;;;;;28098:7;:5;:7::i;:::-;28091:14;;:3;:14;;;;28015:90;:126;;;;;28127:9;:14;28137:3;28127:14;;;;;;;;;;;;;;;;;;;;;;;;;28126:15;28015:126;27865:277;27847:971;;;28169:18;26217:5;28201:14;;28191:7;:24;;;;:::i;:::-;28190:43;;;;:::i;:::-;28169:64;;28250:49;28266:5;28281:4;28288:10;28250:15;:49::i;:::-;28335:10;28316:15;;:29;;;;;;;:::i;:::-;;;;;;;;28375:5;28366:14;;:5;:14;;;28362:323;;28401:154;28429:15;;28467:35;28484:4;28491:10;:8;:10::i;:::-;28467:8;:35::i;:::-;28525:11;;;;;;;;;;;28401:5;:154::i;:::-;28594:1;28576:15;:19;;;;28362:323;;;28636:33;28656:3;28661:7;28636:19;:33::i;:::-;28362:323;28708:49;28724:5;28731:3;28746:10;28736:7;:20;;;;:::i;:::-;28708:15;:49::i;:::-;28701:56;;;;27847:971;28782:36;28798:5;28805:3;28810:7;28782:15;:36::i;:::-;28775:43;27361:1465;;;;:::o;25858:191::-;25932:16;25951:6;;;;;;;;;;;25932:25;;25977:8;25968:6;;:17;;;;;;;;;;;;;;;;;;26032:8;26001:40;;26022:8;26001:40;;;;;;;;;;;;25921:128;25858:191;:::o;29242:110::-;29284:7;29330:6;;;;;;;;;;;29311:31;;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29304:40;;29242:110;:::o;29360:199::-;29461:7;29511:13;:11;:13::i;:::-;29493:40;;;29534:7;29543;29493:58;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29486:65;;29360:199;;;;:::o;28834:276::-;28917:27;29012:14;29022:3;29012:9;:14::i;:::-;26217:5;28965:12;;28949:13;:11;:13::i;:::-;:28;;;;:::i;:::-;28948:60;;;;:::i;:::-;28947:79;;;;:::i;:::-;28917:109;;29051:19;29041:7;:29;29037:65;;;29079:23;;;;;;;;;;;;;;29037:65;28906:204;28834:276;;:::o;17828:806::-;17941:1;17925:18;;:4;:18;;;;17917:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18018:1;18004:16;;:2;:16;;;;17996:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;18073:38;18094:4;18100:2;18104:6;18073:20;:38::i;:::-;18124:19;18146:9;:15;18156:4;18146:15;;;;;;;;;;;;;;;;18124:37;;18195:6;18180:11;:21;;18172:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;18312:6;18298:11;:20;18280:9;:15;18290:4;18280:15;;;;;;;;;;;;;;;:38;;;;18515:6;18498:9;:13;18508:2;18498:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;18565:2;18550:26;;18559:4;18550:26;;;18569:6;18550:26;;;;;;:::i;:::-;;;;;;;;18589:37;18609:4;18615:2;18619:6;18589:19;:37::i;:::-;17906:728;17828:806;;;:::o;29567:539::-;29668:16;29702:21;29734:12;29749:10;:8;:10::i;:::-;29734:25;;29787:4;29776:15;;:7;:15;;;:34;;;;29806:4;29795:15;;:7;:15;;;29776:34;29772:303;;;29848:1;29834:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29827:23;;29875:7;29865:4;29870:1;29865:7;;;;;;;;:::i;:::-;;;;;;;:17;;;;;;;;;;;29907:7;29897:4;29902:1;29897:7;;;;;;;;:::i;:::-;;;;;;;:17;;;;;;;;;;;29772:303;;;29968:1;29954:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29947:23;;29995:7;29985:4;29990:1;29985:7;;;;;;;;:::i;:::-;;;;;;;:17;;;;;;;;;;;30027:4;30017;30022:1;30017:7;;;;;;;;:::i;:::-;;;;;;;:14;;;;;;;;;;;30056:7;30046:4;30051:1;30046:7;;;;;;;;:::i;:::-;;;;;;;:17;;;;;;;;;;;29772:303;30094:4;30087:11;;;;29567:539;;;;:::o;30114:729::-;30254:1;30242:9;:13;30238:598;;;30279:5;30285:1;30279:8;;;;;;;;:::i;:::-;;;;;;;;30272:24;;;30297:6;;;;;;;;;;;30305:9;30272:43;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;30332:21;26217:5;30503:8;;26217:5;30486:25;;;;:::i;:::-;30376:6;;;;;;;;;;;30357:40;;;30416:9;30444:5;30357:107;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;30480:1;30465:5;:12;:16;;;;:::i;:::-;30357:125;;;;;;;;:::i;:::-;;;;;;;;:155;;;;:::i;:::-;30356:174;;;;:::i;:::-;30332:198;;30566:6;;;;;;;;;;;30547:98;;;30668:9;30700:13;30736:5;30764:3;30790:15;30547:277;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30257:579;30238:598;30114:729;;;:::o;29118:116::-;29163:7;29209:6;;;;;;;;;;;29190:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;29183:43;;29118:116;:::o;22571:91::-;;;;:::o;23266:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1397:75::-;1430:6;1463:2;1457:9;1447:19;;1397:75;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:118::-;3916:24;3934:5;3916:24;:::i;:::-;3911:3;3904:37;3829:118;;:::o;3953:222::-;4046:4;4084:2;4073:9;4069:18;4061:26;;4097:71;4165:1;4154:9;4150:17;4141:6;4097:71;:::i;:::-;3953:222;;;;:::o;4181:619::-;4258:6;4266;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:119;;;4329:79;;:::i;:::-;4291:119;4449:1;4474:53;4519:7;4510:6;4499:9;4495:22;4474:53;:::i;:::-;4464:63;;4420:117;4576:2;4602:53;4647:7;4638:6;4627:9;4623:22;4602:53;:::i;:::-;4592:63;;4547:118;4704:2;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4675:118;4181:619;;;;;:::o;4806:86::-;4841:7;4881:4;4874:5;4870:16;4859:27;;4806:86;;;:::o;4898:112::-;4981:22;4997:5;4981:22;:::i;:::-;4976:3;4969:35;4898:112;;:::o;5016:214::-;5105:4;5143:2;5132:9;5128:18;5120:26;;5156:67;5220:1;5209:9;5205:17;5196:6;5156:67;:::i;:::-;5016:214;;;;:::o;5236:329::-;5295:6;5344:2;5332:9;5323:7;5319:23;5315:32;5312:119;;;5350:79;;:::i;:::-;5312:119;5470:1;5495:53;5540:7;5531:6;5520:9;5516:22;5495:53;:::i;:::-;5485:63;;5441:117;5236:329;;;;:::o;5571:118::-;5658:24;5676:5;5658:24;:::i;:::-;5653:3;5646:37;5571:118;;:::o;5695:222::-;5788:4;5826:2;5815:9;5811:18;5803:26;;5839:71;5907:1;5896:9;5892:17;5883:6;5839:71;:::i;:::-;5695:222;;;;:::o;5923:474::-;5991:6;5999;6048:2;6036:9;6027:7;6023:23;6019:32;6016:119;;;6054:79;;:::i;:::-;6016:119;6174:1;6199:53;6244:7;6235:6;6224:9;6220:22;6199:53;:::i;:::-;6189:63;;6145:117;6301:2;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6272:118;5923:474;;;;;:::o;6403:180::-;6451:77;6448:1;6441:88;6548:4;6545:1;6538:15;6572:4;6569:1;6562:15;6589:320;6633:6;6670:1;6664:4;6660:12;6650:22;;6717:1;6711:4;6707:12;6738:18;6728:81;;6794:4;6786:6;6782:17;6772:27;;6728:81;6856:2;6848:6;6845:14;6825:18;6822:38;6819:84;;;6875:18;;:::i;:::-;6819:84;6640:269;6589:320;;;:::o;6915:180::-;6963:77;6960:1;6953:88;7060:4;7057:1;7050:15;7084:4;7081:1;7074:15;7101:305;7141:3;7160:20;7178:1;7160:20;:::i;:::-;7155:25;;7194:20;7212:1;7194:20;:::i;:::-;7189:25;;7348:1;7280:66;7276:74;7273:1;7270:81;7267:107;;;7354:18;;:::i;:::-;7267:107;7398:1;7395;7391:9;7384:16;;7101:305;;;;:::o;7412:224::-;7552:34;7548:1;7540:6;7536:14;7529:58;7621:7;7616:2;7608:6;7604:15;7597:32;7412:224;:::o;7642:366::-;7784:3;7805:67;7869:2;7864:3;7805:67;:::i;:::-;7798:74;;7881:93;7970:3;7881:93;:::i;:::-;7999:2;7994:3;7990:12;7983:19;;7642:366;;;:::o;8014:419::-;8180:4;8218:2;8207:9;8203:18;8195:26;;8267:9;8261:4;8257:20;8253:1;8242:9;8238:17;8231:47;8295:131;8421:4;8295:131;:::i;:::-;8287:139;;8014:419;;;:::o;8439:225::-;8579:34;8575:1;8567:6;8563:14;8556:58;8648:8;8643:2;8635:6;8631:15;8624:33;8439:225;:::o;8670:366::-;8812:3;8833:67;8897:2;8892:3;8833:67;:::i;:::-;8826:74;;8909:93;8998:3;8909:93;:::i;:::-;9027:2;9022:3;9018:12;9011:19;;8670:366;;;:::o;9042:419::-;9208:4;9246:2;9235:9;9231:18;9223:26;;9295:9;9289:4;9285:20;9281:1;9270:9;9266:17;9259:47;9323:131;9449:4;9323:131;:::i;:::-;9315:139;;9042:419;;;:::o;9467:223::-;9607:34;9603:1;9595:6;9591:14;9584:58;9676:6;9671:2;9663:6;9659:15;9652:31;9467:223;:::o;9696:366::-;9838:3;9859:67;9923:2;9918:3;9859:67;:::i;:::-;9852:74;;9935:93;10024:3;9935:93;:::i;:::-;10053:2;10048:3;10044:12;10037:19;;9696:366;;;:::o;10068:419::-;10234:4;10272:2;10261:9;10257:18;10249:26;;10321:9;10315:4;10311:20;10307:1;10296:9;10292:17;10285:47;10349:131;10475:4;10349:131;:::i;:::-;10341:139;;10068:419;;;:::o;10493:221::-;10633:34;10629:1;10621:6;10617:14;10610:58;10702:4;10697:2;10689:6;10685:15;10678:29;10493:221;:::o;10720:366::-;10862:3;10883:67;10947:2;10942:3;10883:67;:::i;:::-;10876:74;;10959:93;11048:3;10959:93;:::i;:::-;11077:2;11072:3;11068:12;11061:19;;10720:366;;;:::o;11092:419::-;11258:4;11296:2;11285:9;11281:18;11273:26;;11345:9;11339:4;11335:20;11331:1;11320:9;11316:17;11309:47;11373:131;11499:4;11373:131;:::i;:::-;11365:139;;11092:419;;;:::o;11517:182::-;11657:34;11653:1;11645:6;11641:14;11634:58;11517:182;:::o;11705:366::-;11847:3;11868:67;11932:2;11927:3;11868:67;:::i;:::-;11861:74;;11944:93;12033:3;11944:93;:::i;:::-;12062:2;12057:3;12053:12;12046:19;;11705:366;;;:::o;12077:419::-;12243:4;12281:2;12270:9;12266:18;12258:26;;12330:9;12324:4;12320:20;12316:1;12305:9;12301:17;12294:47;12358:131;12484:4;12358:131;:::i;:::-;12350:139;;12077:419;;;:::o;12502:179::-;12642:31;12638:1;12630:6;12626:14;12619:55;12502:179;:::o;12687:366::-;12829:3;12850:67;12914:2;12909:3;12850:67;:::i;:::-;12843:74;;12926:93;13015:3;12926:93;:::i;:::-;13044:2;13039:3;13035:12;13028:19;;12687:366;;;:::o;13059:419::-;13225:4;13263:2;13252:9;13248:18;13240:26;;13312:9;13306:4;13302:20;13298:1;13287:9;13283:17;13276:47;13340:131;13466:4;13340:131;:::i;:::-;13332:139;;13059:419;;;:::o;13484:348::-;13524:7;13547:20;13565:1;13547:20;:::i;:::-;13542:25;;13581:20;13599:1;13581:20;:::i;:::-;13576:25;;13769:1;13701:66;13697:74;13694:1;13691:81;13686:1;13679:9;13672:17;13668:105;13665:131;;;13776:18;;:::i;:::-;13665:131;13824:1;13821;13817:9;13806:20;;13484:348;;;;:::o;13838:180::-;13886:77;13883:1;13876:88;13983:4;13980:1;13973:15;14007:4;14004:1;13997:15;14024:185;14064:1;14081:20;14099:1;14081:20;:::i;:::-;14076:25;;14115:20;14133:1;14115:20;:::i;:::-;14110:25;;14154:1;14144:35;;14159:18;;:::i;:::-;14144:35;14201:1;14198;14194:9;14189:14;;14024:185;;;;:::o;14215:191::-;14255:4;14275:20;14293:1;14275:20;:::i;:::-;14270:25;;14309:20;14327:1;14309:20;:::i;:::-;14304:25;;14348:1;14345;14342:8;14339:34;;;14353:18;;:::i;:::-;14339:34;14398:1;14395;14391:9;14383:17;;14215:191;;;;:::o;14412:143::-;14469:5;14500:6;14494:13;14485:22;;14516:33;14543:5;14516:33;:::i;:::-;14412:143;;;;:::o;14561:351::-;14631:6;14680:2;14668:9;14659:7;14655:23;14651:32;14648:119;;;14686:79;;:::i;:::-;14648:119;14806:1;14831:64;14887:7;14878:6;14867:9;14863:22;14831:64;:::i;:::-;14821:74;;14777:128;14561:351;;;;:::o;14918:332::-;15039:4;15077:2;15066:9;15062:18;15054:26;;15090:71;15158:1;15147:9;15143:17;15134:6;15090:71;:::i;:::-;15171:72;15239:2;15228:9;15224:18;15215:6;15171:72;:::i;:::-;14918:332;;;;;:::o;15256:224::-;15396:34;15392:1;15384:6;15380:14;15373:58;15465:7;15460:2;15452:6;15448:15;15441:32;15256:224;:::o;15486:366::-;15628:3;15649:67;15713:2;15708:3;15649:67;:::i;:::-;15642:74;;15725:93;15814:3;15725:93;:::i;:::-;15843:2;15838:3;15834:12;15827:19;;15486:366;;;:::o;15858:419::-;16024:4;16062:2;16051:9;16047:18;16039:26;;16111:9;16105:4;16101:20;16097:1;16086:9;16082:17;16075:47;16139:131;16265:4;16139:131;:::i;:::-;16131:139;;15858:419;;;:::o;16283:222::-;16423:34;16419:1;16411:6;16407:14;16400:58;16492:5;16487:2;16479:6;16475:15;16468:30;16283:222;:::o;16511:366::-;16653:3;16674:67;16738:2;16733:3;16674:67;:::i;:::-;16667:74;;16750:93;16839:3;16750:93;:::i;:::-;16868:2;16863:3;16859:12;16852:19;;16511:366;;;:::o;16883:419::-;17049:4;17087:2;17076:9;17072:18;17064:26;;17136:9;17130:4;17126:20;17122:1;17111:9;17107:17;17100:47;17164:131;17290:4;17164:131;:::i;:::-;17156:139;;16883:419;;;:::o;17308:225::-;17448:34;17444:1;17436:6;17432:14;17425:58;17517:8;17512:2;17504:6;17500:15;17493:33;17308:225;:::o;17539:366::-;17681:3;17702:67;17766:2;17761:3;17702:67;:::i;:::-;17695:74;;17778:93;17867:3;17778:93;:::i;:::-;17896:2;17891:3;17887:12;17880:19;;17539:366;;;:::o;17911:419::-;18077:4;18115:2;18104:9;18100:18;18092:26;;18164:9;18158:4;18154:20;18150:1;18139:9;18135:17;18128:47;18192:131;18318:4;18192:131;:::i;:::-;18184:139;;17911:419;;;:::o;18336:180::-;18384:77;18381:1;18374:88;18481:4;18478:1;18471:15;18505:4;18502:1;18495:15;18522:180;18570:77;18567:1;18560:88;18667:4;18664:1;18657:15;18691:4;18688:1;18681:15;18708:332;18829:4;18867:2;18856:9;18852:18;18844:26;;18880:71;18948:1;18937:9;18933:17;18924:6;18880:71;:::i;:::-;18961:72;19029:2;19018:9;19014:18;19005:6;18961:72;:::i;:::-;18708:332;;;;;:::o;19046:116::-;19116:21;19131:5;19116:21;:::i;:::-;19109:5;19106:32;19096:60;;19152:1;19149;19142:12;19096:60;19046:116;:::o;19168:137::-;19222:5;19253:6;19247:13;19238:22;;19269:30;19293:5;19269:30;:::i;:::-;19168:137;;;;:::o;19311:345::-;19378:6;19427:2;19415:9;19406:7;19402:23;19398:32;19395:119;;;19433:79;;:::i;:::-;19395:119;19553:1;19578:61;19631:7;19622:6;19611:9;19607:22;19578:61;:::i;:::-;19568:71;;19524:125;19311:345;;;;:::o;19662:114::-;19729:6;19763:5;19757:12;19747:22;;19662:114;;;:::o;19782:184::-;19881:11;19915:6;19910:3;19903:19;19955:4;19950:3;19946:14;19931:29;;19782:184;;;;:::o;19972:132::-;20039:4;20062:3;20054:11;;20092:4;20087:3;20083:14;20075:22;;19972:132;;;:::o;20110:108::-;20187:24;20205:5;20187:24;:::i;:::-;20182:3;20175:37;20110:108;;:::o;20224:179::-;20293:10;20314:46;20356:3;20348:6;20314:46;:::i;:::-;20392:4;20387:3;20383:14;20369:28;;20224:179;;;;:::o;20409:113::-;20479:4;20511;20506:3;20502:14;20494:22;;20409:113;;;:::o;20558:732::-;20677:3;20706:54;20754:5;20706:54;:::i;:::-;20776:86;20855:6;20850:3;20776:86;:::i;:::-;20769:93;;20886:56;20936:5;20886:56;:::i;:::-;20965:7;20996:1;20981:284;21006:6;21003:1;21000:13;20981:284;;;21082:6;21076:13;21109:63;21168:3;21153:13;21109:63;:::i;:::-;21102:70;;21195:60;21248:6;21195:60;:::i;:::-;21185:70;;21041:224;21028:1;21025;21021:9;21016:14;;20981:284;;;20985:14;21281:3;21274:10;;20682:608;;;20558:732;;;;:::o;21296:483::-;21467:4;21505:2;21494:9;21490:18;21482:26;;21518:71;21586:1;21575:9;21571:17;21562:6;21518:71;:::i;:::-;21636:9;21630:4;21626:20;21621:2;21610:9;21606:18;21599:48;21664:108;21767:4;21758:6;21664:108;:::i;:::-;21656:116;;21296:483;;;;;:::o;21785:117::-;21894:1;21891;21884:12;21908:281;21991:27;22013:4;21991:27;:::i;:::-;21983:6;21979:40;22121:6;22109:10;22106:22;22085:18;22073:10;22070:34;22067:62;22064:88;;;22132:18;;:::i;:::-;22064:88;22172:10;22168:2;22161:22;21951:238;21908:281;;:::o;22195:129::-;22229:6;22256:20;;:::i;:::-;22246:30;;22285:33;22313:4;22305:6;22285:33;:::i;:::-;22195:129;;;:::o;22330:311::-;22407:4;22497:18;22489:6;22486:30;22483:56;;;22519:18;;:::i;:::-;22483:56;22569:4;22561:6;22557:17;22549:25;;22629:4;22623;22619:15;22611:23;;22330:311;;;:::o;22647:117::-;22756:1;22753;22746:12;22770:143;22827:5;22858:6;22852:13;22843:22;;22874:33;22901:5;22874:33;:::i;:::-;22770:143;;;;:::o;22936:732::-;23043:5;23068:81;23084:64;23141:6;23084:64;:::i;:::-;23068:81;:::i;:::-;23059:90;;23169:5;23198:6;23191:5;23184:21;23232:4;23225:5;23221:16;23214:23;;23285:4;23277:6;23273:17;23265:6;23261:30;23314:3;23306:6;23303:15;23300:122;;;23333:79;;:::i;:::-;23300:122;23448:6;23431:231;23465:6;23460:3;23457:15;23431:231;;;23540:3;23569:48;23613:3;23601:10;23569:48;:::i;:::-;23564:3;23557:61;23647:4;23642:3;23638:14;23631:21;;23507:155;23491:4;23486:3;23482:14;23475:21;;23431:231;;;23435:21;23049:619;;22936:732;;;;;:::o;23691:385::-;23773:5;23822:3;23815:4;23807:6;23803:17;23799:27;23789:122;;23830:79;;:::i;:::-;23789:122;23940:6;23934:13;23965:105;24066:3;24058:6;24051:4;24043:6;24039:17;23965:105;:::i;:::-;23956:114;;23779:297;23691:385;;;;:::o;24082:554::-;24177:6;24226:2;24214:9;24205:7;24201:23;24197:32;24194:119;;;24232:79;;:::i;:::-;24194:119;24373:1;24362:9;24358:17;24352:24;24403:18;24395:6;24392:30;24389:117;;;24425:79;;:::i;:::-;24389:117;24530:89;24611:7;24602:6;24591:9;24587:22;24530:89;:::i;:::-;24520:99;;24323:306;24082:554;;;;:::o;24642:815::-;24897:4;24935:3;24924:9;24920:19;24912:27;;24949:71;25017:1;25006:9;25002:17;24993:6;24949:71;:::i;:::-;25030:72;25098:2;25087:9;25083:18;25074:6;25030:72;:::i;:::-;25149:9;25143:4;25139:20;25134:2;25123:9;25119:18;25112:48;25177:108;25280:4;25271:6;25177:108;:::i;:::-;25169:116;;25295:72;25363:2;25352:9;25348:18;25339:6;25295:72;:::i;:::-;25377:73;25445:3;25434:9;25430:19;25421:6;25377:73;:::i;:::-;24642:815;;;;;;;;:::o

Swarm Source

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