ETH Price: $3,457.53 (-1.82%)
Gas: 4 Gwei

Token

CrackPot Bob (CPB)
 

Overview

Max Total Supply

2,015 CPB

Holders

168

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
maseinyourface.eth
Balance
4 CPB
0xf7C4e374e116b68c5324463949Ba3c5275B27236
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:
CrackPotBob

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-03
*/

// SPDX-License-Identifier: MIT

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

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        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/utils/Address.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}

// File: contracts/CrackPotBob.sol



// Amended by HashLips

pragma solidity >=0.7.0 <0.9.0;




contract CrackPotBob is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.01 ether;
  uint256 public maxSupply = 4200;
  uint256 public maxMintAmountPerTx = 20;
  uint256 public nftPerAddressLimit = 20;

  bool public paused = true;
  bool public revealed = false;
  bool public onlyWhitelisted = true;

  address[] public whitelistedAddresses;

  constructor() ERC721("CrackPot Bob", "CPB") {
    setHiddenMetadataUri("ipfs://Qmc4kncgy9xx6TkKpXjfybwNuqLmQ5HPgVAhrNpafNqrm8/hidden.json");
  }

  modifier  mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function needToUpdateCost() internal view returns (uint256 _cost){
    if(supply.current() < 1250) {
      return 0.00 ether;
    }
    if(supply.current() <= maxSupply) {
      return 0.01 ether;
    }
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");

    if (msg.sender != owner()) {
      if (onlyWhitelisted == true) {
          require(isWhitelisted(msg.sender), "user is not whitelisted");
          uint256 ownerTokenCount = balanceOf(msg.sender);
          require(ownerTokenCount < nftPerAddressLimit);
      }
        require(msg.value >= needToUpdateCost() * _mintAmount, "Insufficient funds!");
    }

    _mintLoop(_mintAmount);
  }

  function isWhitelisted(address _user) public view returns (bool) {
    for(uint256 i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
        return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }

  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }

  function withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function _mintLoop(uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(msg.sender, supply.current());
    }
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180602001604052806000815250600890805190602001906200002b92919062000387565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200007992919062000387565b50662386f26fc10000600b55611068600c556014600d556014600e556001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff021916908315150217905550348015620000f357600080fd5b506040518060400160405280600c81526020017f437261636b506f7420426f6200000000000000000000000000000000000000008152506040518060400160405280600381526020017f435042000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200017892919062000387565b5080600190805190602001906200019192919062000387565b505050620001b4620001a8620001e460201b60201c565b620001ec60201b60201c565b620001de60405180608001604052806041815260200162004c8e60419139620002b260201b60201c565b6200051f565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002c2620001e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002e86200035d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000341576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000338906200045e565b60405180910390fd5b80600a90805190602001906200035992919062000387565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620003959062000491565b90600052602060002090601f016020900481019282620003b9576000855562000405565b82601f10620003d457805160ff191683800117855562000405565b8280016001018555821562000405579182015b8281111562000404578251825591602001919060010190620003e7565b5b50905062000414919062000418565b5090565b5b808211156200043357600081600090555060010162000419565b5090565b60006200044660208362000480565b91506200045382620004f6565b602082019050919050565b60006020820190508181036000830152620004798162000437565b9050919050565b600082825260208201905092915050565b60006002820490506001821680620004aa57607f821691505b60208210811415620004c157620004c0620004c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61475f806200052f6000396000f3fe6080604052600436106102515760003560e01c806370a0823111610139578063b071401b116100b6578063d0eb26b01161007a578063d0eb26b0146108a3578063d5abeb01146108cc578063e0a80853146108f7578063e985e9c514610920578063edec5f271461095d578063f2fde38b1461098657610251565b8063b071401b146107ac578063b88d4fde146107d5578063ba4e5c49146107fe578063ba7d2c761461083b578063c87b56dd1461086657610251565b806395d89b41116100fd57806395d89b41146106e65780639c70b51214610711578063a0712d681461073c578063a22cb46514610758578063a45ba8e71461078157610251565b806370a0823114610613578063715018a6146106505780637ec4a659146106675780638da5cb5b1461069057806394354fd0146106bb57610251565b80633c952764116101d25780634fdd43cb116101965780634fdd43cb14610501578063518302271461052a5780635503a0e8146105555780635c975abb1461058057806362b99ad4146105ab5780636352211e146105d657610251565b80633c952764146104325780633ccfd60b1461045b57806342842e0e14610472578063438b63001461049b57806344a0d68a146104d857610251565b806316ba10e01161021957806316ba10e01461034f57806316c38b3c1461037857806318160ddd146103a157806323b872dd146103cc5780633af32abf146103f557610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613353565b6109af565b60405161028a91906139c8565b60405180910390f35b34801561029f57600080fd5b506102a8610a91565b6040516102b591906139e3565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906133f6565b610b23565b6040516102f2919061393f565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613299565b610ba8565b005b34801561033057600080fd5b50610339610cc0565b6040516103469190613ca5565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906133ad565b610cc6565b005b34801561038457600080fd5b5061039f600480360381019061039a9190613326565b610d5c565b005b3480156103ad57600080fd5b506103b6610df5565b6040516103c39190613ca5565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613183565b610e06565b005b34801561040157600080fd5b5061041c60048036038101906104179190613116565b610e66565b60405161042991906139c8565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190613326565b610f15565b005b34801561046757600080fd5b50610470610fae565b005b34801561047e57600080fd5b5061049960048036038101906104949190613183565b6110aa565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190613116565b6110ca565b6040516104cf91906139a6565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa91906133f6565b6111d5565b005b34801561050d57600080fd5b50610528600480360381019061052391906133ad565b61125b565b005b34801561053657600080fd5b5061053f6112f1565b60405161054c91906139c8565b60405180910390f35b34801561056157600080fd5b5061056a611304565b60405161057791906139e3565b60405180910390f35b34801561058c57600080fd5b50610595611392565b6040516105a291906139c8565b60405180910390f35b3480156105b757600080fd5b506105c06113a5565b6040516105cd91906139e3565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f891906133f6565b611433565b60405161060a919061393f565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613116565b6114e5565b6040516106479190613ca5565b60405180910390f35b34801561065c57600080fd5b5061066561159d565b005b34801561067357600080fd5b5061068e600480360381019061068991906133ad565b611625565b005b34801561069c57600080fd5b506106a56116bb565b6040516106b2919061393f565b60405180910390f35b3480156106c757600080fd5b506106d06116e5565b6040516106dd9190613ca5565b60405180910390f35b3480156106f257600080fd5b506106fb6116eb565b60405161070891906139e3565b60405180910390f35b34801561071d57600080fd5b5061072661177d565b60405161073391906139c8565b60405180910390f35b610756600480360381019061075191906133f6565b611790565b005b34801561076457600080fd5b5061077f600480360381019061077a9190613259565b6119a9565b005b34801561078d57600080fd5b506107966119bf565b6040516107a391906139e3565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906133f6565b611a4d565b005b3480156107e157600080fd5b506107fc60048036038101906107f791906131d6565b611ad3565b005b34801561080a57600080fd5b50610825600480360381019061082091906133f6565b611b35565b604051610832919061393f565b60405180910390f35b34801561084757600080fd5b50610850611b74565b60405161085d9190613ca5565b60405180910390f35b34801561087257600080fd5b5061088d600480360381019061088891906133f6565b611b7a565b60405161089a91906139e3565b60405180910390f35b3480156108af57600080fd5b506108ca60048036038101906108c591906133f6565b611cd3565b005b3480156108d857600080fd5b506108e1611d59565b6040516108ee9190613ca5565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190613326565b611d5f565b005b34801561092c57600080fd5b5061094760048036038101906109429190613143565b611df8565b60405161095491906139c8565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f91906132d9565b611e8c565b005b34801561099257600080fd5b506109ad60048036038101906109a89190613116565b611f2c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a8a5750610a8982612024565b5b9050919050565b606060008054610aa090613fae565b80601f0160208091040260200160405190810160405280929190818152602001828054610acc90613fae565b8015610b195780601f10610aee57610100808354040283529160200191610b19565b820191906000526020600020905b815481529060010190602001808311610afc57829003601f168201915b5050505050905090565b6000610b2e8261208e565b610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490613b65565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb382611433565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90613c05565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c436120fa565b73ffffffffffffffffffffffffffffffffffffffff161480610c725750610c7181610c6c6120fa565b611df8565b5b610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890613ae5565b60405180910390fd5b610cbb8383612102565b505050565b600b5481565b610cce6120fa565b73ffffffffffffffffffffffffffffffffffffffff16610cec6116bb565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990613b85565b60405180910390fd5b8060099080519060200190610d58929190612e13565b5050565b610d646120fa565b73ffffffffffffffffffffffffffffffffffffffff16610d826116bb565b73ffffffffffffffffffffffffffffffffffffffff1614610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90613b85565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610e0160076121bb565b905090565b610e17610e116120fa565b826121c9565b610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90613c45565b60405180910390fd5b610e618383836122a7565b505050565b600080600090505b601080549050811015610f0a578273ffffffffffffffffffffffffffffffffffffffff1660108281548110610ea657610ea5614118565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ef7576001915050610f10565b8080610f0290614011565b915050610e6e565b50600090505b919050565b610f1d6120fa565b73ffffffffffffffffffffffffffffffffffffffff16610f3b6116bb565b73ffffffffffffffffffffffffffffffffffffffff1614610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890613b85565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b610fb66120fa565b73ffffffffffffffffffffffffffffffffffffffff16610fd46116bb565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102190613b85565b60405180910390fd5b60006110346116bb565b73ffffffffffffffffffffffffffffffffffffffff16476040516110579061392a565b60006040518083038185875af1925050503d8060008114611094576040519150601f19603f3d011682016040523d82523d6000602084013e611099565b606091505b50509050806110a757600080fd5b50565b6110c583838360405180602001604052806000815250611ad3565b505050565b606060006110d7836114e5565b905060008167ffffffffffffffff8111156110f5576110f4614147565b5b6040519080825280602002602001820160405280156111235781602001602082028036833780820191505090505b50905060006001905060005b83811080156111405750600c548211155b156111c957600061115083611433565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111b5578284838151811061119a57611199614118565b5b60200260200101818152505081806111b190614011565b9250505b82806111c090614011565b9350505061112f565b82945050505050919050565b6111dd6120fa565b73ffffffffffffffffffffffffffffffffffffffff166111fb6116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613b85565b60405180910390fd5b80600b8190555050565b6112636120fa565b73ffffffffffffffffffffffffffffffffffffffff166112816116bb565b73ffffffffffffffffffffffffffffffffffffffff16146112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90613b85565b60405180910390fd5b80600a90805190602001906112ed929190612e13565b5050565b600f60019054906101000a900460ff1681565b6009805461131190613fae565b80601f016020809104026020016040519081016040528092919081815260200182805461133d90613fae565b801561138a5780601f1061135f5761010080835404028352916020019161138a565b820191906000526020600020905b81548152906001019060200180831161136d57829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b600880546113b290613fae565b80601f01602080910402602001604051908101604052809291908181526020018280546113de90613fae565b801561142b5780601f106114005761010080835404028352916020019161142b565b820191906000526020600020905b81548152906001019060200180831161140e57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d390613b25565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613b05565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115a56120fa565b73ffffffffffffffffffffffffffffffffffffffff166115c36116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090613b85565b60405180910390fd5b6116236000612503565b565b61162d6120fa565b73ffffffffffffffffffffffffffffffffffffffff1661164b6116bb565b73ffffffffffffffffffffffffffffffffffffffff16146116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613b85565b60405180910390fd5b80600890805190602001906116b7929190612e13565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546116fa90613fae565b80601f016020809104026020016040519081016040528092919081815260200182805461172690613fae565b80156117735780601f1061174857610100808354040283529160200191611773565b820191906000526020600020905b81548152906001019060200180831161175657829003601f168201915b5050505050905090565b600f60029054906101000a900460ff1681565b806000811180156117a35750600d548111155b6117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613a65565b60405180910390fd5b600c54816117f060076121bb565b6117fa9190613de3565b111561183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613c25565b60405180910390fd5b600f60009054906101000a900460ff161561188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290613ba5565b60405180910390fd5b6118936116bb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461199c5760011515600f60029054906101000a900460ff1615151415611946576118ea33610e66565b611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090613c65565b60405180910390fd5b6000611934336114e5565b9050600e54811061194457600080fd5b505b8161194f6125c9565b6119599190613e6a565b34101561199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613c85565b60405180910390fd5b5b6119a58261260c565b5050565b6119bb6119b46120fa565b838361264b565b5050565b600a80546119cc90613fae565b80601f01602080910402602001604051908101604052809291908181526020018280546119f890613fae565b8015611a455780601f10611a1a57610100808354040283529160200191611a45565b820191906000526020600020905b815481529060010190602001808311611a2857829003601f168201915b505050505081565b611a556120fa565b73ffffffffffffffffffffffffffffffffffffffff16611a736116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac090613b85565b60405180910390fd5b80600d8190555050565b611ae4611ade6120fa565b836121c9565b611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a90613c45565b60405180910390fd5b611b2f848484846127b8565b50505050565b60108181548110611b4557600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6060611b858261208e565b611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90613be5565b60405180910390fd5b60001515600f60019054906101000a900460ff1615151415611c7257600a8054611bed90613fae565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1990613fae565b8015611c665780601f10611c3b57610100808354040283529160200191611c66565b820191906000526020600020905b815481529060010190602001808311611c4957829003601f168201915b50505050509050611cce565b6000611c7c612814565b90506000815111611c9c5760405180602001604052806000815250611cca565b80611ca6846128a6565b6009604051602001611cba939291906138f9565b6040516020818303038152906040525b9150505b919050565b611cdb6120fa565b73ffffffffffffffffffffffffffffffffffffffff16611cf96116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690613b85565b60405180910390fd5b80600e8190555050565b600c5481565b611d676120fa565b73ffffffffffffffffffffffffffffffffffffffff16611d856116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd290613b85565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e946120fa565b73ffffffffffffffffffffffffffffffffffffffff16611eb26116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff90613b85565b60405180910390fd5b60106000611f169190612e99565b818160109190611f27929190612eba565b505050565b611f346120fa565b73ffffffffffffffffffffffffffffffffffffffff16611f526116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90613b85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613a25565b60405180910390fd5b61202181612503565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661217583611433565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006121d48261208e565b612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613ac5565b60405180910390fd5b600061221e83611433565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061228d57508373ffffffffffffffffffffffffffffffffffffffff1661227584610b23565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229e575061229d8185611df8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122c782611433565b73ffffffffffffffffffffffffffffffffffffffff161461231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490613bc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561238d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238490613a85565b60405180910390fd5b612398838383612a07565b6123a3600082612102565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f39190613ec4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461244a9190613de3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006104e26125d860076121bb565b10156125e75760009050612609565b600c546125f460076121bb565b1161260857662386f26fc100009050612609565b5b90565b60005b81811015612647576126216007612a0c565b6126343361262f60076121bb565b612a22565b808061263f90614011565b91505061260f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b190613aa5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127ab91906139c8565b60405180910390a3505050565b6127c38484846122a7565b6127cf84848484612a40565b61280e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280590613a05565b60405180910390fd5b50505050565b60606008805461282390613fae565b80601f016020809104026020016040519081016040528092919081815260200182805461284f90613fae565b801561289c5780601f106128715761010080835404028352916020019161289c565b820191906000526020600020905b81548152906001019060200180831161287f57829003601f168201915b5050505050905090565b606060008214156128ee576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a02565b600082905060005b6000821461292057808061290990614011565b915050600a826129199190613e39565b91506128f6565b60008167ffffffffffffffff81111561293c5761293b614147565b5b6040519080825280601f01601f19166020018201604052801561296e5781602001600182028036833780820191505090505b5090505b600085146129fb576001826129879190613ec4565b9150600a85612996919061405a565b60306129a29190613de3565b60f81b8183815181106129b8576129b7614118565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129f49190613e39565b9450612972565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b612a3c828260405180602001604052806000815250612bd7565b5050565b6000612a618473ffffffffffffffffffffffffffffffffffffffff16612c32565b15612bca578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a8a6120fa565b8786866040518563ffffffff1660e01b8152600401612aac949392919061395a565b602060405180830381600087803b158015612ac657600080fd5b505af1925050508015612af757506040513d601f19601f82011682018060405250810190612af49190613380565b60015b612b7a573d8060008114612b27576040519150601f19603f3d011682016040523d82523d6000602084013e612b2c565b606091505b50600081511415612b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6990613a05565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bcf565b600190505b949350505050565b612be18383612c45565b612bee6000848484612a40565b612c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2490613a05565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac90613b45565b60405180910390fd5b612cbe8161208e565b15612cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf590613a45565b60405180910390fd5b612d0a60008383612a07565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d5a9190613de3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612e1f90613fae565b90600052602060002090601f016020900481019282612e415760008555612e88565b82601f10612e5a57805160ff1916838001178555612e88565b82800160010185558215612e88579182015b82811115612e87578251825591602001919060010190612e6c565b5b509050612e959190612f5a565b5090565b5080546000825590600052602060002090810190612eb79190612f5a565b50565b828054828255906000526020600020908101928215612f49579160200282015b82811115612f4857823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612eda565b5b509050612f569190612f5a565b5090565b5b80821115612f73576000816000905550600101612f5b565b5090565b6000612f8a612f8584613ce5565b613cc0565b905082815260208101848484011115612fa657612fa5614185565b5b612fb1848285613f6c565b509392505050565b6000612fcc612fc784613d16565b613cc0565b905082815260208101848484011115612fe857612fe7614185565b5b612ff3848285613f6c565b509392505050565b60008135905061300a816146cd565b92915050565b60008083601f8401126130265761302561417b565b5b8235905067ffffffffffffffff81111561304357613042614176565b5b60208301915083602082028301111561305f5761305e614180565b5b9250929050565b600081359050613075816146e4565b92915050565b60008135905061308a816146fb565b92915050565b60008151905061309f816146fb565b92915050565b600082601f8301126130ba576130b961417b565b5b81356130ca848260208601612f77565b91505092915050565b600082601f8301126130e8576130e761417b565b5b81356130f8848260208601612fb9565b91505092915050565b60008135905061311081614712565b92915050565b60006020828403121561312c5761312b61418f565b5b600061313a84828501612ffb565b91505092915050565b6000806040838503121561315a5761315961418f565b5b600061316885828601612ffb565b925050602061317985828601612ffb565b9150509250929050565b60008060006060848603121561319c5761319b61418f565b5b60006131aa86828701612ffb565b93505060206131bb86828701612ffb565b92505060406131cc86828701613101565b9150509250925092565b600080600080608085870312156131f0576131ef61418f565b5b60006131fe87828801612ffb565b945050602061320f87828801612ffb565b935050604061322087828801613101565b925050606085013567ffffffffffffffff8111156132415761324061418a565b5b61324d878288016130a5565b91505092959194509250565b600080604083850312156132705761326f61418f565b5b600061327e85828601612ffb565b925050602061328f85828601613066565b9150509250929050565b600080604083850312156132b0576132af61418f565b5b60006132be85828601612ffb565b92505060206132cf85828601613101565b9150509250929050565b600080602083850312156132f0576132ef61418f565b5b600083013567ffffffffffffffff81111561330e5761330d61418a565b5b61331a85828601613010565b92509250509250929050565b60006020828403121561333c5761333b61418f565b5b600061334a84828501613066565b91505092915050565b6000602082840312156133695761336861418f565b5b60006133778482850161307b565b91505092915050565b6000602082840312156133965761339561418f565b5b60006133a484828501613090565b91505092915050565b6000602082840312156133c3576133c261418f565b5b600082013567ffffffffffffffff8111156133e1576133e061418a565b5b6133ed848285016130d3565b91505092915050565b60006020828403121561340c5761340b61418f565b5b600061341a84828501613101565b91505092915050565b600061342f83836138db565b60208301905092915050565b61344481613ef8565b82525050565b600061345582613d6c565b61345f8185613d9a565b935061346a83613d47565b8060005b8381101561349b5781516134828882613423565b975061348d83613d8d565b92505060018101905061346e565b5085935050505092915050565b6134b181613f0a565b82525050565b60006134c282613d77565b6134cc8185613dab565b93506134dc818560208601613f7b565b6134e581614194565b840191505092915050565b60006134fb82613d82565b6135058185613dc7565b9350613515818560208601613f7b565b61351e81614194565b840191505092915050565b600061353482613d82565b61353e8185613dd8565b935061354e818560208601613f7b565b80840191505092915050565b6000815461356781613fae565b6135718186613dd8565b9450600182166000811461358c576001811461359d576135d0565b60ff198316865281860193506135d0565b6135a685613d57565b60005b838110156135c8578154818901526001820191506020810190506135a9565b838801955050505b50505092915050565b60006135e6603283613dc7565b91506135f1826141a5565b604082019050919050565b6000613609602683613dc7565b9150613614826141f4565b604082019050919050565b600061362c601c83613dc7565b915061363782614243565b602082019050919050565b600061364f601483613dc7565b915061365a8261426c565b602082019050919050565b6000613672602483613dc7565b915061367d82614295565b604082019050919050565b6000613695601983613dc7565b91506136a0826142e4565b602082019050919050565b60006136b8602c83613dc7565b91506136c38261430d565b604082019050919050565b60006136db603883613dc7565b91506136e68261435c565b604082019050919050565b60006136fe602a83613dc7565b9150613709826143ab565b604082019050919050565b6000613721602983613dc7565b915061372c826143fa565b604082019050919050565b6000613744602083613dc7565b915061374f82614449565b602082019050919050565b6000613767602c83613dc7565b915061377282614472565b604082019050919050565b600061378a602083613dc7565b9150613795826144c1565b602082019050919050565b60006137ad601783613dc7565b91506137b8826144ea565b602082019050919050565b60006137d0602983613dc7565b91506137db82614513565b604082019050919050565b60006137f3602f83613dc7565b91506137fe82614562565b604082019050919050565b6000613816602183613dc7565b9150613821826145b1565b604082019050919050565b6000613839600083613dbc565b915061384482614600565b600082019050919050565b600061385c601483613dc7565b915061386782614603565b602082019050919050565b600061387f603183613dc7565b915061388a8261462c565b604082019050919050565b60006138a2601783613dc7565b91506138ad8261467b565b602082019050919050565b60006138c5601383613dc7565b91506138d0826146a4565b602082019050919050565b6138e481613f62565b82525050565b6138f381613f62565b82525050565b60006139058286613529565b91506139118285613529565b915061391d828461355a565b9150819050949350505050565b60006139358261382c565b9150819050919050565b6000602082019050613954600083018461343b565b92915050565b600060808201905061396f600083018761343b565b61397c602083018661343b565b61398960408301856138ea565b818103606083015261399b81846134b7565b905095945050505050565b600060208201905081810360008301526139c0818461344a565b905092915050565b60006020820190506139dd60008301846134a8565b92915050565b600060208201905081810360008301526139fd81846134f0565b905092915050565b60006020820190508181036000830152613a1e816135d9565b9050919050565b60006020820190508181036000830152613a3e816135fc565b9050919050565b60006020820190508181036000830152613a5e8161361f565b9050919050565b60006020820190508181036000830152613a7e81613642565b9050919050565b60006020820190508181036000830152613a9e81613665565b9050919050565b60006020820190508181036000830152613abe81613688565b9050919050565b60006020820190508181036000830152613ade816136ab565b9050919050565b60006020820190508181036000830152613afe816136ce565b9050919050565b60006020820190508181036000830152613b1e816136f1565b9050919050565b60006020820190508181036000830152613b3e81613714565b9050919050565b60006020820190508181036000830152613b5e81613737565b9050919050565b60006020820190508181036000830152613b7e8161375a565b9050919050565b60006020820190508181036000830152613b9e8161377d565b9050919050565b60006020820190508181036000830152613bbe816137a0565b9050919050565b60006020820190508181036000830152613bde816137c3565b9050919050565b60006020820190508181036000830152613bfe816137e6565b9050919050565b60006020820190508181036000830152613c1e81613809565b9050919050565b60006020820190508181036000830152613c3e8161384f565b9050919050565b60006020820190508181036000830152613c5e81613872565b9050919050565b60006020820190508181036000830152613c7e81613895565b9050919050565b60006020820190508181036000830152613c9e816138b8565b9050919050565b6000602082019050613cba60008301846138ea565b92915050565b6000613cca613cdb565b9050613cd68282613fe0565b919050565b6000604051905090565b600067ffffffffffffffff821115613d0057613cff614147565b5b613d0982614194565b9050602081019050919050565b600067ffffffffffffffff821115613d3157613d30614147565b5b613d3a82614194565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dee82613f62565b9150613df983613f62565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e2e57613e2d61408b565b5b828201905092915050565b6000613e4482613f62565b9150613e4f83613f62565b925082613e5f57613e5e6140ba565b5b828204905092915050565b6000613e7582613f62565b9150613e8083613f62565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eb957613eb861408b565b5b828202905092915050565b6000613ecf82613f62565b9150613eda83613f62565b925082821015613eed57613eec61408b565b5b828203905092915050565b6000613f0382613f42565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f99578082015181840152602081019050613f7e565b83811115613fa8576000848401525b50505050565b60006002820490506001821680613fc657607f821691505b60208210811415613fda57613fd96140e9565b5b50919050565b613fe982614194565b810181811067ffffffffffffffff8211171561400857614007614147565b5b80604052505050565b600061401c82613f62565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561404f5761404e61408b565b5b600182019050919050565b600061406582613f62565b915061407083613f62565b9250826140805761407f6140ba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6146d681613ef8565b81146146e157600080fd5b50565b6146ed81613f0a565b81146146f857600080fd5b50565b61470481613f16565b811461470f57600080fd5b50565b61471b81613f62565b811461472657600080fd5b5056fea2646970667358221220fb0491274fd6f28045f0a35ebe1092735a1528aff863129ef4da0f4be077ff1964736f6c63430008070033697066733a2f2f516d63346b6e63677939787836546b4b70586a667962774e75714c6d5135485067564168724e7061664e71726d382f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102515760003560e01c806370a0823111610139578063b071401b116100b6578063d0eb26b01161007a578063d0eb26b0146108a3578063d5abeb01146108cc578063e0a80853146108f7578063e985e9c514610920578063edec5f271461095d578063f2fde38b1461098657610251565b8063b071401b146107ac578063b88d4fde146107d5578063ba4e5c49146107fe578063ba7d2c761461083b578063c87b56dd1461086657610251565b806395d89b41116100fd57806395d89b41146106e65780639c70b51214610711578063a0712d681461073c578063a22cb46514610758578063a45ba8e71461078157610251565b806370a0823114610613578063715018a6146106505780637ec4a659146106675780638da5cb5b1461069057806394354fd0146106bb57610251565b80633c952764116101d25780634fdd43cb116101965780634fdd43cb14610501578063518302271461052a5780635503a0e8146105555780635c975abb1461058057806362b99ad4146105ab5780636352211e146105d657610251565b80633c952764146104325780633ccfd60b1461045b57806342842e0e14610472578063438b63001461049b57806344a0d68a146104d857610251565b806316ba10e01161021957806316ba10e01461034f57806316c38b3c1461037857806318160ddd146103a157806323b872dd146103cc5780633af32abf146103f557610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806313faede614610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613353565b6109af565b60405161028a91906139c8565b60405180910390f35b34801561029f57600080fd5b506102a8610a91565b6040516102b591906139e3565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e091906133f6565b610b23565b6040516102f2919061393f565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613299565b610ba8565b005b34801561033057600080fd5b50610339610cc0565b6040516103469190613ca5565b60405180910390f35b34801561035b57600080fd5b50610376600480360381019061037191906133ad565b610cc6565b005b34801561038457600080fd5b5061039f600480360381019061039a9190613326565b610d5c565b005b3480156103ad57600080fd5b506103b6610df5565b6040516103c39190613ca5565b60405180910390f35b3480156103d857600080fd5b506103f360048036038101906103ee9190613183565b610e06565b005b34801561040157600080fd5b5061041c60048036038101906104179190613116565b610e66565b60405161042991906139c8565b60405180910390f35b34801561043e57600080fd5b5061045960048036038101906104549190613326565b610f15565b005b34801561046757600080fd5b50610470610fae565b005b34801561047e57600080fd5b5061049960048036038101906104949190613183565b6110aa565b005b3480156104a757600080fd5b506104c260048036038101906104bd9190613116565b6110ca565b6040516104cf91906139a6565b60405180910390f35b3480156104e457600080fd5b506104ff60048036038101906104fa91906133f6565b6111d5565b005b34801561050d57600080fd5b50610528600480360381019061052391906133ad565b61125b565b005b34801561053657600080fd5b5061053f6112f1565b60405161054c91906139c8565b60405180910390f35b34801561056157600080fd5b5061056a611304565b60405161057791906139e3565b60405180910390f35b34801561058c57600080fd5b50610595611392565b6040516105a291906139c8565b60405180910390f35b3480156105b757600080fd5b506105c06113a5565b6040516105cd91906139e3565b60405180910390f35b3480156105e257600080fd5b506105fd60048036038101906105f891906133f6565b611433565b60405161060a919061393f565b60405180910390f35b34801561061f57600080fd5b5061063a60048036038101906106359190613116565b6114e5565b6040516106479190613ca5565b60405180910390f35b34801561065c57600080fd5b5061066561159d565b005b34801561067357600080fd5b5061068e600480360381019061068991906133ad565b611625565b005b34801561069c57600080fd5b506106a56116bb565b6040516106b2919061393f565b60405180910390f35b3480156106c757600080fd5b506106d06116e5565b6040516106dd9190613ca5565b60405180910390f35b3480156106f257600080fd5b506106fb6116eb565b60405161070891906139e3565b60405180910390f35b34801561071d57600080fd5b5061072661177d565b60405161073391906139c8565b60405180910390f35b610756600480360381019061075191906133f6565b611790565b005b34801561076457600080fd5b5061077f600480360381019061077a9190613259565b6119a9565b005b34801561078d57600080fd5b506107966119bf565b6040516107a391906139e3565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce91906133f6565b611a4d565b005b3480156107e157600080fd5b506107fc60048036038101906107f791906131d6565b611ad3565b005b34801561080a57600080fd5b50610825600480360381019061082091906133f6565b611b35565b604051610832919061393f565b60405180910390f35b34801561084757600080fd5b50610850611b74565b60405161085d9190613ca5565b60405180910390f35b34801561087257600080fd5b5061088d600480360381019061088891906133f6565b611b7a565b60405161089a91906139e3565b60405180910390f35b3480156108af57600080fd5b506108ca60048036038101906108c591906133f6565b611cd3565b005b3480156108d857600080fd5b506108e1611d59565b6040516108ee9190613ca5565b60405180910390f35b34801561090357600080fd5b5061091e60048036038101906109199190613326565b611d5f565b005b34801561092c57600080fd5b5061094760048036038101906109429190613143565b611df8565b60405161095491906139c8565b60405180910390f35b34801561096957600080fd5b50610984600480360381019061097f91906132d9565b611e8c565b005b34801561099257600080fd5b506109ad60048036038101906109a89190613116565b611f2c565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610a7a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a8a5750610a8982612024565b5b9050919050565b606060008054610aa090613fae565b80601f0160208091040260200160405190810160405280929190818152602001828054610acc90613fae565b8015610b195780601f10610aee57610100808354040283529160200191610b19565b820191906000526020600020905b815481529060010190602001808311610afc57829003601f168201915b5050505050905090565b6000610b2e8261208e565b610b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6490613b65565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bb382611433565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b90613c05565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c436120fa565b73ffffffffffffffffffffffffffffffffffffffff161480610c725750610c7181610c6c6120fa565b611df8565b5b610cb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca890613ae5565b60405180910390fd5b610cbb8383612102565b505050565b600b5481565b610cce6120fa565b73ffffffffffffffffffffffffffffffffffffffff16610cec6116bb565b73ffffffffffffffffffffffffffffffffffffffff1614610d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3990613b85565b60405180910390fd5b8060099080519060200190610d58929190612e13565b5050565b610d646120fa565b73ffffffffffffffffffffffffffffffffffffffff16610d826116bb565b73ffffffffffffffffffffffffffffffffffffffff1614610dd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcf90613b85565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610e0160076121bb565b905090565b610e17610e116120fa565b826121c9565b610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90613c45565b60405180910390fd5b610e618383836122a7565b505050565b600080600090505b601080549050811015610f0a578273ffffffffffffffffffffffffffffffffffffffff1660108281548110610ea657610ea5614118565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ef7576001915050610f10565b8080610f0290614011565b915050610e6e565b50600090505b919050565b610f1d6120fa565b73ffffffffffffffffffffffffffffffffffffffff16610f3b6116bb565b73ffffffffffffffffffffffffffffffffffffffff1614610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890613b85565b60405180910390fd5b80600f60026101000a81548160ff02191690831515021790555050565b610fb66120fa565b73ffffffffffffffffffffffffffffffffffffffff16610fd46116bb565b73ffffffffffffffffffffffffffffffffffffffff161461102a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102190613b85565b60405180910390fd5b60006110346116bb565b73ffffffffffffffffffffffffffffffffffffffff16476040516110579061392a565b60006040518083038185875af1925050503d8060008114611094576040519150601f19603f3d011682016040523d82523d6000602084013e611099565b606091505b50509050806110a757600080fd5b50565b6110c583838360405180602001604052806000815250611ad3565b505050565b606060006110d7836114e5565b905060008167ffffffffffffffff8111156110f5576110f4614147565b5b6040519080825280602002602001820160405280156111235781602001602082028036833780820191505090505b50905060006001905060005b83811080156111405750600c548211155b156111c957600061115083611433565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156111b5578284838151811061119a57611199614118565b5b60200260200101818152505081806111b190614011565b9250505b82806111c090614011565b9350505061112f565b82945050505050919050565b6111dd6120fa565b73ffffffffffffffffffffffffffffffffffffffff166111fb6116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611251576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124890613b85565b60405180910390fd5b80600b8190555050565b6112636120fa565b73ffffffffffffffffffffffffffffffffffffffff166112816116bb565b73ffffffffffffffffffffffffffffffffffffffff16146112d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ce90613b85565b60405180910390fd5b80600a90805190602001906112ed929190612e13565b5050565b600f60019054906101000a900460ff1681565b6009805461131190613fae565b80601f016020809104026020016040519081016040528092919081815260200182805461133d90613fae565b801561138a5780601f1061135f5761010080835404028352916020019161138a565b820191906000526020600020905b81548152906001019060200180831161136d57829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b600880546113b290613fae565b80601f01602080910402602001604051908101604052809291908181526020018280546113de90613fae565b801561142b5780601f106114005761010080835404028352916020019161142b565b820191906000526020600020905b81548152906001019060200180831161140e57829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d390613b25565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611556576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154d90613b05565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6115a56120fa565b73ffffffffffffffffffffffffffffffffffffffff166115c36116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611619576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161090613b85565b60405180910390fd5b6116236000612503565b565b61162d6120fa565b73ffffffffffffffffffffffffffffffffffffffff1661164b6116bb565b73ffffffffffffffffffffffffffffffffffffffff16146116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613b85565b60405180910390fd5b80600890805190602001906116b7929190612e13565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d5481565b6060600180546116fa90613fae565b80601f016020809104026020016040519081016040528092919081815260200182805461172690613fae565b80156117735780601f1061174857610100808354040283529160200191611773565b820191906000526020600020905b81548152906001019060200180831161175657829003601f168201915b5050505050905090565b600f60029054906101000a900460ff1681565b806000811180156117a35750600d548111155b6117e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d990613a65565b60405180910390fd5b600c54816117f060076121bb565b6117fa9190613de3565b111561183b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183290613c25565b60405180910390fd5b600f60009054906101000a900460ff161561188b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188290613ba5565b60405180910390fd5b6118936116bb565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461199c5760011515600f60029054906101000a900460ff1615151415611946576118ea33610e66565b611929576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192090613c65565b60405180910390fd5b6000611934336114e5565b9050600e54811061194457600080fd5b505b8161194f6125c9565b6119599190613e6a565b34101561199b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199290613c85565b60405180910390fd5b5b6119a58261260c565b5050565b6119bb6119b46120fa565b838361264b565b5050565b600a80546119cc90613fae565b80601f01602080910402602001604051908101604052809291908181526020018280546119f890613fae565b8015611a455780601f10611a1a57610100808354040283529160200191611a45565b820191906000526020600020905b815481529060010190602001808311611a2857829003601f168201915b505050505081565b611a556120fa565b73ffffffffffffffffffffffffffffffffffffffff16611a736116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac090613b85565b60405180910390fd5b80600d8190555050565b611ae4611ade6120fa565b836121c9565b611b23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1a90613c45565b60405180910390fd5b611b2f848484846127b8565b50505050565b60108181548110611b4557600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600e5481565b6060611b858261208e565b611bc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bbb90613be5565b60405180910390fd5b60001515600f60019054906101000a900460ff1615151415611c7257600a8054611bed90613fae565b80601f0160208091040260200160405190810160405280929190818152602001828054611c1990613fae565b8015611c665780601f10611c3b57610100808354040283529160200191611c66565b820191906000526020600020905b815481529060010190602001808311611c4957829003601f168201915b50505050509050611cce565b6000611c7c612814565b90506000815111611c9c5760405180602001604052806000815250611cca565b80611ca6846128a6565b6009604051602001611cba939291906138f9565b6040516020818303038152906040525b9150505b919050565b611cdb6120fa565b73ffffffffffffffffffffffffffffffffffffffff16611cf96116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4690613b85565b60405180910390fd5b80600e8190555050565b600c5481565b611d676120fa565b73ffffffffffffffffffffffffffffffffffffffff16611d856116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611ddb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd290613b85565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e946120fa565b73ffffffffffffffffffffffffffffffffffffffff16611eb26116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611f08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eff90613b85565b60405180910390fd5b60106000611f169190612e99565b818160109190611f27929190612eba565b505050565b611f346120fa565b73ffffffffffffffffffffffffffffffffffffffff16611f526116bb565b73ffffffffffffffffffffffffffffffffffffffff1614611fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9f90613b85565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612018576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200f90613a25565b60405180910390fd5b61202181612503565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661217583611433565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60006121d48261208e565b612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613ac5565b60405180910390fd5b600061221e83611433565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061228d57508373ffffffffffffffffffffffffffffffffffffffff1661227584610b23565b73ffffffffffffffffffffffffffffffffffffffff16145b8061229e575061229d8185611df8565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122c782611433565b73ffffffffffffffffffffffffffffffffffffffff161461231d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231490613bc5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561238d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238490613a85565b60405180910390fd5b612398838383612a07565b6123a3600082612102565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f39190613ec4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461244a9190613de3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006104e26125d860076121bb565b10156125e75760009050612609565b600c546125f460076121bb565b1161260857662386f26fc100009050612609565b5b90565b60005b81811015612647576126216007612a0c565b6126343361262f60076121bb565b612a22565b808061263f90614011565b91505061260f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156126ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b190613aa5565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127ab91906139c8565b60405180910390a3505050565b6127c38484846122a7565b6127cf84848484612a40565b61280e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280590613a05565b60405180910390fd5b50505050565b60606008805461282390613fae565b80601f016020809104026020016040519081016040528092919081815260200182805461284f90613fae565b801561289c5780601f106128715761010080835404028352916020019161289c565b820191906000526020600020905b81548152906001019060200180831161287f57829003601f168201915b5050505050905090565b606060008214156128ee576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a02565b600082905060005b6000821461292057808061290990614011565b915050600a826129199190613e39565b91506128f6565b60008167ffffffffffffffff81111561293c5761293b614147565b5b6040519080825280601f01601f19166020018201604052801561296e5781602001600182028036833780820191505090505b5090505b600085146129fb576001826129879190613ec4565b9150600a85612996919061405a565b60306129a29190613de3565b60f81b8183815181106129b8576129b7614118565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129f49190613e39565b9450612972565b8093505050505b919050565b505050565b6001816000016000828254019250508190555050565b612a3c828260405180602001604052806000815250612bd7565b5050565b6000612a618473ffffffffffffffffffffffffffffffffffffffff16612c32565b15612bca578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a8a6120fa565b8786866040518563ffffffff1660e01b8152600401612aac949392919061395a565b602060405180830381600087803b158015612ac657600080fd5b505af1925050508015612af757506040513d601f19601f82011682018060405250810190612af49190613380565b60015b612b7a573d8060008114612b27576040519150601f19603f3d011682016040523d82523d6000602084013e612b2c565b606091505b50600081511415612b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6990613a05565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612bcf565b600190505b949350505050565b612be18383612c45565b612bee6000848484612a40565b612c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2490613a05565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cac90613b45565b60405180910390fd5b612cbe8161208e565b15612cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf590613a45565b60405180910390fd5b612d0a60008383612a07565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d5a9190613de3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612e1f90613fae565b90600052602060002090601f016020900481019282612e415760008555612e88565b82601f10612e5a57805160ff1916838001178555612e88565b82800160010185558215612e88579182015b82811115612e87578251825591602001919060010190612e6c565b5b509050612e959190612f5a565b5090565b5080546000825590600052602060002090810190612eb79190612f5a565b50565b828054828255906000526020600020908101928215612f49579160200282015b82811115612f4857823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612eda565b5b509050612f569190612f5a565b5090565b5b80821115612f73576000816000905550600101612f5b565b5090565b6000612f8a612f8584613ce5565b613cc0565b905082815260208101848484011115612fa657612fa5614185565b5b612fb1848285613f6c565b509392505050565b6000612fcc612fc784613d16565b613cc0565b905082815260208101848484011115612fe857612fe7614185565b5b612ff3848285613f6c565b509392505050565b60008135905061300a816146cd565b92915050565b60008083601f8401126130265761302561417b565b5b8235905067ffffffffffffffff81111561304357613042614176565b5b60208301915083602082028301111561305f5761305e614180565b5b9250929050565b600081359050613075816146e4565b92915050565b60008135905061308a816146fb565b92915050565b60008151905061309f816146fb565b92915050565b600082601f8301126130ba576130b961417b565b5b81356130ca848260208601612f77565b91505092915050565b600082601f8301126130e8576130e761417b565b5b81356130f8848260208601612fb9565b91505092915050565b60008135905061311081614712565b92915050565b60006020828403121561312c5761312b61418f565b5b600061313a84828501612ffb565b91505092915050565b6000806040838503121561315a5761315961418f565b5b600061316885828601612ffb565b925050602061317985828601612ffb565b9150509250929050565b60008060006060848603121561319c5761319b61418f565b5b60006131aa86828701612ffb565b93505060206131bb86828701612ffb565b92505060406131cc86828701613101565b9150509250925092565b600080600080608085870312156131f0576131ef61418f565b5b60006131fe87828801612ffb565b945050602061320f87828801612ffb565b935050604061322087828801613101565b925050606085013567ffffffffffffffff8111156132415761324061418a565b5b61324d878288016130a5565b91505092959194509250565b600080604083850312156132705761326f61418f565b5b600061327e85828601612ffb565b925050602061328f85828601613066565b9150509250929050565b600080604083850312156132b0576132af61418f565b5b60006132be85828601612ffb565b92505060206132cf85828601613101565b9150509250929050565b600080602083850312156132f0576132ef61418f565b5b600083013567ffffffffffffffff81111561330e5761330d61418a565b5b61331a85828601613010565b92509250509250929050565b60006020828403121561333c5761333b61418f565b5b600061334a84828501613066565b91505092915050565b6000602082840312156133695761336861418f565b5b60006133778482850161307b565b91505092915050565b6000602082840312156133965761339561418f565b5b60006133a484828501613090565b91505092915050565b6000602082840312156133c3576133c261418f565b5b600082013567ffffffffffffffff8111156133e1576133e061418a565b5b6133ed848285016130d3565b91505092915050565b60006020828403121561340c5761340b61418f565b5b600061341a84828501613101565b91505092915050565b600061342f83836138db565b60208301905092915050565b61344481613ef8565b82525050565b600061345582613d6c565b61345f8185613d9a565b935061346a83613d47565b8060005b8381101561349b5781516134828882613423565b975061348d83613d8d565b92505060018101905061346e565b5085935050505092915050565b6134b181613f0a565b82525050565b60006134c282613d77565b6134cc8185613dab565b93506134dc818560208601613f7b565b6134e581614194565b840191505092915050565b60006134fb82613d82565b6135058185613dc7565b9350613515818560208601613f7b565b61351e81614194565b840191505092915050565b600061353482613d82565b61353e8185613dd8565b935061354e818560208601613f7b565b80840191505092915050565b6000815461356781613fae565b6135718186613dd8565b9450600182166000811461358c576001811461359d576135d0565b60ff198316865281860193506135d0565b6135a685613d57565b60005b838110156135c8578154818901526001820191506020810190506135a9565b838801955050505b50505092915050565b60006135e6603283613dc7565b91506135f1826141a5565b604082019050919050565b6000613609602683613dc7565b9150613614826141f4565b604082019050919050565b600061362c601c83613dc7565b915061363782614243565b602082019050919050565b600061364f601483613dc7565b915061365a8261426c565b602082019050919050565b6000613672602483613dc7565b915061367d82614295565b604082019050919050565b6000613695601983613dc7565b91506136a0826142e4565b602082019050919050565b60006136b8602c83613dc7565b91506136c38261430d565b604082019050919050565b60006136db603883613dc7565b91506136e68261435c565b604082019050919050565b60006136fe602a83613dc7565b9150613709826143ab565b604082019050919050565b6000613721602983613dc7565b915061372c826143fa565b604082019050919050565b6000613744602083613dc7565b915061374f82614449565b602082019050919050565b6000613767602c83613dc7565b915061377282614472565b604082019050919050565b600061378a602083613dc7565b9150613795826144c1565b602082019050919050565b60006137ad601783613dc7565b91506137b8826144ea565b602082019050919050565b60006137d0602983613dc7565b91506137db82614513565b604082019050919050565b60006137f3602f83613dc7565b91506137fe82614562565b604082019050919050565b6000613816602183613dc7565b9150613821826145b1565b604082019050919050565b6000613839600083613dbc565b915061384482614600565b600082019050919050565b600061385c601483613dc7565b915061386782614603565b602082019050919050565b600061387f603183613dc7565b915061388a8261462c565b604082019050919050565b60006138a2601783613dc7565b91506138ad8261467b565b602082019050919050565b60006138c5601383613dc7565b91506138d0826146a4565b602082019050919050565b6138e481613f62565b82525050565b6138f381613f62565b82525050565b60006139058286613529565b91506139118285613529565b915061391d828461355a565b9150819050949350505050565b60006139358261382c565b9150819050919050565b6000602082019050613954600083018461343b565b92915050565b600060808201905061396f600083018761343b565b61397c602083018661343b565b61398960408301856138ea565b818103606083015261399b81846134b7565b905095945050505050565b600060208201905081810360008301526139c0818461344a565b905092915050565b60006020820190506139dd60008301846134a8565b92915050565b600060208201905081810360008301526139fd81846134f0565b905092915050565b60006020820190508181036000830152613a1e816135d9565b9050919050565b60006020820190508181036000830152613a3e816135fc565b9050919050565b60006020820190508181036000830152613a5e8161361f565b9050919050565b60006020820190508181036000830152613a7e81613642565b9050919050565b60006020820190508181036000830152613a9e81613665565b9050919050565b60006020820190508181036000830152613abe81613688565b9050919050565b60006020820190508181036000830152613ade816136ab565b9050919050565b60006020820190508181036000830152613afe816136ce565b9050919050565b60006020820190508181036000830152613b1e816136f1565b9050919050565b60006020820190508181036000830152613b3e81613714565b9050919050565b60006020820190508181036000830152613b5e81613737565b9050919050565b60006020820190508181036000830152613b7e8161375a565b9050919050565b60006020820190508181036000830152613b9e8161377d565b9050919050565b60006020820190508181036000830152613bbe816137a0565b9050919050565b60006020820190508181036000830152613bde816137c3565b9050919050565b60006020820190508181036000830152613bfe816137e6565b9050919050565b60006020820190508181036000830152613c1e81613809565b9050919050565b60006020820190508181036000830152613c3e8161384f565b9050919050565b60006020820190508181036000830152613c5e81613872565b9050919050565b60006020820190508181036000830152613c7e81613895565b9050919050565b60006020820190508181036000830152613c9e816138b8565b9050919050565b6000602082019050613cba60008301846138ea565b92915050565b6000613cca613cdb565b9050613cd68282613fe0565b919050565b6000604051905090565b600067ffffffffffffffff821115613d0057613cff614147565b5b613d0982614194565b9050602081019050919050565b600067ffffffffffffffff821115613d3157613d30614147565b5b613d3a82614194565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613dee82613f62565b9150613df983613f62565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e2e57613e2d61408b565b5b828201905092915050565b6000613e4482613f62565b9150613e4f83613f62565b925082613e5f57613e5e6140ba565b5b828204905092915050565b6000613e7582613f62565b9150613e8083613f62565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613eb957613eb861408b565b5b828202905092915050565b6000613ecf82613f62565b9150613eda83613f62565b925082821015613eed57613eec61408b565b5b828203905092915050565b6000613f0382613f42565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f99578082015181840152602081019050613f7e565b83811115613fa8576000848401525b50505050565b60006002820490506001821680613fc657607f821691505b60208210811415613fda57613fd96140e9565b5b50919050565b613fe982614194565b810181811067ffffffffffffffff8211171561400857614007614147565b5b80604052505050565b600061401c82613f62565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561404f5761404e61408b565b5b600182019050919050565b600061406582613f62565b915061407083613f62565b9250826140805761407f6140ba565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f75736572206973206e6f742077686974656c6973746564000000000000000000600082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6146d681613ef8565b81146146e157600080fd5b50565b6146ed81613f0a565b81146146f857600080fd5b50565b61470481613f16565b811461470f57600080fd5b50565b61471b81613f62565b811461472657600080fd5b5056fea2646970667358221220fb0491274fd6f28045f0a35ebe1092735a1528aff863129ef4da0f4be077ff1964736f6c63430008070033

