ETH Price: $2,983.11 (+1.77%)
Gas: 1 Gwei

Token

AOL2.0 (AOL2.0)
 

Overview

Max Total Supply

420,690,000,000,000 AOL2.0

Holders

297

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
712,348,773,639.965567614413741977 AOL2.0

Value
$0.00
0xf8cC081D772c8FA0DFc2d5544B11777B84E4E2Ad
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:
AOL2Coin

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// // File: @openzeppelin/contracts/token/ERC20/IERC20.sol
//  █████   ██████  ██      ██████      ██████  
// ██   ██ ██    ██ ██           ██    ██  ████ 
// ███████ ██    ██ ██       █████     ██ ██ ██ 
// ██   ██ ██    ██ ██      ██         ████  ██ 
// ██   ██  ██████  ███████ ███████ ██  ██████  
                                             
                                             
//https://aolcoin.xyz
//https://twitter.com/AOL2Coin
                                             
// 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/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// 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: contracts/aol2.sol





 
pragma solidity ^0.8.0;
 
contract AOL2Coin is Ownable, ERC20 {
    IUniswapV2Router02 public uniswapV2Router;
    bool public limited;
    bool taxesEnabled;
    uint256 public maxHoldingAmount;
    uint256 public buyTaxPercent = 20; // Never change to ZERO, disable taxes instead
    uint256 public sellTaxPercent = 20; // Never change to ZERO, disable taxes instead
    uint256 minAmountToSwapTaxes = (totalSupply() * 1) / 1000;
 
    bool inSwapAndLiq;
    bool paused = true;
 
    address public marketingWallet;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;
    mapping(address => bool) public _isExcludedFromFees;
 
    modifier lockTheSwap() {
        inSwapAndLiq = true;
        _;
        inSwapAndLiq = false;
    }
 
    constructor() ERC20("AOL2.0", "AOL2.0") {
        _mint(msg.sender, 420690000000000000000000000000000);
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );
        address _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
 
        uniswapV2Router = _uniswapV2Router;
        uniswapV2Pair = _uniswapV2Pair;
 
        _isExcludedFromFees[msg.sender] = true;
        _isExcludedFromFees[marketingWallet] = true;
        _isExcludedFromFees[uniswapV2Pair] = true;
        _isExcludedFromFees[address(this)] = true;
 
        marketingWallet = 0xF3BF365d99cA4199Be692c9e5C3A0D31AE7C2C2B; // Replace with your wallet heree
    }
 
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "ERC20: transfer must be greater than 0");
 
        if (paused) {
            require(
                from == owner() || from == address(this),
                "Trading not active yet"
            );
        }
 
        require(!blacklists[to] && !blacklists[from], "Blacklisted");
 
        if (limited && from == uniswapV2Pair) {
            require(balanceOf(to) + amount <= maxHoldingAmount, "Forbid");
        }
 
        uint256 taxAmount;
        if (taxesEnabled) {
            if (from == uniswapV2Pair) {
                //Buy
 
                if (!_isExcludedFromFees[to])
                    taxAmount = (amount * buyTaxPercent) / 100;
            }
            // Sell
            if (to == uniswapV2Pair) {
                if (!_isExcludedFromFees[from])
                    taxAmount = (amount * sellTaxPercent) / 100;
            }
 
            uint256 contractTokenBalance = balanceOf(address(this));
            bool overMinTokenBalance = contractTokenBalance >=
                minAmountToSwapTaxes;
 
            if (overMinTokenBalance && !inSwapAndLiq && from != uniswapV2Pair) {
                handleTax();
            }
        }
 
        // Fees
        if (taxAmount > 0) {
            uint256 userAmount = amount - taxAmount;
            super._transfer(from, address(this), taxAmount);
            super._transfer(from, to, userAmount);
        } else {
            super._transfer(from, to, amount);
        }
    }
 
    function handleTax() internal lockTheSwap {
        // generate the uniswap pair path of token -> weth
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = uniswapV2Router.WETH();
 
        _approve(
            address(this),
            address(uniswapV2Router),
            balanceOf(address(this))
        );
 
        // make the swap
        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(
            balanceOf(address(this)),
            0, // accept any amount of ETH
            path,
            marketingWallet,
            block.timestamp
        );
    }
 
    function changeMarketingWallet(
        address _newMarketingWallet
    ) external onlyOwner {
        marketingWallet = _newMarketingWallet;
    }
 
    function changeTaxPercent(
        uint256 _newBuyTaxPercent,
        uint256 _newSellTaxPercent
    ) external onlyOwner {
        buyTaxPercent = _newBuyTaxPercent;
        sellTaxPercent = _newSellTaxPercent;
    }
 
    function excludeFromFees(
        address _address,
        bool _isExcluded
    ) external onlyOwner {
        _isExcludedFromFees[_address] = _isExcluded;
    }
 
    function changeMinAmountToSwapTaxes(
        uint256 newMinAmount
    ) external onlyOwner {
        require(newMinAmount > 0, "Cannot set to zero");
        minAmountToSwapTaxes = newMinAmount;
    }
 
    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
 
    function enableTaxes(bool _enable) external onlyOwner {
        taxesEnabled = _enable;
    }
 
    function activate() external onlyOwner {
        paused = !paused;
    }
 
    function toggleLimited() external onlyOwner {
        limited = !limited;
    }
 
    function blacklist(
        address _address,
        bool _isBlacklisting
    ) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }
 
    function setRule(
        bool _limited,
        uint256 _maxHoldingAmount
    ) external onlyOwner {
        limited = _limited;
        maxHoldingAmount = _maxHoldingAmount;
    }
 
    function airdrop(
        address[] memory recipients,
        uint[] memory values
    ) external onlyOwner {
        uint256 total = 0;
        for (uint256 i; i < recipients.length; i++) total += values[i];
        _transfer(msg.sender, address(this), total);
        for (uint i; i < recipients.length; i++) {
            _transfer(address(this), recipients[i], values[i]);
        }
    }
}
 
// Interfaces
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;
}
 
interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);
 
    function name() external pure returns (string memory);
 
    function symbol() external pure returns (string memory);
 
    function decimals() external pure returns (uint8);
 
    function totalSupply() external view returns (uint);
 
    function balanceOf(address owner) external view returns (uint);
 
    function allowance(
        address owner,
        address spender
    ) external view returns (uint);
 
    function approve(address spender, uint value) external returns (bool);
 
    function transfer(address to, uint value) external returns (bool);
 
    function transferFrom(
        address from,
        address to,
        uint value
    ) external returns (bool);
 
    function DOMAIN_SEPARATOR() external view returns (bytes32);
 
    function PERMIT_TYPEHASH() external pure returns (bytes32);
 
    function nonces(address owner) external view returns (uint);
 
    function permit(
        address owner,
        address spender,
        uint value,
        uint deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;
 
    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(
        address indexed sender,
        uint amount0,
        uint amount1,
        address indexed to
    );
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);
 
    function MINIMUM_LIQUIDITY() external pure returns (uint);
 
    function factory() external view returns (address);
 
    function token0() external view returns (address);
 
    function token1() external view returns (address);
 
    function getReserves()
        external
        view
        returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
 
    function price0CumulativeLast() external view returns (uint);
 
    function price1CumulativeLast() external view returns (uint);
 
    function kLast() external view returns (uint);
 
    function mint(address to) external returns (uint liquidity);
 
    function burn(address to) external returns (uint amount0, uint amount1);
 
    function swap(
        uint amount0Out,
        uint amount1Out,
        address to,
        bytes calldata data
    ) external;
 
    function skim(address to) external;
 
    function sync() external;
 
    function initialize(address, address) external;
}
 
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);
}
 
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;
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"airdrop","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":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"buyTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketingWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMinAmount","type":"uint256"}],"name":"changeMinAmountToSwapTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newBuyTaxPercent","type":"uint256"},{"internalType":"uint256","name":"_newSellTaxPercent","type":"uint256"}],"name":"changeTaxPercent","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"bool","name":"_enable","type":"bool"}],"name":"enableTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleLimited","outputs":[],"stateMutability":"nonpayable","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

