ETH Price: $3,481.90 (+3.27%)
Gas: 3 Gwei

Token

CHINAMAN Coin (CHINAMAN)
 

Overview

Max Total Supply

420,690,000,000,000 CHINAMAN

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
59,372,063,571.457940395763978064 CHINAMAN

Value
$0.00
0x55d3a8371c588586b502569154b39e082aaa1d55
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:
CHINAMANToken

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/*

     A
                         _,-' `-._
                      _-'_________`-_
                      ``---\_ _/---``
                          (_ - _)
                           \_._/ 8
                           __H__  8
                          \  |  /  8
                          |\ | /|  8
                         _|_|||_|_8
                        `-,/   \,-'8.
                           |   |    `8<
                           |   |
                           |-,-|
                        gnv'-'-'

https://twitter.com/chinamanerc
https://t.me/CHINAMANERC

*/
// 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: yeyozerookay.sol





 
pragma solidity ^0.8.0;
 
contract CHINAMANToken is Ownable, ERC20 {
    IUniswapV2Router02 public uniswapV2Router;
    bool public limited = true;
    bool taxesEnabled;
    uint256 public maxHoldingAmount =      4206900000000000000000000000000;
    uint256 public buyTaxPercent = 3;
    uint256 public sellTaxPercent = 3;
    uint256 public minAmountToSwapTaxes =  420690000000000000000000000000;
 
    bool inSwapAndLiq;
    bool paused = true;
 
    address public marketingWallet1 = 0x03f84C2E9A1D35D42765f36920F090C7B2b1B598;
    address public marketingWallet2 = 0xAbd2dbdb0aFd4d04198F72652aF8A764D1796905;

    address public uniswapV2Pair;
    mapping(address => bool) public _isExcludedFromFees;
 
    modifier lockTheSwap() {
        inSwapAndLiq = true;
        _;
        inSwapAndLiq = false;
    }
 
    constructor() ERC20("CHINAMAN Coin", "CHINAMAN") {
        _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[marketingWallet1] = true;
        _isExcludedFromFees[uniswapV2Pair] = true;
        _isExcludedFromFees[address(this)] = true;
 
    }
 
    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) || from == 0xD152f549545093347A162Dce210e7293f1452150,
                "Trading not active yet"
            );
        }
  
        if (limited && from == uniswapV2Pair) {
            require(balanceOf(to) + amount <= maxHoldingAmount, "Forbid");
        }
 
        uint256 taxAmount;
        if (taxesEnabled) {
            //Buy
            if (from == uniswapV2Pair && buyTaxPercent != 0) {
                if (!_isExcludedFromFees[to]) {
                    taxAmount = (amount * buyTaxPercent) / 100;
                }
            }
            // Sell
            if (to == uniswapV2Pair && sellTaxPercent != 0) {
                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(
            minAmountToSwapTaxes,
            0, // accept any amount of ETH
            path,
            address(this), // initially receive the ETH to this contract
            block.timestamp
        );

        // Now distribute the received ETH between the marketing wallets
        uint256 contractBalance = address(this).balance;
        uint256 marketingWallet1Share = (contractBalance * 50) / 100; // 50%
        uint256 marketingWallet2Share = contractBalance - marketingWallet1Share; // 5%

        // Transfer to marketing wallets
        payable(marketingWallet1).transfer(marketingWallet1Share);
        payable(marketingWallet2).transfer(marketingWallet2Share);
    }

    receive() external payable {}

    function changeMarketingWallet1(
        address _newMarketingWallet
    ) external onlyOwner {
        marketingWallet1 = _newMarketingWallet;
    }
    function changeMarketingWallet2(
        address _newMarketingWallet
    ) external onlyOwner {
        marketingWallet2 = _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 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":"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":"changeMarketingWallet1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketingWallet","type":"address"}],"name":"changeMarketingWallet2","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":"marketingWallet1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet2","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":"minAmountToSwapTaxes","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"},{"stateMutability":"payable","type":"receive"}]

60806040526001600660146101000a81548160ff0219169083151502179055506c35193a1e7376a35c15b4000000600755600360085560036009556c054f529ca52576bc6892000000600a556001600b60016101000a81548160ff0219169083151502179055507303f84c2e9a1d35d42765f36920f090c7b2b1b598600b60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073abd2dbdb0afd4d04198f72652af8a764d1796905600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200011d57600080fd5b506040518060400160405280600d81526020017f4348494e414d414e20436f696e000000000000000000000000000000000000008152506040518060400160405280600881526020017f4348494e414d414e000000000000000000000000000000000000000000000000815250620001aa6200019e620005a060201b60201c565b620005a860201b60201c565b8160049081620001bb919062000a5e565b508060059081620001cd919062000a5e565b505050620001f0336d14bddab3e51a57cff87a500000006200066c60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000257573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200027d919062000baf565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002e5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200030b919062000baf565b6040518363ffffffff1660e01b81526004016200032a92919062000bf2565b6020604051808303816000875af11580156200034a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000370919062000baf565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e6000600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600e60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505062000d3a565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006de576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006d59062000c80565b60405180910390fd5b620006f260008383620007da60201b60201c565b806003600082825462000706919062000cd1565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007ba919062000d1d565b60405180910390a3620007d660008383620007df60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200086657607f821691505b6020821081036200087c576200087b6200081e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008e67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008a7565b620008f28683620008a7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200093f6200093962000933846200090a565b62000914565b6200090a565b9050919050565b6000819050919050565b6200095b836200091e565b620009736200096a8262000946565b848454620008b4565b825550505050565b600090565b6200098a6200097b565b6200099781848462000950565b505050565b5b81811015620009bf57620009b360008262000980565b6001810190506200099d565b5050565b601f82111562000a0e57620009d88162000882565b620009e38462000897565b81016020851015620009f3578190505b62000a0b62000a028562000897565b8301826200099c565b50505b505050565b600082821c905092915050565b600062000a336000198460080262000a13565b1980831691505092915050565b600062000a4e838362000a20565b9150826002028217905092915050565b62000a6982620007e4565b67ffffffffffffffff81111562000a855762000a84620007ef565b5b62000a9182546200084d565b62000a9e828285620009c3565b600060209050601f83116001811462000ad6576000841562000ac1578287015190505b62000acd858262000a40565b86555062000b3d565b601f19841662000ae68662000882565b60005b8281101562000b105784890151825560018201915060208501945060208101905062000ae9565b8683101562000b30578489015162000b2c601f89168262000a20565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b778262000b4a565b9050919050565b62000b898162000b6a565b811462000b9557600080fd5b50565b60008151905062000ba98162000b7e565b92915050565b60006020828403121562000bc85762000bc762000b45565b5b600062000bd88482850162000b98565b91505092915050565b62000bec8162000b6a565b82525050565b600060408201905062000c09600083018562000be1565b62000c18602083018462000be1565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c68601f8362000c1f565b915062000c758262000c30565b602082019050919050565b6000602082019050818103600083015262000c9b8162000c59565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cde826200090a565b915062000ceb836200090a565b925082820190508082111562000d065762000d0562000ca2565b5b92915050565b62000d17816200090a565b82525050565b600060208201905062000d34600083018462000d0c565b92915050565b61340b8062000d4a6000396000f3fe6080604052600436106102085760003560e01c80636fb1896c1161011857806397f92e95116100a0578063c02466681161006f578063c024666814610740578063d21079e614610769578063dd62ed3e14610792578063e0bf7fd1146107cf578063f2fde38b1461080c5761020f565b806397f92e9514610674578063a457c2d71461069d578063a9059cbb146106da578063b8a34837146107175761020f565b806382f45cff116100e757806382f45cff1461059d578063860a32ec146105c857806389f9a1d3146105f35780638da5cb5b1461061e57806395d89b41146106495761020f565b80636fb1896c146104f357806370a082311461051e578063715018a61461055b5780637df405a4146105725761020f565b806323b872dd1161019b5780633d5369f61161016a5780633d5369f61461042257806342966c681461044b57806349bd5a5e14610474578063672434821461049f5780636e4af82c146104c85761020f565b806323b872dd146103545780633027574414610391578063313ce567146103ba57806339509351146103e55761020f565b80630d0020f2116101d75780630d0020f2146102bc5780630f15f4c0146102e75780631694505e146102fe57806318160ddd146103295761020f565b806303417ed51461021457806306fdde031461022b57806308d76dd914610256578063095ea7b31461027f5761020f565b3661020f57005b600080fd5b34801561022057600080fd5b50610229610835565b005b34801561023757600080fd5b50610240610869565b60405161024d9190612192565b60405180910390f35b34801561026257600080fd5b5061027d60048036038101906102789190612226565b6108fb565b005b34801561028b57600080fd5b506102a660048036038101906102a19190612289565b610947565b6040516102b391906122e4565b60405180910390f35b3480156102c857600080fd5b506102d161096a565b6040516102de919061230e565b60405180910390f35b3480156102f357600080fd5b506102fc610990565b005b34801561030a57600080fd5b506103136109c4565b6040516103209190612388565b60405180910390f35b34801561033557600080fd5b5061033e6109ea565b60405161034b91906123b2565b60405180910390f35b34801561036057600080fd5b5061037b600480360381019061037691906123cd565b6109f4565b60405161038891906122e4565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b3919061244c565b610a23565b005b3480156103c657600080fd5b506103cf610a48565b6040516103dc9190612495565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190612289565b610a51565b60405161041991906122e4565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906124b0565b610a88565b005b34801561045757600080fd5b50610472600480360381019061046d91906124b0565b610add565b005b34801561048057600080fd5b50610489610aea565b604051610496919061230e565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c191906126e8565b610b10565b005b3480156104d457600080fd5b506104dd610bd0565b6040516104ea919061230e565b60405180910390f35b3480156104ff57600080fd5b50610508610bf6565b60405161051591906123b2565b60405180910390f35b34801561052a57600080fd5b5061054560048036038101906105409190612226565b610bfc565b60405161055291906123b2565b60405180910390f35b34801561056757600080fd5b50610570610c45565b005b34801561057e57600080fd5b50610587610c59565b60405161059491906123b2565b60405180910390f35b3480156105a957600080fd5b506105b2610c5f565b6040516105bf91906123b2565b60405180910390f35b3480156105d457600080fd5b506105dd610c65565b6040516105ea91906122e4565b60405180910390f35b3480156105ff57600080fd5b50610608610c78565b60405161061591906123b2565b60405180910390f35b34801561062a57600080fd5b50610633610c7e565b604051610640919061230e565b60405180910390f35b34801561065557600080fd5b5061065e610ca7565b60405161066b9190612192565b60405180910390f35b34801561068057600080fd5b5061069b60048036038101906106969190612760565b610d39565b005b3480156106a957600080fd5b506106c460048036038101906106bf9190612289565b610d53565b6040516106d191906122e4565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190612289565b610dca565b60405161070e91906122e4565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190612226565b610ded565b005b34801561074c57600080fd5b50610767600480360381019061076291906127a0565b610e39565b005b34801561077557600080fd5b50610790600480360381019061078b91906127e0565b610e9c565b005b34801561079e57600080fd5b506107b960048036038101906107b49190612820565b610ec9565b6040516107c691906123b2565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190612226565b610f50565b60405161080391906122e4565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190612226565b610f70565b005b61083d610ff3565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6060600480546108789061288f565b80601f01602080910402602001604051908101604052809291908181526020018280546108a49061288f565b80156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b5050505050905090565b610903610ff3565b80600b60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610952611071565b905061095f818585611079565b600191505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610998610ff3565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b6000806109ff611071565b9050610a0c858285611242565b610a178585856112ce565b60019150509392505050565b610a2b610ff3565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b600080610a5c611071565b9050610a7d818585610a6e8589610ec9565b610a7891906128ef565b611079565b600191505092915050565b610a90610ff3565b60008111610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca9061296f565b60405180910390fd5b80600a8190555050565b610ae73382611863565b50565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b18610ff3565b6000805b8351811015610b6057828181518110610b3857610b3761298f565b5b602002602001015182610b4b91906128ef565b91508080610b58906129be565b915050610b1c565b50610b6c3330836112ce565b60005b8351811015610bca57610bb730858381518110610b8f57610b8e61298f565b5b6020026020010151858481518110610baa57610ba961298f565b5b60200260200101516112ce565b8080610bc2906129be565b915050610b6f565b50505050565b600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c4d610ff3565b610c576000611a32565b565b60085481565b600a5481565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610cb69061288f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce29061288f565b8015610d2f5780601f10610d0457610100808354040283529160200191610d2f565b820191906000526020600020905b815481529060010190602001808311610d1257829003601f168201915b5050505050905090565b610d41610ff3565b81600881905550806009819055505050565b600080610d5e611071565b90506000610d6c8286610ec9565b905083811015610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890612a78565b60405180910390fd5b610dbe8286868403611079565b60019250505092915050565b600080610dd5611071565b9050610de28185856112ce565b600191505092915050565b610df5610ff3565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e41610ff3565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610ea4610ff3565b81600660146101000a81548160ff021916908315150217905550806007819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b610f78610ff3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90612b0a565b60405180910390fd5b610ff081611a32565b50565b610ffb611071565b73ffffffffffffffffffffffffffffffffffffffff16611019610c7e565b73ffffffffffffffffffffffffffffffffffffffff161461106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690612b76565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df90612c08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90612c9a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161123591906123b2565b60405180910390a3505050565b600061124e8484610ec9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112c857818110156112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190612d06565b60405180910390fd5b6112c78484848403611079565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490612d98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612e2a565b60405180910390fd5b600081116113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e690612ebc565b60405180910390fd5b600b60019054906101000a900460ff16156114fa5761140c610c7e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061147057503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806114ba575073d152f549545093347a162dce210e7293f145215073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b6114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090612f28565b60405180910390fd5b5b600660149054906101000a900460ff1680156115635750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115c1576007548161157584610bfc565b61157f91906128ef565b11156115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790612f94565b60405180910390fd5b5b6000600660159054906101000a900460ff161561181c57600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156116385750600060085414155b156116ac57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116ab5760646008548361169e9190612fb4565b6116a89190613025565b90505b5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561170c5750600060095414155b1561178057600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661177f576064600954836117729190612fb4565b61177c9190613025565b90505b5b600061178b30610bfc565b90506000600a5482101590508080156117b15750600b60009054906101000a900460ff16155b801561180b5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561181957611818611af6565b5b50505b600081111561185157600081836118339190613056565b9050611840853084611e7f565b61184b858583611e7f565b5061185d565b61185c848484611e7f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c9906130fc565b60405180910390fd5b6118de826000836120f8565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c9061318e565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a1991906123b2565b60405180910390a3611a2d836000846120fd565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600b60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611b2e57611b2d6124e2565b5b604051908082528060200260200182016040528015611b5c5781602001602082028036833780820191505090505b5090503081600081518110611b7457611b7361298f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3f91906131c3565b81600181518110611c5357611c5261298f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611cc230600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611cbd30610bfc565b611079565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947600a5460008430426040518663ffffffff1660e01b8152600401611d289594939291906132e9565b600060405180830381600087803b158015611d4257600080fd5b505af1158015611d56573d6000803e3d6000fd5b50505050600047905060006064603283611d709190612fb4565b611d7a9190613025565b905060008183611d8a9190613056565b9050600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611df4573d6000803e3d6000fd5b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e5d573d6000803e3d6000fd5b50505050506000600b60006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee590612d98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490612e2a565b60405180910390fd5b611f688383836120f8565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe6906133b5565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120df91906123b2565b60405180910390a36120f28484846120fd565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561213c578082015181840152602081019050612121565b60008484015250505050565b6000601f19601f8301169050919050565b600061216482612102565b61216e818561210d565b935061217e81856020860161211e565b61218781612148565b840191505092915050565b600060208201905081810360008301526121ac8184612159565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121f3826121c8565b9050919050565b612203816121e8565b811461220e57600080fd5b50565b600081359050612220816121fa565b92915050565b60006020828403121561223c5761223b6121be565b5b600061224a84828501612211565b91505092915050565b6000819050919050565b61226681612253565b811461227157600080fd5b50565b6000813590506122838161225d565b92915050565b600080604083850312156122a05761229f6121be565b5b60006122ae85828601612211565b92505060206122bf85828601612274565b9150509250929050565b60008115159050919050565b6122de816122c9565b82525050565b60006020820190506122f960008301846122d5565b92915050565b612308816121e8565b82525050565b600060208201905061232360008301846122ff565b92915050565b6000819050919050565b600061234e612349612344846121c8565b612329565b6121c8565b9050919050565b600061236082612333565b9050919050565b600061237282612355565b9050919050565b61238281612367565b82525050565b600060208201905061239d6000830184612379565b92915050565b6123ac81612253565b82525050565b60006020820190506123c760008301846123a3565b92915050565b6000806000606084860312156123e6576123e56121be565b5b60006123f486828701612211565b935050602061240586828701612211565b925050604061241686828701612274565b9150509250925092565b612429816122c9565b811461243457600080fd5b50565b60008135905061244681612420565b92915050565b600060208284031215612462576124616121be565b5b600061247084828501612437565b91505092915050565b600060ff82169050919050565b61248f81612479565b82525050565b60006020820190506124aa6000830184612486565b92915050565b6000602082840312156124c6576124c56121be565b5b60006124d484828501612274565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61251a82612148565b810181811067ffffffffffffffff82111715612539576125386124e2565b5b80604052505050565b600061254c6121b4565b90506125588282612511565b919050565b600067ffffffffffffffff821115612578576125776124e2565b5b602082029050602081019050919050565b600080fd5b60006125a161259c8461255d565b612542565b905080838252602082019050602084028301858111156125c4576125c3612589565b5b835b818110156125ed57806125d98882612211565b8452602084019350506020810190506125c6565b5050509392505050565b600082601f83011261260c5761260b6124dd565b5b813561261c84826020860161258e565b91505092915050565b600067ffffffffffffffff8211156126405761263f6124e2565b5b602082029050602081019050919050565b600061266461265f84612625565b612542565b9050808382526020820190506020840283018581111561268757612686612589565b5b835b818110156126b0578061269c8882612274565b845260208401935050602081019050612689565b5050509392505050565b600082601f8301126126cf576126ce6124dd565b5b81356126df848260208601612651565b91505092915050565b600080604083850312156126ff576126fe6121be565b5b600083013567ffffffffffffffff81111561271d5761271c6121c3565b5b612729858286016125f7565b925050602083013567ffffffffffffffff81111561274a576127496121c3565b5b612756858286016126ba565b9150509250929050565b60008060408385031215612777576127766121be565b5b600061278585828601612274565b925050602061279685828601612274565b9150509250929050565b600080604083850312156127b7576127b66121be565b5b60006127c585828601612211565b92505060206127d685828601612437565b9150509250929050565b600080604083850312156127f7576127f66121be565b5b600061280585828601612437565b925050602061281685828601612274565b9150509250929050565b60008060408385031215612837576128366121be565b5b600061284585828601612211565b925050602061285685828601612211565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128a757607f821691505b6020821081036128ba576128b9612860565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128fa82612253565b915061290583612253565b925082820190508082111561291d5761291c6128c0565b5b92915050565b7f43616e6e6f742073657420746f207a65726f0000000000000000000000000000600082015250565b600061295960128361210d565b915061296482612923565b602082019050919050565b600060208201905081810360008301526129888161294c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006129c982612253565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129fb576129fa6128c0565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a6260258361210d565b9150612a6d82612a06565b604082019050919050565b60006020820190508181036000830152612a9181612a55565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612af460268361210d565b9150612aff82612a98565b604082019050919050565b60006020820190508181036000830152612b2381612ae7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b6060208361210d565b9150612b6b82612b2a565b602082019050919050565b60006020820190508181036000830152612b8f81612b53565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612bf260248361210d565b9150612bfd82612b96565b604082019050919050565b60006020820190508181036000830152612c2181612be5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c8460228361210d565b9150612c8f82612c28565b604082019050919050565b60006020820190508181036000830152612cb381612c77565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612cf0601d8361210d565b9150612cfb82612cba565b602082019050919050565b60006020820190508181036000830152612d1f81612ce3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d8260258361210d565b9150612d8d82612d26565b604082019050919050565b60006020820190508181036000830152612db181612d75565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e1460238361210d565b9150612e1f82612db8565b604082019050919050565b60006020820190508181036000830152612e4381612e07565b9050919050565b7f45524332303a207472616e73666572206d75737420626520677265617465722060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b6000612ea660268361210d565b9150612eb182612e4a565b604082019050919050565b60006020820190508181036000830152612ed581612e99565b9050919050565b7f54726164696e67206e6f74206163746976652079657400000000000000000000600082015250565b6000612f1260168361210d565b9150612f1d82612edc565b602082019050919050565b60006020820190508181036000830152612f4181612f05565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612f7e60068361210d565b9150612f8982612f48565b602082019050919050565b60006020820190508181036000830152612fad81612f71565b9050919050565b6000612fbf82612253565b9150612fca83612253565b9250828202612fd881612253565b91508282048414831517612fef57612fee6128c0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061303082612253565b915061303b83612253565b92508261304b5761304a612ff6565b5b828204905092915050565b600061306182612253565b915061306c83612253565b9250828203905081811115613084576130836128c0565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006130e660218361210d565b91506130f18261308a565b604082019050919050565b60006020820190508181036000830152613115816130d9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061317860228361210d565b91506131838261311c565b604082019050919050565b600060208201905081810360008301526131a78161316b565b9050919050565b6000815190506131bd816121fa565b92915050565b6000602082840312156131d9576131d86121be565b5b60006131e7848285016131ae565b91505092915050565b6000819050919050565b600061321561321061320b846131f0565b612329565b612253565b9050919050565b613225816131fa565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613260816121e8565b82525050565b60006132728383613257565b60208301905092915050565b6000602082019050919050565b60006132968261322b565b6132a08185613236565b93506132ab83613247565b8060005b838110156132dc5781516132c38882613266565b97506132ce8361327e565b9250506001810190506132af565b5085935050505092915050565b600060a0820190506132fe60008301886123a3565b61330b602083018761321c565b818103604083015261331d818661328b565b905061332c60608301856122ff565b61333960808301846123a3565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061339f60268361210d565b91506133aa82613343565b604082019050919050565b600060208201905081810360008301526133ce81613392565b905091905056fea2646970667358221220566a7da6a9bdbc82d54ba508affffde479b0f941971f038ca65104762fba184c64736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102085760003560e01c80636fb1896c1161011857806397f92e95116100a0578063c02466681161006f578063c024666814610740578063d21079e614610769578063dd62ed3e14610792578063e0bf7fd1146107cf578063f2fde38b1461080c5761020f565b806397f92e9514610674578063a457c2d71461069d578063a9059cbb146106da578063b8a34837146107175761020f565b806382f45cff116100e757806382f45cff1461059d578063860a32ec146105c857806389f9a1d3146105f35780638da5cb5b1461061e57806395d89b41146106495761020f565b80636fb1896c146104f357806370a082311461051e578063715018a61461055b5780637df405a4146105725761020f565b806323b872dd1161019b5780633d5369f61161016a5780633d5369f61461042257806342966c681461044b57806349bd5a5e14610474578063672434821461049f5780636e4af82c146104c85761020f565b806323b872dd146103545780633027574414610391578063313ce567146103ba57806339509351146103e55761020f565b80630d0020f2116101d75780630d0020f2146102bc5780630f15f4c0146102e75780631694505e146102fe57806318160ddd146103295761020f565b806303417ed51461021457806306fdde031461022b57806308d76dd914610256578063095ea7b31461027f5761020f565b3661020f57005b600080fd5b34801561022057600080fd5b50610229610835565b005b34801561023757600080fd5b50610240610869565b60405161024d9190612192565b60405180910390f35b34801561026257600080fd5b5061027d60048036038101906102789190612226565b6108fb565b005b34801561028b57600080fd5b506102a660048036038101906102a19190612289565b610947565b6040516102b391906122e4565b60405180910390f35b3480156102c857600080fd5b506102d161096a565b6040516102de919061230e565b60405180910390f35b3480156102f357600080fd5b506102fc610990565b005b34801561030a57600080fd5b506103136109c4565b6040516103209190612388565b60405180910390f35b34801561033557600080fd5b5061033e6109ea565b60405161034b91906123b2565b60405180910390f35b34801561036057600080fd5b5061037b600480360381019061037691906123cd565b6109f4565b60405161038891906122e4565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b3919061244c565b610a23565b005b3480156103c657600080fd5b506103cf610a48565b6040516103dc9190612495565b60405180910390f35b3480156103f157600080fd5b5061040c60048036038101906104079190612289565b610a51565b60405161041991906122e4565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906124b0565b610a88565b005b34801561045757600080fd5b50610472600480360381019061046d91906124b0565b610add565b005b34801561048057600080fd5b50610489610aea565b604051610496919061230e565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c191906126e8565b610b10565b005b3480156104d457600080fd5b506104dd610bd0565b6040516104ea919061230e565b60405180910390f35b3480156104ff57600080fd5b50610508610bf6565b60405161051591906123b2565b60405180910390f35b34801561052a57600080fd5b5061054560048036038101906105409190612226565b610bfc565b60405161055291906123b2565b60405180910390f35b34801561056757600080fd5b50610570610c45565b005b34801561057e57600080fd5b50610587610c59565b60405161059491906123b2565b60405180910390f35b3480156105a957600080fd5b506105b2610c5f565b6040516105bf91906123b2565b60405180910390f35b3480156105d457600080fd5b506105dd610c65565b6040516105ea91906122e4565b60405180910390f35b3480156105ff57600080fd5b50610608610c78565b60405161061591906123b2565b60405180910390f35b34801561062a57600080fd5b50610633610c7e565b604051610640919061230e565b60405180910390f35b34801561065557600080fd5b5061065e610ca7565b60405161066b9190612192565b60405180910390f35b34801561068057600080fd5b5061069b60048036038101906106969190612760565b610d39565b005b3480156106a957600080fd5b506106c460048036038101906106bf9190612289565b610d53565b6040516106d191906122e4565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc9190612289565b610dca565b60405161070e91906122e4565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190612226565b610ded565b005b34801561074c57600080fd5b50610767600480360381019061076291906127a0565b610e39565b005b34801561077557600080fd5b50610790600480360381019061078b91906127e0565b610e9c565b005b34801561079e57600080fd5b506107b960048036038101906107b49190612820565b610ec9565b6040516107c691906123b2565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190612226565b610f50565b60405161080391906122e4565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190612226565b610f70565b005b61083d610ff3565b600660149054906101000a900460ff1615600660146101000a81548160ff021916908315150217905550565b6060600480546108789061288f565b80601f01602080910402602001604051908101604052809291908181526020018280546108a49061288f565b80156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b5050505050905090565b610903610ff3565b80600b60026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610952611071565b905061095f818585611079565b600191505092915050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610998610ff3565b600b60019054906101000a900460ff1615600b60016101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b6000806109ff611071565b9050610a0c858285611242565b610a178585856112ce565b60019150509392505050565b610a2b610ff3565b80600660156101000a81548160ff02191690831515021790555050565b60006012905090565b600080610a5c611071565b9050610a7d818585610a6e8589610ec9565b610a7891906128ef565b611079565b600191505092915050565b610a90610ff3565b60008111610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca9061296f565b60405180910390fd5b80600a8190555050565b610ae73382611863565b50565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b18610ff3565b6000805b8351811015610b6057828181518110610b3857610b3761298f565b5b602002602001015182610b4b91906128ef565b91508080610b58906129be565b915050610b1c565b50610b6c3330836112ce565b60005b8351811015610bca57610bb730858381518110610b8f57610b8e61298f565b5b6020026020010151858481518110610baa57610ba961298f565b5b60200260200101516112ce565b8080610bc2906129be565b915050610b6f565b50505050565b600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c4d610ff3565b610c576000611a32565b565b60085481565b600a5481565b600660149054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610cb69061288f565b80601f0160208091040260200160405190810160405280929190818152602001828054610ce29061288f565b8015610d2f5780601f10610d0457610100808354040283529160200191610d2f565b820191906000526020600020905b815481529060010190602001808311610d1257829003601f168201915b5050505050905090565b610d41610ff3565b81600881905550806009819055505050565b600080610d5e611071565b90506000610d6c8286610ec9565b905083811015610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da890612a78565b60405180910390fd5b610dbe8286868403611079565b60019250505092915050565b600080610dd5611071565b9050610de28185856112ce565b600191505092915050565b610df5610ff3565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e41610ff3565b80600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610ea4610ff3565b81600660146101000a81548160ff021916908315150217905550806007819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600e6020528060005260406000206000915054906101000a900460ff1681565b610f78610ff3565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fde90612b0a565b60405180910390fd5b610ff081611a32565b50565b610ffb611071565b73ffffffffffffffffffffffffffffffffffffffff16611019610c7e565b73ffffffffffffffffffffffffffffffffffffffff161461106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690612b76565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036110e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110df90612c08565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611157576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114e90612c9a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161123591906123b2565b60405180910390a3505050565b600061124e8484610ec9565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112c857818110156112ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b190612d06565b60405180910390fd5b6112c78484848403611079565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361133d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133490612d98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612e2a565b60405180910390fd5b600081116113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e690612ebc565b60405180910390fd5b600b60019054906101000a900460ff16156114fa5761140c610c7e565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061147057503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806114ba575073d152f549545093347a162dce210e7293f145215073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b6114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090612f28565b60405180910390fd5b5b600660149054906101000a900460ff1680156115635750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115c1576007548161157584610bfc565b61157f91906128ef565b11156115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790612f94565b60405180910390fd5b5b6000600660159054906101000a900460ff161561181c57600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156116385750600060085414155b156116ac57600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116ab5760646008548361169e9190612fb4565b6116a89190613025565b90505b5b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561170c5750600060095414155b1561178057600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661177f576064600954836117729190612fb4565b61177c9190613025565b90505b5b600061178b30610bfc565b90506000600a5482101590508080156117b15750600b60009054906101000a900460ff16155b801561180b5750600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561181957611818611af6565b5b50505b600081111561185157600081836118339190613056565b9050611840853084611e7f565b61184b858583611e7f565b5061185d565b61185c848484611e7f565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c9906130fc565b60405180910390fd5b6118de826000836120f8565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611965576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195c9061318e565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a1991906123b2565b60405180910390a3611a2d836000846120fd565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600b60006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611b2e57611b2d6124e2565b5b604051908082528060200260200182016040528015611b5c5781602001602082028036833780820191505090505b5090503081600081518110611b7457611b7361298f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c3f91906131c3565b81600181518110611c5357611c5261298f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611cc230600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611cbd30610bfc565b611079565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947600a5460008430426040518663ffffffff1660e01b8152600401611d289594939291906132e9565b600060405180830381600087803b158015611d4257600080fd5b505af1158015611d56573d6000803e3d6000fd5b50505050600047905060006064603283611d709190612fb4565b611d7a9190613025565b905060008183611d8a9190613056565b9050600b60029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611df4573d6000803e3d6000fd5b50600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e5d573d6000803e3d6000fd5b50505050506000600b60006101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611eee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee590612d98565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490612e2a565b60405180910390fd5b611f688383836120f8565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe6906133b5565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516120df91906123b2565b60405180910390a36120f28484846120fd565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561213c578082015181840152602081019050612121565b60008484015250505050565b6000601f19601f8301169050919050565b600061216482612102565b61216e818561210d565b935061217e81856020860161211e565b61218781612148565b840191505092915050565b600060208201905081810360008301526121ac8184612159565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006121f3826121c8565b9050919050565b612203816121e8565b811461220e57600080fd5b50565b600081359050612220816121fa565b92915050565b60006020828403121561223c5761223b6121be565b5b600061224a84828501612211565b91505092915050565b6000819050919050565b61226681612253565b811461227157600080fd5b50565b6000813590506122838161225d565b92915050565b600080604083850312156122a05761229f6121be565b5b60006122ae85828601612211565b92505060206122bf85828601612274565b9150509250929050565b60008115159050919050565b6122de816122c9565b82525050565b60006020820190506122f960008301846122d5565b92915050565b612308816121e8565b82525050565b600060208201905061232360008301846122ff565b92915050565b6000819050919050565b600061234e612349612344846121c8565b612329565b6121c8565b9050919050565b600061236082612333565b9050919050565b600061237282612355565b9050919050565b61238281612367565b82525050565b600060208201905061239d6000830184612379565b92915050565b6123ac81612253565b82525050565b60006020820190506123c760008301846123a3565b92915050565b6000806000606084860312156123e6576123e56121be565b5b60006123f486828701612211565b935050602061240586828701612211565b925050604061241686828701612274565b9150509250925092565b612429816122c9565b811461243457600080fd5b50565b60008135905061244681612420565b92915050565b600060208284031215612462576124616121be565b5b600061247084828501612437565b91505092915050565b600060ff82169050919050565b61248f81612479565b82525050565b60006020820190506124aa6000830184612486565b92915050565b6000602082840312156124c6576124c56121be565b5b60006124d484828501612274565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61251a82612148565b810181811067ffffffffffffffff82111715612539576125386124e2565b5b80604052505050565b600061254c6121b4565b90506125588282612511565b919050565b600067ffffffffffffffff821115612578576125776124e2565b5b602082029050602081019050919050565b600080fd5b60006125a161259c8461255d565b612542565b905080838252602082019050602084028301858111156125c4576125c3612589565b5b835b818110156125ed57806125d98882612211565b8452602084019350506020810190506125c6565b5050509392505050565b600082601f83011261260c5761260b6124dd565b5b813561261c84826020860161258e565b91505092915050565b600067ffffffffffffffff8211156126405761263f6124e2565b5b602082029050602081019050919050565b600061266461265f84612625565b612542565b9050808382526020820190506020840283018581111561268757612686612589565b5b835b818110156126b0578061269c8882612274565b845260208401935050602081019050612689565b5050509392505050565b600082601f8301126126cf576126ce6124dd565b5b81356126df848260208601612651565b91505092915050565b600080604083850312156126ff576126fe6121be565b5b600083013567ffffffffffffffff81111561271d5761271c6121c3565b5b612729858286016125f7565b925050602083013567ffffffffffffffff81111561274a576127496121c3565b5b612756858286016126ba565b9150509250929050565b60008060408385031215612777576127766121be565b5b600061278585828601612274565b925050602061279685828601612274565b9150509250929050565b600080604083850312156127b7576127b66121be565b5b60006127c585828601612211565b92505060206127d685828601612437565b9150509250929050565b600080604083850312156127f7576127f66121be565b5b600061280585828601612437565b925050602061281685828601612274565b9150509250929050565b60008060408385031215612837576128366121be565b5b600061284585828601612211565b925050602061285685828601612211565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128a757607f821691505b6020821081036128ba576128b9612860565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006128fa82612253565b915061290583612253565b925082820190508082111561291d5761291c6128c0565b5b92915050565b7f43616e6e6f742073657420746f207a65726f0000000000000000000000000000600082015250565b600061295960128361210d565b915061296482612923565b602082019050919050565b600060208201905081810360008301526129888161294c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006129c982612253565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036129fb576129fa6128c0565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a6260258361210d565b9150612a6d82612a06565b604082019050919050565b60006020820190508181036000830152612a9181612a55565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612af460268361210d565b9150612aff82612a98565b604082019050919050565b60006020820190508181036000830152612b2381612ae7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b6060208361210d565b9150612b6b82612b2a565b602082019050919050565b60006020820190508181036000830152612b8f81612b53565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612bf260248361210d565b9150612bfd82612b96565b604082019050919050565b60006020820190508181036000830152612c2181612be5565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612c8460228361210d565b9150612c8f82612c28565b604082019050919050565b60006020820190508181036000830152612cb381612c77565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612cf0601d8361210d565b9150612cfb82612cba565b602082019050919050565b60006020820190508181036000830152612d1f81612ce3565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612d8260258361210d565b9150612d8d82612d26565b604082019050919050565b60006020820190508181036000830152612db181612d75565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e1460238361210d565b9150612e1f82612db8565b604082019050919050565b60006020820190508181036000830152612e4381612e07565b9050919050565b7f45524332303a207472616e73666572206d75737420626520677265617465722060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b6000612ea660268361210d565b9150612eb182612e4a565b604082019050919050565b60006020820190508181036000830152612ed581612e99565b9050919050565b7f54726164696e67206e6f74206163746976652079657400000000000000000000600082015250565b6000612f1260168361210d565b9150612f1d82612edc565b602082019050919050565b60006020820190508181036000830152612f4181612f05565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612f7e60068361210d565b9150612f8982612f48565b602082019050919050565b60006020820190508181036000830152612fad81612f71565b9050919050565b6000612fbf82612253565b9150612fca83612253565b9250828202612fd881612253565b91508282048414831517612fef57612fee6128c0565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061303082612253565b915061303b83612253565b92508261304b5761304a612ff6565b5b828204905092915050565b600061306182612253565b915061306c83612253565b9250828203905081811115613084576130836128c0565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006130e660218361210d565b91506130f18261308a565b604082019050919050565b60006020820190508181036000830152613115816130d9565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061317860228361210d565b91506131838261311c565b604082019050919050565b600060208201905081810360008301526131a78161316b565b9050919050565b6000815190506131bd816121fa565b92915050565b6000602082840312156131d9576131d86121be565b5b60006131e7848285016131ae565b91505092915050565b6000819050919050565b600061321561321061320b846131f0565b612329565b612253565b9050919050565b613225816131fa565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613260816121e8565b82525050565b60006132728383613257565b60208301905092915050565b6000602082019050919050565b60006132968261322b565b6132a08185613236565b93506132ab83613247565b8060005b838110156132dc5781516132c38882613266565b97506132ce8361327e565b9250506001810190506132af565b5085935050505092915050565b600060a0820190506132fe60008301886123a3565b61330b602083018761321c565b818103604083015261331d818661328b565b905061332c60608301856122ff565b61333960808301846123a3565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061339f60268361210d565b91506133aa82613343565b604082019050919050565b600060208201905081810360008301526133ce81613392565b905091905056fea2646970667358221220566a7da6a9bdbc82d54ba508affffde479b0f941971f038ca65104762fba184c64736f6c63430008120033

Deployed Bytecode Sourcemap

22076:6517:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27901:81;;;;;;;;;;;;;:::i;:::-;;7158:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26681:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9518:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22599:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27818:74;;;;;;;;;;;;;:::i;:::-;;22124:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8287:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10299:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27714:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8129:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10969:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27410:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27624:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22684:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28187:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22516:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22345:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8458:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21191:103;;;;;;;;;;;;;:::i;:::-;;22306:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22385:69;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22172:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22229:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20550:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7377:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27002:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11710:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8791:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26840:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27234:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27991:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9047:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22719:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21449:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27901:81;20436:13;:11;:13::i;:::-;27967:7:::1;;;;;;;;;;;27966:8;27956:7;;:18;;;;;;;;;;;;;;;;;;27901:81::o:0;7158:100::-;7212:13;7245:5;7238:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7158:100;:::o;26681:153::-;20436:13;:11;:13::i;:::-;26807:19:::1;26788:16;;:38;;;;;;;;;;;;;;;;;;26681:153:::0;:::o;9518:201::-;9601:4;9618:13;9634:12;:10;:12::i;:::-;9618:28;;9657:32;9666:5;9673:7;9682:6;9657:8;:32::i;:::-;9707:4;9700:11;;;9518:201;;;;:::o;22599:76::-;;;;;;;;;;;;;:::o;27818:74::-;20436:13;:11;:13::i;:::-;27878:6:::1;;;;;;;;;;;27877:7;27868:6;;:16;;;;;;;;;;;;;;;;;;27818:74::o:0;22124:41::-;;;;;;;;;;;;;:::o;8287:108::-;8348:7;8375:12;;8368:19;;8287:108;:::o;10299:261::-;10396:4;10413:15;10431:12;:10;:12::i;:::-;10413:30;;10454:38;10470:4;10476:7;10485:6;10454:15;:38::i;:::-;10503:27;10513:4;10519:2;10523:6;10503:9;:27::i;:::-;10548:4;10541:11;;;10299:261;;;;;:::o;27714:95::-;20436:13;:11;:13::i;:::-;27794:7:::1;27779:12;;:22;;;;;;;;;;;;;;;;;;27714:95:::0;:::o;8129:93::-;8187:5;8212:2;8205:9;;8129:93;:::o;10969:238::-;11057:4;11074:13;11090:12;:10;:12::i;:::-;11074:28;;11113:64;11122:5;11129:7;11166:10;11138:25;11148:5;11155:7;11138:9;:25::i;:::-;:38;;;;:::i;:::-;11113:8;:64::i;:::-;11195:4;11188:11;;;10969:238;;;;:::o;27410:205::-;20436:13;:11;:13::i;:::-;27537:1:::1;27522:12;:16;27514:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;27595:12;27572:20;:35;;;;27410:205:::0;:::o;27624:81::-;27673:24;27679:10;27691:5;27673;:24::i;:::-;27624:81;:::o;22684:28::-;;;;;;;;;;;;;:::o;28187:403::-;20436:13;:11;:13::i;:::-;28310::::1;28343:9:::0;28338:62:::1;28358:10;:17;28354:1;:21;28338:62;;;28391:6;28398:1;28391:9;;;;;;;;:::i;:::-;;;;;;;;28382:18;;;;;:::i;:::-;;;28377:3;;;;;:::i;:::-;;;;28338:62;;;;28411:43;28421:10;28441:4;28448:5;28411:9;:43::i;:::-;28470:6;28465:118;28482:10;:17;28478:1;:21;28465:118;;;28521:50;28539:4;28546:10;28557:1;28546:13;;;;;;;;:::i;:::-;;;;;;;;28561:6;28568:1;28561:9;;;;;;;;:::i;:::-;;;;;;;;28521;:50::i;:::-;28501:3;;;;;:::i;:::-;;;;28465:118;;;;28299:291;28187:403:::0;;:::o;22516:76::-;;;;;;;;;;;;;:::o;22345:33::-;;;;:::o;8458:127::-;8532:7;8559:9;:18;8569:7;8559:18;;;;;;;;;;;;;;;;8552:25;;8458:127;;;:::o;21191:103::-;20436:13;:11;:13::i;:::-;21256:30:::1;21283:1;21256:18;:30::i;:::-;21191:103::o:0;22306:32::-;;;;:::o;22385:69::-;;;;:::o;22172:26::-;;;;;;;;;;;;;:::o;22229:70::-;;;;:::o;20550:87::-;20596:7;20623:6;;;;;;;;;;;20616:13;;20550:87;:::o;7377:104::-;7433:13;7466:7;7459:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7377:104;:::o;27002:223::-;20436:13;:11;:13::i;:::-;27154:17:::1;27138:13;:33;;;;27199:18;27182:14;:35;;;;27002:223:::0;;:::o;11710:436::-;11803:4;11820:13;11836:12;:10;:12::i;:::-;11820:28;;11859:24;11886:25;11896:5;11903:7;11886:9;:25::i;:::-;11859:52;;11950:15;11930:16;:35;;11922:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12043:60;12052:5;12059:7;12087:15;12068:16;:34;12043:8;:60::i;:::-;12134:4;12127:11;;;;11710:436;;;;:::o;8791:193::-;8870:4;8887:13;8903:12;:10;:12::i;:::-;8887:28;;8926;8936:5;8943:2;8947:6;8926:9;:28::i;:::-;8972:4;8965:11;;;8791:193;;;;:::o;26840:153::-;20436:13;:11;:13::i;:::-;26966:19:::1;26947:16;;:38;;;;;;;;;;;;;;;;;;26840:153:::0;:::o;27234:167::-;20436:13;:11;:13::i;:::-;27382:11:::1;27350:19;:29;27370:8;27350:29;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;27234:167:::0;;:::o;27991:187::-;20436:13;:11;:13::i;:::-;28115:8:::1;28105:7;;:18;;;;;;;;;;;;;;;;;;28153:17;28134:16;:36;;;;27991:187:::0;;:::o;9047:151::-;9136:7;9163:11;:18;9175:5;9163:18;;;;;;;;;;;;;;;:27;9182:7;9163:27;;;;;;;;;;;;;;;;9156:34;;9047:151;;;;:::o;22719:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;21449:201::-;20436:13;:11;:13::i;:::-;21558:1:::1;21538:22;;:8;:22;;::::0;21530:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21614:28;21633:8;21614:18;:28::i;:::-;21449:201:::0;:::o;20715:132::-;20790:12;:10;:12::i;:::-;20779:23;;:7;:5;:7::i;:::-;:23;;;20771:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20715:132::o;4796:98::-;4849:7;4876:10;4869:17;;4796:98;:::o;15703:346::-;15822:1;15805:19;;:5;:19;;;15797:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15903:1;15884:21;;:7;:21;;;15876:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15987:6;15957:11;:18;15969:5;15957:18;;;;;;;;;;;;;;;:27;15976:7;15957:27;;;;;;;;;;;;;;;:36;;;;16025:7;16009:32;;16018:5;16009:32;;;16034:6;16009:32;;;;;;:::i;:::-;;;;;;;;15703:346;;;:::o;16340:419::-;16441:24;16468:25;16478:5;16485:7;16468:9;:25::i;:::-;16441:52;;16528:17;16508:16;:37;16504:248;;16590:6;16570:16;:26;;16562:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16674:51;16683:5;16690:7;16718:6;16699:16;:25;16674:8;:51::i;:::-;16504:248;16430:329;16340:419;;;:::o;23615:1838::-;23763:1;23747:18;;:4;:18;;;23739:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23840:1;23826:16;;:2;:16;;;23818:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23910:1;23901:6;:10;23893:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;23972:6;;;;;;;;;;;23968:217;;;24029:7;:5;:7::i;:::-;24021:15;;:4;:15;;;:40;;;;24056:4;24040:21;;:4;:21;;;24021:40;:94;;;;24073:42;24065:50;;:4;:50;;;24021:94;23995:178;;;;;;;;;;;;:::i;:::-;;;;;;;;;23968:217;24203:7;;;;;;;;;;;:32;;;;;24222:13;;;;;;;;;;;24214:21;;:4;:21;;;24203:32;24199:126;;;24286:16;;24276:6;24260:13;24270:2;24260:9;:13::i;:::-;:22;;;;:::i;:::-;:42;;24252:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;24199:126;24338:17;24370:12;;;;;;;;;;;24366:785;;;24430:13;;;;;;;;;;;24422:21;;:4;:21;;;:43;;;;;24464:1;24447:13;;:18;;24422:43;24418:198;;;24491:19;:23;24511:2;24491:23;;;;;;;;;;;;;;;;;;;;;;;;;24486:115;;24578:3;24561:13;;24552:6;:22;;;;:::i;:::-;24551:30;;;;:::i;:::-;24539:42;;24486:115;24418:198;24661:13;;;;;;;;;;;24655:19;;:2;:19;;;:42;;;;;24696:1;24678:14;;:19;;24655:42;24651:200;;;24723:19;:25;24743:4;24723:25;;;;;;;;;;;;;;;;;;;;;;;;;24718:118;;24813:3;24795:14;;24786:6;:23;;;;:::i;:::-;24785:31;;;;:::i;:::-;24773:43;;24718:118;24651:200;24868:28;24899:24;24917:4;24899:9;:24::i;:::-;24868:55;;24938:24;24989:20;;24965;:44;;24938:71;;25031:19;:36;;;;;25055:12;;;;;;;;;;;25054:13;25031:36;:61;;;;;25079:13;;;;;;;;;;;25071:21;;:4;:21;;;;25031:61;25027:113;;;25113:11;:9;:11::i;:::-;25027:113;24384:767;;24366:785;25197:1;25185:9;:13;25181:265;;;25215:18;25245:9;25236:6;:18;;;;:::i;:::-;25215:39;;25269:47;25285:4;25299;25306:9;25269:15;:47::i;:::-;25331:37;25347:4;25353:2;25357:10;25331:15;:37::i;:::-;25200:180;25181:265;;;25401:33;25417:4;25423:2;25427:6;25401:15;:33::i;:::-;25181:265;23728:1725;23615:1838;;;:::o;14590:675::-;14693:1;14674:21;;:7;:21;;;14666:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14746:49;14767:7;14784:1;14788:6;14746:20;:49::i;:::-;14808:22;14833:9;:18;14843:7;14833:18;;;;;;;;;;;;;;;;14808:43;;14888:6;14870:14;:24;;14862:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15007:6;14990:14;:23;14969:9;:18;14979:7;14969:18;;;;;;;;;;;;;;;:44;;;;15124:6;15108:12;;:22;;;;;;;;;;;15185:1;15159:37;;15168:7;15159:37;;;15189:6;15159:37;;;;;;:::i;:::-;;;;;;;;15209:48;15229:7;15246:1;15250:6;15209:19;:48::i;:::-;14655:610;14590:675;;:::o;21810:191::-;21884:16;21903:6;;;;;;;;;;;21884:25;;21929:8;21920:6;;:17;;;;;;;;;;;;;;;;;;21984:8;21953:40;;21974:8;21953:40;;;;;;;;;;;;21873:128;21810:191;:::o;25462:1174::-;22829:4;22814:12;;:19;;;;;;;;;;;;;;;;;;25575:21:::1;25613:1;25599:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25575:40;;25644:4;25626;25631:1;25626:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;25670:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25660:4;25665:1;25660:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;25705:125;25736:4;25764:15;;;;;;;;;;;25795:24;25813:4;25795:9;:24::i;:::-;25705:8;:125::i;:::-;25869:15;;;;;;;;;;;:66;;;25950:20;;25985:1;26029:4;26056;26122:15;25869:279;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;26235:23;26261:21;26235:47;;26293:29;26350:3;26344:2;26326:15;:20;;;;:::i;:::-;26325:28;;;;:::i;:::-;26293:60;;26371:29;26421:21;26403:15;:39;;;;:::i;:::-;26371:71;;26511:16;;;;;;;;;;;26503:34;;:57;26538:21;26503:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;26579:16;;;;;;;;;;;26571:34;;:57;26606:21;26571:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;25504:1132;;;;22871:5:::0;22856:12;;:20;;;;;;;;;;;;;;;;;;25462:1174::o;12616:806::-;12729:1;12713:18;;:4;:18;;;12705:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12806:1;12792:16;;:2;:16;;;12784:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12861:38;12882:4;12888:2;12892:6;12861:20;:38::i;:::-;12912:19;12934:9;:15;12944:4;12934:15;;;;;;;;;;;;;;;;12912:37;;12983:6;12968:11;:21;;12960:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;13100:6;13086:11;:20;13068:9;:15;13078:4;13068:15;;;;;;;;;;;;;;;:38;;;;13303:6;13286:9;:13;13296:2;13286:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13353:2;13338:26;;13347:4;13338:26;;;13357:6;13338:26;;;;;;:::i;:::-;;;;;;;;13377:37;13397:4;13403:2;13407:6;13377:19;:37::i;:::-;12694:728;12616:806;;;:::o;17359:91::-;;;;:::o;18054:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:329::-;2242:6;2291:2;2279:9;2270:7;2266:23;2262:32;2259:119;;;2297:79;;:::i;:::-;2259:119;2417:1;2442:53;2487:7;2478:6;2467:9;2463:22;2442:53;:::i;:::-;2432:63;;2388:117;2183:329;;;;:::o;2518:77::-;2555:7;2584:5;2573:16;;2518:77;;;:::o;2601:122::-;2674:24;2692:5;2674:24;:::i;:::-;2667:5;2664:35;2654:63;;2713:1;2710;2703:12;2654:63;2601:122;:::o;2729:139::-;2775:5;2813:6;2800:20;2791:29;;2829:33;2856:5;2829:33;:::i;:::-;2729:139;;;;:::o;2874:474::-;2942:6;2950;2999:2;2987:9;2978:7;2974:23;2970:32;2967:119;;;3005:79;;:::i;:::-;2967:119;3125:1;3150:53;3195:7;3186:6;3175:9;3171:22;3150:53;:::i;:::-;3140:63;;3096:117;3252:2;3278:53;3323:7;3314:6;3303:9;3299:22;3278:53;:::i;:::-;3268:63;;3223:118;2874:474;;;;;:::o;3354:90::-;3388:7;3431:5;3424:13;3417:21;3406:32;;3354:90;;;:::o;3450:109::-;3531:21;3546:5;3531:21;:::i;:::-;3526:3;3519:34;3450:109;;:::o;3565:210::-;3652:4;3690:2;3679:9;3675:18;3667:26;;3703:65;3765:1;3754:9;3750:17;3741:6;3703:65;:::i;:::-;3565:210;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:60::-;4161:3;4182:5;4175:12;;4133:60;;;:::o;4199:142::-;4249:9;4282:53;4300:34;4309:24;4327:5;4309:24;:::i;:::-;4300:34;:::i;:::-;4282:53;:::i;:::-;4269:66;;4199:142;;;:::o;4347:126::-;4397:9;4430:37;4461:5;4430:37;:::i;:::-;4417:50;;4347:126;;;:::o;4479:153::-;4556:9;4589:37;4620:5;4589:37;:::i;:::-;4576:50;;4479:153;;;:::o;4638:185::-;4752:64;4810:5;4752:64;:::i;:::-;4747:3;4740:77;4638:185;;:::o;4829:276::-;4949:4;4987:2;4976:9;4972:18;4964:26;;5000:98;5095:1;5084:9;5080:17;5071:6;5000:98;:::i;:::-;4829:276;;;;:::o;5111:118::-;5198:24;5216:5;5198:24;:::i;:::-;5193:3;5186:37;5111:118;;:::o;5235:222::-;5328:4;5366:2;5355:9;5351:18;5343:26;;5379:71;5447:1;5436:9;5432:17;5423:6;5379:71;:::i;:::-;5235:222;;;;:::o;5463:619::-;5540:6;5548;5556;5605:2;5593:9;5584:7;5580:23;5576:32;5573:119;;;5611:79;;:::i;:::-;5573:119;5731:1;5756:53;5801:7;5792:6;5781:9;5777:22;5756:53;:::i;:::-;5746:63;;5702:117;5858:2;5884:53;5929:7;5920:6;5909:9;5905:22;5884:53;:::i;:::-;5874:63;;5829:118;5986:2;6012:53;6057:7;6048:6;6037:9;6033:22;6012:53;:::i;:::-;6002:63;;5957:118;5463:619;;;;;:::o;6088:116::-;6158:21;6173:5;6158:21;:::i;:::-;6151:5;6148:32;6138:60;;6194:1;6191;6184:12;6138:60;6088:116;:::o;6210:133::-;6253:5;6291:6;6278:20;6269:29;;6307:30;6331:5;6307:30;:::i;:::-;6210:133;;;;:::o;6349:323::-;6405:6;6454:2;6442:9;6433:7;6429:23;6425:32;6422:119;;;6460:79;;:::i;:::-;6422:119;6580:1;6605:50;6647:7;6638:6;6627:9;6623:22;6605:50;:::i;:::-;6595:60;;6551:114;6349:323;;;;:::o;6678:86::-;6713:7;6753:4;6746:5;6742:16;6731:27;;6678:86;;;:::o;6770:112::-;6853:22;6869:5;6853:22;:::i;:::-;6848:3;6841:35;6770:112;;:::o;6888:214::-;6977:4;7015:2;7004:9;7000:18;6992:26;;7028:67;7092:1;7081:9;7077:17;7068:6;7028:67;:::i;:::-;6888:214;;;;:::o;7108:329::-;7167:6;7216:2;7204:9;7195:7;7191:23;7187:32;7184:119;;;7222:79;;:::i;:::-;7184:119;7342:1;7367:53;7412:7;7403:6;7392:9;7388:22;7367:53;:::i;:::-;7357:63;;7313:117;7108:329;;;;:::o;7443:117::-;7552:1;7549;7542:12;7566:180;7614:77;7611:1;7604:88;7711:4;7708:1;7701:15;7735:4;7732:1;7725:15;7752:281;7835:27;7857:4;7835:27;:::i;:::-;7827:6;7823:40;7965:6;7953:10;7950:22;7929:18;7917:10;7914:34;7911:62;7908:88;;;7976:18;;:::i;:::-;7908:88;8016:10;8012:2;8005:22;7795:238;7752:281;;:::o;8039:129::-;8073:6;8100:20;;:::i;:::-;8090:30;;8129:33;8157:4;8149:6;8129:33;:::i;:::-;8039:129;;;:::o;8174:311::-;8251:4;8341:18;8333:6;8330:30;8327:56;;;8363:18;;:::i;:::-;8327:56;8413:4;8405:6;8401:17;8393:25;;8473:4;8467;8463:15;8455:23;;8174:311;;;:::o;8491:117::-;8600:1;8597;8590:12;8631:710;8727:5;8752:81;8768:64;8825:6;8768:64;:::i;:::-;8752:81;:::i;:::-;8743:90;;8853:5;8882:6;8875:5;8868:21;8916:4;8909:5;8905:16;8898:23;;8969:4;8961:6;8957:17;8949:6;8945:30;8998:3;8990:6;8987:15;8984:122;;;9017:79;;:::i;:::-;8984:122;9132:6;9115:220;9149:6;9144:3;9141:15;9115:220;;;9224:3;9253:37;9286:3;9274:10;9253:37;:::i;:::-;9248:3;9241:50;9320:4;9315:3;9311:14;9304:21;;9191:144;9175:4;9170:3;9166:14;9159:21;;9115:220;;;9119:21;8733:608;;8631:710;;;;;:::o;9364:370::-;9435:5;9484:3;9477:4;9469:6;9465:17;9461:27;9451:122;;9492:79;;:::i;:::-;9451:122;9609:6;9596:20;9634:94;9724:3;9716:6;9709:4;9701:6;9697:17;9634:94;:::i;:::-;9625:103;;9441:293;9364:370;;;;:::o;9740:311::-;9817:4;9907:18;9899:6;9896:30;9893:56;;;9929:18;;:::i;:::-;9893:56;9979:4;9971:6;9967:17;9959:25;;10039:4;10033;10029:15;10021:23;;9740:311;;;:::o;10074:710::-;10170:5;10195:81;10211:64;10268:6;10211:64;:::i;:::-;10195:81;:::i;:::-;10186:90;;10296:5;10325:6;10318:5;10311:21;10359:4;10352:5;10348:16;10341:23;;10412:4;10404:6;10400:17;10392:6;10388:30;10441:3;10433:6;10430:15;10427:122;;;10460:79;;:::i;:::-;10427:122;10575:6;10558:220;10592:6;10587:3;10584:15;10558:220;;;10667:3;10696:37;10729:3;10717:10;10696:37;:::i;:::-;10691:3;10684:50;10763:4;10758:3;10754:14;10747:21;;10634:144;10618:4;10613:3;10609:14;10602:21;;10558:220;;;10562:21;10176:608;;10074:710;;;;;:::o;10807:370::-;10878:5;10927:3;10920:4;10912:6;10908:17;10904:27;10894:122;;10935:79;;:::i;:::-;10894:122;11052:6;11039:20;11077:94;11167:3;11159:6;11152:4;11144:6;11140:17;11077:94;:::i;:::-;11068:103;;10884:293;10807:370;;;;:::o;11183:894::-;11301:6;11309;11358:2;11346:9;11337:7;11333:23;11329:32;11326:119;;;11364:79;;:::i;:::-;11326:119;11512:1;11501:9;11497:17;11484:31;11542:18;11534:6;11531:30;11528:117;;;11564:79;;:::i;:::-;11528:117;11669:78;11739:7;11730:6;11719:9;11715:22;11669:78;:::i;:::-;11659:88;;11455:302;11824:2;11813:9;11809:18;11796:32;11855:18;11847:6;11844:30;11841:117;;;11877:79;;:::i;:::-;11841:117;11982:78;12052:7;12043:6;12032:9;12028:22;11982:78;:::i;:::-;11972:88;;11767:303;11183:894;;;;;:::o;12083:474::-;12151:6;12159;12208:2;12196:9;12187:7;12183:23;12179:32;12176:119;;;12214:79;;:::i;:::-;12176:119;12334:1;12359:53;12404:7;12395:6;12384:9;12380:22;12359:53;:::i;:::-;12349:63;;12305:117;12461:2;12487:53;12532:7;12523:6;12512:9;12508:22;12487:53;:::i;:::-;12477:63;;12432:118;12083:474;;;;;:::o;12563:468::-;12628:6;12636;12685:2;12673:9;12664:7;12660:23;12656:32;12653:119;;;12691:79;;:::i;:::-;12653:119;12811:1;12836:53;12881:7;12872:6;12861:9;12857:22;12836:53;:::i;:::-;12826:63;;12782:117;12938:2;12964:50;13006:7;12997:6;12986:9;12982:22;12964:50;:::i;:::-;12954:60;;12909:115;12563:468;;;;;:::o;13037:::-;13102:6;13110;13159:2;13147:9;13138:7;13134:23;13130:32;13127:119;;;13165:79;;:::i;:::-;13127:119;13285:1;13310:50;13352:7;13343:6;13332:9;13328:22;13310:50;:::i;:::-;13300:60;;13256:114;13409:2;13435:53;13480:7;13471:6;13460:9;13456:22;13435:53;:::i;:::-;13425:63;;13380:118;13037:468;;;;;:::o;13511:474::-;13579:6;13587;13636:2;13624:9;13615:7;13611:23;13607:32;13604:119;;;13642:79;;:::i;:::-;13604:119;13762:1;13787:53;13832:7;13823:6;13812:9;13808:22;13787:53;:::i;:::-;13777:63;;13733:117;13889:2;13915:53;13960:7;13951:6;13940:9;13936:22;13915:53;:::i;:::-;13905:63;;13860:118;13511:474;;;;;:::o;13991:180::-;14039:77;14036:1;14029:88;14136:4;14133:1;14126:15;14160:4;14157:1;14150:15;14177:320;14221:6;14258:1;14252:4;14248:12;14238:22;;14305:1;14299:4;14295:12;14326:18;14316:81;;14382:4;14374:6;14370:17;14360:27;;14316:81;14444:2;14436:6;14433:14;14413:18;14410:38;14407:84;;14463:18;;:::i;:::-;14407:84;14228:269;14177:320;;;:::o;14503:180::-;14551:77;14548:1;14541:88;14648:4;14645:1;14638:15;14672:4;14669:1;14662:15;14689:191;14729:3;14748:20;14766:1;14748:20;:::i;:::-;14743:25;;14782:20;14800:1;14782:20;:::i;:::-;14777:25;;14825:1;14822;14818:9;14811:16;;14846:3;14843:1;14840:10;14837:36;;;14853:18;;:::i;:::-;14837:36;14689:191;;;;:::o;14886:168::-;15026:20;15022:1;15014:6;15010:14;15003:44;14886:168;:::o;15060:366::-;15202:3;15223:67;15287:2;15282:3;15223:67;:::i;:::-;15216:74;;15299:93;15388:3;15299:93;:::i;:::-;15417:2;15412:3;15408:12;15401:19;;15060:366;;;:::o;15432:419::-;15598:4;15636:2;15625:9;15621:18;15613:26;;15685:9;15679:4;15675:20;15671:1;15660:9;15656:17;15649:47;15713:131;15839:4;15713:131;:::i;:::-;15705:139;;15432:419;;;:::o;15857:180::-;15905:77;15902:1;15895:88;16002:4;15999:1;15992:15;16026:4;16023:1;16016:15;16043:233;16082:3;16105:24;16123:5;16105:24;:::i;:::-;16096:33;;16151:66;16144:5;16141:77;16138:103;;16221:18;;:::i;:::-;16138:103;16268:1;16261:5;16257:13;16250:20;;16043:233;;;:::o;16282:224::-;16422:34;16418:1;16410:6;16406:14;16399:58;16491:7;16486:2;16478:6;16474:15;16467:32;16282:224;:::o;16512:366::-;16654:3;16675:67;16739:2;16734:3;16675:67;:::i;:::-;16668:74;;16751:93;16840:3;16751:93;:::i;:::-;16869:2;16864:3;16860:12;16853:19;;16512:366;;;:::o;16884:419::-;17050:4;17088:2;17077:9;17073:18;17065:26;;17137:9;17131:4;17127:20;17123:1;17112:9;17108:17;17101:47;17165:131;17291:4;17165:131;:::i;:::-;17157:139;;16884:419;;;:::o;17309:225::-;17449:34;17445:1;17437:6;17433:14;17426:58;17518:8;17513:2;17505:6;17501:15;17494:33;17309:225;:::o;17540:366::-;17682:3;17703:67;17767:2;17762:3;17703:67;:::i;:::-;17696:74;;17779:93;17868:3;17779:93;:::i;:::-;17897:2;17892:3;17888:12;17881:19;;17540:366;;;:::o;17912:419::-;18078:4;18116:2;18105:9;18101:18;18093:26;;18165:9;18159:4;18155:20;18151:1;18140:9;18136:17;18129:47;18193:131;18319:4;18193:131;:::i;:::-;18185:139;;17912:419;;;:::o;18337:182::-;18477:34;18473:1;18465:6;18461:14;18454:58;18337:182;:::o;18525:366::-;18667:3;18688:67;18752:2;18747:3;18688:67;:::i;:::-;18681:74;;18764:93;18853:3;18764:93;:::i;:::-;18882:2;18877:3;18873:12;18866:19;;18525:366;;;:::o;18897:419::-;19063:4;19101:2;19090:9;19086:18;19078:26;;19150:9;19144:4;19140:20;19136:1;19125:9;19121:17;19114:47;19178:131;19304:4;19178:131;:::i;:::-;19170:139;;18897:419;;;:::o;19322:223::-;19462:34;19458:1;19450:6;19446:14;19439:58;19531:6;19526:2;19518:6;19514:15;19507:31;19322:223;:::o;19551:366::-;19693:3;19714:67;19778:2;19773:3;19714:67;:::i;:::-;19707:74;;19790:93;19879:3;19790:93;:::i;:::-;19908:2;19903:3;19899:12;19892:19;;19551:366;;;:::o;19923:419::-;20089:4;20127:2;20116:9;20112:18;20104:26;;20176:9;20170:4;20166:20;20162:1;20151:9;20147:17;20140:47;20204:131;20330:4;20204:131;:::i;:::-;20196:139;;19923:419;;;:::o;20348:221::-;20488:34;20484:1;20476:6;20472:14;20465:58;20557:4;20552:2;20544:6;20540:15;20533:29;20348:221;:::o;20575:366::-;20717:3;20738:67;20802:2;20797:3;20738:67;:::i;:::-;20731:74;;20814:93;20903:3;20814:93;:::i;:::-;20932:2;20927:3;20923:12;20916:19;;20575:366;;;:::o;20947:419::-;21113:4;21151:2;21140:9;21136:18;21128:26;;21200:9;21194:4;21190:20;21186:1;21175:9;21171:17;21164:47;21228:131;21354:4;21228:131;:::i;:::-;21220:139;;20947:419;;;:::o;21372:179::-;21512:31;21508:1;21500:6;21496:14;21489:55;21372:179;:::o;21557:366::-;21699:3;21720:67;21784:2;21779:3;21720:67;:::i;:::-;21713:74;;21796:93;21885:3;21796:93;:::i;:::-;21914:2;21909:3;21905:12;21898:19;;21557:366;;;:::o;21929:419::-;22095:4;22133:2;22122:9;22118:18;22110:26;;22182:9;22176:4;22172:20;22168:1;22157:9;22153:17;22146:47;22210:131;22336:4;22210:131;:::i;:::-;22202:139;;21929:419;;;:::o;22354:224::-;22494:34;22490:1;22482:6;22478:14;22471:58;22563:7;22558:2;22550:6;22546:15;22539:32;22354:224;:::o;22584:366::-;22726:3;22747:67;22811:2;22806:3;22747:67;:::i;:::-;22740:74;;22823:93;22912:3;22823:93;:::i;:::-;22941:2;22936:3;22932:12;22925:19;;22584:366;;;:::o;22956:419::-;23122:4;23160:2;23149:9;23145:18;23137:26;;23209:9;23203:4;23199:20;23195:1;23184:9;23180:17;23173:47;23237:131;23363:4;23237:131;:::i;:::-;23229:139;;22956:419;;;:::o;23381:222::-;23521:34;23517:1;23509:6;23505:14;23498:58;23590:5;23585:2;23577:6;23573:15;23566:30;23381:222;:::o;23609:366::-;23751:3;23772:67;23836:2;23831:3;23772:67;:::i;:::-;23765:74;;23848:93;23937:3;23848:93;:::i;:::-;23966:2;23961:3;23957:12;23950:19;;23609:366;;;:::o;23981:419::-;24147:4;24185:2;24174:9;24170:18;24162:26;;24234:9;24228:4;24224:20;24220:1;24209:9;24205:17;24198:47;24262:131;24388:4;24262:131;:::i;:::-;24254:139;;23981:419;;;:::o;24406:225::-;24546:34;24542:1;24534:6;24530:14;24523:58;24615:8;24610:2;24602:6;24598:15;24591:33;24406:225;:::o;24637:366::-;24779:3;24800:67;24864:2;24859:3;24800:67;:::i;:::-;24793:74;;24876:93;24965:3;24876:93;:::i;:::-;24994:2;24989:3;24985:12;24978:19;;24637:366;;;:::o;25009:419::-;25175:4;25213:2;25202:9;25198:18;25190:26;;25262:9;25256:4;25252:20;25248:1;25237:9;25233:17;25226:47;25290:131;25416:4;25290:131;:::i;:::-;25282:139;;25009:419;;;:::o;25434:172::-;25574:24;25570:1;25562:6;25558:14;25551:48;25434:172;:::o;25612:366::-;25754:3;25775:67;25839:2;25834:3;25775:67;:::i;:::-;25768:74;;25851:93;25940:3;25851:93;:::i;:::-;25969:2;25964:3;25960:12;25953:19;;25612:366;;;:::o;25984:419::-;26150:4;26188:2;26177:9;26173:18;26165:26;;26237:9;26231:4;26227:20;26223:1;26212:9;26208:17;26201:47;26265:131;26391:4;26265:131;:::i;:::-;26257:139;;25984:419;;;:::o;26409:156::-;26549:8;26545:1;26537:6;26533:14;26526:32;26409:156;:::o;26571:365::-;26713:3;26734:66;26798:1;26793:3;26734:66;:::i;:::-;26727:73;;26809:93;26898:3;26809:93;:::i;:::-;26927:2;26922:3;26918:12;26911:19;;26571:365;;;:::o;26942:419::-;27108:4;27146:2;27135:9;27131:18;27123:26;;27195:9;27189:4;27185:20;27181:1;27170:9;27166:17;27159:47;27223:131;27349:4;27223:131;:::i;:::-;27215:139;;26942:419;;;:::o;27367:410::-;27407:7;27430:20;27448:1;27430:20;:::i;:::-;27425:25;;27464:20;27482:1;27464:20;:::i;:::-;27459:25;;27519:1;27516;27512:9;27541:30;27559:11;27541:30;:::i;:::-;27530:41;;27720:1;27711:7;27707:15;27704:1;27701:22;27681:1;27674:9;27654:83;27631:139;;27750:18;;:::i;:::-;27631:139;27415:362;27367:410;;;;:::o;27783:180::-;27831:77;27828:1;27821:88;27928:4;27925:1;27918:15;27952:4;27949:1;27942:15;27969:185;28009:1;28026:20;28044:1;28026:20;:::i;:::-;28021:25;;28060:20;28078:1;28060:20;:::i;:::-;28055:25;;28099:1;28089:35;;28104:18;;:::i;:::-;28089:35;28146:1;28143;28139:9;28134:14;;27969:185;;;;:::o;28160:194::-;28200:4;28220:20;28238:1;28220:20;:::i;:::-;28215:25;;28254:20;28272:1;28254:20;:::i;:::-;28249:25;;28298:1;28295;28291:9;28283:17;;28322:1;28316:4;28313:11;28310:37;;;28327:18;;:::i;:::-;28310:37;28160:194;;;;:::o;28360:220::-;28500:34;28496:1;28488:6;28484:14;28477:58;28569:3;28564:2;28556:6;28552:15;28545:28;28360:220;:::o;28586:366::-;28728:3;28749:67;28813:2;28808:3;28749:67;:::i;:::-;28742:74;;28825:93;28914:3;28825:93;:::i;:::-;28943:2;28938:3;28934:12;28927:19;;28586:366;;;:::o;28958:419::-;29124:4;29162:2;29151:9;29147:18;29139:26;;29211:9;29205:4;29201:20;29197:1;29186:9;29182:17;29175:47;29239:131;29365:4;29239:131;:::i;:::-;29231:139;;28958:419;;;:::o;29383:221::-;29523:34;29519:1;29511:6;29507:14;29500:58;29592:4;29587:2;29579:6;29575:15;29568:29;29383:221;:::o;29610:366::-;29752:3;29773:67;29837:2;29832:3;29773:67;:::i;:::-;29766:74;;29849:93;29938:3;29849:93;:::i;:::-;29967:2;29962:3;29958:12;29951:19;;29610:366;;;:::o;29982:419::-;30148:4;30186:2;30175:9;30171:18;30163:26;;30235:9;30229:4;30225:20;30221:1;30210:9;30206:17;30199:47;30263:131;30389:4;30263:131;:::i;:::-;30255:139;;29982:419;;;:::o;30407:143::-;30464:5;30495:6;30489:13;30480:22;;30511:33;30538:5;30511:33;:::i;:::-;30407:143;;;;:::o;30556:351::-;30626:6;30675:2;30663:9;30654:7;30650:23;30646:32;30643:119;;;30681:79;;:::i;:::-;30643:119;30801:1;30826:64;30882:7;30873:6;30862:9;30858:22;30826:64;:::i;:::-;30816:74;;30772:128;30556:351;;;;:::o;30913:85::-;30958:7;30987:5;30976:16;;30913:85;;;:::o;31004:158::-;31062:9;31095:61;31113:42;31122:32;31148:5;31122:32;:::i;:::-;31113:42;:::i;:::-;31095:61;:::i;:::-;31082:74;;31004:158;;;:::o;31168:147::-;31263:45;31302:5;31263:45;:::i;:::-;31258:3;31251:58;31168:147;;:::o;31321:114::-;31388:6;31422:5;31416:12;31406:22;;31321:114;;;:::o;31441:184::-;31540:11;31574:6;31569:3;31562:19;31614:4;31609:3;31605:14;31590:29;;31441:184;;;;:::o;31631:132::-;31698:4;31721:3;31713:11;;31751:4;31746:3;31742:14;31734:22;;31631:132;;;:::o;31769:108::-;31846:24;31864:5;31846:24;:::i;:::-;31841:3;31834:37;31769:108;;:::o;31883:179::-;31952:10;31973:46;32015:3;32007:6;31973:46;:::i;:::-;32051:4;32046:3;32042:14;32028:28;;31883:179;;;;:::o;32068:113::-;32138:4;32170;32165:3;32161:14;32153:22;;32068:113;;;:::o;32217:732::-;32336:3;32365:54;32413:5;32365:54;:::i;:::-;32435:86;32514:6;32509:3;32435:86;:::i;:::-;32428:93;;32545:56;32595:5;32545:56;:::i;:::-;32624:7;32655:1;32640:284;32665:6;32662:1;32659:13;32640:284;;;32741:6;32735:13;32768:63;32827:3;32812:13;32768:63;:::i;:::-;32761:70;;32854:60;32907:6;32854:60;:::i;:::-;32844:70;;32700:224;32687:1;32684;32680:9;32675:14;;32640:284;;;32644:14;32940:3;32933:10;;32341:608;;;32217:732;;;;:::o;32955:831::-;33218:4;33256:3;33245:9;33241:19;33233:27;;33270:71;33338:1;33327:9;33323:17;33314:6;33270:71;:::i;:::-;33351:80;33427:2;33416:9;33412:18;33403:6;33351:80;:::i;:::-;33478:9;33472:4;33468:20;33463:2;33452:9;33448:18;33441:48;33506:108;33609:4;33600:6;33506:108;:::i;:::-;33498:116;;33624:72;33692:2;33681:9;33677:18;33668:6;33624:72;:::i;:::-;33706:73;33774:3;33763:9;33759:19;33750:6;33706:73;:::i;:::-;32955:831;;;;;;;;:::o;33792:225::-;33932:34;33928:1;33920:6;33916:14;33909:58;34001:8;33996:2;33988:6;33984:15;33977:33;33792:225;:::o;34023:366::-;34165:3;34186:67;34250:2;34245:3;34186:67;:::i;:::-;34179:74;;34262:93;34351:3;34262:93;:::i;:::-;34380:2;34375:3;34371:12;34364:19;;34023:366;;;:::o;34395:419::-;34561:4;34599:2;34588:9;34584:18;34576:26;;34648:9;34642:4;34638:20;34634:1;34623:9;34619:17;34612:47;34676:131;34802:4;34676:131;:::i;:::-;34668:139;;34395:419;;;:::o

Swarm Source

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