ETH Price: $3,173.08 (-7.82%)
Gas: 3 Gwei

Token

Mixaverse (MIXCOIN)
 

Overview

Max Total Supply

1,000,000,000 MIXCOIN

Holders

1,488

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000005932641827 MIXCOIN

Value
$0.00
0x4778d6295F01178AfF94f37114a9239a839C7e57
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:
MixToken

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

// SPDX-License-Identifier: MIT
// 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/access/Ownable.sol

// OpenZeppelin Contracts (last updated v4.7.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 anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

// OpenZeppelin Contracts (last updated v4.6.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/token/ERC20/ERC20.sol

// OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * 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}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `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;
        }
        _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;
        _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;
        }
        _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/security/Pausable.sol

// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

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

pragma solidity ^0.8.0;


/**
 * @dev ERC20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);
    }
}

// File: contracts/interfaces/IUniswap.sol

pragma solidity >=0.5.0;

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

    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(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

    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, uint256 value);
    event Transfer(address indexed from, address indexed to, uint256 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 (uint256);

    function balanceOf(address owner) external view returns (uint256);

    function allowance(address owner, address spender) external view returns (uint256);

    function approve(address spender, uint256 value) external returns (bool);

    function transfer(address to, uint256 value) external returns (bool);

    function transferFrom(address from, address to, uint256 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 (uint256);

    function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint256 amount0, uint256 amount1);
    event Burn(address indexed sender, uint256 amount0, uint256 amount1, address indexed to);
    event Swap(address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to);
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    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 (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

    function mint(address to) external returns (uint256 liquidity);

    function burn(address to) external returns (uint256 amount0, uint256 amount1);

    function swap(uint256 amount0Out, uint256 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,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity);

    function addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity);

    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETH(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountToken, uint256 amountETH);

    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint256 liquidity,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountA, uint256 amountB);

    function removeLiquidityETHWithPermit(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountToken, uint256 amountETH);

    function swapExactTokensForTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapTokensForExactTokens(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactETHForTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function swapTokensForExactETH(
        uint256 amountOut,
        uint256 amountInMax,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapExactTokensForETH(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external returns (uint256[] memory amounts);

    function swapETHForExactTokens(
        uint256 amountOut,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable returns (uint256[] memory amounts);

    function quote(uint256 amountA, uint256 reserveA, uint256 reserveB) external pure returns (uint256 amountB);

    function getAmountOut(uint256 amountIn, uint256 reserveIn, uint256 reserveOut) external pure returns (uint256 amountOut);

    function getAmountIn(uint256 amountOut, uint256 reserveIn, uint256 reserveOut) external pure returns (uint256 amountIn);

    function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts);

    function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts);
}

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    ) external returns (uint256 amountETH);

    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint256 liquidity,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline,
        bool approveMax,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external returns (uint256 amountETH);

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

    function swapExactETHForTokensSupportingFeeOnTransferTokens(uint256 amountOutMin, address[] calldata path, address to, uint256 deadline) external payable;

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

// File: contracts/MixToken.sol


pragma solidity ^0.8.0;





contract MixToken is Context, ERC20Burnable, ERC20Pausable, Ownable {
    uint256 public constant MAX_SUPPLY = 1_000_000_000 ether;

    address public addressCommunity;
    uint256 public amountSettleFee;

    IUniswapV2Router02 public router;
    address public addressPair;

    mapping(address => bool) public addressesNoFee;

    // max - 10000
    uint256 public rateSell = 200;
    uint256 public rateBuy = 200;

    bool private feeSwaping = false;

    constructor() ERC20("Mixaverse", "MIXCOIN") {
        addressCommunity = 0x29bA3Df14b4d519af2755eA170B76223C8a282D4;
        amountSettleFee = 200000000000000000000000;

        _mint(msg.sender, MAX_SUPPLY);
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function init(address addrRouter) public onlyOwner {
        router = IUniswapV2Router02(addrRouter);
        addressPair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH());

        _approve(address(this), address(router), type(uint256).max);

        addressesNoFee[address(this)] = true;
        addressesNoFee[address(router)] = true;
        addressesNoFee[address(0)] = true;
        addressesNoFee[owner()] = true;
    }

    function updateRate(uint256 _rateSell, uint256 _rateBuy) external onlyOwner {
        rateSell = _rateSell;
        rateBuy = _rateBuy;
    }

    function updateAddressCommunity(address _addressCommunity, uint256 _amountSettleFee) external {
        require(msg.sender == addressCommunity, "You don't have permission");
        addressCommunity = _addressCommunity;
        amountSettleFee = _amountSettleFee;
    }

    function updateAddressesNoFee(address addr, bool enable) external onlyOwner {
        addressesNoFee[addr] = enable;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override(ERC20, ERC20Pausable) {
        super._beforeTokenTransfer(from, to, amount);
        require(!paused() || addressesNoFee[from] , "ERC20Pausable: token transfer while paused");
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
        if (feeSwaping || (addressesNoFee[sender] || addressesNoFee[recipient])) {
            super._transfer(sender, recipient, amount);
            return;
        }

        uint256 bal = balanceOf(address(this));
        if (bal > amountSettleFee && recipient == addressPair) {
            feeSwaping = true;
            swapFee(bal, addressCommunity);
            feeSwaping = false;
        }

        uint256 amountReal = amount;
        uint256 amountFee = 0;

        if (sender == addressPair) {
            amountFee = _trimAmount(amount, rateBuy);
        } else if (recipient == addressPair) {
            amountFee = _trimAmount(amount, rateSell);
        }
        require(amountReal > amountFee, "amount error");
        amountReal -= amountFee;

        super._transfer(sender, recipient, amountReal);

        if (amountFee > 0) {
            super._transfer(sender, address(this), amountFee);
        }
    }

    function _trimAmount(uint256 amount, uint256 rate) internal pure returns (uint256) {
        return (amount * rate) / 10000;
    }

    function swapFee(uint256 amount, address to) private {
        bool success;
        address[] memory path = new address[](2);
        path[0] = address(this);
        path[1] = router.WETH();
        router.swapExactTokensForETHSupportingFeeOnTransferTokens(amount, 0, path, to, block.timestamp);

        (success, ) = address(addressCommunity).call{value: address(this).balance}("");
    }

    receive() external payable {}

    function withdrawToken(address _token) public onlyOwner {
        IERC20(_token).transfer(addressCommunity, IERC20(_token).balanceOf(address(this)));
    }
}

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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressCommunity","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addressPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressesNoFee","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"amountSettleFee","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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addrRouter","type":"address"}],"name":"init","outputs":[],"stateMutability":"nonpayable","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rateBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rateSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addressCommunity","type":"address"},{"internalType":"uint256","name":"_amountSettleFee","type":"uint256"}],"name":"updateAddressCommunity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"enable","type":"bool"}],"name":"updateAddressesNoFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rateSell","type":"uint256"},{"internalType":"uint256","name":"_rateBuy","type":"uint256"}],"name":"updateRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260c8600b5560c8600c556000600d60006101000a81548160ff0219169083151502179055503480156200003657600080fd5b506040518060400160405280600981526020017f4d697861766572736500000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f4d4958434f494e000000000000000000000000000000000000000000000000008152508160039081620000b4919062000751565b508060049081620000c6919062000751565b5050506000600560006101000a81548160ff02191690831515021790555062000104620000f86200018e60201b60201c565b6200019660201b60201c565b7329ba3df14b4d519af2755ea170b76223c8a282d4600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550692a5a058fc295ed00000060078190555062000188336b033b2e3c9fd0803ce80000006200025c60201b60201c565b62000a0d565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c59062000899565b60405180910390fd5b620002e260008383620003d460201b60201c565b8060026000828254620002f69190620008ea565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200034d9190620008ea565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003b4919062000958565b60405180910390a3620003d0600083836200049960201b60201c565b5050565b620003ec8383836200049e60201b620013221760201c565b620003fc620004bb60201b60201c565b1580620004525750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b62000494576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048b90620009eb565b60405180910390fd5b505050565b505050565b620004b6838383620004d260201b620013321760201c565b505050565b6000600560009054906101000a900460ff16905090565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200055957607f821691505b6020821081036200056f576200056e62000511565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005d97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200059a565b620005e586836200059a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006326200062c6200062684620005fd565b62000607565b620005fd565b9050919050565b6000819050919050565b6200064e8362000611565b620006666200065d8262000639565b848454620005a7565b825550505050565b600090565b6200067d6200066e565b6200068a81848462000643565b505050565b5b81811015620006b257620006a660008262000673565b60018101905062000690565b5050565b601f8211156200070157620006cb8162000575565b620006d6846200058a565b81016020851015620006e6578190505b620006fe620006f5856200058a565b8301826200068f565b50505b505050565b600082821c905092915050565b6000620007266000198460080262000706565b1980831691505092915050565b600062000741838362000713565b9150826002028217905092915050565b6200075c82620004d7565b67ffffffffffffffff811115620007785762000777620004e2565b5b62000784825462000540565b62000791828285620006b6565b600060209050601f831160018114620007c95760008415620007b4578287015190505b620007c0858262000733565b86555062000830565b601f198416620007d98662000575565b60005b828110156200080357848901518255600182019150602085019450602081019050620007dc565b868310156200082357848901516200081f601f89168262000713565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000881601f8362000838565b91506200088e8262000849565b602082019050919050565b60006020820190508181036000830152620008b48162000872565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008f782620005fd565b91506200090483620005fd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200093c576200093b620008bb565b5b828201905092915050565b6200095281620005fd565b82525050565b60006020820190506200096f600083018462000947565b92915050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b6000620009d3602a8362000838565b9150620009e08262000975565b604082019050919050565b6000602082019050818103600083015262000a0681620009c4565b9050919050565b6134aa8062000a1d6000396000f3fe6080604052600436106101e75760003560e01c8063715018a611610102578063a9059cbb11610095578063ee2f5a4511610064578063ee2f5a45146106ed578063f2fde38b14610718578063f6359f4c14610741578063f887ea401461076c576101ee565b8063a9059cbb1461061f578063abeb5b1b1461065c578063cad9356314610687578063dd62ed3e146106b0576101ee565b806389476069116100d157806389476069146105635780638da5cb5b1461058c57806395d89b41146105b7578063a457c2d7146105e2576101ee565b8063715018a6146104e357806371d74429146104fa57806379cc6790146105235780638456cb591461054c576101ee565b806333f4406a1161017a57806342966c681161014957806342966c68146104275780635c975abb1461045057806368b058eb1461047b57806370a08231146104a6576101ee565b806333f4406a1461037f57806339509351146103aa5780633f4ba83a146103e7578063405abb41146103fe576101ee565b806319ab453c116101b657806319ab453c146102c357806323b872dd146102ec578063313ce5671461032957806332cb6b0c14610354576101ee565b806306fdde03146101f3578063095ea7b31461021e57806318160ddd1461025b57806318838e8214610286576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610797565b6040516102159190612387565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190612442565b610829565b604051610252919061249d565b60405180910390f35b34801561026757600080fd5b5061027061084c565b60405161027d91906124c7565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a891906124e2565b610856565b6040516102ba919061249d565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e591906124e2565b610876565b005b3480156102f857600080fd5b50610313600480360381019061030e919061250f565b610c76565b604051610320919061249d565b60405180910390f35b34801561033557600080fd5b5061033e610ca5565b60405161034b919061257e565b60405180910390f35b34801561036057600080fd5b50610369610cae565b60405161037691906124c7565b60405180910390f35b34801561038b57600080fd5b50610394610cbe565b6040516103a191906125a8565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190612442565b610ce4565b6040516103de919061249d565b60405180910390f35b3480156103f357600080fd5b506103fc610d1b565b005b34801561040a57600080fd5b50610425600480360381019061042091906125c3565b610d2d565b005b34801561043357600080fd5b5061044e60048036038101906104499190612603565b610d47565b005b34801561045c57600080fd5b50610465610d5b565b604051610472919061249d565b60405180910390f35b34801561048757600080fd5b50610490610d72565b60405161049d91906124c7565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906124e2565b610d78565b6040516104da91906124c7565b60405180910390f35b3480156104ef57600080fd5b506104f8610dc0565b005b34801561050657600080fd5b50610521600480360381019061051c9190612442565b610dd4565b005b34801561052f57600080fd5b5061054a60048036038101906105459190612442565b610eb0565b005b34801561055857600080fd5b50610561610ed0565b005b34801561056f57600080fd5b5061058a600480360381019061058591906124e2565b610ee2565b005b34801561059857600080fd5b506105a1611007565b6040516105ae91906125a8565b60405180910390f35b3480156105c357600080fd5b506105cc611031565b6040516105d99190612387565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612442565b6110c3565b604051610616919061249d565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612442565b61113a565b604051610653919061249d565b60405180910390f35b34801561066857600080fd5b5061067161115d565b60405161067e91906124c7565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a9919061265c565b611163565b005b3480156106bc57600080fd5b506106d760048036038101906106d2919061269c565b6111c6565b6040516106e491906124c7565b60405180910390f35b3480156106f957600080fd5b5061070261124d565b60405161070f91906124c7565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a91906124e2565b611253565b005b34801561074d57600080fd5b506107566112d6565b60405161076391906125a8565b60405180910390f35b34801561077857600080fd5b506107816112fc565b60405161078e919061273b565b60405180910390f35b6060600380546107a690612785565b80601f01602080910402602001604051908101604052809291908181526020018280546107d290612785565b801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b5050505050905090565b600080610834611337565b905061084181858561133f565b600191505092915050565b6000600254905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b61087e611508565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561092c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095091906127cb565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109fd91906127cb565b6040518363ffffffff1660e01b8152600401610a1a9291906127f8565b6020604051808303816000875af1158015610a39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5d91906127cb565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610aea30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61133f565b6001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000610c22611007565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610c81611337565b9050610c8e858285611586565b610c99858585611612565b60019150509392505050565b60006012905090565b6b033b2e3c9fd0803ce800000081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610cef611337565b9050610d10818585610d0185896111c6565b610d0b9190612850565b61133f565b600191505092915050565b610d23611508565b610d2b6118ff565b565b610d35611508565b81600b8190555080600c819055505050565b610d58610d52611337565b82611962565b50565b6000600560009054906101000a900460ff16905090565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc8611508565b610dd26000611b38565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b906128f2565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806007819055505050565b610ec282610ebc611337565b83611586565b610ecc8282611962565b5050565b610ed8611508565b610ee0611bfe565b565b610eea611508565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f6291906125a8565b602060405180830381865afa158015610f7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa39190612927565b6040518363ffffffff1660e01b8152600401610fc0929190612954565b6020604051808303816000875af1158015610fdf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110039190612992565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461104090612785565b80601f016020809104026020016040519081016040528092919081815260200182805461106c90612785565b80156110b95780601f1061108e576101008083540402835291602001916110b9565b820191906000526020600020905b81548152906001019060200180831161109c57829003601f168201915b5050505050905090565b6000806110ce611337565b905060006110dc82866111c6565b905083811015611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890612a31565b60405180910390fd5b61112e828686840361133f565b60019250505092915050565b600080611145611337565b9050611152818585611612565b600191505092915050565b60075481565b61116b611508565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b61125b611508565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190612ac3565b60405180910390fd5b6112d381611b38565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61132d838383611332565b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590612b55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141490612be7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114fb91906124c7565b60405180910390a3505050565b611510611337565b73ffffffffffffffffffffffffffffffffffffffff1661152e611007565b73ffffffffffffffffffffffffffffffffffffffff1614611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b90612c53565b60405180910390fd5b565b600061159284846111c6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461160c57818110156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590612cbf565b60405180910390fd5b61160b848484840361133f565b5b50505050565b600d60009054906101000a900460ff16806116ca5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116c95750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b156116df576116da838383611c61565b6118fa565b60006116ea30610d78565b90506007548111801561174a5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156117b2576001600d60006101000a81548160ff02191690831515021790555061179681600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611ee0565b6000600d60006101000a81548160ff0219169083151502179055505b60008290506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036118215761181a84600c54612187565b9050611886565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118855761188284600b54612187565b90505b5b8082116118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90612d2b565b60405180910390fd5b80826118d49190612d4b565b91506118e1868684611c61565b60008111156118f6576118f5863083611c61565b5b5050505b505050565b6119076121aa565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61194b611337565b60405161195891906125a8565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890612df1565b60405180910390fd5b6119dd826000836121f3565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90612e83565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611aba9190612d4b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b1f91906124c7565b60405180910390a3611b338360008461229f565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c066122a4565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c4a611337565b604051611c5791906125a8565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc790612f15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690612fa7565b60405180910390fd5b611d4a8383836121f3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc790613039565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e639190612850565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ec791906124c7565b60405180910390a3611eda84848461229f565b50505050565b600080600267ffffffffffffffff811115611efe57611efd613059565b5b604051908082528060200260200182016040528015611f2c5781602001602082028036833780820191505090505b5090503081600081518110611f4457611f43613088565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611feb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061200f91906127cb565b8160018151811061202357612022613088565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008487426040518663ffffffff1660e01b81526004016120c19594939291906131b0565b600060405180830381600087803b1580156120db57600080fd5b505af11580156120ef573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516121399061323b565b60006040518083038185875af1925050503d8060008114612176576040519150601f19603f3d011682016040523d82523d6000602084013e61217b565b606091505b50508092505050505050565b600061271082846121989190613250565b6121a291906132d9565b905092915050565b6121b2610d5b565b6121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890613356565b60405180910390fd5b565b6121fe838383611322565b612206610d5b565b158061225b5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61229a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612291906133e8565b60405180910390fd5b505050565b505050565b6122ac610d5b565b156122ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e390613454565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561232857808201518184015260208101905061230d565b83811115612337576000848401525b50505050565b6000601f19601f8301169050919050565b6000612359826122ee565b61236381856122f9565b935061237381856020860161230a565b61237c8161233d565b840191505092915050565b600060208201905081810360008301526123a1818461234e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123d9826123ae565b9050919050565b6123e9816123ce565b81146123f457600080fd5b50565b600081359050612406816123e0565b92915050565b6000819050919050565b61241f8161240c565b811461242a57600080fd5b50565b60008135905061243c81612416565b92915050565b60008060408385031215612459576124586123a9565b5b6000612467858286016123f7565b92505060206124788582860161242d565b9150509250929050565b60008115159050919050565b61249781612482565b82525050565b60006020820190506124b2600083018461248e565b92915050565b6124c18161240c565b82525050565b60006020820190506124dc60008301846124b8565b92915050565b6000602082840312156124f8576124f76123a9565b5b6000612506848285016123f7565b91505092915050565b600080600060608486031215612528576125276123a9565b5b6000612536868287016123f7565b9350506020612547868287016123f7565b92505060406125588682870161242d565b9150509250925092565b600060ff82169050919050565b61257881612562565b82525050565b6000602082019050612593600083018461256f565b92915050565b6125a2816123ce565b82525050565b60006020820190506125bd6000830184612599565b92915050565b600080604083850312156125da576125d96123a9565b5b60006125e88582860161242d565b92505060206125f98582860161242d565b9150509250929050565b600060208284031215612619576126186123a9565b5b60006126278482850161242d565b91505092915050565b61263981612482565b811461264457600080fd5b50565b60008135905061265681612630565b92915050565b60008060408385031215612673576126726123a9565b5b6000612681858286016123f7565b925050602061269285828601612647565b9150509250929050565b600080604083850312156126b3576126b26123a9565b5b60006126c1858286016123f7565b92505060206126d2858286016123f7565b9150509250929050565b6000819050919050565b60006127016126fc6126f7846123ae565b6126dc565b6123ae565b9050919050565b6000612713826126e6565b9050919050565b600061272582612708565b9050919050565b6127358161271a565b82525050565b6000602082019050612750600083018461272c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061279d57607f821691505b6020821081036127b0576127af612756565b5b50919050565b6000815190506127c5816123e0565b92915050565b6000602082840312156127e1576127e06123a9565b5b60006127ef848285016127b6565b91505092915050565b600060408201905061280d6000830185612599565b61281a6020830184612599565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061285b8261240c565b91506128668361240c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561289b5761289a612821565b5b828201905092915050565b7f596f7520646f6e27742068617665207065726d697373696f6e00000000000000600082015250565b60006128dc6019836122f9565b91506128e7826128a6565b602082019050919050565b6000602082019050818103600083015261290b816128cf565b9050919050565b60008151905061292181612416565b92915050565b60006020828403121561293d5761293c6123a9565b5b600061294b84828501612912565b91505092915050565b60006040820190506129696000830185612599565b61297660208301846124b8565b9392505050565b60008151905061298c81612630565b92915050565b6000602082840312156129a8576129a76123a9565b5b60006129b68482850161297d565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a1b6025836122f9565b9150612a26826129bf565b604082019050919050565b60006020820190508181036000830152612a4a81612a0e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612aad6026836122f9565b9150612ab882612a51565b604082019050919050565b60006020820190508181036000830152612adc81612aa0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b3f6024836122f9565b9150612b4a82612ae3565b604082019050919050565b60006020820190508181036000830152612b6e81612b32565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bd16022836122f9565b9150612bdc82612b75565b604082019050919050565b60006020820190508181036000830152612c0081612bc4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c3d6020836122f9565b9150612c4882612c07565b602082019050919050565b60006020820190508181036000830152612c6c81612c30565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ca9601d836122f9565b9150612cb482612c73565b602082019050919050565b60006020820190508181036000830152612cd881612c9c565b9050919050565b7f616d6f756e74206572726f720000000000000000000000000000000000000000600082015250565b6000612d15600c836122f9565b9150612d2082612cdf565b602082019050919050565b60006020820190508181036000830152612d4481612d08565b9050919050565b6000612d568261240c565b9150612d618361240c565b925082821015612d7457612d73612821565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ddb6021836122f9565b9150612de682612d7f565b604082019050919050565b60006020820190508181036000830152612e0a81612dce565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e6d6022836122f9565b9150612e7882612e11565b604082019050919050565b60006020820190508181036000830152612e9c81612e60565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612eff6025836122f9565b9150612f0a82612ea3565b604082019050919050565b60006020820190508181036000830152612f2e81612ef2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f916023836122f9565b9150612f9c82612f35565b604082019050919050565b60006020820190508181036000830152612fc081612f84565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130236026836122f9565b915061302e82612fc7565b604082019050919050565b6000602082019050818103600083015261305281613016565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006130dc6130d76130d2846130b7565b6126dc565b61240c565b9050919050565b6130ec816130c1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613127816123ce565b82525050565b6000613139838361311e565b60208301905092915050565b6000602082019050919050565b600061315d826130f2565b61316781856130fd565b93506131728361310e565b8060005b838110156131a357815161318a888261312d565b975061319583613145565b925050600181019050613176565b5085935050505092915050565b600060a0820190506131c560008301886124b8565b6131d260208301876130e3565b81810360408301526131e48186613152565b90506131f36060830185612599565b61320060808301846124b8565b9695505050505050565b600081905092915050565b50565b600061322560008361320a565b915061323082613215565b600082019050919050565b600061324682613218565b9150819050919050565b600061325b8261240c565b91506132668361240c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561329f5761329e612821565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132e48261240c565b91506132ef8361240c565b9250826132ff576132fe6132aa565b5b828204905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006133406014836122f9565b915061334b8261330a565b602082019050919050565b6000602082019050818103600083015261336f81613333565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006133d2602a836122f9565b91506133dd82613376565b604082019050919050565b60006020820190508181036000830152613401816133c5565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061343e6010836122f9565b915061344982613408565b602082019050919050565b6000602082019050818103600083015261346d81613431565b905091905056fea26469706673582212203fbc3657131670aae8da80ada9154b46d605b25b6d09cc76492f95b8eb2b39d164736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106101e75760003560e01c8063715018a611610102578063a9059cbb11610095578063ee2f5a4511610064578063ee2f5a45146106ed578063f2fde38b14610718578063f6359f4c14610741578063f887ea401461076c576101ee565b8063a9059cbb1461061f578063abeb5b1b1461065c578063cad9356314610687578063dd62ed3e146106b0576101ee565b806389476069116100d157806389476069146105635780638da5cb5b1461058c57806395d89b41146105b7578063a457c2d7146105e2576101ee565b8063715018a6146104e357806371d74429146104fa57806379cc6790146105235780638456cb591461054c576101ee565b806333f4406a1161017a57806342966c681161014957806342966c68146104275780635c975abb1461045057806368b058eb1461047b57806370a08231146104a6576101ee565b806333f4406a1461037f57806339509351146103aa5780633f4ba83a146103e7578063405abb41146103fe576101ee565b806319ab453c116101b657806319ab453c146102c357806323b872dd146102ec578063313ce5671461032957806332cb6b0c14610354576101ee565b806306fdde03146101f3578063095ea7b31461021e57806318160ddd1461025b57806318838e8214610286576101ee565b366101ee57005b600080fd5b3480156101ff57600080fd5b50610208610797565b6040516102159190612387565b60405180910390f35b34801561022a57600080fd5b5061024560048036038101906102409190612442565b610829565b604051610252919061249d565b60405180910390f35b34801561026757600080fd5b5061027061084c565b60405161027d91906124c7565b60405180910390f35b34801561029257600080fd5b506102ad60048036038101906102a891906124e2565b610856565b6040516102ba919061249d565b60405180910390f35b3480156102cf57600080fd5b506102ea60048036038101906102e591906124e2565b610876565b005b3480156102f857600080fd5b50610313600480360381019061030e919061250f565b610c76565b604051610320919061249d565b60405180910390f35b34801561033557600080fd5b5061033e610ca5565b60405161034b919061257e565b60405180910390f35b34801561036057600080fd5b50610369610cae565b60405161037691906124c7565b60405180910390f35b34801561038b57600080fd5b50610394610cbe565b6040516103a191906125a8565b60405180910390f35b3480156103b657600080fd5b506103d160048036038101906103cc9190612442565b610ce4565b6040516103de919061249d565b60405180910390f35b3480156103f357600080fd5b506103fc610d1b565b005b34801561040a57600080fd5b50610425600480360381019061042091906125c3565b610d2d565b005b34801561043357600080fd5b5061044e60048036038101906104499190612603565b610d47565b005b34801561045c57600080fd5b50610465610d5b565b604051610472919061249d565b60405180910390f35b34801561048757600080fd5b50610490610d72565b60405161049d91906124c7565b60405180910390f35b3480156104b257600080fd5b506104cd60048036038101906104c891906124e2565b610d78565b6040516104da91906124c7565b60405180910390f35b3480156104ef57600080fd5b506104f8610dc0565b005b34801561050657600080fd5b50610521600480360381019061051c9190612442565b610dd4565b005b34801561052f57600080fd5b5061054a60048036038101906105459190612442565b610eb0565b005b34801561055857600080fd5b50610561610ed0565b005b34801561056f57600080fd5b5061058a600480360381019061058591906124e2565b610ee2565b005b34801561059857600080fd5b506105a1611007565b6040516105ae91906125a8565b60405180910390f35b3480156105c357600080fd5b506105cc611031565b6040516105d99190612387565b60405180910390f35b3480156105ee57600080fd5b5061060960048036038101906106049190612442565b6110c3565b604051610616919061249d565b60405180910390f35b34801561062b57600080fd5b5061064660048036038101906106419190612442565b61113a565b604051610653919061249d565b60405180910390f35b34801561066857600080fd5b5061067161115d565b60405161067e91906124c7565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a9919061265c565b611163565b005b3480156106bc57600080fd5b506106d760048036038101906106d2919061269c565b6111c6565b6040516106e491906124c7565b60405180910390f35b3480156106f957600080fd5b5061070261124d565b60405161070f91906124c7565b60405180910390f35b34801561072457600080fd5b5061073f600480360381019061073a91906124e2565b611253565b005b34801561074d57600080fd5b506107566112d6565b60405161076391906125a8565b60405180910390f35b34801561077857600080fd5b506107816112fc565b60405161078e919061273b565b60405180910390f35b6060600380546107a690612785565b80601f01602080910402602001604051908101604052809291908181526020018280546107d290612785565b801561081f5780601f106107f45761010080835404028352916020019161081f565b820191906000526020600020905b81548152906001019060200180831161080257829003601f168201915b5050505050905090565b600080610834611337565b905061084181858561133f565b600191505092915050565b6000600254905090565b600a6020528060005260406000206000915054906101000a900460ff1681565b61087e611508565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801561092c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061095091906127cb565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156109d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109fd91906127cb565b6040518363ffffffff1660e01b8152600401610a1a9291906127f8565b6020604051808303816000875af1158015610a39573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5d91906127cb565b600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610aea30600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff167fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff61133f565b6001600a60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a60008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000610c22611007565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b600080610c81611337565b9050610c8e858285611586565b610c99858585611612565b60019150509392505050565b60006012905090565b6b033b2e3c9fd0803ce800000081565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080610cef611337565b9050610d10818585610d0185896111c6565b610d0b9190612850565b61133f565b600191505092915050565b610d23611508565b610d2b6118ff565b565b610d35611508565b81600b8190555080600c819055505050565b610d58610d52611337565b82611962565b50565b6000600560009054906101000a900460ff16905090565b600b5481565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc8611508565b610dd26000611b38565b565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b906128f2565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550806007819055505050565b610ec282610ebc611337565b83611586565b610ecc8282611962565b5050565b610ed8611508565b610ee0611bfe565b565b610eea611508565b8073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610f6291906125a8565b602060405180830381865afa158015610f7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa39190612927565b6040518363ffffffff1660e01b8152600401610fc0929190612954565b6020604051808303816000875af1158015610fdf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110039190612992565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461104090612785565b80601f016020809104026020016040519081016040528092919081815260200182805461106c90612785565b80156110b95780601f1061108e576101008083540402835291602001916110b9565b820191906000526020600020905b81548152906001019060200180831161109c57829003601f168201915b5050505050905090565b6000806110ce611337565b905060006110dc82866111c6565b905083811015611121576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111890612a31565b60405180910390fd5b61112e828686840361133f565b60019250505092915050565b600080611145611337565b9050611152818585611612565b600191505092915050565b60075481565b61116b611508565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600c5481565b61125b611508565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036112ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c190612ac3565b60405180910390fd5b6112d381611b38565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61132d838383611332565b505050565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036113ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a590612b55565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361141d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141490612be7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516114fb91906124c7565b60405180910390a3505050565b611510611337565b73ffffffffffffffffffffffffffffffffffffffff1661152e611007565b73ffffffffffffffffffffffffffffffffffffffff1614611584576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157b90612c53565b60405180910390fd5b565b600061159284846111c6565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461160c57818110156115fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f590612cbf565b60405180910390fd5b61160b848484840361133f565b5b50505050565b600d60009054906101000a900460ff16806116ca5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806116c95750600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b5b156116df576116da838383611c61565b6118fa565b60006116ea30610d78565b90506007548111801561174a5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156117b2576001600d60006101000a81548160ff02191690831515021790555061179681600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16611ee0565b6000600d60006101000a81548160ff0219169083151502179055505b60008290506000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16036118215761181a84600c54612187565b9050611886565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036118855761188284600b54612187565b90505b5b8082116118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf90612d2b565b60405180910390fd5b80826118d49190612d4b565b91506118e1868684611c61565b60008111156118f6576118f5863083611c61565b5b5050505b505050565b6119076121aa565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61194b611337565b60405161195891906125a8565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c890612df1565b60405180910390fd5b6119dd826000836121f3565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5a90612e83565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254611aba9190612d4b565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611b1f91906124c7565b60405180910390a3611b338360008461229f565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611c066122a4565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611c4a611337565b604051611c5791906125a8565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc790612f15565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611d3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3690612fa7565b60405180910390fd5b611d4a8383836121f3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611dd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc790613039565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e639190612850565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611ec791906124c7565b60405180910390a3611eda84848461229f565b50505050565b600080600267ffffffffffffffff811115611efe57611efd613059565b5b604051908082528060200260200182016040528015611f2c5781602001602082028036833780820191505090505b5090503081600081518110611f4457611f43613088565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611feb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061200f91906127cb565b8160018151811061202357612022613088565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478560008487426040518663ffffffff1660e01b81526004016120c19594939291906131b0565b600060405180830381600087803b1580156120db57600080fd5b505af11580156120ef573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516121399061323b565b60006040518083038185875af1925050503d8060008114612176576040519150601f19603f3d011682016040523d82523d6000602084013e61217b565b606091505b50508092505050505050565b600061271082846121989190613250565b6121a291906132d9565b905092915050565b6121b2610d5b565b6121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e890613356565b60405180910390fd5b565b6121fe838383611322565b612206610d5b565b158061225b5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61229a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612291906133e8565b60405180910390fd5b505050565b505050565b6122ac610d5b565b156122ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e390613454565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b8381101561232857808201518184015260208101905061230d565b83811115612337576000848401525b50505050565b6000601f19601f8301169050919050565b6000612359826122ee565b61236381856122f9565b935061237381856020860161230a565b61237c8161233d565b840191505092915050565b600060208201905081810360008301526123a1818461234e565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123d9826123ae565b9050919050565b6123e9816123ce565b81146123f457600080fd5b50565b600081359050612406816123e0565b92915050565b6000819050919050565b61241f8161240c565b811461242a57600080fd5b50565b60008135905061243c81612416565b92915050565b60008060408385031215612459576124586123a9565b5b6000612467858286016123f7565b92505060206124788582860161242d565b9150509250929050565b60008115159050919050565b61249781612482565b82525050565b60006020820190506124b2600083018461248e565b92915050565b6124c18161240c565b82525050565b60006020820190506124dc60008301846124b8565b92915050565b6000602082840312156124f8576124f76123a9565b5b6000612506848285016123f7565b91505092915050565b600080600060608486031215612528576125276123a9565b5b6000612536868287016123f7565b9350506020612547868287016123f7565b92505060406125588682870161242d565b9150509250925092565b600060ff82169050919050565b61257881612562565b82525050565b6000602082019050612593600083018461256f565b92915050565b6125a2816123ce565b82525050565b60006020820190506125bd6000830184612599565b92915050565b600080604083850312156125da576125d96123a9565b5b60006125e88582860161242d565b92505060206125f98582860161242d565b9150509250929050565b600060208284031215612619576126186123a9565b5b60006126278482850161242d565b91505092915050565b61263981612482565b811461264457600080fd5b50565b60008135905061265681612630565b92915050565b60008060408385031215612673576126726123a9565b5b6000612681858286016123f7565b925050602061269285828601612647565b9150509250929050565b600080604083850312156126b3576126b26123a9565b5b60006126c1858286016123f7565b92505060206126d2858286016123f7565b9150509250929050565b6000819050919050565b60006127016126fc6126f7846123ae565b6126dc565b6123ae565b9050919050565b6000612713826126e6565b9050919050565b600061272582612708565b9050919050565b6127358161271a565b82525050565b6000602082019050612750600083018461272c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061279d57607f821691505b6020821081036127b0576127af612756565b5b50919050565b6000815190506127c5816123e0565b92915050565b6000602082840312156127e1576127e06123a9565b5b60006127ef848285016127b6565b91505092915050565b600060408201905061280d6000830185612599565b61281a6020830184612599565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061285b8261240c565b91506128668361240c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561289b5761289a612821565b5b828201905092915050565b7f596f7520646f6e27742068617665207065726d697373696f6e00000000000000600082015250565b60006128dc6019836122f9565b91506128e7826128a6565b602082019050919050565b6000602082019050818103600083015261290b816128cf565b9050919050565b60008151905061292181612416565b92915050565b60006020828403121561293d5761293c6123a9565b5b600061294b84828501612912565b91505092915050565b60006040820190506129696000830185612599565b61297660208301846124b8565b9392505050565b60008151905061298c81612630565b92915050565b6000602082840312156129a8576129a76123a9565b5b60006129b68482850161297d565b91505092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612a1b6025836122f9565b9150612a26826129bf565b604082019050919050565b60006020820190508181036000830152612a4a81612a0e565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612aad6026836122f9565b9150612ab882612a51565b604082019050919050565b60006020820190508181036000830152612adc81612aa0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612b3f6024836122f9565b9150612b4a82612ae3565b604082019050919050565b60006020820190508181036000830152612b6e81612b32565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612bd16022836122f9565b9150612bdc82612b75565b604082019050919050565b60006020820190508181036000830152612c0081612bc4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612c3d6020836122f9565b9150612c4882612c07565b602082019050919050565b60006020820190508181036000830152612c6c81612c30565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612ca9601d836122f9565b9150612cb482612c73565b602082019050919050565b60006020820190508181036000830152612cd881612c9c565b9050919050565b7f616d6f756e74206572726f720000000000000000000000000000000000000000600082015250565b6000612d15600c836122f9565b9150612d2082612cdf565b602082019050919050565b60006020820190508181036000830152612d4481612d08565b9050919050565b6000612d568261240c565b9150612d618361240c565b925082821015612d7457612d73612821565b5b828203905092915050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000612ddb6021836122f9565b9150612de682612d7f565b604082019050919050565b60006020820190508181036000830152612e0a81612dce565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000612e6d6022836122f9565b9150612e7882612e11565b604082019050919050565b60006020820190508181036000830152612e9c81612e60565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612eff6025836122f9565b9150612f0a82612ea3565b604082019050919050565b60006020820190508181036000830152612f2e81612ef2565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f916023836122f9565b9150612f9c82612f35565b604082019050919050565b60006020820190508181036000830152612fc081612f84565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006130236026836122f9565b915061302e82612fc7565b604082019050919050565b6000602082019050818103600083015261305281613016565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b60006130dc6130d76130d2846130b7565b6126dc565b61240c565b9050919050565b6130ec816130c1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613127816123ce565b82525050565b6000613139838361311e565b60208301905092915050565b6000602082019050919050565b600061315d826130f2565b61316781856130fd565b93506131728361310e565b8060005b838110156131a357815161318a888261312d565b975061319583613145565b925050600181019050613176565b5085935050505092915050565b600060a0820190506131c560008301886124b8565b6131d260208301876130e3565b81810360408301526131e48186613152565b90506131f36060830185612599565b61320060808301846124b8565b9695505050505050565b600081905092915050565b50565b600061322560008361320a565b915061323082613215565b600082019050919050565b600061324682613218565b9150819050919050565b600061325b8261240c565b91506132668361240c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561329f5761329e612821565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132e48261240c565b91506132ef8361240c565b9250826132ff576132fe6132aa565b5b828204905092915050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b60006133406014836122f9565b915061334b8261330a565b602082019050919050565b6000602082019050818103600083015261336f81613333565b9050919050565b7f45524332305061757361626c653a20746f6b656e207472616e7366657220776860008201527f696c652070617573656400000000000000000000000000000000000000000000602082015250565b60006133d2602a836122f9565b91506133dd82613376565b604082019050919050565b60006020820190508181036000830152613401816133c5565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061343e6010836122f9565b915061344982613408565b602082019050919050565b6000602082019050818103600083015261346d81613431565b905091905056fea26469706673582212203fbc3657131670aae8da80ada9154b46d605b25b6d09cc76492f95b8eb2b39d164736f6c634300080f0033

Deployed Bytecode Sourcemap

33556:3977:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9441:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11792:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10561:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33847:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34404:465;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12573:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10403:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33631:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33696:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13277:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34331:65;;;;;;;;;;;;;:::i;:::-;;34877:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20806:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23056:86;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33922:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10732:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2874:103;;;;;;;;;;;;;:::i;:::-;;35029:273;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21216:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34262:61;;;;;;;;;;;;;:::i;:::-;;37373:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2226:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9660:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14018:436;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11065:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33734:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35310:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11321:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33958:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3132:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33812:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33773:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9441:100;9495:13;9528:5;9521:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9441:100;:::o;11792:201::-;11875:4;11892:13;11908:12;:10;:12::i;:::-;11892:28;;11931:32;11940:5;11947:7;11956:6;11931:8;:32::i;:::-;11981:4;11974:11;;;11792:201;;;;:::o;10561:108::-;10622:7;10649:12;;10642:19;;10561:108;:::o;33847:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;34404:465::-;2112:13;:11;:13::i;:::-;34494:10:::1;34466:6;;:39;;;;;;;;;;;;;;;;;;34548:6;;;;;;;;;;;:14;;;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34530:46;;;34585:4;34592:6;;;;;;;;;;;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34530:76;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;34516:11;;:90;;;;;;;;;;;;;;;;;;34619:59;34636:4;34651:6;;;;;;;;;;;34660:17;34619:8;:59::i;:::-;34723:4;34691:14;:29;34714:4;34691:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;34772:4;34738:14;:31;34761:6;;;;;;;;;;;34738:31;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;34816:4;34787:14;:26;34810:1:::0;34787:26:::1;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;34857:4;34831:14;:23;34846:7;:5;:7::i;:::-;34831:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;34404:465:::0;:::o;12573:295::-;12704:4;12721:15;12739:12;:10;:12::i;:::-;12721:30;;12762:38;12778:4;12784:7;12793:6;12762:15;:38::i;:::-;12811:27;12821:4;12827:2;12831:6;12811:9;:27::i;:::-;12856:4;12849:11;;;12573:295;;;;;:::o;10403:93::-;10461:5;10486:2;10479:9;;10403:93;:::o;33631:56::-;33668:19;33631:56;:::o;33696:31::-;;;;;;;;;;;;;:::o;13277:238::-;13365:4;13382:13;13398:12;:10;:12::i;:::-;13382:28;;13421:64;13430:5;13437:7;13474:10;13446:25;13456:5;13463:7;13446:9;:25::i;:::-;:38;;;;:::i;:::-;13421:8;:64::i;:::-;13503:4;13496:11;;;13277:238;;;;:::o;34331:65::-;2112:13;:11;:13::i;:::-;34378:10:::1;:8;:10::i;:::-;34331:65::o:0;34877:144::-;2112:13;:11;:13::i;:::-;34975:9:::1;34964:8;:20;;;;35005:8;34995:7;:18;;;;34877:144:::0;;:::o;20806:91::-;20862:27;20868:12;:10;:12::i;:::-;20882:6;20862:5;:27::i;:::-;20806:91;:::o;23056:86::-;23103:4;23127:7;;;;;;;;;;;23120:14;;23056:86;:::o;33922:29::-;;;;:::o;10732:127::-;10806:7;10833:9;:18;10843:7;10833:18;;;;;;;;;;;;;;;;10826:25;;10732:127;;;:::o;2874:103::-;2112:13;:11;:13::i;:::-;2939:30:::1;2966:1;2939:18;:30::i;:::-;2874:103::o:0;35029:273::-;35156:16;;;;;;;;;;;35142:30;;:10;:30;;;35134:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35232:17;35213:16;;:36;;;;;;;;;;;;;;;;;;35278:16;35260:15;:34;;;;35029:273;;:::o;21216:164::-;21293:46;21309:7;21318:12;:10;:12::i;:::-;21332:6;21293:15;:46::i;:::-;21350:22;21356:7;21365:6;21350:5;:22::i;:::-;21216:164;;:::o;34262:61::-;2112:13;:11;:13::i;:::-;34307:8:::1;:6;:8::i;:::-;34262:61::o:0;37373:157::-;2112:13;:11;:13::i;:::-;37447:6:::1;37440:23;;;37464:16;;;;;;;;;;;37489:6;37482:24;;;37515:4;37482:39;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37440:82;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;37373:157:::0;:::o;2226:87::-;2272:7;2299:6;;;;;;;;;;;2292:13;;2226:87;:::o;9660:104::-;9716:13;9749:7;9742:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9660:104;:::o;14018:436::-;14111:4;14128:13;14144:12;:10;:12::i;:::-;14128:28;;14167:24;14194:25;14204:5;14211:7;14194:9;:25::i;:::-;14167:52;;14258:15;14238:16;:35;;14230:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14351:60;14360:5;14367:7;14395:15;14376:16;:34;14351:8;:60::i;:::-;14442:4;14435:11;;;;14018:436;;;;:::o;11065:193::-;11144:4;11161:13;11177:12;:10;:12::i;:::-;11161:28;;11200;11210:5;11217:2;11221:6;11200:9;:28::i;:::-;11246:4;11239:11;;;11065:193;;;;:::o;33734:30::-;;;;:::o;35310:124::-;2112:13;:11;:13::i;:::-;35420:6:::1;35397:14;:20;35412:4;35397:20;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35310:124:::0;;:::o;11321:151::-;11410:7;11437:11;:18;11449:5;11437:18;;;;;;;;;;;;;;;:27;11456:7;11437:27;;;;;;;;;;;;;;;;11430:34;;11321:151;;;;:::o;33958:28::-;;;;:::o;3132:201::-;2112:13;:11;:13::i;:::-;3241:1:::1;3221:22;;:8;:22;;::::0;3213:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3297:28;3316:8;3297:18;:28::i;:::-;3132:201:::0;:::o;33812:26::-;;;;;;;;;;;;;:::o;33773:32::-;;;;;;;;;;;;;:::o;24704:195::-;24847:44;24874:4;24880:2;24884:6;24847:26;:44::i;:::-;24704:195;;;:::o;19367:125::-;;;;:::o;781:98::-;834:7;861:10;854:17;;781:98;:::o;17643:380::-;17796:1;17779:19;;:5;:19;;;17771:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17877:1;17858:21;;:7;:21;;;17850:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17961:6;17931:11;:18;17943:5;17931:18;;;;;;;;;;;;;;;:27;17950:7;17931:27;;;;;;;;;;;;;;;:36;;;;17999:7;17983:32;;17992:5;17983:32;;;18008:6;17983:32;;;;;;:::i;:::-;;;;;;;;17643:380;;;:::o;2391:132::-;2466:12;:10;:12::i;:::-;2455:23;;:7;:5;:7::i;:::-;:23;;;2447:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2391:132::o;18314:453::-;18449:24;18476:25;18486:5;18493:7;18476:9;:25::i;:::-;18449:52;;18536:17;18516:16;:37;18512:248;;18598:6;18578:16;:26;;18570:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18682:51;18691:5;18698:7;18726:6;18707:16;:25;18682:8;:51::i;:::-;18512:248;18438:329;18314:453;;;:::o;35733:1047::-;35836:10;;;;;;;;;;;:67;;;;35851:14;:22;35866:6;35851:22;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;35877:14;:25;35892:9;35877:25;;;;;;;;;;;;;;;;;;;;;;;;;35851:51;35836:67;35832:163;;;35920:42;35936:6;35944:9;35955:6;35920:15;:42::i;:::-;35977:7;;35832:163;36007:11;36021:24;36039:4;36021:9;:24::i;:::-;36007:38;;36066:15;;36060:3;:21;:49;;;;;36098:11;;;;;;;;;;;36085:24;;:9;:24;;;36060:49;36056:177;;;36139:4;36126:10;;:17;;;;;;;;;;;;;;;;;;36158:30;36166:3;36171:16;;;;;;;;;;;36158:7;:30::i;:::-;36216:5;36203:10;;:18;;;;;;;;;;;;;;;;;;36056:177;36245:18;36266:6;36245:27;;36283:17;36331:11;;;;;;;;;;;36321:21;;:6;:21;;;36317:198;;36371:28;36383:6;36391:7;;36371:11;:28::i;:::-;36359:40;;36317:198;;;36434:11;;;;;;;;;;;36421:24;;:9;:24;;;36417:98;;36474:29;36486:6;36494:8;;36474:11;:29::i;:::-;36462:41;;36417:98;36317:198;36546:9;36533:10;:22;36525:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;36597:9;36583:23;;;;;:::i;:::-;;;36619:46;36635:6;36643:9;36654:10;36619:15;:46::i;:::-;36694:1;36682:9;:13;36678:95;;;36712:49;36728:6;36744:4;36751:9;36712:15;:49::i;:::-;36678:95;35821:959;;;35733:1047;;;;:::o;23911:120::-;22920:16;:14;:16::i;:::-;23980:5:::1;23970:7;;:15;;;;;;;;;;;;;;;;;;24001:22;24010:12;:10;:12::i;:::-;24001:22;;;;;;:::i;:::-;;;;;;;;23911:120::o:0;16614:591::-;16717:1;16698:21;;:7;:21;;;16690:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16770:49;16791:7;16808:1;16812:6;16770:20;:49::i;:::-;16832:22;16857:9;:18;16867:7;16857:18;;;;;;;;;;;;;;;;16832:43;;16912:6;16894:14;:24;;16886:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17031:6;17014:14;:23;16993:9;:18;17003:7;16993:18;;;;;;;;;;;;;;;:44;;;;17075:6;17059:12;;:22;;;;;;;:::i;:::-;;;;;;;;17125:1;17099:37;;17108:7;17099:37;;;17129:6;17099:37;;;;;;:::i;:::-;;;;;;;;17149:48;17169:7;17186:1;17190:6;17149:19;:48::i;:::-;16679:526;16614:591;;:::o;3493:191::-;3567:16;3586:6;;;;;;;;;;;3567:25;;3612:8;3603:6;;:17;;;;;;;;;;;;;;;;;;3667:8;3636:40;;3657:8;3636:40;;;;;;;;;;;;3556:128;3493:191;:::o;23652:118::-;22661:19;:17;:19::i;:::-;23722:4:::1;23712:7;;:14;;;;;;;;;;;;;;;;;;23742:20;23749:12;:10;:12::i;:::-;23742:20;;;;;;:::i;:::-;;;;;;;;23652:118::o:0;14924:671::-;15071:1;15055:18;;:4;:18;;;15047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15148:1;15134:16;;:2;:16;;;15126:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15203:38;15224:4;15230:2;15234:6;15203:20;:38::i;:::-;15254:19;15276:9;:15;15286:4;15276:15;;;;;;;;;;;;;;;;15254:37;;15325:6;15310:11;:21;;15302:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15442:6;15428:11;:20;15410:9;:15;15420:4;15410:15;;;;;;;;;;;;;;;:38;;;;15487:6;15470:9;:13;15480:2;15470:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15526:2;15511:26;;15520:4;15511:26;;;15530:6;15511:26;;;;;;:::i;:::-;;;;;;;;15550:37;15570:4;15576:2;15580:6;15550:19;:37::i;:::-;15036:559;14924:671;;;:::o;36928:400::-;36992:12;37015:21;37053:1;37039:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37015:40;;37084:4;37066;37071:1;37066:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;37110:6;;;;;;;;;;;:11;;;:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;37100:4;37105:1;37100:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;37134:6;;;;;;;;;;;:57;;;37192:6;37200:1;37203:4;37209:2;37213:15;37134:95;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37264:16;;;;;;;;;;;37256:30;;37294:21;37256:64;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37242:78;;;;;36981:347;;36928:400;;:::o;36788:132::-;36862:7;36907:5;36899:4;36890:6;:13;;;;:::i;:::-;36889:23;;;;:::i;:::-;36882:30;;36788:132;;;;:::o;23400:108::-;23467:8;:6;:8::i;:::-;23459:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;23400:108::o;35442:283::-;35573:44;35600:4;35606:2;35610:6;35573:26;:44::i;:::-;35637:8;:6;:8::i;:::-;35636:9;:33;;;;35649:14;:20;35664:4;35649:20;;;;;;;;;;;;;;;;;;;;;;;;;35636:33;35628:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;35442:283;;;:::o;20096:124::-;;;;:::o;23215:108::-;23286:8;:6;:8::i;:::-;23285:9;23277:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;23215:108::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:619::-;4258:6;4266;4274;4323:2;4311:9;4302:7;4298:23;4294:32;4291:119;;;4329:79;;:::i;:::-;4291:119;4449:1;4474:53;4519:7;4510:6;4499:9;4495:22;4474:53;:::i;:::-;4464:63;;4420:117;4576:2;4602:53;4647:7;4638:6;4627:9;4623:22;4602:53;:::i;:::-;4592:63;;4547:118;4704:2;4730:53;4775:7;4766:6;4755:9;4751:22;4730:53;:::i;:::-;4720:63;;4675:118;4181:619;;;;;:::o;4806:86::-;4841:7;4881:4;4874:5;4870:16;4859:27;;4806:86;;;:::o;4898:112::-;4981:22;4997:5;4981:22;:::i;:::-;4976:3;4969:35;4898:112;;:::o;5016:214::-;5105:4;5143:2;5132:9;5128:18;5120:26;;5156:67;5220:1;5209:9;5205:17;5196:6;5156:67;:::i;:::-;5016:214;;;;:::o;5236:118::-;5323:24;5341:5;5323:24;:::i;:::-;5318:3;5311:37;5236:118;;:::o;5360:222::-;5453:4;5491:2;5480:9;5476:18;5468:26;;5504:71;5572:1;5561:9;5557:17;5548:6;5504:71;:::i;:::-;5360:222;;;;:::o;5588:474::-;5656:6;5664;5713:2;5701:9;5692:7;5688:23;5684:32;5681:119;;;5719:79;;:::i;:::-;5681:119;5839:1;5864:53;5909:7;5900:6;5889:9;5885:22;5864:53;:::i;:::-;5854:63;;5810:117;5966:2;5992:53;6037:7;6028:6;6017:9;6013:22;5992:53;:::i;:::-;5982:63;;5937:118;5588:474;;;;;:::o;6068:329::-;6127:6;6176:2;6164:9;6155:7;6151:23;6147:32;6144:119;;;6182:79;;:::i;:::-;6144:119;6302:1;6327:53;6372:7;6363:6;6352:9;6348:22;6327:53;:::i;:::-;6317:63;;6273:117;6068:329;;;;:::o;6403:116::-;6473:21;6488:5;6473:21;:::i;:::-;6466:5;6463:32;6453:60;;6509:1;6506;6499:12;6453:60;6403:116;:::o;6525:133::-;6568:5;6606:6;6593:20;6584:29;;6622:30;6646:5;6622:30;:::i;:::-;6525:133;;;;:::o;6664:468::-;6729:6;6737;6786:2;6774:9;6765:7;6761:23;6757:32;6754:119;;;6792:79;;:::i;:::-;6754:119;6912:1;6937:53;6982:7;6973:6;6962:9;6958:22;6937:53;:::i;:::-;6927:63;;6883:117;7039:2;7065:50;7107:7;7098:6;7087:9;7083:22;7065:50;:::i;:::-;7055:60;;7010:115;6664:468;;;;;:::o;7138:474::-;7206:6;7214;7263:2;7251:9;7242:7;7238:23;7234:32;7231:119;;;7269:79;;:::i;:::-;7231:119;7389:1;7414:53;7459:7;7450:6;7439:9;7435:22;7414:53;:::i;:::-;7404:63;;7360:117;7516:2;7542:53;7587:7;7578:6;7567:9;7563:22;7542:53;:::i;:::-;7532:63;;7487:118;7138:474;;;;;:::o;7618:60::-;7646:3;7667:5;7660:12;;7618:60;;;:::o;7684:142::-;7734:9;7767:53;7785:34;7794:24;7812:5;7794:24;:::i;:::-;7785:34;:::i;:::-;7767:53;:::i;:::-;7754:66;;7684:142;;;:::o;7832:126::-;7882:9;7915:37;7946:5;7915:37;:::i;:::-;7902:50;;7832:126;;;:::o;7964:153::-;8041:9;8074:37;8105:5;8074:37;:::i;:::-;8061:50;;7964:153;;;:::o;8123:185::-;8237:64;8295:5;8237:64;:::i;:::-;8232:3;8225:77;8123:185;;:::o;8314:276::-;8434:4;8472:2;8461:9;8457:18;8449:26;;8485:98;8580:1;8569:9;8565:17;8556:6;8485:98;:::i;:::-;8314:276;;;;:::o;8596:180::-;8644:77;8641:1;8634:88;8741:4;8738:1;8731:15;8765:4;8762:1;8755:15;8782:320;8826:6;8863:1;8857:4;8853:12;8843:22;;8910:1;8904:4;8900:12;8931:18;8921:81;;8987:4;8979:6;8975:17;8965:27;;8921:81;9049:2;9041:6;9038:14;9018:18;9015:38;9012:84;;9068:18;;:::i;:::-;9012:84;8833:269;8782:320;;;:::o;9108:143::-;9165:5;9196:6;9190:13;9181:22;;9212:33;9239:5;9212:33;:::i;:::-;9108:143;;;;:::o;9257:351::-;9327:6;9376:2;9364:9;9355:7;9351:23;9347:32;9344:119;;;9382:79;;:::i;:::-;9344:119;9502:1;9527:64;9583:7;9574:6;9563:9;9559:22;9527:64;:::i;:::-;9517:74;;9473:128;9257:351;;;;:::o;9614:332::-;9735:4;9773:2;9762:9;9758:18;9750:26;;9786:71;9854:1;9843:9;9839:17;9830:6;9786:71;:::i;:::-;9867:72;9935:2;9924:9;9920:18;9911:6;9867:72;:::i;:::-;9614:332;;;;;:::o;9952:180::-;10000:77;9997:1;9990:88;10097:4;10094:1;10087:15;10121:4;10118:1;10111:15;10138:305;10178:3;10197:20;10215:1;10197:20;:::i;:::-;10192:25;;10231:20;10249:1;10231:20;:::i;:::-;10226:25;;10385:1;10317:66;10313:74;10310:1;10307:81;10304:107;;;10391:18;;:::i;:::-;10304:107;10435:1;10432;10428:9;10421:16;;10138:305;;;;:::o;10449:175::-;10589:27;10585:1;10577:6;10573:14;10566:51;10449:175;:::o;10630:366::-;10772:3;10793:67;10857:2;10852:3;10793:67;:::i;:::-;10786:74;;10869:93;10958:3;10869:93;:::i;:::-;10987:2;10982:3;10978:12;10971:19;;10630:366;;;:::o;11002:419::-;11168:4;11206:2;11195:9;11191:18;11183:26;;11255:9;11249:4;11245:20;11241:1;11230:9;11226:17;11219:47;11283:131;11409:4;11283:131;:::i;:::-;11275:139;;11002:419;;;:::o;11427:143::-;11484:5;11515:6;11509:13;11500:22;;11531:33;11558:5;11531:33;:::i;:::-;11427:143;;;;:::o;11576:351::-;11646:6;11695:2;11683:9;11674:7;11670:23;11666:32;11663:119;;;11701:79;;:::i;:::-;11663:119;11821:1;11846:64;11902:7;11893:6;11882:9;11878:22;11846:64;:::i;:::-;11836:74;;11792:128;11576:351;;;;:::o;11933:332::-;12054:4;12092:2;12081:9;12077:18;12069:26;;12105:71;12173:1;12162:9;12158:17;12149:6;12105:71;:::i;:::-;12186:72;12254:2;12243:9;12239:18;12230:6;12186:72;:::i;:::-;11933:332;;;;;:::o;12271:137::-;12325:5;12356:6;12350:13;12341:22;;12372:30;12396:5;12372:30;:::i;:::-;12271:137;;;;:::o;12414:345::-;12481:6;12530:2;12518:9;12509:7;12505:23;12501:32;12498:119;;;12536:79;;:::i;:::-;12498:119;12656:1;12681:61;12734:7;12725:6;12714:9;12710:22;12681:61;:::i;:::-;12671:71;;12627:125;12414:345;;;;:::o;12765:224::-;12905:34;12901:1;12893:6;12889:14;12882:58;12974:7;12969:2;12961:6;12957:15;12950:32;12765:224;:::o;12995:366::-;13137:3;13158:67;13222:2;13217:3;13158:67;:::i;:::-;13151:74;;13234:93;13323:3;13234:93;:::i;:::-;13352:2;13347:3;13343:12;13336:19;;12995:366;;;:::o;13367:419::-;13533:4;13571:2;13560:9;13556:18;13548:26;;13620:9;13614:4;13610:20;13606:1;13595:9;13591:17;13584:47;13648:131;13774:4;13648:131;:::i;:::-;13640:139;;13367:419;;;:::o;13792:225::-;13932:34;13928:1;13920:6;13916:14;13909:58;14001:8;13996:2;13988:6;13984:15;13977:33;13792:225;:::o;14023:366::-;14165:3;14186:67;14250:2;14245:3;14186:67;:::i;:::-;14179:74;;14262:93;14351:3;14262:93;:::i;:::-;14380:2;14375:3;14371:12;14364:19;;14023:366;;;:::o;14395:419::-;14561:4;14599:2;14588:9;14584:18;14576:26;;14648:9;14642:4;14638:20;14634:1;14623:9;14619:17;14612:47;14676:131;14802:4;14676:131;:::i;:::-;14668:139;;14395:419;;;:::o;14820:223::-;14960:34;14956:1;14948:6;14944:14;14937:58;15029:6;15024:2;15016:6;15012:15;15005:31;14820:223;:::o;15049:366::-;15191:3;15212:67;15276:2;15271:3;15212:67;:::i;:::-;15205:74;;15288:93;15377:3;15288:93;:::i;:::-;15406:2;15401:3;15397:12;15390:19;;15049:366;;;:::o;15421:419::-;15587:4;15625:2;15614:9;15610:18;15602:26;;15674:9;15668:4;15664:20;15660:1;15649:9;15645:17;15638:47;15702:131;15828:4;15702:131;:::i;:::-;15694:139;;15421:419;;;:::o;15846:221::-;15986:34;15982:1;15974:6;15970:14;15963:58;16055:4;16050:2;16042:6;16038:15;16031:29;15846:221;:::o;16073:366::-;16215:3;16236:67;16300:2;16295:3;16236:67;:::i;:::-;16229:74;;16312:93;16401:3;16312:93;:::i;:::-;16430:2;16425:3;16421:12;16414:19;;16073:366;;;:::o;16445:419::-;16611:4;16649:2;16638:9;16634:18;16626:26;;16698:9;16692:4;16688:20;16684:1;16673:9;16669:17;16662:47;16726:131;16852:4;16726:131;:::i;:::-;16718:139;;16445:419;;;:::o;16870:182::-;17010:34;17006:1;16998:6;16994:14;16987:58;16870:182;:::o;17058:366::-;17200:3;17221:67;17285:2;17280:3;17221:67;:::i;:::-;17214:74;;17297:93;17386:3;17297:93;:::i;:::-;17415:2;17410:3;17406:12;17399:19;;17058:366;;;:::o;17430:419::-;17596:4;17634:2;17623:9;17619:18;17611:26;;17683:9;17677:4;17673:20;17669:1;17658:9;17654:17;17647:47;17711:131;17837:4;17711:131;:::i;:::-;17703:139;;17430:419;;;:::o;17855:179::-;17995:31;17991:1;17983:6;17979:14;17972:55;17855:179;:::o;18040:366::-;18182:3;18203:67;18267:2;18262:3;18203:67;:::i;:::-;18196:74;;18279:93;18368:3;18279:93;:::i;:::-;18397:2;18392:3;18388:12;18381:19;;18040:366;;;:::o;18412:419::-;18578:4;18616:2;18605:9;18601:18;18593:26;;18665:9;18659:4;18655:20;18651:1;18640:9;18636:17;18629:47;18693:131;18819:4;18693:131;:::i;:::-;18685:139;;18412:419;;;:::o;18837:162::-;18977:14;18973:1;18965:6;18961:14;18954:38;18837:162;:::o;19005:366::-;19147:3;19168:67;19232:2;19227:3;19168:67;:::i;:::-;19161:74;;19244:93;19333:3;19244:93;:::i;:::-;19362:2;19357:3;19353:12;19346:19;;19005:366;;;:::o;19377:419::-;19543:4;19581:2;19570:9;19566:18;19558:26;;19630:9;19624:4;19620:20;19616:1;19605:9;19601:17;19594:47;19658:131;19784:4;19658:131;:::i;:::-;19650:139;;19377:419;;;:::o;19802:191::-;19842:4;19862:20;19880:1;19862:20;:::i;:::-;19857:25;;19896:20;19914:1;19896:20;:::i;:::-;19891:25;;19935:1;19932;19929:8;19926:34;;;19940:18;;:::i;:::-;19926:34;19985:1;19982;19978:9;19970:17;;19802:191;;;;:::o;19999:220::-;20139:34;20135:1;20127:6;20123:14;20116:58;20208:3;20203:2;20195:6;20191:15;20184:28;19999:220;:::o;20225:366::-;20367:3;20388:67;20452:2;20447:3;20388:67;:::i;:::-;20381:74;;20464:93;20553:3;20464:93;:::i;:::-;20582:2;20577:3;20573:12;20566:19;;20225:366;;;:::o;20597:419::-;20763:4;20801:2;20790:9;20786:18;20778:26;;20850:9;20844:4;20840:20;20836:1;20825:9;20821:17;20814:47;20878:131;21004:4;20878:131;:::i;:::-;20870:139;;20597:419;;;:::o;21022:221::-;21162:34;21158:1;21150:6;21146:14;21139:58;21231:4;21226:2;21218:6;21214:15;21207:29;21022:221;:::o;21249:366::-;21391:3;21412:67;21476:2;21471:3;21412:67;:::i;:::-;21405:74;;21488:93;21577:3;21488:93;:::i;:::-;21606:2;21601:3;21597:12;21590:19;;21249:366;;;:::o;21621:419::-;21787:4;21825:2;21814:9;21810:18;21802:26;;21874:9;21868:4;21864:20;21860:1;21849:9;21845:17;21838:47;21902:131;22028:4;21902:131;:::i;:::-;21894:139;;21621:419;;;:::o;22046:224::-;22186:34;22182:1;22174:6;22170:14;22163:58;22255:7;22250:2;22242:6;22238:15;22231:32;22046:224;:::o;22276:366::-;22418:3;22439:67;22503:2;22498:3;22439:67;:::i;:::-;22432:74;;22515:93;22604:3;22515:93;:::i;:::-;22633:2;22628:3;22624:12;22617:19;;22276:366;;;:::o;22648:419::-;22814:4;22852:2;22841:9;22837:18;22829:26;;22901:9;22895:4;22891:20;22887:1;22876:9;22872:17;22865:47;22929:131;23055:4;22929:131;:::i;:::-;22921:139;;22648:419;;;:::o;23073:222::-;23213:34;23209:1;23201:6;23197:14;23190:58;23282:5;23277:2;23269:6;23265:15;23258:30;23073:222;:::o;23301:366::-;23443:3;23464:67;23528:2;23523:3;23464:67;:::i;:::-;23457:74;;23540:93;23629:3;23540:93;:::i;:::-;23658:2;23653:3;23649:12;23642:19;;23301:366;;;:::o;23673:419::-;23839:4;23877:2;23866:9;23862:18;23854:26;;23926:9;23920:4;23916:20;23912:1;23901:9;23897:17;23890:47;23954:131;24080:4;23954:131;:::i;:::-;23946:139;;23673:419;;;:::o;24098:225::-;24238:34;24234:1;24226:6;24222:14;24215:58;24307:8;24302:2;24294:6;24290:15;24283:33;24098:225;:::o;24329:366::-;24471:3;24492:67;24556:2;24551:3;24492:67;:::i;:::-;24485:74;;24568:93;24657:3;24568:93;:::i;:::-;24686:2;24681:3;24677:12;24670:19;;24329:366;;;:::o;24701:419::-;24867:4;24905:2;24894:9;24890:18;24882:26;;24954:9;24948:4;24944:20;24940:1;24929:9;24925:17;24918:47;24982:131;25108:4;24982:131;:::i;:::-;24974:139;;24701:419;;;:::o;25126:180::-;25174:77;25171:1;25164:88;25271:4;25268:1;25261:15;25295:4;25292:1;25285:15;25312:180;25360:77;25357:1;25350:88;25457:4;25454:1;25447:15;25481:4;25478:1;25471:15;25498:85;25543:7;25572:5;25561:16;;25498:85;;;:::o;25589:158::-;25647:9;25680:61;25698:42;25707:32;25733:5;25707:32;:::i;:::-;25698:42;:::i;:::-;25680:61;:::i;:::-;25667:74;;25589:158;;;:::o;25753:147::-;25848:45;25887:5;25848:45;:::i;:::-;25843:3;25836:58;25753:147;;:::o;25906:114::-;25973:6;26007:5;26001:12;25991:22;;25906:114;;;:::o;26026:184::-;26125:11;26159:6;26154:3;26147:19;26199:4;26194:3;26190:14;26175:29;;26026:184;;;;:::o;26216:132::-;26283:4;26306:3;26298:11;;26336:4;26331:3;26327:14;26319:22;;26216:132;;;:::o;26354:108::-;26431:24;26449:5;26431:24;:::i;:::-;26426:3;26419:37;26354:108;;:::o;26468:179::-;26537:10;26558:46;26600:3;26592:6;26558:46;:::i;:::-;26636:4;26631:3;26627:14;26613:28;;26468:179;;;;:::o;26653:113::-;26723:4;26755;26750:3;26746:14;26738:22;;26653:113;;;:::o;26802:732::-;26921:3;26950:54;26998:5;26950:54;:::i;:::-;27020:86;27099:6;27094:3;27020:86;:::i;:::-;27013:93;;27130:56;27180:5;27130:56;:::i;:::-;27209:7;27240:1;27225:284;27250:6;27247:1;27244:13;27225:284;;;27326:6;27320:13;27353:63;27412:3;27397:13;27353:63;:::i;:::-;27346:70;;27439:60;27492:6;27439:60;:::i;:::-;27429:70;;27285:224;27272:1;27269;27265:9;27260:14;;27225:284;;;27229:14;27525:3;27518:10;;26926:608;;;26802:732;;;;:::o;27540:831::-;27803:4;27841:3;27830:9;27826:19;27818:27;;27855:71;27923:1;27912:9;27908:17;27899:6;27855:71;:::i;:::-;27936:80;28012:2;28001:9;27997:18;27988:6;27936:80;:::i;:::-;28063:9;28057:4;28053:20;28048:2;28037:9;28033:18;28026:48;28091:108;28194:4;28185:6;28091:108;:::i;:::-;28083:116;;28209:72;28277:2;28266:9;28262:18;28253:6;28209:72;:::i;:::-;28291:73;28359:3;28348:9;28344:19;28335:6;28291:73;:::i;:::-;27540:831;;;;;;;;:::o;28377:147::-;28478:11;28515:3;28500:18;;28377:147;;;;:::o;28530:114::-;;:::o;28650:398::-;28809:3;28830:83;28911:1;28906:3;28830:83;:::i;:::-;28823:90;;28922:93;29011:3;28922:93;:::i;:::-;29040:1;29035:3;29031:11;29024:18;;28650:398;;;:::o;29054:379::-;29238:3;29260:147;29403:3;29260:147;:::i;:::-;29253:154;;29424:3;29417:10;;29054:379;;;:::o;29439:348::-;29479:7;29502:20;29520:1;29502:20;:::i;:::-;29497:25;;29536:20;29554:1;29536:20;:::i;:::-;29531:25;;29724:1;29656:66;29652:74;29649:1;29646:81;29641:1;29634:9;29627:17;29623:105;29620:131;;;29731:18;;:::i;:::-;29620:131;29779:1;29776;29772:9;29761:20;;29439:348;;;;:::o;29793:180::-;29841:77;29838:1;29831:88;29938:4;29935:1;29928:15;29962:4;29959:1;29952:15;29979:185;30019:1;30036:20;30054:1;30036:20;:::i;:::-;30031:25;;30070:20;30088:1;30070:20;:::i;:::-;30065:25;;30109:1;30099:35;;30114:18;;:::i;:::-;30099:35;30156:1;30153;30149:9;30144:14;;29979:185;;;;:::o;30170:170::-;30310:22;30306:1;30298:6;30294:14;30287:46;30170:170;:::o;30346:366::-;30488:3;30509:67;30573:2;30568:3;30509:67;:::i;:::-;30502:74;;30585:93;30674:3;30585:93;:::i;:::-;30703:2;30698:3;30694:12;30687:19;;30346:366;;;:::o;30718:419::-;30884:4;30922:2;30911:9;30907:18;30899:26;;30971:9;30965:4;30961:20;30957:1;30946:9;30942:17;30935:47;30999:131;31125:4;30999:131;:::i;:::-;30991:139;;30718:419;;;:::o;31143:229::-;31283:34;31279:1;31271:6;31267:14;31260:58;31352:12;31347:2;31339:6;31335:15;31328:37;31143:229;:::o;31378:366::-;31520:3;31541:67;31605:2;31600:3;31541:67;:::i;:::-;31534:74;;31617:93;31706:3;31617:93;:::i;:::-;31735:2;31730:3;31726:12;31719:19;;31378:366;;;:::o;31750:419::-;31916:4;31954:2;31943:9;31939:18;31931:26;;32003:9;31997:4;31993:20;31989:1;31978:9;31974:17;31967:47;32031:131;32157:4;32031:131;:::i;:::-;32023:139;;31750:419;;;:::o;32175:166::-;32315:18;32311:1;32303:6;32299:14;32292:42;32175:166;:::o;32347:366::-;32489:3;32510:67;32574:2;32569:3;32510:67;:::i;:::-;32503:74;;32586:93;32675:3;32586:93;:::i;:::-;32704:2;32699:3;32695:12;32688:19;;32347:366;;;:::o;32719:419::-;32885:4;32923:2;32912:9;32908:18;32900:26;;32972:9;32966:4;32962:20;32958:1;32947:9;32943:17;32936:47;33000:131;33126:4;33000:131;:::i;:::-;32992:139;;32719:419;;;:::o

Swarm Source

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