6080604052601460085560146009556103e86001620000236200057c60201b60201c565b6200002f919062000a34565b6200003b9190620009fc565b600a556001600b60016101000a81548160ff0219169083151502179055503480156200006657600080fd5b506040518060400160405280600681526020017f414f4c322e3000000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f414f4c322e300000000000000000000000000000000000000000000000000000815250620000f3620000e76200058660201b60201c565b6200058e60201b60201c565b81600490805190602001906200010b929190620007cb565b50806005908051906020019062000124929190620007cb565b50505062000147336d14bddab3e51a57cff87a500000006200065260201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015620001a957600080fd5b505afa158015620001be573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001e4919062000892565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156200024757600080fd5b505afa1580156200025c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000282919062000892565b6040518363ffffffff1660e01b8152600401620002a192919062000922565b602060405180830381600087803b158015620002bc57600080fd5b505af1158015620002d1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f7919062000892565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555073f3bf365d99ca4199be692c9e5c3a0d31ae7c2c2b600b60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505062000bb0565b6000600354905090565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006bc906200094f565b60405180910390fd5b620006d960008383620007c160201b60201c565b8060036000828254620006ed91906200099f565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007a1919062000971565b60405180910390a3620007bd60008383620007c660201b60201c565b5050565b505050565b505050565b828054620007d99062000ad3565b90600052602060002090601f016020900481019282620007fd576000855562000849565b82601f106200081857805160ff191683800117855562000849565b8280016001018555821562000849579182015b82811115620008485782518255916020019190600101906200082b565b5b5090506200085891906200085c565b5090565b5b80821115620008775760008160009055506001016200085d565b5090565b6000815190506200088c8162000b96565b92915050565b600060208284031215620008a557600080fd5b6000620008b5848285016200087b565b91505092915050565b620008c98162000a95565b82525050565b6000620008de601f836200098e565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6200091c8162000ac9565b82525050565b6000604082019050620009396000830185620008be565b620009486020830184620008be565b9392505050565b600060208201905081810360008301526200096a81620008cf565b9050919050565b600060208201905062000988600083018462000911565b92915050565b600082825260208201905092915050565b6000620009ac8262000ac9565b9150620009b98362000ac9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009f157620009f062000b09565b5b828201905092915050565b600062000a098262000ac9565b915062000a168362000ac9565b92508262000a295762000a2862000b38565b5b828204905092915050565b600062000a418262000ac9565b915062000a4e8362000ac9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000a8a5762000a8962000b09565b5b828202905092915050565b600062000aa28262000aa9565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000aec57607f821691505b6020821081141562000b035762000b0262000b67565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000ba18162000a95565b811462000bad57600080fd5b50565b6131de8062000bc06000396000f3fe608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a57806397f92e95116100ad578063c02466681161007c578063c0246668146105a5578063d21079e6146105c1578063dd62ed3e146105dd578063e0bf7fd11461060d578063f2fde38b1461063d57610206565b806397f92e951461050d578063a457c2d714610529578063a9059cbb14610559578063bb85c6d11461058957610206565b8063860a32ec116100e9578063860a32ec1461049557806389f9a1d3146104b35780638da5cb5b146104d157806395d89b41146104ef57610206565b806370a082311461041f578063715018a61461044f57806375f0a874146104595780637df405a41461047757610206565b8063302757441161019d578063404e51291161016c578063404e51291461038f57806342966c68146103ab57806349bd5a5e146103c757806367243482146103e55780636fb1896c1461040157610206565b80633027574414610309578063313ce5671461032557806339509351146103435780633d5369f61461037357610206565b80631694505e116101d95780631694505e1461026d57806316c021291461028b57806318160ddd146102bb57806323b872dd146102d957610206565b806303417ed51461020b57806306fdde0314610215578063095ea7b3146102335780630f15f4c014610263575b600080fd5b610213610659565b005b61021d61068d565b60405161022a9190612ab8565b60405180910390f35b61024d60048036038101906102489190612261565b61071f565b60405161025a9190612a82565b60405180910390f35b61026b610742565b005b610275610776565b6040516102829190612a9d565b60405180910390f35b6102a560048036038101906102a09190612148565b61079c565b6040516102b29190612a82565b60405180910390f35b6102c36107bc565b6040516102d09190612cda565b60405180910390f35b6102f360048036038101906102ee91906121d6565b6107c6565b6040516103009190612a82565b60405180910390f35b610323600480360381019061031e9190612309565b6107f5565b005b61032d61081a565b60405161033a9190612d4f565b60405180910390f35b61035d60048036038101906103589190612261565b610823565b60405161036a9190612a82565b60405180910390f35b61038d6004803603810190610388919061236e565b61085a565b005b6103a960048036038101906103a49190612225565b6108af565b005b6103c560048036038101906103c0919061236e565b610912565b005b6103cf61091f565b6040516103dc9190612a67565b60405180910390f35b6103ff60048036038101906103fa919061229d565b610945565b005b610409610a77565b6040516104169190612cda565b60405180910390f35b61043960048036038101906104349190612148565b610a7d565b6040516104469190612cda565b60405180910390f35b610457610ac6565b005b610461610ada565b60405161046e9190612a67565b60405180910390f35b61047f610b00565b60405161048c9190612cda565b60405180910390f35b61049d610b06565b6040516104aa9190612a82565b60405180910390f35b6104bb610b19565b6040516104c89190612cda565b60405180910390f35b6104d9610b1f565b6040516104e69190612a67565b60405180910390f35b6104f7610b48565b6040516105049190612ab8565b60405180910390f35b61052760048036038101906105229190612397565b610bda565b005b610543600480360381019061053e9190612261565b610bf4565b6040516105509190612a82565b60405180910390f35b610573600480360381019061056e9190612261565b610c6b565b6040516105809190612a82565b60405180910390f35b6105a3600480360381019061059e9190612148565b610c8e565b005b6105bf60048036038101906105ba9190612225565b610cda565b005b6105db60048036038101906105d69190612332565b610d3d565b005b6105f760048036038101906105f2919061219a565b610d6a565b6040516106049190612cda565b60405180910390f35b61062760048036038101906106229190612148565b610df1565b6040516106349190612a82565b60405180910390f35b61065760048036038101906106529190612148565b610e11565b005b610661610e95565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b60606004805461069c9061301b565b80601f01602080910402602001604051908101604052809291908181526020018280546106c89061301b565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b60008061072a610f13565b9050610737818585610f1b565b600191505092915050565b61074a610e95565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b6000806107d1610f13565b90506107de8582856110e6565b6107e9858585611172565b60019150509392505050565b6107fd610e95565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b60008061082e610f13565b905061084f8185856108408589610d6a565b61084a9190612e48565b610f1b565b600191505092915050565b610862610e95565b600081116108a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089c90612afa565b60405180910390fd5b80600a8190555050565b6108b7610e95565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61091c3382611784565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61094d610e95565b6000805b83518110156109bb57828181518110610993577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151826109a69190612e48565b915080806109b39061304d565b915050610951565b506109c7333083611172565b60005b8351811015610a7157610a5e30858381518110610a10577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858481518110610a51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611172565b8080610a699061304d565b9150506109ca565b50505050565b60095481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ace610e95565b610ad86000611954565b565b600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610b579061301b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b839061301b565b8015610bd05780601f10610ba557610100808354040283529160200191610bd0565b820191906000526020600020905b815481529060010190602001808311610bb357829003601f168201915b5050505050905090565b610be2610e95565b81600881905550806009819055505050565b600080610bff610f13565b90506000610c0d8286610d6a565b905083811015610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990612c9a565b60405180910390fd5b610c5f8286868403610f1b565b60019250505092915050565b600080610c76610f13565b9050610c83818585611172565b600191505092915050565b610c96610e95565b80600b60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ce2610e95565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610d45610e95565b81600660146101000a81548160ff021916908315150217905550806007819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b610e19610e95565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090612b5a565b60405180910390fd5b610e9281611954565b50565b610e9d610f13565b73ffffffffffffffffffffffffffffffffffffffff16610ebb610b1f565b73ffffffffffffffffffffffffffffffffffffffff1614610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890612c1a565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290612c7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff290612b7a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110d99190612cda565b60405180910390a3505050565b60006110f28484610d6a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461116c578181101561115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590612bba565b60405180910390fd5b61116b8484848403610f1b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990612c5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990612ada565b60405180910390fd5b60008111611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90612b9a565b60405180910390fd5b600b60019054906101000a900460ff1615611356576112b2610b1f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061131657503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90612b3a565b60405180910390fd5b5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113fa5750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143090612cba565b60405180910390fd5b600660149054906101000a900460ff1680156114a25750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561150057600754816114b484610a7d565b6114be9190612e48565b11156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690612bfa565b60405180910390fd5b5b6000600660159054906101000a900460ff161561173d57600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115dc57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115db576064600854836115ce9190612ecf565b6115d89190612e9e565b90505b5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116a157600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116a0576064600954836116939190612ecf565b61169d9190612e9e565b90505b5b60006116ac30610a7d565b90506000600a5482101590508080156116d25750600b60009054906101000a900460ff16155b801561172c5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561173a57611739611a18565b5b50505b600081111561177257600081836117549190612f29565b9050611761853084611d43565b61176c858583611d43565b5061177e565b61177d848484611d43565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb90612c3a565b60405180910390fd5b61180082600083611fbe565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90612b1a565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161193b9190612cda565b60405180910390a361194f83600084611fc3565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600b60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611a76577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611aa45781602001602082028036833780820191505090505b5090503081600081518110611ae2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b8457600080fd5b505afa158015611b98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bbc9190612171565b81600181518110611bf6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c6530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611c6030610a7d565b610f1b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947611cac30610a7d565b600084600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611cf3959493929190612cf5565b600060405180830381600087803b158015611d0d57600080fd5b505af1158015611d21573d6000803e3d6000fd5b50505050506000600b60006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa90612c5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a90612ada565b60405180910390fd5b611e2e838383611fbe565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eac90612bda565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fa59190612cda565b60405180910390a3611fb8848484611fc3565b50505050565b505050565b505050565b6000611fdb611fd684612d9b565b612d6a565b90508083825260208201905082856020860282011115611ffa57600080fd5b60005b8581101561202a578161201088826120a0565b845260208401935060208301925050600181019050611ffd565b5050509392505050565b600061204761204284612dc7565b612d6a565b9050808382526020820190508285602086028201111561206657600080fd5b60005b85811015612096578161207c8882612133565b845260208401935060208301925050600181019050612069565b5050509392505050565b6000813590506120af81613163565b92915050565b6000815190506120c481613163565b92915050565b600082601f8301126120db57600080fd5b81356120eb848260208601611fc8565b91505092915050565b600082601f83011261210557600080fd5b8135612115848260208601612034565b91505092915050565b60008135905061212d8161317a565b92915050565b60008135905061214281613191565b92915050565b60006020828403121561215a57600080fd5b6000612168848285016120a0565b91505092915050565b60006020828403121561218357600080fd5b6000612191848285016120b5565b91505092915050565b600080604083850312156121ad57600080fd5b60006121bb858286016120a0565b92505060206121cc858286016120a0565b9150509250929050565b6000806000606084860312156121eb57600080fd5b60006121f9868287016120a0565b935050602061220a868287016120a0565b925050604061221b86828701612133565b9150509250925092565b6000806040838503121561223857600080fd5b6000612246858286016120a0565b92505060206122578582860161211e565b9150509250929050565b6000806040838503121561227457600080fd5b6000612282858286016120a0565b925050602061229385828601612133565b9150509250929050565b600080604083850312156122b057600080fd5b600083013567ffffffffffffffff8111156122ca57600080fd5b6122d6858286016120ca565b925050602083013567ffffffffffffffff8111156122f357600080fd5b6122ff858286016120f4565b9150509250929050565b60006020828403121561231b57600080fd5b60006123298482850161211e565b91505092915050565b6000806040838503121561234557600080fd5b60006123538582860161211e565b925050602061236485828601612133565b9150509250929050565b60006020828403121561238057600080fd5b600061238e84828501612133565b91505092915050565b600080604083850312156123aa57600080fd5b60006123b885828601612133565b92505060206123c985828601612133565b9150509250929050565b60006123df83836123eb565b60208301905092915050565b6123f481612f5d565b82525050565b61240381612f5d565b82525050565b600061241482612e03565b61241e8185612e26565b935061242983612df3565b8060005b8381101561245a57815161244188826123d3565b975061244c83612e19565b92505060018101905061242d565b5085935050505092915050565b61247081612f6f565b82525050565b61247f81612fb2565b82525050565b61248e81612fd6565b82525050565b600061249f82612e0e565b6124a98185612e37565b93506124b9818560208601612fe8565b6124c281613152565b840191505092915050565b60006124da602383612e37565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612540601283612e37565b91507f43616e6e6f742073657420746f207a65726f00000000000000000000000000006000830152602082019050919050565b6000612580602283612e37565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125e6601683612e37565b91507f54726164696e67206e6f742061637469766520796574000000000000000000006000830152602082019050919050565b6000612626602683612e37565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061268c602283612e37565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126f2602683612e37565b91507f45524332303a207472616e73666572206d75737420626520677265617465722060008301527f7468616e203000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612758601d83612e37565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000612798602683612e37565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127fe600683612e37565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061283e602083612e37565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061287e602183612e37565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128e4602583612e37565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061294a602483612e37565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129b0602583612e37565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a16600b83612e37565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b612a5281612f9b565b82525050565b612a6181612fa5565b82525050565b6000602082019050612a7c60008301846123fa565b92915050565b6000602082019050612a976000830184612467565b92915050565b6000602082019050612ab26000830184612476565b92915050565b60006020820190508181036000830152612ad28184612494565b905092915050565b60006020820190508181036000830152612af3816124cd565b9050919050565b60006020820190508181036000830152612b1381612533565b9050919050565b60006020820190508181036000830152612b3381612573565b9050919050565b60006020820190508181036000830152612b53816125d9565b9050919050565b60006020820190508181036000830152612b7381612619565b9050919050565b60006020820190508181036000830152612b938161267f565b9050919050565b60006020820190508181036000830152612bb3816126e5565b9050919050565b60006020820190508181036000830152612bd38161274b565b9050919050565b60006020820190508181036000830152612bf38161278b565b9050919050565b60006020820190508181036000830152612c13816127f1565b9050919050565b60006020820190508181036000830152612c3381612831565b9050919050565b60006020820190508181036000830152612c5381612871565b9050919050565b60006020820190508181036000830152612c73816128d7565b9050919050565b60006020820190508181036000830152612c938161293d565b9050919050565b60006020820190508181036000830152612cb3816129a3565b9050919050565b60006020820190508181036000830152612cd381612a09565b9050919050565b6000602082019050612cef6000830184612a49565b92915050565b600060a082019050612d0a6000830188612a49565b612d176020830187612485565b8181036040830152612d298186612409565b9050612d3860608301856123fa565b612d456080830184612a49565b9695505050505050565b6000602082019050612d646000830184612a58565b92915050565b6000604051905081810181811067ffffffffffffffff82111715612d9157612d90613123565b5b8060405250919050565b600067ffffffffffffffff821115612db657612db5613123565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612de257612de1613123565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612e5382612f9b565b9150612e5e83612f9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9357612e92613096565b5b828201905092915050565b6000612ea982612f9b565b9150612eb483612f9b565b925082612ec457612ec36130c5565b5b828204905092915050565b6000612eda82612f9b565b9150612ee583612f9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f1e57612f1d613096565b5b828202905092915050565b6000612f3482612f9b565b9150612f3f83612f9b565b925082821015612f5257612f51613096565b5b828203905092915050565b6000612f6882612f7b565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612fbd82612fc4565b9050919050565b6000612fcf82612f7b565b9050919050565b6000612fe182612f9b565b9050919050565b60005b83811015613006578082015181840152602081019050612feb565b83811115613015576000848401525b50505050565b6000600282049050600182168061303357607f821691505b60208210811415613047576130466130f4565b5b50919050565b600061305882612f9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561308b5761308a613096565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61316c81612f5d565b811461317757600080fd5b50565b61318381612f6f565b811461318e57600080fd5b50565b61319a81612f9b565b81146131a557600080fd5b5056fea26469706673582212203e9949e9ee3eb8bc3e186431b3119871d87774ed6fafa3f53048bdf01e06897c64736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102065760003560e01c806370a082311161011a57806397f92e95116100ad578063c02466681161007c578063c0246668146105a5578063d21079e6146105c1578063dd62ed3e146105dd578063e0bf7fd11461060d578063f2fde38b1461063d57610206565b806397f92e951461050d578063a457c2d714610529578063a9059cbb14610559578063bb85c6d11461058957610206565b8063860a32ec116100e9578063860a32ec1461049557806389f9a1d3146104b35780638da5cb5b146104d157806395d89b41146104ef57610206565b806370a082311461041f578063715018a61461044f57806375f0a874146104595780637df405a41461047757610206565b8063302757441161019d578063404e51291161016c578063404e51291461038f57806342966c68146103ab57806349bd5a5e146103c757806367243482146103e55780636fb1896c1461040157610206565b80633027574414610309578063313ce5671461032557806339509351146103435780633d5369f61461037357610206565b80631694505e116101d95780631694505e1461026d57806316c021291461028b57806318160ddd146102bb57806323b872dd146102d957610206565b806303417ed51461020b57806306fdde0314610215578063095ea7b3146102335780630f15f4c014610263575b600080fd5b610213610659565b005b61021d61068d565b60405161022a9190612ab8565b60405180910390f35b61024d60048036038101906102489190612261565b61071f565b60405161025a9190612a82565b60405180910390f35b61026b610742565b005b610275610776565b6040516102829190612a9d565b60405180910390f35b6102a560048036038101906102a09190612148565b61079c565b6040516102b29190612a82565b60405180910390f35b6102c36107bc565b6040516102d09190612cda565b60405180910390f35b6102f360048036038101906102ee91906121d6565b6107c6565b6040516103009190612a82565b60405180910390f35b610323600480360381019061031e9190612309565b6107f5565b005b61032d61081a565b60405161033a9190612d4f565b60405180910390f35b61035d60048036038101906103589190612261565b610823565b60405161036a9190612a82565b60405180910390f35b61038d6004803603810190610388919061236e565b61085a565b005b6103a960048036038101906103a49190612225565b6108af565b005b6103c560048036038101906103c0919061236e565b610912565b005b6103cf61091f565b6040516103dc9190612a67565b60405180910390f35b6103ff60048036038101906103fa919061229d565b610945565b005b610409610a77565b6040516104169190612cda565b60405180910390f35b61043960048036038101906104349190612148565b610a7d565b6040516104469190612cda565b60405180910390f35b610457610ac6565b005b610461610ada565b60405161046e9190612a67565b60405180910390f35b61047f610b00565b60405161048c9190612cda565b60405180910390f35b61049d610b06565b6040516104aa9190612a82565b60405180910390f35b6104bb610b19565b6040516104c89190612cda565b60405180910390f35b6104d9610b1f565b6040516104e69190612a67565b60405180910390f35b6104f7610b48565b6040516105049190612ab8565b60405180910390f35b61052760048036038101906105229190612397565b610bda565b005b610543600480360381019061053e9190612261565b610bf4565b6040516105509190612a82565b60405180910390f35b610573600480360381019061056e9190612261565b610c6b565b6040516105809190612a82565b60405180910390f35b6105a3600480360381019061059e9190612148565b610c8e565b005b6105bf60048036038101906105ba9190612225565b610cda565b005b6105db60048036038101906105d69190612332565b610d3d565b005b6105f760048036038101906105f2919061219a565b610d6a565b6040516106049190612cda565b60405180910390f35b61062760048036038101906106229190612148565b610df1565b6040516106349190612a82565b60405180910390f35b61065760048036038101906106529190612148565b610e11565b005b610661610e95565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b60606004805461069c9061301b565b80601f01602080910402602001604051908101604052809291908181526020018280546106c89061301b565b80156107155780601f106106ea57610100808354040283529160200191610715565b820191906000526020600020905b8154815290600101906020018083116106f857829003601f168201915b5050505050905090565b60008061072a610f13565b9050610737818585610f1b565b600191505092915050565b61074a610e95565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b6000806107d1610f13565b90506107de8582856110e6565b6107e9858585611172565b60019150509392505050565b6107fd610e95565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b60008061082e610f13565b905061084f8185856108408589610d6a565b61084a9190612e48565b610f1b565b600191505092915050565b610862610e95565b600081116108a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089c90612afa565b60405180910390fd5b80600a8190555050565b6108b7610e95565b80600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61091c3382611784565b50565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61094d610e95565b6000805b83518110156109bb57828181518110610993577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151826109a69190612e48565b915080806109b39061304d565b915050610951565b506109c7333083611172565b60005b8351811015610a7157610a5e30858381518110610a10577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858481518110610a51577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611172565b8080610a699061304d565b9150506109ca565b50505050565b60095481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ace610e95565b610ad86000611954565b565b600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610b579061301b565b80601f0160208091040260200160405190810160405280929190818152602001828054610b839061301b565b8015610bd05780601f10610ba557610100808354040283529160200191610bd0565b820191906000526020600020905b815481529060010190602001808311610bb357829003601f168201915b5050505050905090565b610be2610e95565b81600881905550806009819055505050565b600080610bff610f13565b90506000610c0d8286610d6a565b905083811015610c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4990612c9a565b60405180910390fd5b610c5f8286868403610f1b565b60019250505092915050565b600080610c76610f13565b9050610c83818585611172565b600191505092915050565b610c96610e95565b80600b60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610ce2610e95565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610d45610e95565b81600660146101000a81548160ff021916908315150217905550806007819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b610e19610e95565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8090612b5a565b60405180910390fd5b610e9281611954565b50565b610e9d610f13565b73ffffffffffffffffffffffffffffffffffffffff16610ebb610b1f565b73ffffffffffffffffffffffffffffffffffffffff1614610f11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0890612c1a565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8290612c7a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff290612b7a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110d99190612cda565b60405180910390a3505050565b60006110f28484610d6a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461116c578181101561115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590612bba565b60405180910390fd5b61116b8484848403610f1b565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990612c5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990612ada565b60405180910390fd5b60008111611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90612b9a565b60405180910390fd5b600b60019054906101000a900460ff1615611356576112b2610b1f565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061131657503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90612b3a565b60405180910390fd5b5b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113fa5750600d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b611439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143090612cba565b60405180910390fd5b600660149054906101000a900460ff1680156114a25750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561150057600754816114b484610a7d565b6114be9190612e48565b11156114ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f690612bfa565b60405180910390fd5b5b6000600660159054906101000a900460ff161561173d57600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156115dc57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115db576064600854836115ce9190612ecf565b6115d89190612e9e565b90505b5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156116a157600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116a0576064600954836116939190612ecf565b61169d9190612e9e565b90505b5b60006116ac30610a7d565b90506000600a5482101590508080156116d25750600b60009054906101000a900460ff16155b801561172c5750600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561173a57611739611a18565b5b50505b600081111561177257600081836117549190612f29565b9050611761853084611d43565b61176c858583611d43565b5061177e565b61177d848484611d43565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117eb90612c3a565b60405180910390fd5b61180082600083611fbe565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611887576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187e90612b1a565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161193b9190612cda565b60405180910390a361194f83600084611fc3565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600b60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611a76577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611aa45781602001602082028036833780820191505090505b5090503081600081518110611ae2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b8457600080fd5b505afa158015611b98573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bbc9190612171565b81600181518110611bf6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c6530600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611c6030610a7d565b610f1b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947611cac30610a7d565b600084600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401611cf3959493929190612cf5565b600060405180830381600087803b158015611d0d57600080fd5b505af1158015611d21573d6000803e3d6000fd5b50505050506000600b60006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611db3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daa90612c5a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e1a90612ada565b60405180910390fd5b611e2e838383611fbe565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eac90612bda565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611fa59190612cda565b60405180910390a3611fb8848484611fc3565b50505050565b505050565b505050565b6000611fdb611fd684612d9b565b612d6a565b90508083825260208201905082856020860282011115611ffa57600080fd5b60005b8581101561202a578161201088826120a0565b845260208401935060208301925050600181019050611ffd565b5050509392505050565b600061204761204284612dc7565b612d6a565b9050808382526020820190508285602086028201111561206657600080fd5b60005b85811015612096578161207c8882612133565b845260208401935060208301925050600181019050612069565b5050509392505050565b6000813590506120af81613163565b92915050565b6000815190506120c481613163565b92915050565b600082601f8301126120db57600080fd5b81356120eb848260208601611fc8565b91505092915050565b600082601f83011261210557600080fd5b8135612115848260208601612034565b91505092915050565b60008135905061212d8161317a565b92915050565b60008135905061214281613191565b92915050565b60006020828403121561215a57600080fd5b6000612168848285016120a0565b91505092915050565b60006020828403121561218357600080fd5b6000612191848285016120b5565b91505092915050565b600080604083850312156121ad57600080fd5b60006121bb858286016120a0565b92505060206121cc858286016120a0565b9150509250929050565b6000806000606084860312156121eb57600080fd5b60006121f9868287016120a0565b935050602061220a868287016120a0565b925050604061221b86828701612133565b9150509250925092565b6000806040838503121561223857600080fd5b6000612246858286016120a0565b92505060206122578582860161211e565b9150509250929050565b6000806040838503121561227457600080fd5b6000612282858286016120a0565b925050602061229385828601612133565b9150509250929050565b600080604083850312156122b057600080fd5b600083013567ffffffffffffffff8111156122ca57600080fd5b6122d6858286016120ca565b925050602083013567ffffffffffffffff8111156122f357600080fd5b6122ff858286016120f4565b9150509250929050565b60006020828403121561231b57600080fd5b60006123298482850161211e565b91505092915050565b6000806040838503121561234557600080fd5b60006123538582860161211e565b925050602061236485828601612133565b9150509250929050565b60006020828403121561238057600080fd5b600061238e84828501612133565b91505092915050565b600080604083850312156123aa57600080fd5b60006123b885828601612133565b92505060206123c985828601612133565b9150509250929050565b60006123df83836123eb565b60208301905092915050565b6123f481612f5d565b82525050565b61240381612f5d565b82525050565b600061241482612e03565b61241e8185612e26565b935061242983612df3565b8060005b8381101561245a57815161244188826123d3565b975061244c83612e19565b92505060018101905061242d565b5085935050505092915050565b61247081612f6f565b82525050565b61247f81612fb2565b82525050565b61248e81612fd6565b82525050565b600061249f82612e0e565b6124a98185612e37565b93506124b9818560208601612fe8565b6124c281613152565b840191505092915050565b60006124da602383612e37565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612540601283612e37565b91507f43616e6e6f742073657420746f207a65726f00000000000000000000000000006000830152602082019050919050565b6000612580602283612e37565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006125e6601683612e37565b91507f54726164696e67206e6f742061637469766520796574000000000000000000006000830152602082019050919050565b6000612626602683612e37565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061268c602283612e37565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006126f2602683612e37565b91507f45524332303a207472616e73666572206d75737420626520677265617465722060008301527f7468616e203000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612758601d83612e37565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000612798602683612e37565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006127fe600683612e37565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b600061283e602083612e37565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b600061287e602183612e37565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006128e4602583612e37565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061294a602483612e37565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006129b0602583612e37565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612a16600b83612e37565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b612a5281612f9b565b82525050565b612a6181612fa5565b82525050565b6000602082019050612a7c60008301846123fa565b92915050565b6000602082019050612a976000830184612467565b92915050565b6000602082019050612ab26000830184612476565b92915050565b60006020820190508181036000830152612ad28184612494565b905092915050565b60006020820190508181036000830152612af3816124cd565b9050919050565b60006020820190508181036000830152612b1381612533565b9050919050565b60006020820190508181036000830152612b3381612573565b9050919050565b60006020820190508181036000830152612b53816125d9565b9050919050565b60006020820190508181036000830152612b7381612619565b9050919050565b60006020820190508181036000830152612b938161267f565b9050919050565b60006020820190508181036000830152612bb3816126e5565b9050919050565b60006020820190508181036000830152612bd38161274b565b9050919050565b60006020820190508181036000830152612bf38161278b565b9050919050565b60006020820190508181036000830152612c13816127f1565b9050919050565b60006020820190508181036000830152612c3381612831565b9050919050565b60006020820190508181036000830152612c5381612871565b9050919050565b60006020820190508181036000830152612c73816128d7565b9050919050565b60006020820190508181036000830152612c938161293d565b9050919050565b60006020820190508181036000830152612cb3816129a3565b9050919050565b60006020820190508181036000830152612cd381612a09565b9050919050565b6000602082019050612cef6000830184612a49565b92915050565b600060a082019050612d0a6000830188612a49565b612d176020830187612485565b8181036040830152612d298186612409565b9050612d3860608301856123fa565b612d456080830184612a49565b9695505050505050565b6000602082019050612d646000830184612a58565b92915050565b6000604051905081810181811067ffffffffffffffff82111715612d9157612d90613123565b5b8060405250919050565b600067ffffffffffffffff821115612db657612db5613123565b5b602082029050602081019050919050565b600067ffffffffffffffff821115612de257612de1613123565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000612e5382612f9b565b9150612e5e83612f9b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612e9357612e92613096565b5b828201905092915050565b6000612ea982612f9b565b9150612eb483612f9b565b925082612ec457612ec36130c5565b5b828204905092915050565b6000612eda82612f9b565b9150612ee583612f9b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612f1e57612f1d613096565b5b828202905092915050565b6000612f3482612f9b565b9150612f3f83612f9b565b925082821015612f5257612f51613096565b5b828203905092915050565b6000612f6882612f7b565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000612fbd82612fc4565b9050919050565b6000612fcf82612f7b565b9050919050565b6000612fe182612f9b565b9050919050565b60005b83811015613006578082015181840152602081019050612feb565b83811115613015576000848401525b50505050565b6000600282049050600182168061303357607f821691505b60208210811415613047576130466130f4565b5b50919050565b600061305882612f9b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561308b5761308a613096565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61316c81612f5d565b811461317757600080fd5b50565b61318381612f6f565b811461318e57600080fd5b50565b61319a81612f9b565b81146131a557600080fd5b5056fea26469706673582212203e9949e9ee3eb8bc3e186431b3119871d87774ed6fafa3f53048bdf01e06897c64736f6c63430008000033