Deployed Bytecode Sourcemap

37789:4748:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25240:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26185:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27744:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27267:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38055:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41655:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41761:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38757:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28494:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39612:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41844:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42095:137;;;;;;;;;;;;;:::i;:::-;;28904:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39857:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41195:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41411:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38246:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37977:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38216:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37944:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25879:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25609:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6228:103;;;;;;;;;;;;;:::i;:::-;;41549:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5577:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38128:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26354:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38279:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39071:535;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28037:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38015:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41275:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29160:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38320:37;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38171:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40498:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41085:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38092:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40998:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28263:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41945:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6486:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25240:305;25342:4;25394:25;25379:40;;;:11;:40;;;;:105;;;;25451:33;25436:48;;;:11;:48;;;;25379:105;:158;;;;25501:36;25525:11;25501:23;:36::i;:::-;25379:158;25359:178;;25240:305;;;:::o;26185:100::-;26239:13;26272:5;26265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26185:100;:::o;27744:221::-;27820:7;27848:16;27856:7;27848;:16::i;:::-;27840:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27933:15;:24;27949:7;27933:24;;;;;;;;;;;;;;;;;;;;;27926:31;;27744:221;;;:::o;27267:411::-;27348:13;27364:23;27379:7;27364:14;:23::i;:::-;27348:39;;27412:5;27406:11;;:2;:11;;;;27398:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27506:5;27490:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27515:37;27532:5;27539:12;:10;:12::i;:::-;27515:16;:37::i;:::-;27490:62;27468:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27649:21;27658:2;27662:7;27649:8;:21::i;:::-;27337:341;27267:411;;:::o;38055:32::-;;;;:::o;41655:100::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41739:10:::1;41727:9;:22;;;;;;;;;;;;:::i;:::-;;41655:100:::0;:::o;41761:77::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41826:6:::1;41817;;:15;;;;;;;;;;;;;;;;;;41761:77:::0;:::o;38757:89::-;38801:7;38824:16;:6;:14;:16::i;:::-;38817:23;;38757:89;:::o;28494:339::-;28689:41;28708:12;:10;:12::i;:::-;28722:7;28689:18;:41::i;:::-;28681:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28797:28;28807:4;28813:2;28817:7;28797:9;:28::i;:::-;28494:339;;;:::o;39612:239::-;39671:4;39688:9;39700:1;39688:13;;39684:143;39707:20;:27;;;;39703:1;:31;39684:143;;;39781:5;39754:32;;:20;39775:1;39754:23;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:32;;;39750:70;;;39806:4;39799:11;;;;;39750:70;39736:3;;;;;:::i;:::-;;;;39684:143;;;;39840:5;39833:12;;39612:239;;;;:::o;41844:95::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41927:6:::1;41909:15;;:24;;;;;;;;;;;;;;;;;;41844:95:::0;:::o;42095:137::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42140:7:::1;42161;:5;:7::i;:::-;42153:21;;42182;42153:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42139:69;;;42223:2;42215:11;;;::::0;::::1;;42132:100;42095:137::o:0;28904:185::-;29042:39;29059:4;29065:2;29069:7;29042:39;;;;;;;;;;;;:16;:39::i;:::-;28904:185;;;:::o;39857:635::-;39932:16;39960:23;39986:17;39996:6;39986:9;:17::i;:::-;39960:43;;40010:30;40057:15;40043:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40010:63;;40080:22;40105:1;40080:26;;40113:23;40149:309;40174:15;40156;:33;:64;;;;;40211:9;;40193:14;:27;;40156:64;40149:309;;;40231:25;40259:23;40267:14;40259:7;:23::i;:::-;40231:51;;40318:6;40297:27;;:17;:27;;;40293:131;;;40370:14;40337:13;40351:15;40337:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;40397:17;;;;;:::i;:::-;;;;40293:131;40434:16;;;;;:::i;:::-;;;;40222:236;40149:309;;;40473:13;40466:20;;;;;;39857:635;;;:::o;41195:74::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41258:5:::1;41251:4;:12;;;;41195:74:::0;:::o;41411:132::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41519:18:::1;41499:17;:38;;;;;;;;;;;;:::i;:::-;;41411:132:::0;:::o;38246:28::-;;;;;;;;;;;;;:::o;37977:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38216:25::-;;;;;;;;;;;;;:::o;37944:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25879:239::-;25951:7;25971:13;25987:7;:16;25995:7;25987:16;;;;;;;;;;;;;;;;;;;;;25971:32;;26039:1;26022:19;;:5;:19;;;;26014:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26105:5;26098:12;;;25879:239;;;:::o;25609:208::-;25681:7;25726:1;25709:19;;:5;:19;;;;25701:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25793:9;:16;25803:5;25793:16;;;;;;;;;;;;;;;;25786:23;;25609:208;;;:::o;6228:103::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6293:30:::1;6320:1;6293:18;:30::i;:::-;6228:103::o:0;41549:100::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41633:10:::1;41621:9;:22;;;;;;;;;;;;:::i;:::-;;41549:100:::0;:::o;5577:87::-;5623:7;5650:6;;;;;;;;;;;5643:13;;5577:87;:::o;38128:38::-;;;;:::o;26354:104::-;26410:13;26443:7;26436:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26354:104;:::o;38279:34::-;;;;;;;;;;;;;:::o;39071:535::-;39136:11;38591:1;38577:11;:15;:52;;;;;38611:18;;38596:11;:33;;38577:52;38569:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;38703:9;;38688:11;38669:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;38661:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;39165:6:::1;;;;;;;;;;;39164:7;39156:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;39226:7;:5;:7::i;:::-;39212:21;;:10;:21;;;39208:362;;39267:4;39248:23;;:15;;;;;;;;;;;:23;;;39244:231;;;39294:25;39308:10;39294:13;:25::i;:::-;39286:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39360:23;39386:21;39396:10;39386:9;:21::i;:::-;39360:47;;39446:18;;39428:15;:36;39420:45;;;::::0;::::1;;39273:202;39244:231;39527:11;39506:18;:16;:18::i;:::-;:32;;;;:::i;:::-;39493:9;:45;;39485:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;39208:362;39578:22;39588:11;39578:9;:22::i;:::-;39071:535:::0;;:::o;28037:155::-;28132:52;28151:12;:10;:12::i;:::-;28165:8;28175;28132:18;:52::i;:::-;28037:155;;:::o;38015:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41275:130::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41380:19:::1;41359:18;:40;;;;41275:130:::0;:::o;29160:328::-;29335:41;29354:12;:10;:12::i;:::-;29368:7;29335:18;:41::i;:::-;29327:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29441:39;29455:4;29461:2;29465:7;29474:5;29441:13;:39::i;:::-;29160:328;;;;:::o;38320:37::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38171:38::-;;;;:::o;40498:494::-;40597:13;40638:17;40646:8;40638:7;:17::i;:::-;40622:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;40745:5;40733:17;;:8;;;;;;;;;;;:17;;;40729:64;;;40768:17;40761:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40729:64;40801:28;40832:10;:8;:10::i;:::-;40801:41;;40887:1;40862:14;40856:28;:32;:130;;;;;;;;;;;;;;;;;40924:14;40940:19;:8;:17;:19::i;:::-;40961:9;40907:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40856:130;40849:137;;;40498:494;;;;:::o;41085:104::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41177:6:::1;41156:18;:27;;;;41085:104:::0;:::o;38092:31::-;;;;:::o;40998:81::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41067:6:::1;41056:8;;:17;;;;;;;;;;;;;;;;;;40998:81:::0;:::o;28263:164::-;28360:4;28384:18;:25;28403:5;28384:25;;;;;;;;;;;;;;;:35;28410:8;28384:35;;;;;;;;;;;;;;;;;;;;;;;;;28377:42;;28263:164;;;;:::o;41945:144::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42027:20:::1;;42020:27;;;;:::i;:::-;42077:6;;42054:20;:29;;;;;;;:::i;:::-;;41945:144:::0;;:::o;6486:201::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6595:1:::1;6575:22;;:8;:22;;;;6567:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6651:28;6670:8;6651:18;:28::i;:::-;6486:201:::0;:::o;18009:157::-;18094:4;18133:25;18118:40;;;:11;:40;;;;18111:47;;18009:157;;;:::o;30998:127::-;31063:4;31115:1;31087:30;;:7;:16;31095:7;31087:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31080:37;;30998:127;;;:::o;4301:98::-;4354:7;4381:10;4374:17;;4301:98;:::o;34980:174::-;35082:2;35055:15;:24;35071:7;35055:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35138:7;35134:2;35100:46;;35109:23;35124:7;35109:14;:23::i;:::-;35100:46;;;;;;;;;;;;34980:174;;:::o;905:114::-;970:7;997;:14;;;990:21;;905:114;;;:::o;31292:348::-;31385:4;31410:16;31418:7;31410;:16::i;:::-;31402:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31486:13;31502:23;31517:7;31502:14;:23::i;:::-;31486:39;;31555:5;31544:16;;:7;:16;;;:51;;;;31588:7;31564:31;;:20;31576:7;31564:11;:20::i;:::-;:31;;;31544:51;:87;;;;31599:32;31616:5;31623:7;31599:16;:32::i;:::-;31544:87;31536:96;;;31292:348;;;;:::o;34284:578::-;34443:4;34416:31;;:23;34431:7;34416:14;:23::i;:::-;:31;;;34408:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34526:1;34512:16;;:2;:16;;;;34504:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34582:39;34603:4;34609:2;34613:7;34582:20;:39::i;:::-;34686:29;34703:1;34707:7;34686:8;:29::i;:::-;34747:1;34728:9;:15;34738:4;34728:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34776:1;34759:9;:13;34769:2;34759:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34807:2;34788:7;:16;34796:7;34788:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34846:7;34842:2;34827:27;;34836:4;34827:27;;;;;;;;;;;;34284:578;;;:::o;6847:191::-;6921:16;6940:6;;;;;;;;;;;6921:25;;6966:8;6957:6;;:17;;;;;;;;;;;;;;;;;;7021:8;6990:40;;7011:8;6990:40;;;;;;;;;;;;6910:128;6847:191;:::o;38852:213::-;38903:13;38946:4;38927:16;:6;:14;:16::i;:::-;:23;38924:62;;;38968:10;38961:17;;;;38924:62;39015:9;;38995:16;:6;:14;:16::i;:::-;:29;38992:68;;39042:10;39035:17;;;;38992:68;38852:213;;:::o;42238:186::-;42299:9;42294:125;42318:11;42314:1;:15;42294:125;;;42345:18;:6;:16;:18::i;:::-;42372:39;42382:10;42394:16;:6;:14;:16::i;:::-;42372:9;:39::i;:::-;42331:3;;;;;:::i;:::-;;;;42294:125;;;;42238:186;:::o;35296:315::-;35451:8;35442:17;;:5;:17;;;;35434:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35538:8;35500:18;:25;35519:5;35500:25;;;;;;;;;;;;;;;:35;35526:8;35500:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35584:8;35562:41;;35577:5;35562:41;;;35594:8;35562:41;;;;;;:::i;:::-;;;;;;;;35296:315;;;:::o;30370:::-;30527:28;30537:4;30543:2;30547:7;30527:9;:28::i;:::-;30574:48;30597:4;30603:2;30607:7;30616:5;30574:22;:48::i;:::-;30566:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30370:315;;;;:::o;42430:104::-;42490:13;42519:9;42512:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42430:104;:::o;1863:723::-;1919:13;2149:1;2140:5;:10;2136:53;;;2167:10;;;;;;;;;;;;;;;;;;;;;2136:53;2199:12;2214:5;2199:20;;2230:14;2255:78;2270:1;2262:4;:9;2255:78;;2288:8;;;;;:::i;:::-;;;;2319:2;2311:10;;;;;:::i;:::-;;;2255:78;;;2343:19;2375:6;2365:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2343:39;;2393:154;2409:1;2400:5;:10;2393:154;;2437:1;2427:11;;;;;:::i;:::-;;;2504:2;2496:5;:10;;;;:::i;:::-;2483:2;:24;;;;:::i;:::-;2470:39;;2453:6;2460;2453:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2533:2;2524:11;;;;;:::i;:::-;;;2393:154;;;2571:6;2557:21;;;;;1863:723;;;;:::o;37547:126::-;;;;:::o;1027:127::-;1134:1;1116:7;:14;;;:19;;;;;;;;;;;1027:127;:::o;31982:110::-;32058:26;32068:2;32072:7;32058:26;;;;;;;;;;;;:9;:26::i;:::-;31982:110;;:::o;36176:799::-;36331:4;36352:15;:2;:13;;;:15::i;:::-;36348:620;;;36404:2;36388:36;;;36425:12;:10;:12::i;:::-;36439:4;36445:7;36454:5;36388:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36384:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36647:1;36630:6;:13;:18;36626:272;;;36673:60;;;;;;;;;;:::i;:::-;;;;;;;;36626:272;36848:6;36842:13;36833:6;36829:2;36825:15;36818:38;36384:529;36521:41;;;36511:51;;;:6;:51;;;;36504:58;;;;;36348:620;36952:4;36945:11;;36176:799;;;;;;;:::o;32319:321::-;32449:18;32455:2;32459:7;32449:5;:18::i;:::-;32500:54;32531:1;32535:2;32539:7;32548:5;32500:22;:54::i;:::-;32478:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32319:321;;;:::o;7865:387::-;7925:4;8133:12;8200:7;8188:20;8180:28;;8243:1;8236:4;:8;8229:15;;;7865:387;;;:::o;32976:382::-;33070:1;33056:16;;:2;:16;;;;33048:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33129:16;33137:7;33129;:16::i;:::-;33128:17;33120:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33191:45;33220:1;33224:2;33228:7;33191:20;:45::i;:::-;33266:1;33249:9;:13;33259:2;33249:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33297:2;33278:7;:16;33286:7;33278:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33342:7;33338:2;33317:33;;33334:1;33317:33;;;;;;;;;;;;32976:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:137::-;1761:5;1799:6;1786:20;1777:29;;1815:32;1841:5;1815:32;:::i;:::-;1716:137;;;;:::o;1859:141::-;1915:5;1946:6;1940:13;1931:22;;1962:32;1988:5;1962:32;:::i;:::-;1859:141;;;;:::o;2019:338::-;2074:5;2123:3;2116:4;2108:6;2104:17;2100:27;2090:122;;2131:79;;:::i;:::-;2090:122;2248:6;2235:20;2273:78;2347:3;2339:6;2332:4;2324:6;2320:17;2273:78;:::i;:::-;2264:87;;2080:277;2019:338;;;;:::o;2377:340::-;2433:5;2482:3;2475:4;2467:6;2463:17;2459:27;2449:122;;2490:79;;:::i;:::-;2449:122;2607:6;2594:20;2632:79;2707:3;2699:6;2692:4;2684:6;2680:17;2632:79;:::i;:::-;2623:88;;2439:278;2377:340;;;;:::o;2723:139::-;2769:5;2807:6;2794:20;2785:29;;2823:33;2850:5;2823:33;:::i;:::-;2723:139;;;;:::o;2868:329::-;2927:6;2976:2;2964:9;2955:7;2951:23;2947:32;2944:119;;;2982:79;;:::i;:::-;2944:119;3102:1;3127:53;3172:7;3163:6;3152:9;3148:22;3127:53;:::i;:::-;3117:63;;3073:117;2868:329;;;;:::o;3203:474::-;3271:6;3279;3328:2;3316:9;3307:7;3303:23;3299:32;3296:119;;;3334:79;;:::i;:::-;3296:119;3454:1;3479:53;3524:7;3515:6;3504:9;3500:22;3479:53;:::i;:::-;3469:63;;3425:117;3581:2;3607:53;3652:7;3643:6;3632:9;3628:22;3607:53;:::i;:::-;3597:63;;3552:118;3203:474;;;;;:::o;3683:619::-;3760:6;3768;3776;3825:2;3813:9;3804:7;3800:23;3796:32;3793:119;;;3831:79;;:::i;:::-;3793:119;3951:1;3976:53;4021:7;4012:6;4001:9;3997:22;3976:53;:::i;:::-;3966:63;;3922:117;4078:2;4104:53;4149:7;4140:6;4129:9;4125:22;4104:53;:::i;:::-;4094:63;;4049:118;4206:2;4232:53;4277:7;4268:6;4257:9;4253:22;4232:53;:::i;:::-;4222:63;;4177:118;3683:619;;;;;:::o;4308:943::-;4403:6;4411;4419;4427;4476:3;4464:9;4455:7;4451:23;4447:33;4444:120;;;4483:79;;:::i;:::-;4444:120;4603:1;4628:53;4673:7;4664:6;4653:9;4649:22;4628:53;:::i;:::-;4618:63;;4574:117;4730:2;4756:53;4801:7;4792:6;4781:9;4777:22;4756:53;:::i;:::-;4746:63;;4701:118;4858:2;4884:53;4929:7;4920:6;4909:9;4905:22;4884:53;:::i;:::-;4874:63;;4829:118;5014:2;5003:9;4999:18;4986:32;5045:18;5037:6;5034:30;5031:117;;;5067:79;;:::i;:::-;5031:117;5172:62;5226:7;5217:6;5206:9;5202:22;5172:62;:::i;:::-;5162:72;;4957:287;4308:943;;;;;;;:::o;5257:468::-;5322:6;5330;5379:2;5367:9;5358:7;5354:23;5350:32;5347:119;;;5385:79;;:::i;:::-;5347:119;5505:1;5530:53;5575:7;5566:6;5555:9;5551:22;5530:53;:::i;:::-;5520:63;;5476:117;5632:2;5658:50;5700:7;5691:6;5680:9;5676:22;5658:50;:::i;:::-;5648:60;;5603:115;5257:468;;;;;:::o;5731:474::-;5799:6;5807;5856:2;5844:9;5835:7;5831:23;5827:32;5824:119;;;5862:79;;:::i;:::-;5824:119;5982:1;6007:53;6052:7;6043:6;6032:9;6028:22;6007:53;:::i;:::-;5997:63;;5953:117;6109:2;6135:53;6180:7;6171:6;6160:9;6156:22;6135:53;:::i;:::-;6125:63;;6080:118;5731:474;;;;;:::o;6211:559::-;6297:6;6305;6354:2;6342:9;6333:7;6329:23;6325:32;6322:119;;;6360:79;;:::i;:::-;6322:119;6508:1;6497:9;6493:17;6480:31;6538:18;6530:6;6527:30;6524:117;;;6560:79;;:::i;:::-;6524:117;6673:80;6745:7;6736:6;6725:9;6721:22;6673:80;:::i;:::-;6655:98;;;;6451:312;6211:559;;;;;:::o;6776:323::-;6832:6;6881:2;6869:9;6860:7;6856:23;6852:32;6849:119;;;6887:79;;:::i;:::-;6849:119;7007:1;7032:50;7074:7;7065:6;7054:9;7050:22;7032:50;:::i;:::-;7022:60;;6978:114;6776:323;;;;:::o;7105:327::-;7163:6;7212:2;7200:9;7191:7;7187:23;7183:32;7180:119;;;7218:79;;:::i;:::-;7180:119;7338:1;7363:52;7407:7;7398:6;7387:9;7383:22;7363:52;:::i;:::-;7353:62;;7309:116;7105:327;;;;:::o;7438:349::-;7507:6;7556:2;7544:9;7535:7;7531:23;7527:32;7524:119;;;7562:79;;:::i;:::-;7524:119;7682:1;7707:63;7762:7;7753:6;7742:9;7738:22;7707:63;:::i;:::-;7697:73;;7653:127;7438:349;;;;:::o;7793:509::-;7862:6;7911:2;7899:9;7890:7;7886:23;7882:32;7879:119;;;7917:79;;:::i;:::-;7879:119;8065:1;8054:9;8050:17;8037:31;8095:18;8087:6;8084:30;8081:117;;;8117:79;;:::i;:::-;8081:117;8222:63;8277:7;8268:6;8257:9;8253:22;8222:63;:::i;:::-;8212:73;;8008:287;7793:509;;;;:::o;8308:329::-;8367:6;8416:2;8404:9;8395:7;8391:23;8387:32;8384:119;;;8422:79;;:::i;:::-;8384:119;8542:1;8567:53;8612:7;8603:6;8592:9;8588:22;8567:53;:::i;:::-;8557:63;;8513:117;8308:329;;;;:::o;8643:179::-;8712:10;8733:46;8775:3;8767:6;8733:46;:::i;:::-;8811:4;8806:3;8802:14;8788:28;;8643:179;;;;:::o;8828:118::-;8915:24;8933:5;8915:24;:::i;:::-;8910:3;8903:37;8828:118;;:::o;8982:732::-;9101:3;9130:54;9178:5;9130:54;:::i;:::-;9200:86;9279:6;9274:3;9200:86;:::i;:::-;9193:93;;9310:56;9360:5;9310:56;:::i;:::-;9389:7;9420:1;9405:284;9430:6;9427:1;9424:13;9405:284;;;9506:6;9500:13;9533:63;9592:3;9577:13;9533:63;:::i;:::-;9526:70;;9619:60;9672:6;9619:60;:::i;:::-;9609:70;;9465:224;9452:1;9449;9445:9;9440:14;;9405:284;;;9409:14;9705:3;9698:10;;9106:608;;;8982:732;;;;:::o;9720:109::-;9801:21;9816:5;9801:21;:::i;:::-;9796:3;9789:34;9720:109;;:::o;9835:360::-;9921:3;9949:38;9981:5;9949:38;:::i;:::-;10003:70;10066:6;10061:3;10003:70;:::i;:::-;9996:77;;10082:52;10127:6;10122:3;10115:4;10108:5;10104:16;10082:52;:::i;:::-;10159:29;10181:6;10159:29;:::i;:::-;10154:3;10150:39;10143:46;;9925:270;9835:360;;;;:::o;10201:364::-;10289:3;10317:39;10350:5;10317:39;:::i;:::-;10372:71;10436:6;10431:3;10372:71;:::i;:::-;10365:78;;10452:52;10497:6;10492:3;10485:4;10478:5;10474:16;10452:52;:::i;:::-;10529:29;10551:6;10529:29;:::i;:::-;10524:3;10520:39;10513:46;;10293:272;10201:364;;;;:::o;10571:377::-;10677:3;10705:39;10738:5;10705:39;:::i;:::-;10760:89;10842:6;10837:3;10760:89;:::i;:::-;10753:96;;10858:52;10903:6;10898:3;10891:4;10884:5;10880:16;10858:52;:::i;:::-;10935:6;10930:3;10926:16;10919:23;;10681:267;10571:377;;;;:::o;10978:845::-;11081:3;11118:5;11112:12;11147:36;11173:9;11147:36;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11319:1;11308:9;11304:17;11335:1;11330:137;;;;11481:1;11476:341;;;;11297:520;;11330:137;11414:4;11410:9;11399;11395:25;11390:3;11383:38;11450:6;11445:3;11441:16;11434:23;;11330:137;;11476:341;11543:38;11575:5;11543:38;:::i;:::-;11603:1;11617:154;11631:6;11628:1;11625:13;11617:154;;;11705:7;11699:14;11695:1;11690:3;11686:11;11679:35;11755:1;11746:7;11742:15;11731:26;;11653:4;11650:1;11646:12;11641:17;;11617:154;;;11800:6;11795:3;11791:16;11784:23;;11483:334;;11297:520;;11085:738;;10978:845;;;;:::o;11829:366::-;11971:3;11992:67;12056:2;12051:3;11992:67;:::i;:::-;11985:74;;12068:93;12157:3;12068:93;:::i;:::-;12186:2;12181:3;12177:12;12170:19;;11829:366;;;:::o;12201:::-;12343:3;12364:67;12428:2;12423:3;12364:67;:::i;:::-;12357:74;;12440:93;12529:3;12440:93;:::i;:::-;12558:2;12553:3;12549:12;12542:19;;12201:366;;;:::o;12573:::-;12715:3;12736:67;12800:2;12795:3;12736:67;:::i;:::-;12729:74;;12812:93;12901:3;12812:93;:::i;:::-;12930:2;12925:3;12921:12;12914:19;;12573:366;;;:::o;12945:::-;13087:3;13108:67;13172:2;13167:3;13108:67;:::i;:::-;13101:74;;13184:93;13273:3;13184:93;:::i;:::-;13302:2;13297:3;13293:12;13286:19;;12945:366;;;:::o;13317:::-;13459:3;13480:67;13544:2;13539:3;13480:67;:::i;:::-;13473:74;;13556:93;13645:3;13556:93;:::i;:::-;13674:2;13669:3;13665:12;13658:19;;13317:366;;;:::o;13689:::-;13831:3;13852:67;13916:2;13911:3;13852:67;:::i;:::-;13845:74;;13928:93;14017:3;13928:93;:::i;:::-;14046:2;14041:3;14037:12;14030:19;;13689:366;;;:::o;14061:::-;14203:3;14224:67;14288:2;14283:3;14224:67;:::i;:::-;14217:74;;14300:93;14389:3;14300:93;:::i;:::-;14418:2;14413:3;14409:12;14402:19;;14061:366;;;:::o;14433:::-;14575:3;14596:67;14660:2;14655:3;14596:67;:::i;:::-;14589:74;;14672:93;14761:3;14672:93;:::i;:::-;14790:2;14785:3;14781:12;14774:19;;14433:366;;;:::o;14805:::-;14947:3;14968:67;15032:2;15027:3;14968:67;:::i;:::-;14961:74;;15044:93;15133:3;15044:93;:::i;:::-;15162:2;15157:3;15153:12;15146:19;;14805:366;;;:::o;15177:::-;15319:3;15340:67;15404:2;15399:3;15340:67;:::i;:::-;15333:74;;15416:93;15505:3;15416:93;:::i;:::-;15534:2;15529:3;15525:12;15518:19;;15177:366;;;:::o;15549:::-;15691:3;15712:67;15776:2;15771:3;15712:67;:::i;:::-;15705:74;;15788:93;15877:3;15788:93;:::i;:::-;15906:2;15901:3;15897:12;15890:19;;15549:366;;;:::o;15921:::-;16063:3;16084:67;16148:2;16143:3;16084:67;:::i;:::-;16077:74;;16160:93;16249:3;16160:93;:::i;:::-;16278:2;16273:3;16269:12;16262:19;;15921:366;;;:::o;16293:::-;16435:3;16456:67;16520:2;16515:3;16456:67;:::i;:::-;16449:74;;16532:93;16621:3;16532:93;:::i;:::-;16650:2;16645:3;16641:12;16634:19;;16293:366;;;:::o;16665:::-;16807:3;16828:67;16892:2;16887:3;16828:67;:::i;:::-;16821:74;;16904:93;16993:3;16904:93;:::i;:::-;17022:2;17017:3;17013:12;17006:19;;16665:366;;;:::o;17037:::-;17179:3;17200:67;17264:2;17259:3;17200:67;:::i;:::-;17193:74;;17276:93;17365:3;17276:93;:::i;:::-;17394:2;17389:3;17385:12;17378:19;;17037:366;;;:::o;17409:::-;17551:3;17572:67;17636:2;17631:3;17572:67;:::i;:::-;17565:74;;17648:93;17737:3;17648:93;:::i;:::-;17766:2;17761:3;17757:12;17750:19;;17409:366;;;:::o;17781:::-;17923:3;17944:67;18008:2;18003:3;17944:67;:::i;:::-;17937:74;;18020:93;18109:3;18020:93;:::i;:::-;18138:2;18133:3;18129:12;18122:19;;17781:366;;;:::o;18153:398::-;18312:3;18333:83;18414:1;18409:3;18333:83;:::i;:::-;18326:90;;18425:93;18514:3;18425:93;:::i;:::-;18543:1;18538:3;18534:11;18527:18;;18153:398;;;:::o;18557:366::-;18699:3;18720:67;18784:2;18779:3;18720:67;:::i;:::-;18713:74;;18796:93;18885:3;18796:93;:::i;:::-;18914:2;18909:3;18905:12;18898:19;;18557:366;;;:::o;18929:::-;19071:3;19092:67;19156:2;19151:3;19092:67;:::i;:::-;19085:74;;19168:93;19257:3;19168:93;:::i;:::-;19286:2;19281:3;19277:12;19270:19;;18929:366;;;:::o;19301:::-;19443:3;19464:67;19528:2;19523:3;19464:67;:::i;:::-;19457:74;;19540:93;19629:3;19540:93;:::i;:::-;19658:2;19653:3;19649:12;19642:19;;19301:366;;;:::o;19673:::-;19815:3;19836:67;19900:2;19895:3;19836:67;:::i;:::-;19829:74;;19912:93;20001:3;19912:93;:::i;:::-;20030:2;20025:3;20021:12;20014:19;;19673:366;;;:::o;20045:108::-;20122:24;20140:5;20122:24;:::i;:::-;20117:3;20110:37;20045:108;;:::o;20159:118::-;20246:24;20264:5;20246:24;:::i;:::-;20241:3;20234:37;20159:118;;:::o;20283:589::-;20508:3;20530:95;20621:3;20612:6;20530:95;:::i;:::-;20523:102;;20642:95;20733:3;20724:6;20642:95;:::i;:::-;20635:102;;20754:92;20842:3;20833:6;20754:92;:::i;:::-;20747:99;;20863:3;20856:10;;20283:589;;;;;;:::o;20878:379::-;21062:3;21084:147;21227:3;21084:147;:::i;:::-;21077:154;;21248:3;21241:10;;20878:379;;;:::o;21263:222::-;21356:4;21394:2;21383:9;21379:18;21371:26;;21407:71;21475:1;21464:9;21460:17;21451:6;21407:71;:::i;:::-;21263:222;;;;:::o;21491:640::-;21686:4;21724:3;21713:9;21709:19;21701:27;;21738:71;21806:1;21795:9;21791:17;21782:6;21738:71;:::i;:::-;21819:72;21887:2;21876:9;21872:18;21863:6;21819:72;:::i;:::-;21901;21969:2;21958:9;21954:18;21945:6;21901:72;:::i;:::-;22020:9;22014:4;22010:20;22005:2;21994:9;21990:18;21983:48;22048:76;22119:4;22110:6;22048:76;:::i;:::-;22040:84;;21491:640;;;;;;;:::o;22137:373::-;22280:4;22318:2;22307:9;22303:18;22295:26;;22367:9;22361:4;22357:20;22353:1;22342:9;22338:17;22331:47;22395:108;22498:4;22489:6;22395:108;:::i;:::-;22387:116;;22137:373;;;;:::o;22516:210::-;22603:4;22641:2;22630:9;22626:18;22618:26;;22654:65;22716:1;22705:9;22701:17;22692:6;22654:65;:::i;:::-;22516:210;;;;:::o;22732:313::-;22845:4;22883:2;22872:9;22868:18;22860:26;;22932:9;22926:4;22922:20;22918:1;22907:9;22903:17;22896:47;22960:78;23033:4;23024:6;22960:78;:::i;:::-;22952:86;;22732:313;;;;:::o;23051:419::-;23217:4;23255:2;23244:9;23240:18;23232:26;;23304:9;23298:4;23294:20;23290:1;23279:9;23275:17;23268:47;23332:131;23458:4;23332:131;:::i;:::-;23324:139;;23051:419;;;:::o;23476:::-;23642:4;23680:2;23669:9;23665:18;23657:26;;23729:9;23723:4;23719:20;23715:1;23704:9;23700:17;23693:47;23757:131;23883:4;23757:131;:::i;:::-;23749:139;;23476:419;;;:::o;23901:::-;24067:4;24105:2;24094:9;24090:18;24082:26;;24154:9;24148:4;24144:20;24140:1;24129:9;24125:17;24118:47;24182:131;24308:4;24182:131;:::i;:::-;24174:139;;23901:419;;;:::o;24326:::-;24492:4;24530:2;24519:9;24515:18;24507:26;;24579:9;24573:4;24569:20;24565:1;24554:9;24550:17;24543:47;24607:131;24733:4;24607:131;:::i;:::-;24599:139;;24326:419;;;:::o;24751:::-;24917:4;24955:2;24944:9;24940:18;24932:26;;25004:9;24998:4;24994:20;24990:1;24979:9;24975:17;24968:47;25032:131;25158:4;25032:131;:::i;:::-;25024:139;;24751:419;;;:::o;25176:::-;25342:4;25380:2;25369:9;25365:18;25357:26;;25429:9;25423:4;25419:20;25415:1;25404:9;25400:17;25393:47;25457:131;25583:4;25457:131;:::i;:::-;25449:139;;25176:419;;;:::o;25601:::-;25767:4;25805:2;25794:9;25790:18;25782:26;;25854:9;25848:4;25844:20;25840:1;25829:9;25825:17;25818:47;25882:131;26008:4;25882:131;:::i;:::-;25874:139;;25601:419;;;:::o;26026:::-;26192:4;26230:2;26219:9;26215:18;26207:26;;26279:9;26273:4;26269:20;26265:1;26254:9;26250:17;26243:47;26307:131;26433:4;26307:131;:::i;:::-;26299:139;;26026:419;;;:::o;26451:::-;26617:4;26655:2;26644:9;26640:18;26632:26;;26704:9;26698:4;26694:20;26690:1;26679:9;26675:17;26668:47;26732:131;26858:4;26732:131;:::i;:::-;26724:139;;26451:419;;;:::o;26876:::-;27042:4;27080:2;27069:9;27065:18;27057:26;;27129:9;27123:4;27119:20;27115:1;27104:9;27100:17;27093:47;27157:131;27283:4;27157:131;:::i;:::-;27149:139;;26876:419;;;:::o;27301:::-;27467:4;27505:2;27494:9;27490:18;27482:26;;27554:9;27548:4;27544:20;27540:1;27529:9;27525:17;27518:47;27582:131;27708:4;27582:131;:::i;:::-;27574:139;;27301:419;;;:::o;27726:::-;27892:4;27930:2;27919:9;27915:18;27907:26;;27979:9;27973:4;27969:20;27965:1;27954:9;27950:17;27943:47;28007:131;28133:4;28007:131;:::i;:::-;27999:139;;27726:419;;;:::o;28151:::-;28317:4;28355:2;28344:9;28340:18;28332:26;;28404:9;28398:4;28394:20;28390:1;28379:9;28375:17;28368:47;28432:131;28558:4;28432:131;:::i;:::-;28424:139;;28151:419;;;:::o;28576:::-;28742:4;28780:2;28769:9;28765:18;28757:26;;28829:9;28823:4;28819:20;28815:1;28804:9;28800:17;28793:47;28857:131;28983:4;28857:131;:::i;:::-;28849:139;;28576:419;;;:::o;29001:::-;29167:4;29205:2;29194:9;29190:18;29182:26;;29254:9;29248:4;29244:20;29240:1;29229:9;29225:17;29218:47;29282:131;29408:4;29282:131;:::i;:::-;29274:139;;29001:419;;;:::o;29426:::-;29592:4;29630:2;29619:9;29615:18;29607:26;;29679:9;29673:4;29669:20;29665:1;29654:9;29650:17;29643:47;29707:131;29833:4;29707:131;:::i;:::-;29699:139;;29426:419;;;:::o;29851:::-;30017:4;30055:2;30044:9;30040:18;30032:26;;30104:9;30098:4;30094:20;30090:1;30079:9;30075:17;30068:47;30132:131;30258:4;30132:131;:::i;:::-;30124:139;;29851:419;;;:::o;30276:::-;30442:4;30480:2;30469:9;30465:18;30457:26;;30529:9;30523:4;30519:20;30515:1;30504:9;30500:17;30493:47;30557:131;30683:4;30557:131;:::i;:::-;30549:139;;30276:419;;;:::o;30701:::-;30867:4;30905:2;30894:9;30890:18;30882:26;;30954:9;30948:4;30944:20;30940:1;30929:9;30925:17;30918:47;30982:131;31108:4;30982:131;:::i;:::-;30974:139;;30701:419;;;:::o;31126:::-;31292:4;31330:2;31319:9;31315:18;31307:26;;31379:9;31373:4;31369:20;31365:1;31354:9;31350:17;31343:47;31407:131;31533:4;31407:131;:::i;:::-;31399:139;;31126:419;;;:::o;31551:::-;31717:4;31755:2;31744:9;31740:18;31732:26;;31804:9;31798:4;31794:20;31790:1;31779:9;31775:17;31768:47;31832:131;31958:4;31832:131;:::i;:::-;31824:139;;31551:419;;;:::o;31976:222::-;32069:4;32107:2;32096:9;32092:18;32084:26;;32120:71;32188:1;32177:9;32173:17;32164:6;32120:71;:::i;:::-;31976:222;;;;:::o;32204:129::-;32238:6;32265:20;;:::i;:::-;32255:30;;32294:33;32322:4;32314:6;32294:33;:::i;:::-;32204:129;;;:::o;32339:75::-;32372:6;32405:2;32399:9;32389:19;;32339:75;:::o;32420:307::-;32481:4;32571:18;32563:6;32560:30;32557:56;;;32593:18;;:::i;:::-;32557:56;32631:29;32653:6;32631:29;:::i;:::-;32623:37;;32715:4;32709;32705:15;32697:23;;32420:307;;;:::o;32733:308::-;32795:4;32885:18;32877:6;32874:30;32871:56;;;32907:18;;:::i;:::-;32871:56;32945:29;32967:6;32945:29;:::i;:::-;32937:37;;33029:4;33023;33019:15;33011:23;;32733:308;;;:::o;33047:132::-;33114:4;33137:3;33129:11;;33167:4;33162:3;33158:14;33150:22;;33047:132;;;:::o;33185:141::-;33234:4;33257:3;33249:11;;33280:3;33277:1;33270:14;33314:4;33311:1;33301:18;33293:26;;33185:141;;;:::o;33332:114::-;33399:6;33433:5;33427:12;33417:22;;33332:114;;;:::o;33452:98::-;33503:6;33537:5;33531:12;33521:22;;33452:98;;;:::o;33556:99::-;33608:6;33642:5;33636:12;33626:22;;33556:99;;;:::o;33661:113::-;33731:4;33763;33758:3;33754:14;33746:22;;33661:113;;;:::o;33780:184::-;33879:11;33913:6;33908:3;33901:19;33953:4;33948:3;33944:14;33929:29;;33780:184;;;;:::o;33970:168::-;34053:11;34087:6;34082:3;34075:19;34127:4;34122:3;34118:14;34103:29;;33970:168;;;;:::o;34144:147::-;34245:11;34282:3;34267:18;;34144:147;;;;:::o;34297:169::-;34381:11;34415:6;34410:3;34403:19;34455:4;34450:3;34446:14;34431:29;;34297:169;;;;:::o;34472:148::-;34574:11;34611:3;34596:18;;34472:148;;;;:::o;34626:305::-;34666:3;34685:20;34703:1;34685:20;:::i;:::-;34680:25;;34719:20;34737:1;34719:20;:::i;:::-;34714:25;;34873:1;34805:66;34801:74;34798:1;34795:81;34792:107;;;34879:18;;:::i;:::-;34792:107;34923:1;34920;34916:9;34909:16;;34626:305;;;;:::o;34937:185::-;34977:1;34994:20;35012:1;34994:20;:::i;:::-;34989:25;;35028:20;35046:1;35028:20;:::i;:::-;35023:25;;35067:1;35057:35;;35072:18;;:::i;:::-;35057:35;35114:1;35111;35107:9;35102:14;;34937:185;;;;:::o;35128:348::-;35168:7;35191:20;35209:1;35191:20;:::i;:::-;35186:25;;35225:20;35243:1;35225:20;:::i;:::-;35220:25;;35413:1;35345:66;35341:74;35338:1;35335:81;35330:1;35323:9;35316:17;35312:105;35309:131;;;35420:18;;:::i;:::-;35309:131;35468:1;35465;35461:9;35450:20;;35128:348;;;;:::o;35482:191::-;35522:4;35542:20;35560:1;35542:20;:::i;:::-;35537:25;;35576:20;35594:1;35576:20;:::i;:::-;35571:25;;35615:1;35612;35609:8;35606:34;;;35620:18;;:::i;:::-;35606:34;35665:1;35662;35658:9;35650:17;;35482:191;;;;:::o;35679:96::-;35716:7;35745:24;35763:5;35745:24;:::i;:::-;35734:35;;35679:96;;;:::o;35781:90::-;35815:7;35858:5;35851:13;35844:21;35833:32;;35781:90;;;:::o;35877:149::-;35913:7;35953:66;35946:5;35942:78;35931:89;;35877:149;;;:::o;36032:126::-;36069:7;36109:42;36102:5;36098:54;36087:65;;36032:126;;;:::o;36164:77::-;36201:7;36230:5;36219:16;;36164:77;;;:::o;36247:154::-;36331:6;36326:3;36321;36308:30;36393:1;36384:6;36379:3;36375:16;36368:27;36247:154;;;:::o;36407:307::-;36475:1;36485:113;36499:6;36496:1;36493:13;36485:113;;;36584:1;36579:3;36575:11;36569:18;36565:1;36560:3;36556:11;36549:39;36521:2;36518:1;36514:10;36509:15;;36485:113;;;36616:6;36613:1;36610:13;36607:101;;;36696:1;36687:6;36682:3;36678:16;36671:27;36607:101;36456:258;36407:307;;;:::o;36720:320::-;36764:6;36801:1;36795:4;36791:12;36781:22;;36848:1;36842:4;36838:12;36869:18;36859:81;;36925:4;36917:6;36913:17;36903:27;;36859:81;36987:2;36979:6;36976:14;36956:18;36953:38;36950:84;;;37006:18;;:::i;:::-;36950:84;36771:269;36720:320;;;:::o;37046:281::-;37129:27;37151:4;37129:27;:::i;:::-;37121:6;37117:40;37259:6;37247:10;37244:22;37223:18;37211:10;37208:34;37205:62;37202:88;;;37270:18;;:::i;:::-;37202:88;37310:10;37306:2;37299:22;37089:238;37046:281;;:::o;37333:233::-;37372:3;37395:24;37413:5;37395:24;:::i;:::-;37386:33;;37441:66;37434:5;37431:77;37428:103;;;37511:18;;:::i;:::-;37428:103;37558:1;37551:5;37547:13;37540:20;;37333:233;;;:::o;37572:176::-;37604:1;37621:20;37639:1;37621:20;:::i;:::-;37616:25;;37655:20;37673:1;37655:20;:::i;:::-;37650:25;;37694:1;37684:35;;37699:18;;:::i;:::-;37684:35;37740:1;37737;37733:9;37728:14;;37572:176;;;;:::o;37754:180::-;37802:77;37799:1;37792:88;37899:4;37896:1;37889:15;37923:4;37920:1;37913:15;37940:180;37988:77;37985:1;37978:88;38085:4;38082:1;38075:15;38109:4;38106:1;38099:15;38126:180;38174:77;38171:1;38164:88;38271:4;38268:1;38261:15;38295:4;38292:1;38285:15;38312:180;38360:77;38357:1;38350:88;38457:4;38454:1;38447:15;38481:4;38478:1;38471:15;38498:180;38546:77;38543:1;38536:88;38643:4;38640:1;38633:15;38667:4;38664:1;38657:15;38684:117;38793:1;38790;38783:12;38807:117;38916:1;38913;38906:12;38930:117;39039:1;39036;39029:12;39053:117;39162:1;39159;39152:12;39176:117;39285:1;39282;39275:12;39299:117;39408:1;39405;39398:12;39422:102;39463:6;39514:2;39510:7;39505:2;39498:5;39494:14;39490:28;39480:38;;39422:102;;;:::o;39530:237::-;39670:34;39666:1;39658:6;39654:14;39647:58;39739:20;39734:2;39726:6;39722:15;39715:45;39530:237;:::o;39773:225::-;39913:34;39909:1;39901:6;39897:14;39890:58;39982:8;39977:2;39969:6;39965:15;39958:33;39773:225;:::o;40004:178::-;40144:30;40140:1;40132:6;40128:14;40121:54;40004:178;:::o;40188:170::-;40328:22;40324:1;40316:6;40312:14;40305:46;40188:170;:::o;40364:223::-;40504:34;40500:1;40492:6;40488:14;40481:58;40573:6;40568:2;40560:6;40556:15;40549:31;40364:223;:::o;40593:175::-;40733:27;40729:1;40721:6;40717:14;40710:51;40593:175;:::o;40774:231::-;40914:34;40910:1;40902:6;40898:14;40891:58;40983:14;40978:2;40970:6;40966:15;40959:39;40774:231;:::o;41011:243::-;41151:34;41147:1;41139:6;41135:14;41128:58;41220:26;41215:2;41207:6;41203:15;41196:51;41011:243;:::o;41260:229::-;41400:34;41396:1;41388:6;41384:14;41377:58;41469:12;41464:2;41456:6;41452:15;41445:37;41260:229;:::o;41495:228::-;41635:34;41631:1;41623:6;41619:14;41612:58;41704:11;41699:2;41691:6;41687:15;41680:36;41495:228;:::o;41729:182::-;41869:34;41865:1;41857:6;41853:14;41846:58;41729:182;:::o;41917:231::-;42057:34;42053:1;42045:6;42041:14;42034:58;42126:14;42121:2;42113:6;42109:15;42102:39;41917:231;:::o;42154:182::-;42294:34;42290:1;42282:6;42278:14;42271:58;42154:182;:::o;42342:173::-;42482:25;42478:1;42470:6;42466:14;42459:49;42342:173;:::o;42521:228::-;42661:34;42657:1;42649:6;42645:14;42638:58;42730:11;42725:2;42717:6;42713:15;42706:36;42521:228;:::o;42755:234::-;42895:34;42891:1;42883:6;42879:14;42872:58;42964:17;42959:2;42951:6;42947:15;42940:42;42755:234;:::o;42995:220::-;43135:34;43131:1;43123:6;43119:14;43112:58;43204:3;43199:2;43191:6;43187:15;43180:28;42995:220;:::o;43221:114::-;;:::o;43341:170::-;43481:22;43477:1;43469:6;43465:14;43458:46;43341:170;:::o;43517:236::-;43657:34;43653:1;43645:6;43641:14;43634:58;43726:19;43721:2;43713:6;43709:15;43702:44;43517:236;:::o;43759:173::-;43899:25;43895:1;43887:6;43883:14;43876:49;43759:173;:::o;43938:169::-;44078:21;44074:1;44066:6;44062:14;44055:45;43938:169;:::o;44113:122::-;44186:24;44204:5;44186:24;:::i;:::-;44179:5;44176:35;44166:63;;44225:1;44222;44215:12;44166:63;44113:122;:::o;44241:116::-;44311:21;44326:5;44311:21;:::i;:::-;44304:5;44301:32;44291:60;;44347:1;44344;44337:12;44291:60;44241:116;:::o;44363:120::-;44435:23;44452:5;44435:23;:::i;:::-;44428:5;44425:34;44415:62;;44473:1;44470;44463:12;44415:62;44363:120;:::o;44489:122::-;44562:24;44580:5;44562:24;:::i;:::-;44555:5;44552:35;44542:63;;44601:1;44598;44591:12;44542:63;44489:122;:::o

Swarm Source

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