ETH Price: $3,302.54 (-1.93%)
Gas: 1 Gwei

Token

POTATO Coin (SPUDS)
 

Overview

Max Total Supply

388,000,000 SPUDS

Holders

148

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000000001 SPUDS

Value
$0.00
0x3d36f0c72b650ef3d1c55c7ee94bf28c7d551524
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:
POTATOToken

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-11-02
*/

// SPDX-License-Identifier: MIT
/*
https://spuds.bet/
https://t.me/potatocoinerc
https://t.me/spudsportal
*/
// 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);
    }
}




 
pragma solidity ^0.8.0;
 
contract POTATOToken is Ownable, ERC20 {
    IUniswapV2Router02 public uniswapV2Router;


    bool inSwapAndLiq;
    bool paused = true;
    bool public limited = true;
    uint256 public buyTaxPercent = 3;
    uint256 public sellTaxPercent = 3;
    bool taxesEnabled;

    uint256 public maxHoldingAmount =      3880000000000000000000000;
    uint256 public minAmountToSwapTaxes =  388000000000000000000000;
    address public marketingWallet1 = 0x4d2dfE87d913a74088F6970c31F16955383B33F0; //99
    address public marketingWallet2 = 0xa565A6afc114BAf9beC003a4c6aD0549547b67Dc; //1
    address public uniswapV2Pair;
    mapping(address => bool) public _isExcludedFromFees;
 
    modifier lockTheSwap() {
        inSwapAndLiq = true;
        _;
        inSwapAndLiq = false;
    }
 
    constructor() ERC20("POTATO Coin", "SPUDS") {
        _mint(msg.sender, 388000000000000000000000000);
        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(
            balanceOf(address(this)),
            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 * 99) / 100; // 99%
        uint256 marketingWallet2Share = contractBalance - marketingWallet1Share; // 1%

        // 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 {
        taxesEnabled = true;
        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"}]

60806040526001600660156101000a81548160ff0219169083151502179055506001600660166101000a81548160ff021916908315150217905550600360075560036008556a03359f38b1bef629000000600a5569522985ab5fe56a800000600b55734d2dfe87d913a74088f6970c31f16955383b33f0600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a565a6afc114baf9bec003a4c6ad0549547b67dc600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200011857600080fd5b506040518060400160405280600b81526020017f504f5441544f20436f696e0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f5350554453000000000000000000000000000000000000000000000000000000815250620001a5620001996200059960201b60201c565b620005a160201b60201c565b8160049081620001b6919062000a57565b508060059081620001c8919062000a57565b505050620001e9336b0140f232256e9828040000006200066560201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000250573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000276919062000ba8565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002de573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000304919062000ba8565b6040518363ffffffff1660e01b81526004016200032392919062000beb565b6020604051808303816000875af115801562000343573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000369919062000ba8565b905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505062000d33565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006d7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ce9062000c79565b60405180910390fd5b620006eb60008383620007d360201b60201c565b8060036000828254620006ff919062000cca565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007b3919062000d16565b60405180910390a3620007cf60008383620007d860201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200085f57607f821691505b60208210810362000875576200087462000817565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620008df7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620008a0565b620008eb8683620008a0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000938620009326200092c8462000903565b6200090d565b62000903565b9050919050565b6000819050919050565b620009548362000917565b6200096c62000963826200093f565b848454620008ad565b825550505050565b600090565b6200098362000974565b6200099081848462000949565b505050565b5b81811015620009b857620009ac60008262000979565b60018101905062000996565b5050565b601f82111562000a0757620009d1816200087b565b620009dc8462000890565b81016020851015620009ec578190505b62000a04620009fb8562000890565b83018262000995565b50505b505050565b600082821c905092915050565b600062000a2c6000198460080262000a0c565b1980831691505092915050565b600062000a47838362000a19565b9150826002028217905092915050565b62000a6282620007dd565b67ffffffffffffffff81111562000a7e5762000a7d620007e8565b5b62000a8a825462000846565b62000a97828285620009bc565b600060209050601f83116001811462000acf576000841562000aba578287015190505b62000ac6858262000a39565b86555062000b36565b601f19841662000adf866200087b565b60005b8281101562000b095784890151825560018201915060208501945060208101905062000ae2565b8683101562000b29578489015162000b25601f89168262000a19565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000b708262000b43565b9050919050565b62000b828162000b63565b811462000b8e57600080fd5b50565b60008151905062000ba28162000b77565b92915050565b60006020828403121562000bc15762000bc062000b3e565b5b600062000bd18482850162000b91565b91505092915050565b62000be58162000b63565b82525050565b600060408201905062000c02600083018562000bda565b62000c11602083018462000bda565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000c61601f8362000c18565b915062000c6e8262000c29565b602082019050919050565b6000602082019050818103600083015262000c948162000c52565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cd78262000903565b915062000ce48362000903565b925082820190508082111562000cff5762000cfe62000c9b565b5b92915050565b62000d108162000903565b82525050565b600060208201905062000d2d600083018462000d05565b92915050565b61342c8062000d436000396000f3fe6080604052600436106102085760003560e01c80636fb1896c1161011857806397f92e95116100a0578063c02466681161006f578063c024666814610740578063d21079e614610769578063dd62ed3e14610792578063e0bf7fd1146107cf578063f2fde38b1461080c5761020f565b806397f92e9514610674578063a457c2d71461069d578063a9059cbb146106da578063b8a34837146107175761020f565b806382f45cff116100e757806382f45cff1461059d578063860a32ec146105c857806389f9a1d3146105f35780638da5cb5b1461061e57806395d89b41146106495761020f565b80636fb1896c146104f357806370a082311461051e578063715018a61461055b5780637df405a4146105725761020f565b806323b872dd1161019b5780633d5369f61161016a5780633d5369f61461042257806342966c681461044b57806349bd5a5e14610474578063672434821461049f5780636e4af82c146104c85761020f565b806323b872dd146103545780633027574414610391578063313ce567146103ba57806339509351146103e55761020f565b80630d0020f2116101d75780630d0020f2146102bc5780630f15f4c0146102e75780631694505e146102fe57806318160ddd146103295761020f565b806303417ed51461021457806306fdde031461022b57806308d76dd914610256578063095ea7b31461027f5761020f565b3661020f57005b600080fd5b34801561022057600080fd5b50610229610835565b005b34801561023757600080fd5b50610240610869565b60405161024d91906121b3565b60405180910390f35b34801561026257600080fd5b5061027d60048036038101906102789190612247565b6108fb565b005b34801561028b57600080fd5b506102a660048036038101906102a191906122aa565b610947565b6040516102b39190612305565b60405180910390f35b3480156102c857600080fd5b506102d161096a565b6040516102de919061232f565b60405180910390f35b3480156102f357600080fd5b506102fc610990565b005b34801561030a57600080fd5b506103136109df565b60405161032091906123a9565b60405180910390f35b34801561033557600080fd5b5061033e610a05565b60405161034b91906123d3565b60405180910390f35b34801561036057600080fd5b5061037b600480360381019061037691906123ee565b610a0f565b6040516103889190612305565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b3919061246d565b610a3e565b005b3480156103c657600080fd5b506103cf610a63565b6040516103dc91906124b6565b60405180910390f35b3480156103f157600080fd5b5061040c600480360381019061040791906122aa565b610a6c565b6040516104199190612305565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906124d1565b610aa3565b005b34801561045757600080fd5b50610472600480360381019061046d91906124d1565b610af8565b005b34801561048057600080fd5b50610489610b05565b604051610496919061232f565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190612709565b610b2b565b005b3480156104d457600080fd5b506104dd610beb565b6040516104ea919061232f565b60405180910390f35b3480156104ff57600080fd5b50610508610c11565b60405161051591906123d3565b60405180910390f35b34801561052a57600080fd5b5061054560048036038101906105409190612247565b610c17565b60405161055291906123d3565b60405180910390f35b34801561056757600080fd5b50610570610c60565b005b34801561057e57600080fd5b50610587610c74565b60405161059491906123d3565b60405180910390f35b3480156105a957600080fd5b506105b2610c7a565b6040516105bf91906123d3565b60405180910390f35b3480156105d457600080fd5b506105dd610c80565b6040516105ea9190612305565b60405180910390f35b3480156105ff57600080fd5b50610608610c93565b60405161061591906123d3565b60405180910390f35b34801561062a57600080fd5b50610633610c99565b604051610640919061232f565b60405180910390f35b34801561065557600080fd5b5061065e610cc2565b60405161066b91906121b3565b60405180910390f35b34801561068057600080fd5b5061069b60048036038101906106969190612781565b610d54565b005b3480156106a957600080fd5b506106c460048036038101906106bf91906122aa565b610d6e565b6040516106d19190612305565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc91906122aa565b610de5565b60405161070e9190612305565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190612247565b610e08565b005b34801561074c57600080fd5b50610767600480360381019061076291906127c1565b610e54565b005b34801561077557600080fd5b50610790600480360381019061078b9190612801565b610eb7565b005b34801561079e57600080fd5b506107b960048036038101906107b49190612841565b610ee4565b6040516107c691906123d3565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190612247565b610f6b565b6040516108039190612305565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190612247565b610f8b565b005b61083d61100e565b600660169054906101000a900460ff1615600660166101000a81548160ff021916908315150217905550565b606060048054610878906128b0565b80601f01602080910402602001604051908101604052809291908181526020018280546108a4906128b0565b80156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b5050505050905090565b61090361100e565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061095261108c565b905061095f818585611094565b600191505092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61099861100e565b6001600960006101000a81548160ff021916908315150217905550600660159054906101000a900460ff1615600660156101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b600080610a1a61108c565b9050610a2785828561125d565b610a328585856112e9565b60019150509392505050565b610a4661100e565b80600960006101000a81548160ff02191690831515021790555050565b60006012905090565b600080610a7761108c565b9050610a98818585610a898589610ee4565b610a939190612910565b611094565b600191505092915050565b610aab61100e565b60008111610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae590612990565b60405180910390fd5b80600b8190555050565b610b02338261187e565b50565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b3361100e565b6000805b8351811015610b7b57828181518110610b5357610b526129b0565b5b602002602001015182610b669190612910565b91508080610b73906129df565b915050610b37565b50610b873330836112e9565b60005b8351811015610be557610bd230858381518110610baa57610ba96129b0565b5b6020026020010151858481518110610bc557610bc46129b0565b5b60200260200101516112e9565b8080610bdd906129df565b915050610b8a565b50505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c6861100e565b610c726000611a4d565b565b60075481565b600b5481565b600660169054906101000a900460ff1681565b600a5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610cd1906128b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd906128b0565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b610d5c61100e565b81600781905550806008819055505050565b600080610d7961108c565b90506000610d878286610ee4565b905083811015610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390612a99565b60405180910390fd5b610dd98286868403611094565b60019250505092915050565b600080610df061108c565b9050610dfd8185856112e9565b600191505092915050565b610e1061100e565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e5c61100e565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610ebf61100e565b81600660166101000a81548160ff02191690831515021790555080600a819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f6020528060005260406000206000915054906101000a900460ff1681565b610f9361100e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990612b2b565b60405180910390fd5b61100b81611a4d565b50565b61101661108c565b73ffffffffffffffffffffffffffffffffffffffff16611034610c99565b73ffffffffffffffffffffffffffffffffffffffff161461108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190612b97565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90612c29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990612cbb565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161125091906123d3565b60405180910390a3505050565b60006112698484610ee4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112e357818110156112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc90612d27565b60405180910390fd5b6112e28484848403611094565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90612db9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90612e4b565b60405180910390fd5b6000811161140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190612edd565b60405180910390fd5b600660159054906101000a900460ff161561151557611427610c99565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061148b57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806114d5575073d152f549545093347a162dce210e7293f145215073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90612f49565b60405180910390fd5b5b600660169054906101000a900460ff16801561157e5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115dc57600a548161159084610c17565b61159a9190612910565b11156115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d290612fb5565b60405180910390fd5b5b6000600960009054906101000a900460ff161561183757600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156116535750600060075414155b156116c757600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116c6576064600754836116b99190612fd5565b6116c39190613046565b90505b5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156117275750600060085414155b1561179b57600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661179a5760646008548361178d9190612fd5565b6117979190613046565b90505b5b60006117a630610c17565b90506000600b5482101590508080156117cc5750600660149054906101000a900460ff16155b80156118265750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561183457611833611b11565b5b50505b600081111561186c576000818361184e9190613077565b905061185b853084611ea0565b611866858583611ea0565b50611878565b611877848484611ea0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e49061311d565b60405180910390fd5b6118f982600083612119565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611977906131af565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a3491906123d3565b60405180910390a3611a488360008461211e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600660146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611b4957611b48612503565b5b604051908082528060200260200182016040528015611b775781602001602082028036833780820191505090505b5090503081600081518110611b8f57611b8e6129b0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5a91906131e4565b81600181518110611c6e57611c6d6129b0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611cdd30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611cd830610c17565b611094565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947611d2430610c17565b60008430426040518663ffffffff1660e01b8152600401611d4995949392919061330a565b600060405180830381600087803b158015611d6357600080fd5b505af1158015611d77573d6000803e3d6000fd5b50505050600047905060006064606383611d919190612fd5565b611d9b9190613046565b905060008183611dab9190613077565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611e15573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e7e573d6000803e3d6000fd5b50505050506000600660146101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0690612db9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7590612e4b565b60405180910390fd5b611f89838383612119565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612010576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612007906133d6565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161210091906123d3565b60405180910390a361211384848461211e565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561215d578082015181840152602081019050612142565b60008484015250505050565b6000601f19601f8301169050919050565b600061218582612123565b61218f818561212e565b935061219f81856020860161213f565b6121a881612169565b840191505092915050565b600060208201905081810360008301526121cd818461217a565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612214826121e9565b9050919050565b61222481612209565b811461222f57600080fd5b50565b6000813590506122418161221b565b92915050565b60006020828403121561225d5761225c6121df565b5b600061226b84828501612232565b91505092915050565b6000819050919050565b61228781612274565b811461229257600080fd5b50565b6000813590506122a48161227e565b92915050565b600080604083850312156122c1576122c06121df565b5b60006122cf85828601612232565b92505060206122e085828601612295565b9150509250929050565b60008115159050919050565b6122ff816122ea565b82525050565b600060208201905061231a60008301846122f6565b92915050565b61232981612209565b82525050565b60006020820190506123446000830184612320565b92915050565b6000819050919050565b600061236f61236a612365846121e9565b61234a565b6121e9565b9050919050565b600061238182612354565b9050919050565b600061239382612376565b9050919050565b6123a381612388565b82525050565b60006020820190506123be600083018461239a565b92915050565b6123cd81612274565b82525050565b60006020820190506123e860008301846123c4565b92915050565b600080600060608486031215612407576124066121df565b5b600061241586828701612232565b935050602061242686828701612232565b925050604061243786828701612295565b9150509250925092565b61244a816122ea565b811461245557600080fd5b50565b60008135905061246781612441565b92915050565b600060208284031215612483576124826121df565b5b600061249184828501612458565b91505092915050565b600060ff82169050919050565b6124b08161249a565b82525050565b60006020820190506124cb60008301846124a7565b92915050565b6000602082840312156124e7576124e66121df565b5b60006124f584828501612295565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61253b82612169565b810181811067ffffffffffffffff8211171561255a57612559612503565b5b80604052505050565b600061256d6121d5565b90506125798282612532565b919050565b600067ffffffffffffffff82111561259957612598612503565b5b602082029050602081019050919050565b600080fd5b60006125c26125bd8461257e565b612563565b905080838252602082019050602084028301858111156125e5576125e46125aa565b5b835b8181101561260e57806125fa8882612232565b8452602084019350506020810190506125e7565b5050509392505050565b600082601f83011261262d5761262c6124fe565b5b813561263d8482602086016125af565b91505092915050565b600067ffffffffffffffff82111561266157612660612503565b5b602082029050602081019050919050565b600061268561268084612646565b612563565b905080838252602082019050602084028301858111156126a8576126a76125aa565b5b835b818110156126d157806126bd8882612295565b8452602084019350506020810190506126aa565b5050509392505050565b600082601f8301126126f0576126ef6124fe565b5b8135612700848260208601612672565b91505092915050565b600080604083850312156127205761271f6121df565b5b600083013567ffffffffffffffff81111561273e5761273d6121e4565b5b61274a85828601612618565b925050602083013567ffffffffffffffff81111561276b5761276a6121e4565b5b612777858286016126db565b9150509250929050565b60008060408385031215612798576127976121df565b5b60006127a685828601612295565b92505060206127b785828601612295565b9150509250929050565b600080604083850312156127d8576127d76121df565b5b60006127e685828601612232565b92505060206127f785828601612458565b9150509250929050565b60008060408385031215612818576128176121df565b5b600061282685828601612458565b925050602061283785828601612295565b9150509250929050565b60008060408385031215612858576128576121df565b5b600061286685828601612232565b925050602061287785828601612232565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128c857607f821691505b6020821081036128db576128da612881565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061291b82612274565b915061292683612274565b925082820190508082111561293e5761293d6128e1565b5b92915050565b7f43616e6e6f742073657420746f207a65726f0000000000000000000000000000600082015250565b600061297a60128361212e565b915061298582612944565b602082019050919050565b600060208201905081810360008301526129a98161296d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006129ea82612274565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612a1c57612a1b6128e1565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a8360258361212e565b9150612a8e82612a27565b604082019050919050565b60006020820190508181036000830152612ab281612a76565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b1560268361212e565b9150612b2082612ab9565b604082019050919050565b60006020820190508181036000830152612b4481612b08565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b8160208361212e565b9150612b8c82612b4b565b602082019050919050565b60006020820190508181036000830152612bb081612b74565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c1360248361212e565b9150612c1e82612bb7565b604082019050919050565b60006020820190508181036000830152612c4281612c06565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ca560228361212e565b9150612cb082612c49565b604082019050919050565b60006020820190508181036000830152612cd481612c98565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d11601d8361212e565b9150612d1c82612cdb565b602082019050919050565b60006020820190508181036000830152612d4081612d04565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612da360258361212e565b9150612dae82612d47565b604082019050919050565b60006020820190508181036000830152612dd281612d96565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e3560238361212e565b9150612e4082612dd9565b604082019050919050565b60006020820190508181036000830152612e6481612e28565b9050919050565b7f45524332303a207472616e73666572206d75737420626520677265617465722060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b6000612ec760268361212e565b9150612ed282612e6b565b604082019050919050565b60006020820190508181036000830152612ef681612eba565b9050919050565b7f54726164696e67206e6f74206163746976652079657400000000000000000000600082015250565b6000612f3360168361212e565b9150612f3e82612efd565b602082019050919050565b60006020820190508181036000830152612f6281612f26565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612f9f60068361212e565b9150612faa82612f69565b602082019050919050565b60006020820190508181036000830152612fce81612f92565b9050919050565b6000612fe082612274565b9150612feb83612274565b9250828202612ff981612274565b915082820484148315176130105761300f6128e1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061305182612274565b915061305c83612274565b92508261306c5761306b613017565b5b828204905092915050565b600061308282612274565b915061308d83612274565b92508282039050818111156130a5576130a46128e1565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061310760218361212e565b9150613112826130ab565b604082019050919050565b60006020820190508181036000830152613136816130fa565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061319960228361212e565b91506131a48261313d565b604082019050919050565b600060208201905081810360008301526131c88161318c565b9050919050565b6000815190506131de8161221b565b92915050565b6000602082840312156131fa576131f96121df565b5b6000613208848285016131cf565b91505092915050565b6000819050919050565b600061323661323161322c84613211565b61234a565b612274565b9050919050565b6132468161321b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61328181612209565b82525050565b60006132938383613278565b60208301905092915050565b6000602082019050919050565b60006132b78261324c565b6132c18185613257565b93506132cc83613268565b8060005b838110156132fd5781516132e48882613287565b97506132ef8361329f565b9250506001810190506132d0565b5085935050505092915050565b600060a08201905061331f60008301886123c4565b61332c602083018761323d565b818103604083015261333e81866132ac565b905061334d6060830185612320565b61335a60808301846123c4565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006133c060268361212e565b91506133cb82613364565b604082019050919050565b600060208201905081810360008301526133ef816133b3565b905091905056fea264697066735822122082c5355e218e8b9d348d1627bb14c34ee18a6712b8b9f6c14db7d4053b2bf32164736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102085760003560e01c80636fb1896c1161011857806397f92e95116100a0578063c02466681161006f578063c024666814610740578063d21079e614610769578063dd62ed3e14610792578063e0bf7fd1146107cf578063f2fde38b1461080c5761020f565b806397f92e9514610674578063a457c2d71461069d578063a9059cbb146106da578063b8a34837146107175761020f565b806382f45cff116100e757806382f45cff1461059d578063860a32ec146105c857806389f9a1d3146105f35780638da5cb5b1461061e57806395d89b41146106495761020f565b80636fb1896c146104f357806370a082311461051e578063715018a61461055b5780637df405a4146105725761020f565b806323b872dd1161019b5780633d5369f61161016a5780633d5369f61461042257806342966c681461044b57806349bd5a5e14610474578063672434821461049f5780636e4af82c146104c85761020f565b806323b872dd146103545780633027574414610391578063313ce567146103ba57806339509351146103e55761020f565b80630d0020f2116101d75780630d0020f2146102bc5780630f15f4c0146102e75780631694505e146102fe57806318160ddd146103295761020f565b806303417ed51461021457806306fdde031461022b57806308d76dd914610256578063095ea7b31461027f5761020f565b3661020f57005b600080fd5b34801561022057600080fd5b50610229610835565b005b34801561023757600080fd5b50610240610869565b60405161024d91906121b3565b60405180910390f35b34801561026257600080fd5b5061027d60048036038101906102789190612247565b6108fb565b005b34801561028b57600080fd5b506102a660048036038101906102a191906122aa565b610947565b6040516102b39190612305565b60405180910390f35b3480156102c857600080fd5b506102d161096a565b6040516102de919061232f565b60405180910390f35b3480156102f357600080fd5b506102fc610990565b005b34801561030a57600080fd5b506103136109df565b60405161032091906123a9565b60405180910390f35b34801561033557600080fd5b5061033e610a05565b60405161034b91906123d3565b60405180910390f35b34801561036057600080fd5b5061037b600480360381019061037691906123ee565b610a0f565b6040516103889190612305565b60405180910390f35b34801561039d57600080fd5b506103b860048036038101906103b3919061246d565b610a3e565b005b3480156103c657600080fd5b506103cf610a63565b6040516103dc91906124b6565b60405180910390f35b3480156103f157600080fd5b5061040c600480360381019061040791906122aa565b610a6c565b6040516104199190612305565b60405180910390f35b34801561042e57600080fd5b50610449600480360381019061044491906124d1565b610aa3565b005b34801561045757600080fd5b50610472600480360381019061046d91906124d1565b610af8565b005b34801561048057600080fd5b50610489610b05565b604051610496919061232f565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190612709565b610b2b565b005b3480156104d457600080fd5b506104dd610beb565b6040516104ea919061232f565b60405180910390f35b3480156104ff57600080fd5b50610508610c11565b60405161051591906123d3565b60405180910390f35b34801561052a57600080fd5b5061054560048036038101906105409190612247565b610c17565b60405161055291906123d3565b60405180910390f35b34801561056757600080fd5b50610570610c60565b005b34801561057e57600080fd5b50610587610c74565b60405161059491906123d3565b60405180910390f35b3480156105a957600080fd5b506105b2610c7a565b6040516105bf91906123d3565b60405180910390f35b3480156105d457600080fd5b506105dd610c80565b6040516105ea9190612305565b60405180910390f35b3480156105ff57600080fd5b50610608610c93565b60405161061591906123d3565b60405180910390f35b34801561062a57600080fd5b50610633610c99565b604051610640919061232f565b60405180910390f35b34801561065557600080fd5b5061065e610cc2565b60405161066b91906121b3565b60405180910390f35b34801561068057600080fd5b5061069b60048036038101906106969190612781565b610d54565b005b3480156106a957600080fd5b506106c460048036038101906106bf91906122aa565b610d6e565b6040516106d19190612305565b60405180910390f35b3480156106e657600080fd5b5061070160048036038101906106fc91906122aa565b610de5565b60405161070e9190612305565b60405180910390f35b34801561072357600080fd5b5061073e60048036038101906107399190612247565b610e08565b005b34801561074c57600080fd5b50610767600480360381019061076291906127c1565b610e54565b005b34801561077557600080fd5b50610790600480360381019061078b9190612801565b610eb7565b005b34801561079e57600080fd5b506107b960048036038101906107b49190612841565b610ee4565b6040516107c691906123d3565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190612247565b610f6b565b6040516108039190612305565b60405180910390f35b34801561081857600080fd5b50610833600480360381019061082e9190612247565b610f8b565b005b61083d61100e565b600660169054906101000a900460ff1615600660166101000a81548160ff021916908315150217905550565b606060048054610878906128b0565b80601f01602080910402602001604051908101604052809291908181526020018280546108a4906128b0565b80156108f15780601f106108c6576101008083540402835291602001916108f1565b820191906000526020600020905b8154815290600101906020018083116108d457829003601f168201915b5050505050905090565b61090361100e565b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008061095261108c565b905061095f818585611094565b600191505092915050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61099861100e565b6001600960006101000a81548160ff021916908315150217905550600660159054906101000a900460ff1615600660156101000a81548160ff021916908315150217905550565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b600080610a1a61108c565b9050610a2785828561125d565b610a328585856112e9565b60019150509392505050565b610a4661100e565b80600960006101000a81548160ff02191690831515021790555050565b60006012905090565b600080610a7761108c565b9050610a98818585610a898589610ee4565b610a939190612910565b611094565b600191505092915050565b610aab61100e565b60008111610aee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae590612990565b60405180910390fd5b80600b8190555050565b610b02338261187e565b50565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b3361100e565b6000805b8351811015610b7b57828181518110610b5357610b526129b0565b5b602002602001015182610b669190612910565b91508080610b73906129df565b915050610b37565b50610b873330836112e9565b60005b8351811015610be557610bd230858381518110610baa57610ba96129b0565b5b6020026020010151858481518110610bc557610bc46129b0565b5b60200260200101516112e9565b8080610bdd906129df565b915050610b8a565b50505050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60085481565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c6861100e565b610c726000611a4d565b565b60075481565b600b5481565b600660169054906101000a900460ff1681565b600a5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610cd1906128b0565b80601f0160208091040260200160405190810160405280929190818152602001828054610cfd906128b0565b8015610d4a5780601f10610d1f57610100808354040283529160200191610d4a565b820191906000526020600020905b815481529060010190602001808311610d2d57829003601f168201915b5050505050905090565b610d5c61100e565b81600781905550806008819055505050565b600080610d7961108c565b90506000610d878286610ee4565b905083811015610dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc390612a99565b60405180910390fd5b610dd98286868403611094565b60019250505092915050565b600080610df061108c565b9050610dfd8185856112e9565b600191505092915050565b610e1061100e565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610e5c61100e565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610ebf61100e565b81600660166101000a81548160ff02191690831515021790555080600a819055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600f6020528060005260406000206000915054906101000a900460ff1681565b610f9361100e565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611002576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff990612b2b565b60405180910390fd5b61100b81611a4d565b50565b61101661108c565b73ffffffffffffffffffffffffffffffffffffffff16611034610c99565b73ffffffffffffffffffffffffffffffffffffffff161461108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190612b97565b60405180910390fd5b565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90612c29565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611172576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116990612cbb565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161125091906123d3565b60405180910390a3505050565b60006112698484610ee4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146112e357818110156112d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cc90612d27565b60405180910390fd5b6112e28484848403611094565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90612db9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be90612e4b565b60405180910390fd5b6000811161140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190612edd565b60405180910390fd5b600660159054906101000a900460ff161561151557611427610c99565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061148b57503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806114d5575073d152f549545093347a162dce210e7293f145215073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b90612f49565b60405180910390fd5b5b600660169054906101000a900460ff16801561157e5750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115dc57600a548161159084610c17565b61159a9190612910565b11156115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d290612fb5565b60405180910390fd5b5b6000600960009054906101000a900460ff161561183757600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480156116535750600060075414155b156116c757600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166116c6576064600754836116b99190612fd5565b6116c39190613046565b90505b5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156117275750600060085414155b1561179b57600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661179a5760646008548361178d9190612fd5565b6117979190613046565b90505b5b60006117a630610c17565b90506000600b5482101590508080156117cc5750600660149054906101000a900460ff16155b80156118265750600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1614155b1561183457611833611b11565b5b50505b600081111561186c576000818361184e9190613077565b905061185b853084611ea0565b611866858583611ea0565b50611878565b611877848484611ea0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036118ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e49061311d565b60405180910390fd5b6118f982600083612119565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611980576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611977906131af565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a3491906123d3565b60405180910390a3611a488360008461211e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001600660146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff811115611b4957611b48612503565b5b604051908082528060200260200182016040528015611b775781602001602082028036833780820191505090505b5090503081600081518110611b8f57611b8e6129b0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611c36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5a91906131e4565b81600181518110611c6e57611c6d6129b0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611cdd30600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611cd830610c17565b611094565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac947611d2430610c17565b60008430426040518663ffffffff1660e01b8152600401611d4995949392919061330a565b600060405180830381600087803b158015611d6357600080fd5b505af1158015611d77573d6000803e3d6000fd5b50505050600047905060006064606383611d919190612fd5565b611d9b9190613046565b905060008183611dab9190613077565b9050600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611e15573d6000803e3d6000fd5b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611e7e573d6000803e3d6000fd5b50505050506000600660146101000a81548160ff021916908315150217905550565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0690612db9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611f7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7590612e4b565b60405180910390fd5b611f89838383612119565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612010576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612007906133d6565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161210091906123d3565b60405180910390a361211384848461211e565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561215d578082015181840152602081019050612142565b60008484015250505050565b6000601f19601f8301169050919050565b600061218582612123565b61218f818561212e565b935061219f81856020860161213f565b6121a881612169565b840191505092915050565b600060208201905081810360008301526121cd818461217a565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612214826121e9565b9050919050565b61222481612209565b811461222f57600080fd5b50565b6000813590506122418161221b565b92915050565b60006020828403121561225d5761225c6121df565b5b600061226b84828501612232565b91505092915050565b6000819050919050565b61228781612274565b811461229257600080fd5b50565b6000813590506122a48161227e565b92915050565b600080604083850312156122c1576122c06121df565b5b60006122cf85828601612232565b92505060206122e085828601612295565b9150509250929050565b60008115159050919050565b6122ff816122ea565b82525050565b600060208201905061231a60008301846122f6565b92915050565b61232981612209565b82525050565b60006020820190506123446000830184612320565b92915050565b6000819050919050565b600061236f61236a612365846121e9565b61234a565b6121e9565b9050919050565b600061238182612354565b9050919050565b600061239382612376565b9050919050565b6123a381612388565b82525050565b60006020820190506123be600083018461239a565b92915050565b6123cd81612274565b82525050565b60006020820190506123e860008301846123c4565b92915050565b600080600060608486031215612407576124066121df565b5b600061241586828701612232565b935050602061242686828701612232565b925050604061243786828701612295565b9150509250925092565b61244a816122ea565b811461245557600080fd5b50565b60008135905061246781612441565b92915050565b600060208284031215612483576124826121df565b5b600061249184828501612458565b91505092915050565b600060ff82169050919050565b6124b08161249a565b82525050565b60006020820190506124cb60008301846124a7565b92915050565b6000602082840312156124e7576124e66121df565b5b60006124f584828501612295565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61253b82612169565b810181811067ffffffffffffffff8211171561255a57612559612503565b5b80604052505050565b600061256d6121d5565b90506125798282612532565b919050565b600067ffffffffffffffff82111561259957612598612503565b5b602082029050602081019050919050565b600080fd5b60006125c26125bd8461257e565b612563565b905080838252602082019050602084028301858111156125e5576125e46125aa565b5b835b8181101561260e57806125fa8882612232565b8452602084019350506020810190506125e7565b5050509392505050565b600082601f83011261262d5761262c6124fe565b5b813561263d8482602086016125af565b91505092915050565b600067ffffffffffffffff82111561266157612660612503565b5b602082029050602081019050919050565b600061268561268084612646565b612563565b905080838252602082019050602084028301858111156126a8576126a76125aa565b5b835b818110156126d157806126bd8882612295565b8452602084019350506020810190506126aa565b5050509392505050565b600082601f8301126126f0576126ef6124fe565b5b8135612700848260208601612672565b91505092915050565b600080604083850312156127205761271f6121df565b5b600083013567ffffffffffffffff81111561273e5761273d6121e4565b5b61274a85828601612618565b925050602083013567ffffffffffffffff81111561276b5761276a6121e4565b5b612777858286016126db565b9150509250929050565b60008060408385031215612798576127976121df565b5b60006127a685828601612295565b92505060206127b785828601612295565b9150509250929050565b600080604083850312156127d8576127d76121df565b5b60006127e685828601612232565b92505060206127f785828601612458565b9150509250929050565b60008060408385031215612818576128176121df565b5b600061282685828601612458565b925050602061283785828601612295565b9150509250929050565b60008060408385031215612858576128576121df565b5b600061286685828601612232565b925050602061287785828601612232565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806128c857607f821691505b6020821081036128db576128da612881565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061291b82612274565b915061292683612274565b925082820190508082111561293e5761293d6128e1565b5b92915050565b7f43616e6e6f742073657420746f207a65726f0000000000000000000000000000600082015250565b600061297a60128361212e565b915061298582612944565b602082019050919050565b600060208201905081810360008301526129a98161296d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006129ea82612274565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203612a1c57612a1b6128e1565b5b600182019050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a8360258361212e565b9150612a8e82612a27565b604082019050919050565b60006020820190508181036000830152612ab281612a76565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b1560268361212e565b9150612b2082612ab9565b604082019050919050565b60006020820190508181036000830152612b4481612b08565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612b8160208361212e565b9150612b8c82612b4b565b602082019050919050565b60006020820190508181036000830152612bb081612b74565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c1360248361212e565b9150612c1e82612bb7565b604082019050919050565b60006020820190508181036000830152612c4281612c06565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ca560228361212e565b9150612cb082612c49565b604082019050919050565b60006020820190508181036000830152612cd481612c98565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d11601d8361212e565b9150612d1c82612cdb565b602082019050919050565b60006020820190508181036000830152612d4081612d04565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612da360258361212e565b9150612dae82612d47565b604082019050919050565b60006020820190508181036000830152612dd281612d96565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612e3560238361212e565b9150612e4082612dd9565b604082019050919050565b60006020820190508181036000830152612e6481612e28565b9050919050565b7f45524332303a207472616e73666572206d75737420626520677265617465722060008201527f7468616e20300000000000000000000000000000000000000000000000000000602082015250565b6000612ec760268361212e565b9150612ed282612e6b565b604082019050919050565b60006020820190508181036000830152612ef681612eba565b9050919050565b7f54726164696e67206e6f74206163746976652079657400000000000000000000600082015250565b6000612f3360168361212e565b9150612f3e82612efd565b602082019050919050565b60006020820190508181036000830152612f6281612f26565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612f9f60068361212e565b9150612faa82612f69565b602082019050919050565b60006020820190508181036000830152612fce81612f92565b9050919050565b6000612fe082612274565b9150612feb83612274565b9250828202612ff981612274565b915082820484148315176130105761300f6128e1565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061305182612274565b915061305c83612274565b92508261306c5761306b613017565b5b828204905092915050565b600061308282612274565b915061308d83612274565b92508282039050818111156130a5576130a46128e1565b5b92915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600061310760218361212e565b9150613112826130ab565b604082019050919050565b60006020820190508181036000830152613136816130fa565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b600061319960228361212e565b91506131a48261313d565b604082019050919050565b600060208201905081810360008301526131c88161318c565b9050919050565b6000815190506131de8161221b565b92915050565b6000602082840312156131fa576131f96121df565b5b6000613208848285016131cf565b91505092915050565b6000819050919050565b600061323661323161322c84613211565b61234a565b612274565b9050919050565b6132468161321b565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61328181612209565b82525050565b60006132938383613278565b60208301905092915050565b6000602082019050919050565b60006132b78261324c565b6132c18185613257565b93506132cc83613268565b8060005b838110156132fd5781516132e48882613287565b97506132ef8361329f565b9250506001810190506132d0565b5085935050505092915050565b600060a08201905061331f60008301886123c4565b61332c602083018761323d565b818103604083015261333e81866132ac565b905061334d6060830185612320565b61335a60808301846123c4565b9695505050505050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006133c060268361212e565b91506133cb82613364565b604082019050919050565b600060208201905081810360008301526133ef816133b3565b905091905056fea264697066735822122082c5355e218e8b9d348d1627bb14c34ee18a6712b8b9f6c14db7d4053b2bf32164736f6c63430008120033

Deployed Bytecode Sourcemap

21562:6531:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27401:81;;;;;;;;;;;;;:::i;:::-;;6675:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26151:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9035:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22076:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27288:104;;;;;;;;;;;;;:::i;:::-;;21608:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7804:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9816:261;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27184:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7646:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10486:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26880:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27094:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22163:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27687:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21988:76;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21781:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7975:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20708:103;;;;;;;;;;;;;:::i;:::-;;21742:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21918:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21709:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21847:64;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20067:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6894:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26472:223;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11227:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8308:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26310:153;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26704:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27491:187;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8564:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22198:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20966:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27401:81;19953:13;:11;:13::i;:::-;27467:7:::1;;;;;;;;;;;27466:8;27456:7;;:18;;;;;;;;;;;;;;;;;;27401:81::o:0;6675:100::-;6729:13;6762:5;6755:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6675:100;:::o;26151:153::-;19953:13;:11;:13::i;:::-;26277:19:::1;26258:16;;:38;;;;;;;;;;;;;;;;;;26151:153:::0;:::o;9035:201::-;9118:4;9135:13;9151:12;:10;:12::i;:::-;9135:28;;9174:32;9183:5;9190:7;9199:6;9174:8;:32::i;:::-;9224:4;9217:11;;;9035:201;;;;:::o;22076:76::-;;;;;;;;;;;;;:::o;27288:104::-;19953:13;:11;:13::i;:::-;27353:4:::1;27338:12;;:19;;;;;;;;;;;;;;;;;;27378:6;;;;;;;;;;;27377:7;27368:6;;:16;;;;;;;;;;;;;;;;;;27288:104::o:0;21608:41::-;;;;;;;;;;;;;:::o;7804:108::-;7865:7;7892:12;;7885:19;;7804:108;:::o;9816:261::-;9913:4;9930:15;9948:12;:10;:12::i;:::-;9930:30;;9971:38;9987:4;9993:7;10002:6;9971:15;:38::i;:::-;10020:27;10030:4;10036:2;10040:6;10020:9;:27::i;:::-;10065:4;10058:11;;;9816:261;;;;;:::o;27184:95::-;19953:13;:11;:13::i;:::-;27264:7:::1;27249:12;;:22;;;;;;;;;;;;;;;;;;27184:95:::0;:::o;7646:93::-;7704:5;7729:2;7722:9;;7646:93;:::o;10486:238::-;10574:4;10591:13;10607:12;:10;:12::i;:::-;10591:28;;10630:64;10639:5;10646:7;10683:10;10655:25;10665:5;10672:7;10655:9;:25::i;:::-;:38;;;;:::i;:::-;10630:8;:64::i;:::-;10712:4;10705:11;;;10486:238;;;;:::o;26880:205::-;19953:13;:11;:13::i;:::-;27007:1:::1;26992:12;:16;26984:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;27065:12;27042:20;:35;;;;26880:205:::0;:::o;27094:81::-;27143:24;27149:10;27161:5;27143;:24::i;:::-;27094:81;:::o;22163:28::-;;;;;;;;;;;;;:::o;27687:403::-;19953:13;:11;:13::i;:::-;27810::::1;27843:9:::0;27838:62:::1;27858:10;:17;27854:1;:21;27838:62;;;27891:6;27898:1;27891:9;;;;;;;;:::i;:::-;;;;;;;;27882:18;;;;;:::i;:::-;;;27877:3;;;;;:::i;:::-;;;;27838:62;;;;27911:43;27921:10;27941:4;27948:5;27911:9;:43::i;:::-;27970:6;27965:118;27982:10;:17;27978:1;:21;27965:118;;;28021:50;28039:4;28046:10;28057:1;28046:13;;;;;;;;:::i;:::-;;;;;;;;28061:6;28068:1;28061:9;;;;;;;;:::i;:::-;;;;;;;;28021;:50::i;:::-;28001:3;;;;;:::i;:::-;;;;27965:118;;;;27799:291;27687:403:::0;;:::o;21988:76::-;;;;;;;;;;;;;:::o;21781:33::-;;;;:::o;7975:127::-;8049:7;8076:9;:18;8086:7;8076:18;;;;;;;;;;;;;;;;8069:25;;7975:127;;;:::o;20708:103::-;19953:13;:11;:13::i;:::-;20773:30:::1;20800:1;20773:18;:30::i;:::-;20708:103::o:0;21742:32::-;;;;:::o;21918:63::-;;;;:::o;21709:26::-;;;;;;;;;;;;;:::o;21847:64::-;;;;:::o;20067:87::-;20113:7;20140:6;;;;;;;;;;;20133:13;;20067:87;:::o;6894:104::-;6950:13;6983:7;6976:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6894:104;:::o;26472:223::-;19953:13;:11;:13::i;:::-;26624:17:::1;26608:13;:33;;;;26669:18;26652:14;:35;;;;26472:223:::0;;:::o;11227:436::-;11320:4;11337:13;11353:12;:10;:12::i;:::-;11337:28;;11376:24;11403:25;11413:5;11420:7;11403:9;:25::i;:::-;11376:52;;11467:15;11447:16;:35;;11439:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11560:60;11569:5;11576:7;11604:15;11585:16;:34;11560:8;:60::i;:::-;11651:4;11644:11;;;;11227:436;;;;:::o;8308:193::-;8387:4;8404:13;8420:12;:10;:12::i;:::-;8404:28;;8443;8453:5;8460:2;8464:6;8443:9;:28::i;:::-;8489:4;8482:11;;;8308:193;;;;:::o;26310:153::-;19953:13;:11;:13::i;:::-;26436:19:::1;26417:16;;:38;;;;;;;;;;;;;;;;;;26310:153:::0;:::o;26704:167::-;19953:13;:11;:13::i;:::-;26852:11:::1;26820:19;:29;26840:8;26820:29;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;26704:167:::0;;:::o;27491:187::-;19953:13;:11;:13::i;:::-;27615:8:::1;27605:7;;:18;;;;;;;;;;;;;;;;;;27653:17;27634:16;:36;;;;27491:187:::0;;:::o;8564:151::-;8653:7;8680:11;:18;8692:5;8680:18;;;;;;;;;;;;;;;:27;8699:7;8680:27;;;;;;;;;;;;;;;;8673:34;;8564:151;;;;:::o;22198:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;20966:201::-;19953:13;:11;:13::i;:::-;21075:1:::1;21055:22;;:8;:22;;::::0;21047:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;21131:28;21150:8;21131:18;:28::i;:::-;20966:201:::0;:::o;20232:132::-;20307:12;:10;:12::i;:::-;20296:23;;:7;:5;:7::i;:::-;:23;;;20288:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20232:132::o;4313:98::-;4366:7;4393:10;4386:17;;4313:98;:::o;15220:346::-;15339:1;15322:19;;:5;:19;;;15314:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15420:1;15401:21;;:7;:21;;;15393:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15504:6;15474:11;:18;15486:5;15474:18;;;;;;;;;;;;;;;:27;15493:7;15474:27;;;;;;;;;;;;;;;:36;;;;15542:7;15526:32;;15535:5;15526:32;;;15551:6;15526:32;;;;;;:::i;:::-;;;;;;;;15220:346;;;:::o;15857:419::-;15958:24;15985:25;15995:5;16002:7;15985:9;:25::i;:::-;15958:52;;16045:17;16025:16;:37;16021:248;;16107:6;16087:16;:26;;16079:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16191:51;16200:5;16207:7;16235:6;16216:16;:25;16191:8;:51::i;:::-;16021:248;15947:329;15857:419;;;:::o;23081:1838::-;23229:1;23213:18;;:4;:18;;;23205:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23306:1;23292:16;;:2;:16;;;23284:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;23376:1;23367:6;:10;23359:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;23438:6;;;;;;;;;;;23434:217;;;23495:7;:5;:7::i;:::-;23487:15;;:4;:15;;;:40;;;;23522:4;23506:21;;:4;:21;;;23487:40;:94;;;;23539:42;23531:50;;:4;:50;;;23487:94;23461:178;;;;;;;;;;;;:::i;:::-;;;;;;;;;23434:217;23669:7;;;;;;;;;;;:32;;;;;23688:13;;;;;;;;;;;23680:21;;:4;:21;;;23669:32;23665:126;;;23752:16;;23742:6;23726:13;23736:2;23726:9;:13::i;:::-;:22;;;;:::i;:::-;:42;;23718:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;23665:126;23804:17;23836:12;;;;;;;;;;;23832:785;;;23896:13;;;;;;;;;;;23888:21;;:4;:21;;;:43;;;;;23930:1;23913:13;;:18;;23888:43;23884:198;;;23957:19;:23;23977:2;23957:23;;;;;;;;;;;;;;;;;;;;;;;;;23952:115;;24044:3;24027:13;;24018:6;:22;;;;:::i;:::-;24017:30;;;;:::i;:::-;24005:42;;23952:115;23884:198;24127:13;;;;;;;;;;;24121:19;;:2;:19;;;:42;;;;;24162:1;24144:14;;:19;;24121:42;24117:200;;;24189:19;:25;24209:4;24189:25;;;;;;;;;;;;;;;;;;;;;;;;;24184:118;;24279:3;24261:14;;24252:6;:23;;;;:::i;:::-;24251:31;;;;:::i;:::-;24239:43;;24184:118;24117:200;24334:28;24365:24;24383:4;24365:9;:24::i;:::-;24334:55;;24404:24;24455:20;;24431;:44;;24404:71;;24497:19;:36;;;;;24521:12;;;;;;;;;;;24520:13;24497:36;:61;;;;;24545:13;;;;;;;;;;;24537:21;;:4;:21;;;;24497:61;24493:113;;;24579:11;:9;:11::i;:::-;24493:113;23850:767;;23832:785;24663:1;24651:9;:13;24647:265;;;24681:18;24711:9;24702:6;:18;;;;:::i;:::-;24681:39;;24735:47;24751:4;24765;24772:9;24735:15;:47::i;:::-;24797:37;24813:4;24819:2;24823:10;24797:15;:37::i;:::-;24666:180;24647:265;;;24867:33;24883:4;24889:2;24893:6;24867:15;:33::i;:::-;24647:265;23194:1725;23081:1838;;;:::o;14107:675::-;14210:1;14191:21;;:7;:21;;;14183:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14263:49;14284:7;14301:1;14305:6;14263:20;:49::i;:::-;14325:22;14350:9;:18;14360:7;14350:18;;;;;;;;;;;;;;;;14325:43;;14405:6;14387:14;:24;;14379:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14524:6;14507:14;:23;14486:9;:18;14496:7;14486:18;;;;;;;;;;;;;;;:44;;;;14641:6;14625:12;;:22;;;;;;;;;;;14702:1;14676:37;;14685:7;14676:37;;;14706:6;14676:37;;;;;;:::i;:::-;;;;;;;;14726:48;14746:7;14763:1;14767:6;14726:19;:48::i;:::-;14172:610;14107:675;;:::o;21327:191::-;21401:16;21420:6;;;;;;;;;;;21401:25;;21446:8;21437:6;;:17;;;;;;;;;;;;;;;;;;21501:8;21470:40;;21491:8;21470:40;;;;;;;;;;;;21390:128;21327:191;:::o;24928:1178::-;22308:4;22293:12;;:19;;;;;;;;;;;;;;;;;;25041:21:::1;25079:1;25065:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25041:40;;25110:4;25092;25097:1;25092:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;::::0;::::1;25136:15;;;;;;;;;;;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;25126:4;25131:1;25126:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;::::0;::::1;25171:125;25202:4;25230:15;;;;;;;;;;;25261:24;25279:4;25261:9;:24::i;:::-;25171:8;:125::i;:::-;25335:15;;;;;;;;;;;:66;;;25416:24;25434:4;25416:9;:24::i;:::-;25455:1;25499:4;25526;25592:15;25335:283;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;25705:23;25731:21;25705:47;;25763:29;25820:3;25814:2;25796:15;:20;;;;:::i;:::-;25795:28;;;;:::i;:::-;25763:60;;25841:29;25891:21;25873:15;:39;;;;:::i;:::-;25841:71;;25981:16;;;;;;;;;;;25973:34;;:57;26008:21;25973:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;26049:16;;;;;;;;;;;26041:34;;:57;26076:21;26041:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;24970:1136;;;;22350:5:::0;22335:12;;:20;;;;;;;;;;;;;;;;;;24928:1178::o;12133:806::-;12246:1;12230:18;;:4;:18;;;12222:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12323:1;12309:16;;:2;:16;;;12301:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12378:38;12399:4;12405:2;12409:6;12378:20;:38::i;:::-;12429:19;12451:9;:15;12461:4;12451:15;;;;;;;;;;;;;;;;12429:37;;12500:6;12485:11;:21;;12477:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12617:6;12603:11;:20;12585:9;:15;12595:4;12585:15;;;;;;;;;;;;;;;:38;;;;12820:6;12803:9;:13;12813:2;12803:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12870:2;12855:26;;12864:4;12855:26;;;12874:6;12855:26;;;;;;:::i;:::-;;;;;;;;12894:37;12914:4;12920:2;12924:6;12894:19;:37::i;:::-;12211:728;12133:806;;;:::o;16876:91::-;;;;:::o;17571: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://82c5355e218e8b9d348d1627bb14c34ee18a6712b8b9f6c14db7d4053b2bf321
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.