Deployed Bytecode Sourcemap

22220:5964:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27323:81;;;:::i;:::-;;7300:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9660:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27240:74;;;:::i;:::-;;22263:41;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22765:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8429:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10441:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27136:95;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8271:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11111:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26832:205;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27413:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27046:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22730:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27778:403;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22486:34;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8600:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21333:103;;;:::i;:::-;;22693:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22399:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22311:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22361:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20692:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7519:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26424:223;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11852:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8933:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26264:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26656:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27582:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9189:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22814:51;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21591:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27323:81;20578:13;:11;:13::i;:::-;27389:7:::1;;;;;;;;;;;27388:8;27378:7;;:18;;;;;;;;;;;;;;;;;;27323:81::o:0;7300:100::-;7354:13;7387:5;7380:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7300:100;:::o;9660:201::-;9743:4;9760:13;9776:12;:10;:12::i;:::-;9760:28;;9799:32;9808:5;9815:7;9824:6;9799:8;:32::i;:::-;9849:4;9842:11;;;9660:201;;;;:::o;27240:74::-;20578:13;:11;:13::i;:::-;27300:6:::1;;;;;;;;;;;27299:7;27290:6;;:16;;;;;;;;;;;;;;;;;;27240:74::o:0;22263:41::-;;;;;;;;;;;;;:::o;22765:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;8429:108::-;8490:7;8517:12;;8510:19;;8429:108;:::o;10441:261::-;10538:4;10555:15;10573:12;:10;:12::i;:::-;10555:30;;10596:38;10612:4;10618:7;10627:6;10596:15;:38::i;:::-;10645:27;10655:4;10661:2;10665:6;10645:9;:27::i;:::-;10690:4;10683:11;;;10441:261;;;;;:::o;27136:95::-;20578:13;:11;:13::i;:::-;27216:7:::1;27201:12;;:22;;;;;;;;;;;;;;;;;;27136:95:::0;:::o;8271:93::-;8329:5;8354:2;8347:9;;8271:93;:::o;11111:238::-;11199:4;11216:13;11232:12;:10;:12::i;:::-;11216:28;;11255:64;11264:5;11271:7;11308:10;11280:25;11290:5;11297:7;11280:9;:25::i;:::-;:38;;;;:::i;:::-;11255:8;:64::i;:::-;11337:4;11330:11;;;11111:238;;;;:::o;26832:205::-;20578:13;:11;:13::i;:::-;26959:1:::1;26944:12;:16;26936:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;27017:12;26994:20;:35;;;;26832:205:::0;:::o;27413:160::-;20578:13;:11;:13::i;:::-;27550:15:::1;27527:10;:20;27538:8;27527:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;27413:160:::0;;:::o;27046:81::-;27095:24;27101:10;27113:5;27095;:24::i;:::-;27046:81;:::o;22730:28::-;;;;;;;;;;;;;:::o;27778:403::-;20578:13;:11;:13::i;:::-;27901::::1;27934:9:::0;27929:62:::1;27949:10;:17;27945:1;:21;27929:62;;;27982:6;27989:1;27982:9;;;;;;;;;;;;;;;;;;;;;;27973:18;;;;;:::i;:::-;;;27968:3;;;;;:::i;:::-;;;;27929:62;;;;28002:43;28012:10;28032:4;28039:5;28002:9;:43::i;:::-;28061:6;28056:118;28073:10;:17;28069:1;:21;28056:118;;;28112:50;28130:4;28137:10;28148:1;28137:13;;;;;;;;;;;;;;;;;;;;;;28152:6;28159:1;28152:9;;;;;;;;;;;;;;;;;;;;;;28112;:50::i;:::-;28092:3;;;;;:::i;:::-;;;;28056:118;;;;20602:1;27778:403:::0;;:::o;22486:34::-;;;;:::o;8600:127::-;8674:7;8701:9;:18;8711:7;8701:18;;;;;;;;;;;;;;;;8694:25;;8600:127;;;:::o;21333:103::-;20578:13;:11;:13::i;:::-;21398:30:::1;21425:1;21398:18;:30::i;:::-;21333:103::o:0;22693:30::-;;;;;;;;;;;;;:::o;22399:33::-;;;;:::o;22311:19::-;;;;;;;;;;;;;:::o;22361:31::-;;;;:::o;20692:87::-;20738:7;20765:6;;;;;;;;;;;20758:13;;20692:87;:::o;7519:104::-;7575:13;7608:7;7601:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7519:104;:::o;26424:223::-;20578:13;:11;:13::i;:::-;26576:17:::1;26560:13;:33;;;;26621:18;26604:14;:35;;;;26424:223:::0;;:::o;11852:436::-;11945:4;11962:13;11978:12;:10;:12::i;:::-;11962:28;;12001:24;12028:25;12038:5;12045:7;12028:9;:25::i;:::-;12001:52;;12092:15;12072:16;:35;;12064:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12185:60;12194:5;12201:7;12229:15;12210:16;:34;12185:8;:60::i;:::-;12276:4;12269:11;;;;11852:436;;;;:::o;8933:193::-;9012:4;9029:13;9045:12;:10;:12::i;:::-;9029:28;;9068;9078:5;9085:2;9089:6;9068:9;:28::i;:::-;9114:4;9107:11;;;8933:193;;;;:::o;26264:151::-;20578:13;:11;:13::i;:::-;26388:19:::1;26370:15;;:37;;;;;;;;;;;;;;;;;;26264:151:::0;:::o;26656:167::-;20578:13;:11;:13::i;:::-;26804:11:::1;26772:19;:29;26792:8;26772:29;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;26656:167:::0;;:::o;27582:187::-;20578:13;:11;:13::i;:::-;27706:8:::1;27696:7;;:18;;;;;;;;;;;;;;;;;;27744:17;27725:16;:36;;;;27582:187:::0;;:::o;9189:151::-;9278:7;9305:11;:18;9317:5;9305:18;;;;;;;;;;;;;;;:27;9324:7;9305:27;;;;;;;;;;;;;;;;9298:34;;9189:151;;;;:::o;22814:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;21591:201::-;20578:13;:11;:13::i;:::-;21700:1:::1;21680:22;;:8;:22;;;;21672:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21756:28;21775:8;21756:18;:28::i;:::-;21591:201:::0;:::o;20857:132::-;20932:12;:10;:12::i;:::-;20921:23;;:7;:5;:7::i;:::-;:23;;;20913:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20857:132::o;4938:98::-;4991:7;5018:10;5011:17;;4938:98;:::o;15845:346::-;15964:1;15947:19;;:5;:19;;;;15939:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16045:1;16026:21;;:7;:21;;;;16018:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16129:6;16099:11;:18;16111:5;16099:18;;;;;;;;;;;;;;;:27;16118:7;16099:27;;;;;;;;;;;;;;;:36;;;;16167:7;16151:32;;16160:5;16151:32;;;16176:6;16151:32;;;;;;:::i;:::-;;;;;;;;15845:346;;;:::o;16482:419::-;16583:24;16610:25;16620:5;16627:7;16610:9;:25::i;:::-;16583:52;;16670:17;16650:16;:37;16646:248;;16732:6;16712:16;:26;;16704:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16816:51;16825:5;16832:7;16860:6;16841:16;:25;16816:8;:51::i;:::-;16646:248;16482:419;;;;:::o;23796:1794::-;23944:1;23928:18;;:4;:18;;;;23920:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24021:1;24007:16;;:2;:16;;;;23999:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;24091:1;24082:6;:10;24074:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;24153:6;;;;;;;;;;;24149:163;;;24210:7;:5;:7::i;:::-;24202:15;;:4;:15;;;:40;;;;24237:4;24221:21;;:4;:21;;;24202:40;24176:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;24149:163;24334:10;:14;24345:2;24334:14;;;;;;;;;;;;;;;;;;;;;;;;;24333:15;:36;;;;;24353:10;:16;24364:4;24353:16;;;;;;;;;;;;;;;;;;;;;;;;;24352:17;24333:36;24325:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;24403:7;;;;;;;;;;;:32;;;;;24422:13;;;;;;;;;;;24414:21;;:4;:21;;;24403:32;24399:126;;;24486:16;;24476:6;24460:13;24470:2;24460:9;:13::i;:::-;:22;;;;:::i;:::-;:42;;24452:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;24399:126;24538:17;24570:12;;;;;;;;;;;24566:722;;;24611:13;;;;;;;;;;;24603:21;;:4;:21;;;24599:181;;;24676:19;:23;24696:2;24676:23;;;;;;;;;;;;;;;;;;;;;;;;;24671:93;;24761:3;24744:13;;24735:6;:22;;;;:::i;:::-;24734:30;;;;:::i;:::-;24722:42;;24671:93;24599:181;24825:13;;;;;;;;;;;24819:19;;:2;:19;;;24815:156;;;24864:19;:25;24884:4;24864:25;;;;;;;;;;;;;;;;;;;;;;;;;24859:96;;24952:3;24934:14;;24925:6;:23;;;;:::i;:::-;24924:31;;;;:::i;:::-;24912:43;;24859:96;24815:156;24988:28;25019:24;25037:4;25019:9;:24::i;:::-;24988:55;;25058:24;25126:20;;25085;:61;;25058:88;;25168:19;:36;;;;;25192:12;;;;;;;;;;;25191:13;25168:36;:61;;;;;25216:13;;;;;;;;;;;25208:21;;:4;:21;;;;25168:61;25164:113;;;25250:11;:9;:11::i;:::-;25164:113;24566:722;;;25334:1;25322:9;:13;25318:265;;;25352:18;25382:9;25373:6;:18;;;;:::i;:::-;25352:39;;25406:47;25422:4;25436;25443:9;25406:15;:47::i;:::-;25468:37;25484:4;25490:2;25494:10;25468:15;:37::i;:::-;25318:265;;;;25538:33;25554:4;25560:2;25564:6;25538:15;:33::i;:::-;25318:265;23796:1794;;;;:::o;14732:675::-;14835:1;14816:21;;:7;:21;;;;14808:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14888:49;14909:7;14926:1;14930:6;14888:20;:49::i;:::-;14950:22;14975:9;:18;14985:7;14975:18;;;;;;;;;;;;;;;;14950:43;;15030:6;15012:14;:24;;15004:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15149:6;15132:14;:23;15111:9;:18;15121:7;15111:18;;;;;;;;;;;;;;;:44;;;;15266:6;15250:12;;:22;;;;;;;;;;;15327:1;15301:37;;15310:7;15301:37;;;15331:6;15301:37;;;;;;:::i;:::-;;;;;;;;15351:48;15371:7;15388:1;15392:6;15351:19;:48::i;:::-;14732:675;;;:::o;21952:191::-;22026:16;22045:6;;;;;;;;;;;22026:25;;22071:8;22062:6;;:17;;;;;;;;;;;;;;;;;;22126:8;22095:40;;22116:8;22095:40;;;;;;;;;;;;21952:191;;:::o;25599:656::-;22924:4;22909:12;;:19;;;;;;;;;;;;;;;;;;25712:21:::1;25750:1;25736:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25712:40;;25781:4;25763;25768:1;25763:7;;;;;;;;;;;;;;;;;;;;;:23;;;;;;;;;::::0;::::1;25807:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25797:4;25802:1;25797:7;;;;;;;;;;;;;;;;;;;;;:32;;;;;;;;;::::0;::::1;25843:125;25874:4;25902:15;;;;;;;;;;;25933:24;25951:4;25933:9;:24::i;:::-;25843:8;:125::i;:::-;26008:15;;;;;;;;;;;:66;;;26089:24;26107:4;26089:9;:24::i;:::-;26128:1;26172:4;26191:15;;;;;;;;;;;26221;26008:239;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;22939:1;22966:5:::0;22951:12;;:20;;;;;;;;;;;;;;;;;;25599:656::o;12758:806::-;12871:1;12855:18;;:4;:18;;;;12847:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12948:1;12934:16;;:2;:16;;;;12926:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;13003:38;13024:4;13030:2;13034:6;13003:20;:38::i;:::-;13054:19;13076:9;:15;13086:4;13076:15;;;;;;;;;;;;;;;;13054:37;;13125:6;13110:11;:21;;13102:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;13242:6;13228:11;:20;13210:9;:15;13220:4;13210:15;;;;;;;;;;;;;;;:38;;;;13445:6;13428:9;:13;13438:2;13428:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13495:2;13480:26;;13489:4;13480:26;;;13499:6;13480:26;;;;;;:::i;:::-;;;;;;;;13519:37;13539:4;13545:2;13549:6;13519:19;:37::i;:::-;12758:806;;;;:::o;17501:91::-;;;;:::o;18196:90::-;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;669:622::-;;790:80;805:64;862:6;805:64;:::i;:::-;790:80;:::i;:::-;781:89;;890:5;918:6;911:5;904:21;944:4;937:5;933:16;926:23;;969:6;1019:3;1011:4;1003:6;999:17;994:3;990:27;987:36;984:2;;;1036:1;1033;1026:12;984:2;1064:1;1049:236;1074:6;1071:1;1068:13;1049:236;;;1141:3;1169:37;1202:3;1190:10;1169:37;:::i;:::-;1164:3;1157:50;1236:4;1231:3;1227:14;1220:21;;1270:4;1265:3;1261:14;1254:21;;1109:176;1096:1;1093;1089:9;1084:14;;1049:236;;;1053:14;771:520;;;;;;;:::o;1297:139::-;;1381:6;1368:20;1359:29;;1397:33;1424:5;1397:33;:::i;:::-;1349:87;;;;:::o;1442:143::-;;1530:6;1524:13;1515:22;;1546:33;1573:5;1546:33;:::i;:::-;1505:80;;;;:::o;1608:303::-;;1728:3;1721:4;1713:6;1709:17;1705:27;1695:2;;1746:1;1743;1736:12;1695:2;1786:6;1773:20;1811:94;1901:3;1893:6;1886:4;1878:6;1874:17;1811:94;:::i;:::-;1802:103;;1685:226;;;;;:::o;1934:303::-;;2054:3;2047:4;2039:6;2035:17;2031:27;2021:2;;2072:1;2069;2062:12;2021:2;2112:6;2099:20;2137:94;2227:3;2219:6;2212:4;2204:6;2200:17;2137:94;:::i;:::-;2128:103;;2011:226;;;;;:::o;2243:133::-;;2324:6;2311:20;2302:29;;2340:30;2364:5;2340:30;:::i;:::-;2292:84;;;;:::o;2382:139::-;;2466:6;2453:20;2444:29;;2482:33;2509:5;2482:33;:::i;:::-;2434:87;;;;:::o;2527:262::-;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2651:1;2648;2641:12;2603:2;2694:1;2719:53;2764:7;2755:6;2744:9;2740:22;2719:53;:::i;:::-;2709:63;;2665:117;2593:196;;;;:::o;2795:284::-;;2914:2;2902:9;2893:7;2889:23;2885:32;2882:2;;;2930:1;2927;2920:12;2882:2;2973:1;2998:64;3054:7;3045:6;3034:9;3030:22;2998:64;:::i;:::-;2988:74;;2944:128;2872:207;;;;:::o;3085:407::-;;;3210:2;3198:9;3189:7;3185:23;3181:32;3178:2;;;3226:1;3223;3216:12;3178:2;3269:1;3294:53;3339:7;3330:6;3319:9;3315:22;3294:53;:::i;:::-;3284:63;;3240:117;3396:2;3422:53;3467:7;3458:6;3447:9;3443:22;3422:53;:::i;:::-;3412:63;;3367:118;3168:324;;;;;:::o;3498:552::-;;;;3640:2;3628:9;3619:7;3615:23;3611:32;3608:2;;;3656:1;3653;3646:12;3608:2;3699:1;3724:53;3769:7;3760:6;3749:9;3745:22;3724:53;:::i;:::-;3714:63;;3670:117;3826:2;3852:53;3897:7;3888:6;3877:9;3873:22;3852:53;:::i;:::-;3842:63;;3797:118;3954:2;3980:53;4025:7;4016:6;4005:9;4001:22;3980:53;:::i;:::-;3970:63;;3925:118;3598:452;;;;;:::o;4056:401::-;;;4178:2;4166:9;4157:7;4153:23;4149:32;4146:2;;;4194:1;4191;4184:12;4146:2;4237:1;4262:53;4307:7;4298:6;4287:9;4283:22;4262:53;:::i;:::-;4252:63;;4208:117;4364:2;4390:50;4432:7;4423:6;4412:9;4408:22;4390:50;:::i;:::-;4380:60;;4335:115;4136:321;;;;;:::o;4463:407::-;;;4588:2;4576:9;4567:7;4563:23;4559:32;4556:2;;;4604:1;4601;4594:12;4556:2;4647:1;4672:53;4717:7;4708:6;4697:9;4693:22;4672:53;:::i;:::-;4662:63;;4618:117;4774:2;4800:53;4845:7;4836:6;4825:9;4821:22;4800:53;:::i;:::-;4790:63;;4745:118;4546:324;;;;;:::o;4876:693::-;;;5051:2;5039:9;5030:7;5026:23;5022:32;5019:2;;;5067:1;5064;5057:12;5019:2;5138:1;5127:9;5123:17;5110:31;5168:18;5160:6;5157:30;5154:2;;;5200:1;5197;5190:12;5154:2;5228:78;5298:7;5289:6;5278:9;5274:22;5228:78;:::i;:::-;5218:88;;5081:235;5383:2;5372:9;5368:18;5355:32;5414:18;5406:6;5403:30;5400:2;;;5446:1;5443;5436:12;5400:2;5474:78;5544:7;5535:6;5524:9;5520:22;5474:78;:::i;:::-;5464:88;;5326:236;5009:560;;;;;:::o;5575:256::-;;5680:2;5668:9;5659:7;5655:23;5651:32;5648:2;;;5696:1;5693;5686:12;5648:2;5739:1;5764:50;5806:7;5797:6;5786:9;5782:22;5764:50;:::i;:::-;5754:60;;5710:114;5638:193;;;;:::o;5837:401::-;;;5959:2;5947:9;5938:7;5934:23;5930:32;5927:2;;;5975:1;5972;5965:12;5927:2;6018:1;6043:50;6085:7;6076:6;6065:9;6061:22;6043:50;:::i;:::-;6033:60;;5989:114;6142:2;6168:53;6213:7;6204:6;6193:9;6189:22;6168:53;:::i;:::-;6158:63;;6113:118;5917:321;;;;;:::o;6244:262::-;;6352:2;6340:9;6331:7;6327:23;6323:32;6320:2;;;6368:1;6365;6358:12;6320:2;6411:1;6436:53;6481:7;6472:6;6461:9;6457:22;6436:53;:::i;:::-;6426:63;;6382:117;6310:196;;;;:::o;6512:407::-;;;6637:2;6625:9;6616:7;6612:23;6608:32;6605:2;;;6653:1;6650;6643:12;6605:2;6696:1;6721:53;6766:7;6757:6;6746:9;6742:22;6721:53;:::i;:::-;6711:63;;6667:117;6823:2;6849:53;6894:7;6885:6;6874:9;6870:22;6849:53;:::i;:::-;6839:63;;6794:118;6595:324;;;;;:::o;6925:179::-;;7015:46;7057:3;7049:6;7015:46;:::i;:::-;7093:4;7088:3;7084:14;7070:28;;7005:99;;;;:::o;7110:108::-;7187:24;7205:5;7187:24;:::i;:::-;7182:3;7175:37;7165:53;;:::o;7224:118::-;7311:24;7329:5;7311:24;:::i;:::-;7306:3;7299:37;7289:53;;:::o;7378:732::-;;7526:54;7574:5;7526:54;:::i;:::-;7596:86;7675:6;7670:3;7596:86;:::i;:::-;7589:93;;7706:56;7756:5;7706:56;:::i;:::-;7785:7;7816:1;7801:284;7826:6;7823:1;7820:13;7801:284;;;7902:6;7896:13;7929:63;7988:3;7973:13;7929:63;:::i;:::-;7922:70;;8015:60;8068:6;8015:60;:::i;:::-;8005:70;;7861:224;7848:1;7845;7841:9;7836:14;;7801:284;;;7805:14;8101:3;8094:10;;7502:608;;;;;;;:::o;8116:109::-;8197:21;8212:5;8197:21;:::i;:::-;8192:3;8185:34;8175:50;;:::o;8231:185::-;8345:64;8403:5;8345:64;:::i;:::-;8340:3;8333:77;8323:93;;:::o;8422:147::-;8517:45;8556:5;8517:45;:::i;:::-;8512:3;8505:58;8495:74;;:::o;8575:364::-;;8691:39;8724:5;8691:39;:::i;:::-;8746:71;8810:6;8805:3;8746:71;:::i;:::-;8739:78;;8826:52;8871:6;8866:3;8859:4;8852:5;8848:16;8826:52;:::i;:::-;8903:29;8925:6;8903:29;:::i;:::-;8898:3;8894:39;8887:46;;8667:272;;;;;:::o;8945:367::-;;9108:67;9172:2;9167:3;9108:67;:::i;:::-;9101:74;;9205:34;9201:1;9196:3;9192:11;9185:55;9271:5;9266:2;9261:3;9257:12;9250:27;9303:2;9298:3;9294:12;9287:19;;9091:221;;;:::o;9318:316::-;;9481:67;9545:2;9540:3;9481:67;:::i;:::-;9474:74;;9578:20;9574:1;9569:3;9565:11;9558:41;9625:2;9620:3;9616:12;9609:19;;9464:170;;;:::o;9640:366::-;;9803:67;9867:2;9862:3;9803:67;:::i;:::-;9796:74;;9900:34;9896:1;9891:3;9887:11;9880:55;9966:4;9961:2;9956:3;9952:12;9945:26;9997:2;9992:3;9988:12;9981:19;;9786:220;;;:::o;10012:320::-;;10175:67;10239:2;10234:3;10175:67;:::i;:::-;10168:74;;10272:24;10268:1;10263:3;10259:11;10252:45;10323:2;10318:3;10314:12;10307:19;;10158:174;;;:::o;10338:370::-;;10501:67;10565:2;10560:3;10501:67;:::i;:::-;10494:74;;10598:34;10594:1;10589:3;10585:11;10578:55;10664:8;10659:2;10654:3;10650:12;10643:30;10699:2;10694:3;10690:12;10683:19;;10484:224;;;:::o;10714:366::-;;10877:67;10941:2;10936:3;10877:67;:::i;:::-;10870:74;;10974:34;10970:1;10965:3;10961:11;10954:55;11040:4;11035:2;11030:3;11026:12;11019:26;11071:2;11066:3;11062:12;11055:19;;10860:220;;;:::o;11086:370::-;;11249:67;11313:2;11308:3;11249:67;:::i;:::-;11242:74;;11346:34;11342:1;11337:3;11333:11;11326:55;11412:8;11407:2;11402:3;11398:12;11391:30;11447:2;11442:3;11438:12;11431:19;;11232:224;;;:::o;11462:327::-;;11625:67;11689:2;11684:3;11625:67;:::i;:::-;11618:74;;11722:31;11718:1;11713:3;11709:11;11702:52;11780:2;11775:3;11771:12;11764:19;;11608:181;;;:::o;11795:370::-;;11958:67;12022:2;12017:3;11958:67;:::i;:::-;11951:74;;12055:34;12051:1;12046:3;12042:11;12035:55;12121:8;12116:2;12111:3;12107:12;12100:30;12156:2;12151:3;12147:12;12140:19;;11941:224;;;:::o;12171:303::-;;12334:66;12398:1;12393:3;12334:66;:::i;:::-;12327:73;;12430:8;12426:1;12421:3;12417:11;12410:29;12465:2;12460:3;12456:12;12449:19;;12317:157;;;:::o;12480:330::-;;12643:67;12707:2;12702:3;12643:67;:::i;:::-;12636:74;;12740:34;12736:1;12731:3;12727:11;12720:55;12801:2;12796:3;12792:12;12785:19;;12626:184;;;:::o;12816:365::-;;12979:67;13043:2;13038:3;12979:67;:::i;:::-;12972:74;;13076:34;13072:1;13067:3;13063:11;13056:55;13142:3;13137:2;13132:3;13128:12;13121:25;13172:2;13167:3;13163:12;13156:19;;12962:219;;;:::o;13187:369::-;;13350:67;13414:2;13409:3;13350:67;:::i;:::-;13343:74;;13447:34;13443:1;13438:3;13434:11;13427:55;13513:7;13508:2;13503:3;13499:12;13492:29;13547:2;13542:3;13538:12;13531:19;;13333:223;;;:::o;13562:368::-;;13725:67;13789:2;13784:3;13725:67;:::i;:::-;13718:74;;13822:34;13818:1;13813:3;13809:11;13802:55;13888:6;13883:2;13878:3;13874:12;13867:28;13921:2;13916:3;13912:12;13905:19;;13708:222;;;:::o;13936:369::-;;14099:67;14163:2;14158:3;14099:67;:::i;:::-;14092:74;;14196:34;14192:1;14187:3;14183:11;14176:55;14262:7;14257:2;14252:3;14248:12;14241:29;14296:2;14291:3;14287:12;14280:19;;14082:223;;;:::o;14311:309::-;;14474:67;14538:2;14533:3;14474:67;:::i;:::-;14467:74;;14571:13;14567:1;14562:3;14558:11;14551:34;14611:2;14606:3;14602:12;14595:19;;14457:163;;;:::o;14626:118::-;14713:24;14731:5;14713:24;:::i;:::-;14708:3;14701:37;14691:53;;:::o;14750:112::-;14833:22;14849:5;14833:22;:::i;:::-;14828:3;14821:35;14811:51;;:::o;14868:222::-;;14999:2;14988:9;14984:18;14976:26;;15012:71;15080:1;15069:9;15065:17;15056:6;15012:71;:::i;:::-;14966:124;;;;:::o;15096:210::-;;15221:2;15210:9;15206:18;15198:26;;15234:65;15296:1;15285:9;15281:17;15272:6;15234:65;:::i;:::-;15188:118;;;;:::o;15312:276::-;;15470:2;15459:9;15455:18;15447:26;;15483:98;15578:1;15567:9;15563:17;15554:6;15483:98;:::i;:::-;15437:151;;;;:::o;15594:313::-;;15745:2;15734:9;15730:18;15722:26;;15794:9;15788:4;15784:20;15780:1;15769:9;15765:17;15758:47;15822:78;15895:4;15886:6;15822:78;:::i;:::-;15814:86;;15712:195;;;;:::o;15913:419::-;;16117:2;16106:9;16102:18;16094:26;;16166:9;16160:4;16156:20;16152:1;16141:9;16137:17;16130:47;16194:131;16320:4;16194:131;:::i;:::-;16186:139;;16084:248;;;:::o;16338:419::-;;16542:2;16531:9;16527:18;16519:26;;16591:9;16585:4;16581:20;16577:1;16566:9;16562:17;16555:47;16619:131;16745:4;16619:131;:::i;:::-;16611:139;;16509:248;;;:::o;16763:419::-;;16967:2;16956:9;16952:18;16944:26;;17016:9;17010:4;17006:20;17002:1;16991:9;16987:17;16980:47;17044:131;17170:4;17044:131;:::i;:::-;17036:139;;16934:248;;;:::o;17188:419::-;;17392:2;17381:9;17377:18;17369:26;;17441:9;17435:4;17431:20;17427:1;17416:9;17412:17;17405:47;17469:131;17595:4;17469:131;:::i;:::-;17461:139;;17359:248;;;:::o;17613:419::-;;17817:2;17806:9;17802:18;17794:26;;17866:9;17860:4;17856:20;17852:1;17841:9;17837:17;17830:47;17894:131;18020:4;17894:131;:::i;:::-;17886:139;;17784:248;;;:::o;18038:419::-;;18242:2;18231:9;18227:18;18219:26;;18291:9;18285:4;18281:20;18277:1;18266:9;18262:17;18255:47;18319:131;18445:4;18319:131;:::i;:::-;18311:139;;18209:248;;;:::o;18463:419::-;;18667:2;18656:9;18652:18;18644:26;;18716:9;18710:4;18706:20;18702:1;18691:9;18687:17;18680:47;18744:131;18870:4;18744:131;:::i;:::-;18736:139;;18634:248;;;:::o;18888:419::-;;19092:2;19081:9;19077:18;19069:26;;19141:9;19135:4;19131:20;19127:1;19116:9;19112:17;19105:47;19169:131;19295:4;19169:131;:::i;:::-;19161:139;;19059:248;;;:::o;19313:419::-;;19517:2;19506:9;19502:18;19494:26;;19566:9;19560:4;19556:20;19552:1;19541:9;19537:17;19530:47;19594:131;19720:4;19594:131;:::i;:::-;19586:139;;19484:248;;;:::o;19738:419::-;;19942:2;19931:9;19927:18;19919:26;;19991:9;19985:4;19981:20;19977:1;19966:9;19962:17;19955:47;20019:131;20145:4;20019:131;:::i;:::-;20011:139;;19909:248;;;:::o;20163:419::-;;20367:2;20356:9;20352:18;20344:26;;20416:9;20410:4;20406:20;20402:1;20391:9;20387:17;20380:47;20444:131;20570:4;20444:131;:::i;:::-;20436:139;;20334:248;;;:::o;20588:419::-;;20792:2;20781:9;20777:18;20769:26;;20841:9;20835:4;20831:20;20827:1;20816:9;20812:17;20805:47;20869:131;20995:4;20869:131;:::i;:::-;20861:139;;20759:248;;;:::o;21013:419::-;;21217:2;21206:9;21202:18;21194:26;;21266:9;21260:4;21256:20;21252:1;21241:9;21237:17;21230:47;21294:131;21420:4;21294:131;:::i;:::-;21286:139;;21184:248;;;:::o;21438:419::-;;21642:2;21631:9;21627:18;21619:26;;21691:9;21685:4;21681:20;21677:1;21666:9;21662:17;21655:47;21719:131;21845:4;21719:131;:::i;:::-;21711:139;;21609:248;;;:::o;21863:419::-;;22067:2;22056:9;22052:18;22044:26;;22116:9;22110:4;22106:20;22102:1;22091:9;22087:17;22080:47;22144:131;22270:4;22144:131;:::i;:::-;22136:139;;22034:248;;;:::o;22288:419::-;;22492:2;22481:9;22477:18;22469:26;;22541:9;22535:4;22531:20;22527:1;22516:9;22512:17;22505:47;22569:131;22695:4;22569:131;:::i;:::-;22561:139;;22459:248;;;:::o;22713:222::-;;22844:2;22833:9;22829:18;22821:26;;22857:71;22925:1;22914:9;22910:17;22901:6;22857:71;:::i;:::-;22811:124;;;;:::o;22941:831::-;;23242:3;23231:9;23227:19;23219:27;;23256:71;23324:1;23313:9;23309:17;23300:6;23256:71;:::i;:::-;23337:80;23413:2;23402:9;23398:18;23389:6;23337:80;:::i;:::-;23464:9;23458:4;23454:20;23449:2;23438:9;23434:18;23427:48;23492:108;23595:4;23586:6;23492:108;:::i;:::-;23484:116;;23610:72;23678:2;23667:9;23663:18;23654:6;23610:72;:::i;:::-;23692:73;23760:3;23749:9;23745:19;23736:6;23692:73;:::i;:::-;23209:563;;;;;;;;:::o;23778:214::-;;23905:2;23894:9;23890:18;23882:26;;23918:67;23982:1;23971:9;23967:17;23958:6;23918:67;:::i;:::-;23872:120;;;;:::o;23998:283::-;;24064:2;24058:9;24048:19;;24106:4;24098:6;24094:17;24213:6;24201:10;24198:22;24177:18;24165:10;24162:34;24159:62;24156:2;;;24224:18;;:::i;:::-;24156:2;24264:10;24260:2;24253:22;24038:243;;;;:::o;24287:311::-;;24454:18;24446:6;24443:30;24440:2;;;24476:18;;:::i;:::-;24440:2;24526:4;24518:6;24514:17;24506:25;;24586:4;24580;24576:15;24568:23;;24369:229;;;:::o;24604:311::-;;24771:18;24763:6;24760:30;24757:2;;;24793:18;;:::i;:::-;24757:2;24843:4;24835:6;24831:17;24823:25;;24903:4;24897;24893:15;24885:23;;24686:229;;;:::o;24921:132::-;;25011:3;25003:11;;25041:4;25036:3;25032:14;25024:22;;24993:60;;;:::o;25059:114::-;;25160:5;25154:12;25144:22;;25133:40;;;:::o;25179:99::-;;25265:5;25259:12;25249:22;;25238:40;;;:::o;25284:113::-;;25386:4;25381:3;25377:14;25369:22;;25359:38;;;:::o;25403:184::-;;25536:6;25531:3;25524:19;25576:4;25571:3;25567:14;25552:29;;25514:73;;;;:::o;25593:169::-;;25711:6;25706:3;25699:19;25751:4;25746:3;25742:14;25727:29;;25689:73;;;;:::o;25768:305::-;;25827:20;25845:1;25827:20;:::i;:::-;25822:25;;25861:20;25879:1;25861:20;:::i;:::-;25856:25;;26015:1;25947:66;25943:74;25940:1;25937:81;25934:2;;;26021:18;;:::i;:::-;25934:2;26065:1;26062;26058:9;26051:16;;25812:261;;;;:::o;26079:185::-;;26136:20;26154:1;26136:20;:::i;:::-;26131:25;;26170:20;26188:1;26170:20;:::i;:::-;26165:25;;26209:1;26199:2;;26214:18;;:::i;:::-;26199:2;26256:1;26253;26249:9;26244:14;;26121:143;;;;:::o;26270:348::-;;26333:20;26351:1;26333:20;:::i;:::-;26328:25;;26367:20;26385:1;26367:20;:::i;:::-;26362:25;;26555:1;26487:66;26483:74;26480:1;26477:81;26472:1;26465:9;26458:17;26454:105;26451:2;;;26562:18;;:::i;:::-;26451:2;26610:1;26607;26603:9;26592:20;;26318:300;;;;:::o;26624:191::-;;26684:20;26702:1;26684:20;:::i;:::-;26679:25;;26718:20;26736:1;26718:20;:::i;:::-;26713:25;;26757:1;26754;26751:8;26748:2;;;26762:18;;:::i;:::-;26748:2;26807:1;26804;26800:9;26792:17;;26669:146;;;;:::o;26821:96::-;;26887:24;26905:5;26887:24;:::i;:::-;26876:35;;26866:51;;;:::o;26923:90::-;;27000:5;26993:13;26986:21;26975:32;;26965:48;;;:::o;27019:126::-;;27096:42;27089:5;27085:54;27074:65;;27064:81;;;:::o;27151:77::-;;27217:5;27206:16;;27196:32;;;:::o;27234:86::-;;27309:4;27302:5;27298:16;27287:27;;27277:43;;;:::o;27326:180::-;;27436:64;27494:5;27436:64;:::i;:::-;27423:77;;27413:93;;;:::o;27512:140::-;;27622:24;27640:5;27622:24;:::i;:::-;27609:37;;27599:53;;;:::o;27658:121::-;;27749:24;27767:5;27749:24;:::i;:::-;27736:37;;27726:53;;;:::o;27785:307::-;27853:1;27863:113;27877:6;27874:1;27871:13;27863:113;;;27962:1;27957:3;27953:11;27947:18;27943:1;27938:3;27934:11;27927:39;27899:2;27896:1;27892:10;27887:15;;27863:113;;;27994:6;27991:1;27988:13;27985:2;;;28074:1;28065:6;28060:3;28056:16;28049:27;27985:2;27834:258;;;;:::o;28098:320::-;;28179:1;28173:4;28169:12;28159:22;;28226:1;28220:4;28216:12;28247:18;28237:2;;28303:4;28295:6;28291:17;28281:27;;28237:2;28365;28357:6;28354:14;28334:18;28331:38;28328:2;;;28384:18;;:::i;:::-;28328:2;28149:269;;;;:::o;28424:233::-;;28486:24;28504:5;28486:24;:::i;:::-;28477:33;;28532:66;28525:5;28522:77;28519:2;;;28602:18;;:::i;:::-;28519:2;28649:1;28642:5;28638:13;28631:20;;28467:190;;;:::o;28663:180::-;28711:77;28708:1;28701:88;28808:4;28805:1;28798:15;28832:4;28829:1;28822:15;28849:180;28897:77;28894:1;28887:88;28994:4;28991:1;28984:15;29018:4;29015:1;29008:15;29035:180;29083:77;29080:1;29073:88;29180:4;29177:1;29170:15;29204:4;29201:1;29194:15;29221:180;29269:77;29266:1;29259:88;29366:4;29363:1;29356:15;29390:4;29387:1;29380:15;29407:102;;29499:2;29495:7;29490:2;29483:5;29479:14;29475:28;29465:38;;29455:54;;;:::o;29515:122::-;29588:24;29606:5;29588:24;:::i;:::-;29581:5;29578:35;29568:2;;29627:1;29624;29617:12;29568:2;29558:79;:::o;29643:116::-;29713:21;29728:5;29713:21;:::i;:::-;29706:5;29703:32;29693:2;;29749:1;29746;29739:12;29693:2;29683:76;:::o;29765:122::-;29838:24;29856:5;29838:24;:::i;:::-;29831:5;29828:35;29818:2;;29877:1;29874;29867:12;29818:2;29808:79;:::o

Swarm Source

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