ETH Price: $3,359.40 (-0.68%)
Gas: 10 Gwei

Token

BLOCKBERTS (BLOCK)
 

Overview

Max Total Supply

97 BLOCK

Holders

58

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
dzeeroggs.eth
Balance
1 BLOCK
0x35a8fb13a3af83ad1002aef2a7fa4733f7bc8794
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:
Blockberts

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/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/[email protected]/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

// File: @openzeppelin/[email protected]/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/[email protected]/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/[email protected]/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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721URIStorage.sol



pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: @openzeppelin/[email protected]/token/ERC721/extensions/ERC721Enumerable.sol



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

// File: @openzeppelin/[email protected]/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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/[email protected]/token/ERC20/IERC20.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/[email protected]/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/[email protected]/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: contracts/4_BLOCKBERTS.sol


/*
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - ++ - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
+                                                                                                                      +
+                                                                                                                      +
.    ██████  ██       ██████   ██████ ██   ██ ██████  ███████ ██████  ████████ ███████                                 .
.    ██   ██ ██      ██    ██ ██      ██  ██  ██   ██ ██      ██   ██    ██    ██                                      .
.    ██████  ██      ██    ██ ██      █████   ██████  █████   ██████     ██    ███████                                 .
.    ██   ██ ██      ██    ██ ██      ██  ██  ██   ██ ██      ██   ██    ██         ██                                 .
+    ██████  ███████  ██████   ██████ ██   ██ ██████  ███████ ██   ██    ██    ███████                                 +
+    by drknss and paulmandl.eth                                                                                       +                           +
+ + + - - - - - - - - - - - - - - - - - - - - - - - - - - - ++ - - - - - - - - - - - - - - - - - - - - - - - - - - + + +
*/

pragma solidity ^0.8.0;





contract Blockberts is ERC721, ERC721Enumerable, ERC721URIStorage, Ownable {
    string public PROVENANCE;
    bool public saleIsActive = false;
    string private _baseURIextended;

    bool public isAllowListActive = false;
    bool public isFreeClaimActive = false;
    uint256 public constant MAX_SUPPLY = 10000;
    uint256 public constant MAX_PUBLIC_MINT = 50;
    uint256 public constant PRICE_PER_TOKEN = 0.07 ether;
    uint256 public constant PRICE_PER_TOKEN_WL = 0.03 ether;

    mapping(address => uint8) private _allowList;
    mapping(address => uint8) private _freeClaim;

    constructor() ERC721("BLOCKBERTS", "BLOCK") {
    }

    function setIsFreeClaimActive(bool _isFreeClaimActive) external onlyOwner {
        isFreeClaimActive = _isFreeClaimActive;
    }

    function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) {
        super._burn(tokenId);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721, ERC721URIStorage)
        returns (string memory)
    {
        return super.tokenURI(tokenId);
    }

    function setFreeClaim(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _freeClaim[addresses[i]] = numAllowedToMint;
        }
    }
    function setIsAllowListActive(bool _isAllowListActive) external onlyOwner {
        isAllowListActive = _isAllowListActive;
    }

    function setAllowList(address[] calldata addresses, uint8 numAllowedToMint) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            _allowList[addresses[i]] = numAllowedToMint;
        }
    }
    function append(string memory a, string memory b, string memory c) internal pure returns (string memory) {
        return string(bytes.concat(bytes(a), bytes(b), bytes(c)));
    }
    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len;
        while (_i != 0) {
            k = k-1;
            uint8 temp = (48 + uint8(_i - _i / 10 * 10));
            bytes1 b1 = bytes1(temp);
            bstr[k] = b1;
            _i /= 10;
        }
        return string(bstr);
    }
    function constructTokenURI(uint256 tokenId) internal pure returns (string memory) {
        return append("https://gateway.pinata.cloud/ipfs/QmWzqmcdvj2d76ijfbFPUgpcZuYEEn5aJre5kiH4ndzzBL/BLOCKBERT_", uint2str(tokenId), ".json");
    }
    function numAvailableToMint(address addr) external view returns (uint8) {
        return _allowList[addr];
    }
    function numFreeToClaim(address addr) external view returns (uint8) {
        return _freeClaim[addr];
    }

    function mintAllowList(uint8 numberOfTokens) external payable {
        uint256 ts = totalSupply();
        require(isAllowListActive, "Allow list is not active");
        require(numberOfTokens <= _allowList[msg.sender], "Exceeded max available to purchase");
        require(ts + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(PRICE_PER_TOKEN_WL * numberOfTokens <= msg.value, "Ether value sent is not correct");

        _allowList[msg.sender] -= numberOfTokens;
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 nextTokenId = ts + i;
            _safeMint(msg.sender, nextTokenId);
            _setTokenURI(nextTokenId, constructTokenURI(nextTokenId));
        }
    }
    function mintFreeClaim(uint8 numberOfTokens) external payable {
        uint256 ts = totalSupply();
        require(isFreeClaimActive, "Allow list is not active");
        require(numberOfTokens <= _freeClaim[msg.sender], "Exceeded max available to purchase");
        require(ts + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(0 * numberOfTokens <= msg.value, "Ether value sent is not correct");

        _freeClaim[msg.sender] -= numberOfTokens;
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 nextTokenId = ts + i;
            _safeMint(msg.sender, nextTokenId);
            _setTokenURI(nextTokenId, constructTokenURI(nextTokenId));
        }
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

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

    function setProvenance(string memory provenance) public onlyOwner {
        PROVENANCE = provenance;
    }

    function reserve(uint256 n) public onlyOwner {
      uint supply = totalSupply();
      uint i;
      for (i = 0; i < n; i++) {
          uint256 nextTokenId = supply + i;
          _safeMint(msg.sender, nextTokenId);
          _setTokenURI(nextTokenId, constructTokenURI(nextTokenId));
      }
    }

    function setSaleState(bool newState) public onlyOwner {
        saleIsActive = newState;
    }

    function mint(uint numberOfTokens) public payable {
        uint256 ts = totalSupply();
        require(saleIsActive, "Sale must be active to mint tokens");
        require(numberOfTokens <= MAX_PUBLIC_MINT, "Exceeded max token purchase");
        require(ts + numberOfTokens <= MAX_SUPPLY, "Purchase would exceed max tokens");
        require(PRICE_PER_TOKEN * numberOfTokens <= msg.value, "Ether value sent is not correct");

        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 nextTokenId = ts + i;
            _safeMint(msg.sender, nextTokenId);
            _setTokenURI(nextTokenId, constructTokenURI(nextTokenId));
        }
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
    function withdrawHalf() public onlyOwner {
        uint half = address(this).balance / 2;
        payable(msg.sender).transfer(half);
    }
}

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":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE_PER_TOKEN_WL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"isFreeClaimActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"numberOfTokens","type":"uint8"}],"name":"mintFreeClaim","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAvailableToMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numFreeToClaim","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"n","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setAllowList","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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8","name":"numAllowedToMint","type":"uint8"}],"name":"setFreeClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isFreeClaimActive","type":"bool"}],"name":"setIsFreeClaimActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawHalf","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600d60006101000a81548160ff0219169083151502179055506000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055503480156200006257600080fd5b506040518060400160405280600a81526020017f424c4f434b4245525453000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f424c4f434b0000000000000000000000000000000000000000000000000000008152508160009080519060200190620000e7929190620001f7565b50806001908051906020019062000100929190620001f7565b50505062000123620001176200012960201b60201c565b6200013160201b60201c565b6200030c565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020590620002a7565b90600052602060002090601f01602090048101928262000229576000855562000275565b82601f106200024457805160ff191683800117855562000275565b8280016001018555821562000275579182015b828111156200027457825182559160200191906001019062000257565b5b50905062000284919062000288565b5090565b5b80821115620002a357600081600090555060010162000289565b5090565b60006002820490506001821680620002c057607f821691505b60208210811415620002d757620002d6620002dd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615533806200031c6000396000f3fe6080604052600436106102515760003560e01c8063718bc4af11610139578063c0eaf18c116100b6578063eacddd2e1161007a578063eacddd2e14610897578063eb8d2444146108c2578063ed7ff9db146108ed578063f2fde38b14610916578063fa53cd381461093f578063ffe630b51461096a57610251565b8063c0eaf18c1461079b578063c4e37095146107d8578063c87b56dd14610801578063ddff5b1c1461083e578063e985e9c51461085a57610251565b806395d89b41116100fd57806395d89b41146106c5578063a0712d68146106f0578063a22cb4651461070c578063b88d4fde14610735578063c04a28361461075e57610251565b8063718bc4af146105f4578063819b25ba1461061d5780638295784d14610646578063833b94991461066f5780638da5cb5b1461069a57610251565b806342842e0e116101d25780636373a6b1116101965780636373a6b11461050557806365f130971461053057806367bb44fb1461055b57806370a0823114610584578063715018a6146105c1578063715dfe97146105d857610251565b806342842e0e146104225780634f5e62531461044b5780634f6ccce71461046257806355f804b31461049f5780636352211e146104c857610251565b806323b872dd1161021957806323b872dd1461034f57806329fc6bae146103785780632f745c59146103a357806332cb6b0c146103e05780633ccfd60b1461040b57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613dd6565b610993565b60405161028a919061442d565b60405180910390f35b34801561029f57600080fd5b506102a86109a5565b6040516102b59190614448565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613e79565b610a37565b6040516102f291906143c6565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613d09565b610abc565b005b34801561033057600080fd5b50610339610bd4565b60405161034691906147aa565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613bf3565b610be1565b005b34801561038457600080fd5b5061038d610c41565b60405161039a919061442d565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613d09565b610c54565b6040516103d791906147aa565b60405180910390f35b3480156103ec57600080fd5b506103f5610cf9565b60405161040291906147aa565b60405180910390f35b34801561041757600080fd5b50610420610cff565b005b34801561042e57600080fd5b5061044960048036038101906104449190613bf3565b610dca565b005b34801561045757600080fd5b50610460610dea565b005b34801561046e57600080fd5b5061048960048036038101906104849190613e79565b610ec1565b60405161049691906147aa565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613e30565b610f32565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190613e79565b610fc8565b6040516104fc91906143c6565b60405180910390f35b34801561051157600080fd5b5061051a61107a565b6040516105279190614448565b60405180910390f35b34801561053c57600080fd5b50610545611108565b60405161055291906147aa565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d9190613d49565b61110d565b005b34801561059057600080fd5b506105ab60048036038101906105a69190613b86565b61122f565b6040516105b891906147aa565b60405180910390f35b3480156105cd57600080fd5b506105d66112e7565b005b6105f260048036038101906105ed9190613ea6565b61136f565b005b34801561060057600080fd5b5061061b60048036038101906106169190613da9565b6115ca565b005b34801561062957600080fd5b50610644600480360381019061063f9190613e79565b611663565b005b34801561065257600080fd5b5061066d60048036038101906106689190613d49565b61173b565b005b34801561067b57600080fd5b5061068461185d565b60405161069191906147aa565b60405180910390f35b3480156106a657600080fd5b506106af611868565b6040516106bc91906143c6565b60405180910390f35b3480156106d157600080fd5b506106da611892565b6040516106e79190614448565b60405180910390f35b61070a60048036038101906107059190613e79565b611924565b005b34801561071857600080fd5b50610733600480360381019061072e9190613cc9565b611ab8565b005b34801561074157600080fd5b5061075c60048036038101906107579190613c46565b611c39565b005b34801561076a57600080fd5b5061078560048036038101906107809190613b86565b611c9b565b60405161079291906147c5565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190613b86565b611cf1565b6040516107cf91906147c5565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190613da9565b611d47565b005b34801561080d57600080fd5b5061082860048036038101906108239190613e79565b611de0565b6040516108359190614448565b60405180910390f35b61085860048036038101906108539190613ea6565b611df2565b005b34801561086657600080fd5b50610881600480360381019061087c9190613bb3565b612053565b60405161088e919061442d565b60405180910390f35b3480156108a357600080fd5b506108ac6120e7565b6040516108b991906147aa565b60405180910390f35b3480156108ce57600080fd5b506108d76120f2565b6040516108e4919061442d565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f9190613da9565b612105565b005b34801561092257600080fd5b5061093d60048036038101906109389190613b86565b61219e565b005b34801561094b57600080fd5b50610954612296565b604051610961919061442d565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c9190613e30565b6122a9565b005b600061099e8261233f565b9050919050565b6060600080546109b490614b33565b80601f01602080910402602001604051908101604052809291908181526020018280546109e090614b33565b8015610a2d5780601f10610a0257610100808354040283529160200191610a2d565b820191906000526020600020905b815481529060010190602001808311610a1057829003601f168201915b5050505050905090565b6000610a42826123b9565b610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061464a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac782610fc8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f906146ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b57612425565b73ffffffffffffffffffffffffffffffffffffffff161480610b865750610b8581610b80612425565b612053565b5b610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc9061458a565b60405180910390fd5b610bcf838361242d565b505050565b6000600880549050905090565b610bf2610bec612425565b826124e6565b610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c289061474a565b60405180910390fd5b610c3c8383836125c4565b505050565b600f60009054906101000a900460ff1681565b6000610c5f8361122f565b8210610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c979061446a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610d07612425565b73ffffffffffffffffffffffffffffffffffffffff16610d25611868565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d729061466a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dc6573d6000803e3d6000fd5b5050565b610de583838360405180602001604052806000815250611c39565b505050565b610df2612425565b73ffffffffffffffffffffffffffffffffffffffff16610e10611868565b73ffffffffffffffffffffffffffffffffffffffff1614610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d9061466a565b60405180910390fd5b6000600247610e759190614942565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ebd573d6000803e3d6000fd5b5050565b6000610ecb610bd4565b8210610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f039061476a565b60405180910390fd5b60088281548110610f2057610f1f614ccc565b5b90600052602060002001549050919050565b610f3a612425565b73ffffffffffffffffffffffffffffffffffffffff16610f58611868565b73ffffffffffffffffffffffffffffffffffffffff1614610fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa59061466a565b60405180910390fd5b80600e9080519060200190610fc492919061392f565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611068906145ca565b60405180910390fd5b80915050919050565b600c805461108790614b33565b80601f01602080910402602001604051908101604052809291908181526020018280546110b390614b33565b80156111005780601f106110d557610100808354040283529160200191611100565b820191906000526020600020905b8154815290600101906020018083116110e357829003601f168201915b505050505081565b603281565b611115612425565b73ffffffffffffffffffffffffffffffffffffffff16611133611868565b73ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111809061466a565b60405180910390fd5b60005b838390508110156112295781601160008686858181106111af576111ae614ccc565b5b90506020020160208101906111c49190613b86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550808061122190614b96565b91505061118c565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611297906145aa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112ef612425565b73ffffffffffffffffffffffffffffffffffffffff1661130d611868565b73ffffffffffffffffffffffffffffffffffffffff1614611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a9061466a565b60405180910390fd5b61136d6000612820565b565b6000611379610bd4565b9050600f60019054906101000a900460ff166113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c19061478a565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168260ff16111561145f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114569061472a565b60405180910390fd5b6127108260ff168261147191906148b5565b11156114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a9906144ca565b60405180910390fd5b348260006114c091906149cd565b60ff161115611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb9061454a565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661155f9190614a3c565b92506101000a81548160ff021916908360ff16021790555060005b8260ff168110156115c5576000818361159391906148b5565b905061159f33826128e6565b6115b1816115ac83612904565b61296d565b5080806115bd90614b96565b91505061157a565b505050565b6115d2612425565b73ffffffffffffffffffffffffffffffffffffffff166115f0611868565b73ffffffffffffffffffffffffffffffffffffffff1614611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d9061466a565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b61166b612425565b73ffffffffffffffffffffffffffffffffffffffff16611689611868565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d69061466a565b60405180910390fd5b60006116e9610bd4565b905060005b82811015611736576000818361170491906148b5565b905061171033826128e6565b6117228161171d83612904565b61296d565b50808061172e90614b96565b9150506116ee565b505050565b611743612425565b73ffffffffffffffffffffffffffffffffffffffff16611761611868565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae9061466a565b60405180910390fd5b60005b838390508110156118575781601060008686858181106117dd576117dc614ccc565b5b90506020020160208101906117f29190613b86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550808061184f90614b96565b9150506117ba565b50505050565b66f8b0a10e47000081565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118a190614b33565b80601f01602080910402602001604051908101604052809291908181526020018280546118cd90614b33565b801561191a5780601f106118ef5761010080835404028352916020019161191a565b820191906000526020600020905b8154815290600101906020018083116118fd57829003601f168201915b5050505050905090565b600061192e610bd4565b9050600d60009054906101000a900460ff1661197f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611976906146ca565b60405180910390fd5b60328211156119c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ba9061470a565b60405180910390fd5b61271082826119d291906148b5565b1115611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a906144ca565b60405180910390fd5b348266f8b0a10e470000611a279190614973565b1115611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f9061454a565b60405180910390fd5b60005b82811015611ab35760008183611a8191906148b5565b9050611a8d33826128e6565b611a9f81611a9a83612904565b61296d565b508080611aab90614b96565b915050611a6b565b505050565b611ac0612425565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b259061452a565b60405180910390fd5b8060056000611b3b612425565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611be8612425565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c2d919061442d565b60405180910390a35050565b611c4a611c44612425565b836124e6565b611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809061474a565b60405180910390fd5b611c95848484846129e1565b50505050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d4f612425565b73ffffffffffffffffffffffffffffffffffffffff16611d6d611868565b73ffffffffffffffffffffffffffffffffffffffff1614611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba9061466a565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6060611deb82612a3d565b9050919050565b6000611dfc610bd4565b9050600f60009054906101000a900460ff16611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e449061478a565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168260ff161115611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed99061472a565b60405180910390fd5b6127108260ff1682611ef491906148b5565b1115611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c906144ca565b60405180910390fd5b348260ff16666a94d74f430000611f4c9190614973565b1115611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f849061454a565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611fe89190614a3c565b92506101000a81548160ff021916908360ff16021790555060005b8260ff1681101561204e576000818361201c91906148b5565b905061202833826128e6565b61203a8161203583612904565b61296d565b50808061204690614b96565b915050612003565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b666a94d74f43000081565b600d60009054906101000a900460ff1681565b61210d612425565b73ffffffffffffffffffffffffffffffffffffffff1661212b611868565b73ffffffffffffffffffffffffffffffffffffffff1614612181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121789061466a565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6121a6612425565b73ffffffffffffffffffffffffffffffffffffffff166121c4611868565b73ffffffffffffffffffffffffffffffffffffffff161461221a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122119061466a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561228a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612281906144aa565b60405180910390fd5b61229381612820565b50565b600f60019054906101000a900460ff1681565b6122b1612425565b73ffffffffffffffffffffffffffffffffffffffff166122cf611868565b73ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c9061466a565b60405180910390fd5b80600c908051906020019061233b92919061392f565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123b257506123b182612b8f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124a083610fc8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124f1826123b9565b612530576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125279061456a565b60405180910390fd5b600061253b83610fc8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125aa57508373ffffffffffffffffffffffffffffffffffffffff1661259284610a37565b73ffffffffffffffffffffffffffffffffffffffff16145b806125bb57506125ba8185612053565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125e482610fc8565b73ffffffffffffffffffffffffffffffffffffffff161461263a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126319061468a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a19061450a565b60405180910390fd5b6126b5838383612c71565b6126c060008261242d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127109190614a08565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276791906148b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612900828260405180602001604052806000815250612c81565b5050565b60606129666040518060800160405280605b81526020016154a3605b913961292b84612cdc565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250612e65565b9050919050565b612976826123b9565b6129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac906145ea565b60405180910390fd5b80600a600084815260200190815260200160002090805190602001906129dc92919061392f565b505050565b6129ec8484846125c4565b6129f884848484612e94565b612a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2e9061448a565b60405180910390fd5b50505050565b6060612a48826123b9565b612a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7e9061462a565b60405180910390fd5b6000600a60008481526020019081526020016000208054612aa790614b33565b80601f0160208091040260200160405190810160405280929190818152602001828054612ad390614b33565b8015612b205780601f10612af557610100808354040283529160200191612b20565b820191906000526020600020905b815481529060010190602001808311612b0357829003601f168201915b505050505090506000612b3161302b565b9050600081511415612b47578192505050612b8a565b600082511115612b7c578082604051602001612b649291906143a2565b60405160208183030381529060405292505050612b8a565b612b85846130bd565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c5a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c6a5750612c6982613164565b5b9050919050565b612c7c8383836131ce565b505050565b612c8b83836132e2565b612c986000848484612e94565b612cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cce9061448a565b60405180910390fd5b505050565b60606000821415612d24576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e60565b600082905060005b60008214612d56578080612d3f90614b96565b915050600a82612d4f9190614942565b9150612d2c565b60008167ffffffffffffffff811115612d7257612d71614cfb565b5b6040519080825280601f01601f191660200182016040528015612da45781602001600182028036833780820191505090505b50905060008290505b60008614612e5857600181612dc29190614a08565b90506000600a8088612dd49190614942565b612dde9190614973565b87612de99190614a08565b6030612df5919061490b565b905060008160f81b905080848481518110612e1357612e12614ccc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88612e4f9190614942565b97505050612dad565b819450505050505b919050565b6060838383604051602001612e7c93929190614371565b60405160208183030381529060405290509392505050565b6000612eb58473ffffffffffffffffffffffffffffffffffffffff166134b0565b1561301e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ede612425565b8786866040518563ffffffff1660e01b8152600401612f0094939291906143e1565b602060405180830381600087803b158015612f1a57600080fd5b505af1925050508015612f4b57506040513d601f19601f82011682018060405250810190612f489190613e03565b60015b612fce573d8060008114612f7b576040519150601f19603f3d011682016040523d82523d6000602084013e612f80565b606091505b50600081511415612fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbd9061448a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613023565b600190505b949350505050565b6060600e805461303a90614b33565b80601f016020809104026020016040519081016040528092919081815260200182805461306690614b33565b80156130b35780601f10613088576101008083540402835291602001916130b3565b820191906000526020600020905b81548152906001019060200180831161309657829003601f168201915b5050505050905090565b60606130c8826123b9565b613107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fe906146aa565b60405180910390fd5b600061311161302b565b90506000815111613131576040518060200160405280600081525061315c565b8061313b846134c3565b60405160200161314c9291906143a2565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131d9838383613624565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561321c5761321781613629565b61325b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461325a576132598382613672565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329e57613299816137df565b6132dd565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132dc576132db82826138b0565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613352576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133499061460a565b60405180910390fd5b61335b816123b9565b1561339b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613392906144ea565b60405180910390fd5b6133a760008383612c71565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133f791906148b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060600082141561350b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061361f565b600082905060005b6000821461353d57808061352690614b96565b915050600a826135369190614942565b9150613513565b60008167ffffffffffffffff81111561355957613558614cfb565b5b6040519080825280601f01601f19166020018201604052801561358b5781602001600182028036833780820191505090505b5090505b60008514613618576001826135a49190614a08565b9150600a856135b39190614bdf565b60306135bf91906148b5565b60f81b8183815181106135d5576135d4614ccc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136119190614942565b945061358f565b8093505050505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161367f8461122f565b6136899190614a08565b905060006007600084815260200190815260200160002054905081811461376e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137f39190614a08565b905060006009600084815260200190815260200160002054905060006008838154811061382357613822614ccc565b5b90600052602060002001549050806008838154811061384557613844614ccc565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061389457613893614c9d565b5b6001900381819060005260206000200160009055905550505050565b60006138bb8361122f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461393b90614b33565b90600052602060002090601f01602090048101928261395d57600085556139a4565b82601f1061397657805160ff19168380011785556139a4565b828001600101855582156139a4579182015b828111156139a3578251825591602001919060010190613988565b5b5090506139b191906139b5565b5090565b5b808211156139ce5760008160009055506001016139b6565b5090565b60006139e56139e084614805565b6147e0565b905082815260208101848484011115613a0157613a00614d39565b5b613a0c848285614af1565b509392505050565b6000613a27613a2284614836565b6147e0565b905082815260208101848484011115613a4357613a42614d39565b5b613a4e848285614af1565b509392505050565b600081359050613a658161542f565b92915050565b60008083601f840112613a8157613a80614d2f565b5b8235905067ffffffffffffffff811115613a9e57613a9d614d2a565b5b602083019150836020820283011115613aba57613ab9614d34565b5b9250929050565b600081359050613ad081615446565b92915050565b600081359050613ae58161545d565b92915050565b600081519050613afa8161545d565b92915050565b600082601f830112613b1557613b14614d2f565b5b8135613b258482602086016139d2565b91505092915050565b600082601f830112613b4357613b42614d2f565b5b8135613b53848260208601613a14565b91505092915050565b600081359050613b6b81615474565b92915050565b600081359050613b808161548b565b92915050565b600060208284031215613b9c57613b9b614d43565b5b6000613baa84828501613a56565b91505092915050565b60008060408385031215613bca57613bc9614d43565b5b6000613bd885828601613a56565b9250506020613be985828601613a56565b9150509250929050565b600080600060608486031215613c0c57613c0b614d43565b5b6000613c1a86828701613a56565b9350506020613c2b86828701613a56565b9250506040613c3c86828701613b5c565b9150509250925092565b60008060008060808587031215613c6057613c5f614d43565b5b6000613c6e87828801613a56565b9450506020613c7f87828801613a56565b9350506040613c9087828801613b5c565b925050606085013567ffffffffffffffff811115613cb157613cb0614d3e565b5b613cbd87828801613b00565b91505092959194509250565b60008060408385031215613ce057613cdf614d43565b5b6000613cee85828601613a56565b9250506020613cff85828601613ac1565b9150509250929050565b60008060408385031215613d2057613d1f614d43565b5b6000613d2e85828601613a56565b9250506020613d3f85828601613b5c565b9150509250929050565b600080600060408486031215613d6257613d61614d43565b5b600084013567ffffffffffffffff811115613d8057613d7f614d3e565b5b613d8c86828701613a6b565b93509350506020613d9f86828701613b71565b9150509250925092565b600060208284031215613dbf57613dbe614d43565b5b6000613dcd84828501613ac1565b91505092915050565b600060208284031215613dec57613deb614d43565b5b6000613dfa84828501613ad6565b91505092915050565b600060208284031215613e1957613e18614d43565b5b6000613e2784828501613aeb565b91505092915050565b600060208284031215613e4657613e45614d43565b5b600082013567ffffffffffffffff811115613e6457613e63614d3e565b5b613e7084828501613b2e565b91505092915050565b600060208284031215613e8f57613e8e614d43565b5b6000613e9d84828501613b5c565b91505092915050565b600060208284031215613ebc57613ebb614d43565b5b6000613eca84828501613b71565b91505092915050565b613edc81614a70565b82525050565b613eeb81614a82565b82525050565b6000613efc82614867565b613f06818561487d565b9350613f16818560208601614b00565b613f1f81614d48565b840191505092915050565b6000613f3582614867565b613f3f818561488e565b9350613f4f818560208601614b00565b80840191505092915050565b6000613f6682614872565b613f708185614899565b9350613f80818560208601614b00565b613f8981614d48565b840191505092915050565b6000613f9f82614872565b613fa981856148aa565b9350613fb9818560208601614b00565b80840191505092915050565b6000613fd2602b83614899565b9150613fdd82614d59565b604082019050919050565b6000613ff5603283614899565b915061400082614da8565b604082019050919050565b6000614018602683614899565b915061402382614df7565b604082019050919050565b600061403b602083614899565b915061404682614e46565b602082019050919050565b600061405e601c83614899565b915061406982614e6f565b602082019050919050565b6000614081602483614899565b915061408c82614e98565b604082019050919050565b60006140a4601983614899565b91506140af82614ee7565b602082019050919050565b60006140c7601f83614899565b91506140d282614f10565b602082019050919050565b60006140ea602c83614899565b91506140f582614f39565b604082019050919050565b600061410d603883614899565b915061411882614f88565b604082019050919050565b6000614130602a83614899565b915061413b82614fd7565b604082019050919050565b6000614153602983614899565b915061415e82615026565b604082019050919050565b6000614176602e83614899565b915061418182615075565b604082019050919050565b6000614199602083614899565b91506141a4826150c4565b602082019050919050565b60006141bc603183614899565b91506141c7826150ed565b604082019050919050565b60006141df602c83614899565b91506141ea8261513c565b604082019050919050565b6000614202602083614899565b915061420d8261518b565b602082019050919050565b6000614225602983614899565b9150614230826151b4565b604082019050919050565b6000614248602f83614899565b915061425382615203565b604082019050919050565b600061426b602283614899565b915061427682615252565b604082019050919050565b600061428e602183614899565b9150614299826152a1565b604082019050919050565b60006142b1601b83614899565b91506142bc826152f0565b602082019050919050565b60006142d4602283614899565b91506142df82615319565b604082019050919050565b60006142f7603183614899565b915061430282615368565b604082019050919050565b600061431a602c83614899565b9150614325826153b7565b604082019050919050565b600061433d601883614899565b915061434882615406565b602082019050919050565b61435c81614ada565b82525050565b61436b81614ae4565b82525050565b600061437d8286613f2a565b91506143898285613f2a565b91506143958284613f2a565b9150819050949350505050565b60006143ae8285613f94565b91506143ba8284613f94565b91508190509392505050565b60006020820190506143db6000830184613ed3565b92915050565b60006080820190506143f66000830187613ed3565b6144036020830186613ed3565b6144106040830185614353565b81810360608301526144228184613ef1565b905095945050505050565b60006020820190506144426000830184613ee2565b92915050565b600060208201905081810360008301526144628184613f5b565b905092915050565b6000602082019050818103600083015261448381613fc5565b9050919050565b600060208201905081810360008301526144a381613fe8565b9050919050565b600060208201905081810360008301526144c38161400b565b9050919050565b600060208201905081810360008301526144e38161402e565b9050919050565b6000602082019050818103600083015261450381614051565b9050919050565b6000602082019050818103600083015261452381614074565b9050919050565b6000602082019050818103600083015261454381614097565b9050919050565b60006020820190508181036000830152614563816140ba565b9050919050565b60006020820190508181036000830152614583816140dd565b9050919050565b600060208201905081810360008301526145a381614100565b9050919050565b600060208201905081810360008301526145c381614123565b9050919050565b600060208201905081810360008301526145e381614146565b9050919050565b6000602082019050818103600083015261460381614169565b9050919050565b600060208201905081810360008301526146238161418c565b9050919050565b60006020820190508181036000830152614643816141af565b9050919050565b60006020820190508181036000830152614663816141d2565b9050919050565b60006020820190508181036000830152614683816141f5565b9050919050565b600060208201905081810360008301526146a381614218565b9050919050565b600060208201905081810360008301526146c38161423b565b9050919050565b600060208201905081810360008301526146e38161425e565b9050919050565b6000602082019050818103600083015261470381614281565b9050919050565b60006020820190508181036000830152614723816142a4565b9050919050565b60006020820190508181036000830152614743816142c7565b9050919050565b60006020820190508181036000830152614763816142ea565b9050919050565b600060208201905081810360008301526147838161430d565b9050919050565b600060208201905081810360008301526147a381614330565b9050919050565b60006020820190506147bf6000830184614353565b92915050565b60006020820190506147da6000830184614362565b92915050565b60006147ea6147fb565b90506147f68282614b65565b919050565b6000604051905090565b600067ffffffffffffffff8211156148205761481f614cfb565b5b61482982614d48565b9050602081019050919050565b600067ffffffffffffffff82111561485157614850614cfb565b5b61485a82614d48565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006148c082614ada565b91506148cb83614ada565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614900576148ff614c10565b5b828201905092915050565b600061491682614ae4565b915061492183614ae4565b92508260ff0382111561493757614936614c10565b5b828201905092915050565b600061494d82614ada565b915061495883614ada565b92508261496857614967614c3f565b5b828204905092915050565b600061497e82614ada565b915061498983614ada565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149c2576149c1614c10565b5b828202905092915050565b60006149d882614ae4565b91506149e383614ae4565b92508160ff04831182151516156149fd576149fc614c10565b5b828202905092915050565b6000614a1382614ada565b9150614a1e83614ada565b925082821015614a3157614a30614c10565b5b828203905092915050565b6000614a4782614ae4565b9150614a5283614ae4565b925082821015614a6557614a64614c10565b5b828203905092915050565b6000614a7b82614aba565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614b1e578082015181840152602081019050614b03565b83811115614b2d576000848401525b50505050565b60006002820490506001821680614b4b57607f821691505b60208210811415614b5f57614b5e614c6e565b5b50919050565b614b6e82614d48565b810181811067ffffffffffffffff82111715614b8d57614b8c614cfb565b5b80604052505050565b6000614ba182614ada565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bd457614bd3614c10565b5b600182019050919050565b6000614bea82614ada565b9150614bf583614ada565b925082614c0557614c04614c3f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b61543881614a70565b811461544357600080fd5b50565b61544f81614a82565b811461545a57600080fd5b50565b61546681614a8e565b811461547157600080fd5b50565b61547d81614ada565b811461548857600080fd5b50565b61549481614ae4565b811461549f57600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d577a716d6364766a32643736696a66624650556770635a755945456e35614a7265356b6948346e647a7a424c2f424c4f434b424552545fa264697066735822122059d6d2d32ceaa2c9d7d42f555761ba062f5cffd09d900b24e1ed1f965450929c64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102515760003560e01c8063718bc4af11610139578063c0eaf18c116100b6578063eacddd2e1161007a578063eacddd2e14610897578063eb8d2444146108c2578063ed7ff9db146108ed578063f2fde38b14610916578063fa53cd381461093f578063ffe630b51461096a57610251565b8063c0eaf18c1461079b578063c4e37095146107d8578063c87b56dd14610801578063ddff5b1c1461083e578063e985e9c51461085a57610251565b806395d89b41116100fd57806395d89b41146106c5578063a0712d68146106f0578063a22cb4651461070c578063b88d4fde14610735578063c04a28361461075e57610251565b8063718bc4af146105f4578063819b25ba1461061d5780638295784d14610646578063833b94991461066f5780638da5cb5b1461069a57610251565b806342842e0e116101d25780636373a6b1116101965780636373a6b11461050557806365f130971461053057806367bb44fb1461055b57806370a0823114610584578063715018a6146105c1578063715dfe97146105d857610251565b806342842e0e146104225780634f5e62531461044b5780634f6ccce71461046257806355f804b31461049f5780636352211e146104c857610251565b806323b872dd1161021957806323b872dd1461034f57806329fc6bae146103785780632f745c59146103a357806332cb6b0c146103e05780633ccfd60b1461040b57610251565b806301ffc9a71461025657806306fdde0314610293578063081812fc146102be578063095ea7b3146102fb57806318160ddd14610324575b600080fd5b34801561026257600080fd5b5061027d60048036038101906102789190613dd6565b610993565b60405161028a919061442d565b60405180910390f35b34801561029f57600080fd5b506102a86109a5565b6040516102b59190614448565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190613e79565b610a37565b6040516102f291906143c6565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190613d09565b610abc565b005b34801561033057600080fd5b50610339610bd4565b60405161034691906147aa565b60405180910390f35b34801561035b57600080fd5b5061037660048036038101906103719190613bf3565b610be1565b005b34801561038457600080fd5b5061038d610c41565b60405161039a919061442d565b60405180910390f35b3480156103af57600080fd5b506103ca60048036038101906103c59190613d09565b610c54565b6040516103d791906147aa565b60405180910390f35b3480156103ec57600080fd5b506103f5610cf9565b60405161040291906147aa565b60405180910390f35b34801561041757600080fd5b50610420610cff565b005b34801561042e57600080fd5b5061044960048036038101906104449190613bf3565b610dca565b005b34801561045757600080fd5b50610460610dea565b005b34801561046e57600080fd5b5061048960048036038101906104849190613e79565b610ec1565b60405161049691906147aa565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190613e30565b610f32565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190613e79565b610fc8565b6040516104fc91906143c6565b60405180910390f35b34801561051157600080fd5b5061051a61107a565b6040516105279190614448565b60405180910390f35b34801561053c57600080fd5b50610545611108565b60405161055291906147aa565b60405180910390f35b34801561056757600080fd5b50610582600480360381019061057d9190613d49565b61110d565b005b34801561059057600080fd5b506105ab60048036038101906105a69190613b86565b61122f565b6040516105b891906147aa565b60405180910390f35b3480156105cd57600080fd5b506105d66112e7565b005b6105f260048036038101906105ed9190613ea6565b61136f565b005b34801561060057600080fd5b5061061b60048036038101906106169190613da9565b6115ca565b005b34801561062957600080fd5b50610644600480360381019061063f9190613e79565b611663565b005b34801561065257600080fd5b5061066d60048036038101906106689190613d49565b61173b565b005b34801561067b57600080fd5b5061068461185d565b60405161069191906147aa565b60405180910390f35b3480156106a657600080fd5b506106af611868565b6040516106bc91906143c6565b60405180910390f35b3480156106d157600080fd5b506106da611892565b6040516106e79190614448565b60405180910390f35b61070a60048036038101906107059190613e79565b611924565b005b34801561071857600080fd5b50610733600480360381019061072e9190613cc9565b611ab8565b005b34801561074157600080fd5b5061075c60048036038101906107579190613c46565b611c39565b005b34801561076a57600080fd5b5061078560048036038101906107809190613b86565b611c9b565b60405161079291906147c5565b60405180910390f35b3480156107a757600080fd5b506107c260048036038101906107bd9190613b86565b611cf1565b6040516107cf91906147c5565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190613da9565b611d47565b005b34801561080d57600080fd5b5061082860048036038101906108239190613e79565b611de0565b6040516108359190614448565b60405180910390f35b61085860048036038101906108539190613ea6565b611df2565b005b34801561086657600080fd5b50610881600480360381019061087c9190613bb3565b612053565b60405161088e919061442d565b60405180910390f35b3480156108a357600080fd5b506108ac6120e7565b6040516108b991906147aa565b60405180910390f35b3480156108ce57600080fd5b506108d76120f2565b6040516108e4919061442d565b60405180910390f35b3480156108f957600080fd5b50610914600480360381019061090f9190613da9565b612105565b005b34801561092257600080fd5b5061093d60048036038101906109389190613b86565b61219e565b005b34801561094b57600080fd5b50610954612296565b604051610961919061442d565b60405180910390f35b34801561097657600080fd5b50610991600480360381019061098c9190613e30565b6122a9565b005b600061099e8261233f565b9050919050565b6060600080546109b490614b33565b80601f01602080910402602001604051908101604052809291908181526020018280546109e090614b33565b8015610a2d5780601f10610a0257610100808354040283529160200191610a2d565b820191906000526020600020905b815481529060010190602001808311610a1057829003601f168201915b5050505050905090565b6000610a42826123b9565b610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a789061464a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac782610fc8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2f906146ea565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b57612425565b73ffffffffffffffffffffffffffffffffffffffff161480610b865750610b8581610b80612425565b612053565b5b610bc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbc9061458a565b60405180910390fd5b610bcf838361242d565b505050565b6000600880549050905090565b610bf2610bec612425565b826124e6565b610c31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c289061474a565b60405180910390fd5b610c3c8383836125c4565b505050565b600f60009054906101000a900460ff1681565b6000610c5f8361122f565b8210610ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c979061446a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61271081565b610d07612425565b73ffffffffffffffffffffffffffffffffffffffff16610d25611868565b73ffffffffffffffffffffffffffffffffffffffff1614610d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d729061466a565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610dc6573d6000803e3d6000fd5b5050565b610de583838360405180602001604052806000815250611c39565b505050565b610df2612425565b73ffffffffffffffffffffffffffffffffffffffff16610e10611868565b73ffffffffffffffffffffffffffffffffffffffff1614610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d9061466a565b60405180910390fd5b6000600247610e759190614942565b90503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610ebd573d6000803e3d6000fd5b5050565b6000610ecb610bd4565b8210610f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f039061476a565b60405180910390fd5b60088281548110610f2057610f1f614ccc565b5b90600052602060002001549050919050565b610f3a612425565b73ffffffffffffffffffffffffffffffffffffffff16610f58611868565b73ffffffffffffffffffffffffffffffffffffffff1614610fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa59061466a565b60405180910390fd5b80600e9080519060200190610fc492919061392f565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611071576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611068906145ca565b60405180910390fd5b80915050919050565b600c805461108790614b33565b80601f01602080910402602001604051908101604052809291908181526020018280546110b390614b33565b80156111005780601f106110d557610100808354040283529160200191611100565b820191906000526020600020905b8154815290600101906020018083116110e357829003601f168201915b505050505081565b603281565b611115612425565b73ffffffffffffffffffffffffffffffffffffffff16611133611868565b73ffffffffffffffffffffffffffffffffffffffff1614611189576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111809061466a565b60405180910390fd5b60005b838390508110156112295781601160008686858181106111af576111ae614ccc565b5b90506020020160208101906111c49190613b86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550808061122190614b96565b91505061118c565b50505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611297906145aa565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112ef612425565b73ffffffffffffffffffffffffffffffffffffffff1661130d611868565b73ffffffffffffffffffffffffffffffffffffffff1614611363576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135a9061466a565b60405180910390fd5b61136d6000612820565b565b6000611379610bd4565b9050600f60019054906101000a900460ff166113ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c19061478a565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168260ff16111561145f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114569061472a565b60405180910390fd5b6127108260ff168261147191906148b5565b11156114b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a9906144ca565b60405180910390fd5b348260006114c091906149cd565b60ff161115611504576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fb9061454a565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff1661155f9190614a3c565b92506101000a81548160ff021916908360ff16021790555060005b8260ff168110156115c5576000818361159391906148b5565b905061159f33826128e6565b6115b1816115ac83612904565b61296d565b5080806115bd90614b96565b91505061157a565b505050565b6115d2612425565b73ffffffffffffffffffffffffffffffffffffffff166115f0611868565b73ffffffffffffffffffffffffffffffffffffffff1614611646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163d9061466a565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b61166b612425565b73ffffffffffffffffffffffffffffffffffffffff16611689611868565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d69061466a565b60405180910390fd5b60006116e9610bd4565b905060005b82811015611736576000818361170491906148b5565b905061171033826128e6565b6117228161171d83612904565b61296d565b50808061172e90614b96565b9150506116ee565b505050565b611743612425565b73ffffffffffffffffffffffffffffffffffffffff16611761611868565b73ffffffffffffffffffffffffffffffffffffffff16146117b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ae9061466a565b60405180910390fd5b60005b838390508110156118575781601060008686858181106117dd576117dc614ccc565b5b90506020020160208101906117f29190613b86565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550808061184f90614b96565b9150506117ba565b50505050565b66f8b0a10e47000081565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546118a190614b33565b80601f01602080910402602001604051908101604052809291908181526020018280546118cd90614b33565b801561191a5780601f106118ef5761010080835404028352916020019161191a565b820191906000526020600020905b8154815290600101906020018083116118fd57829003601f168201915b5050505050905090565b600061192e610bd4565b9050600d60009054906101000a900460ff1661197f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611976906146ca565b60405180910390fd5b60328211156119c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ba9061470a565b60405180910390fd5b61271082826119d291906148b5565b1115611a13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0a906144ca565b60405180910390fd5b348266f8b0a10e470000611a279190614973565b1115611a68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5f9061454a565b60405180910390fd5b60005b82811015611ab35760008183611a8191906148b5565b9050611a8d33826128e6565b611a9f81611a9a83612904565b61296d565b508080611aab90614b96565b915050611a6b565b505050565b611ac0612425565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b259061452a565b60405180910390fd5b8060056000611b3b612425565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611be8612425565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c2d919061442d565b60405180910390a35050565b611c4a611c44612425565b836124e6565b611c89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c809061474a565b60405180910390fd5b611c95848484846129e1565b50505050565b6000601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611d4f612425565b73ffffffffffffffffffffffffffffffffffffffff16611d6d611868565b73ffffffffffffffffffffffffffffffffffffffff1614611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba9061466a565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6060611deb82612a3d565b9050919050565b6000611dfc610bd4565b9050600f60009054906101000a900460ff16611e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e449061478a565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff168260ff161115611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed99061472a565b60405180910390fd5b6127108260ff1682611ef491906148b5565b1115611f35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2c906144ca565b60405180910390fd5b348260ff16666a94d74f430000611f4c9190614973565b1115611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f849061454a565b60405180910390fd5b81601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282829054906101000a900460ff16611fe89190614a3c565b92506101000a81548160ff021916908360ff16021790555060005b8260ff1681101561204e576000818361201c91906148b5565b905061202833826128e6565b61203a8161203583612904565b61296d565b50808061204690614b96565b915050612003565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b666a94d74f43000081565b600d60009054906101000a900460ff1681565b61210d612425565b73ffffffffffffffffffffffffffffffffffffffff1661212b611868565b73ffffffffffffffffffffffffffffffffffffffff1614612181576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121789061466a565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6121a6612425565b73ffffffffffffffffffffffffffffffffffffffff166121c4611868565b73ffffffffffffffffffffffffffffffffffffffff161461221a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122119061466a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561228a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612281906144aa565b60405180910390fd5b61229381612820565b50565b600f60019054906101000a900460ff1681565b6122b1612425565b73ffffffffffffffffffffffffffffffffffffffff166122cf611868565b73ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c9061466a565b60405180910390fd5b80600c908051906020019061233b92919061392f565b5050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806123b257506123b182612b8f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166124a083610fc8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006124f1826123b9565b612530576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125279061456a565b60405180910390fd5b600061253b83610fc8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806125aa57508373ffffffffffffffffffffffffffffffffffffffff1661259284610a37565b73ffffffffffffffffffffffffffffffffffffffff16145b806125bb57506125ba8185612053565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166125e482610fc8565b73ffffffffffffffffffffffffffffffffffffffff161461263a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126319061468a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156126aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a19061450a565b60405180910390fd5b6126b5838383612c71565b6126c060008261242d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127109190614a08565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461276791906148b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612900828260405180602001604052806000815250612c81565b5050565b60606129666040518060800160405280605b81526020016154a3605b913961292b84612cdc565b6040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250612e65565b9050919050565b612976826123b9565b6129b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ac906145ea565b60405180910390fd5b80600a600084815260200190815260200160002090805190602001906129dc92919061392f565b505050565b6129ec8484846125c4565b6129f884848484612e94565b612a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2e9061448a565b60405180910390fd5b50505050565b6060612a48826123b9565b612a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7e9061462a565b60405180910390fd5b6000600a60008481526020019081526020016000208054612aa790614b33565b80601f0160208091040260200160405190810160405280929190818152602001828054612ad390614b33565b8015612b205780601f10612af557610100808354040283529160200191612b20565b820191906000526020600020905b815481529060010190602001808311612b0357829003601f168201915b505050505090506000612b3161302b565b9050600081511415612b47578192505050612b8a565b600082511115612b7c578082604051602001612b649291906143a2565b60405160208183030381529060405292505050612b8a565b612b85846130bd565b925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612c5a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612c6a5750612c6982613164565b5b9050919050565b612c7c8383836131ce565b505050565b612c8b83836132e2565b612c986000848484612e94565b612cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cce9061448a565b60405180910390fd5b505050565b60606000821415612d24576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e60565b600082905060005b60008214612d56578080612d3f90614b96565b915050600a82612d4f9190614942565b9150612d2c565b60008167ffffffffffffffff811115612d7257612d71614cfb565b5b6040519080825280601f01601f191660200182016040528015612da45781602001600182028036833780820191505090505b50905060008290505b60008614612e5857600181612dc29190614a08565b90506000600a8088612dd49190614942565b612dde9190614973565b87612de99190614a08565b6030612df5919061490b565b905060008160f81b905080848481518110612e1357612e12614ccc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a88612e4f9190614942565b97505050612dad565b819450505050505b919050565b6060838383604051602001612e7c93929190614371565b60405160208183030381529060405290509392505050565b6000612eb58473ffffffffffffffffffffffffffffffffffffffff166134b0565b1561301e578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ede612425565b8786866040518563ffffffff1660e01b8152600401612f0094939291906143e1565b602060405180830381600087803b158015612f1a57600080fd5b505af1925050508015612f4b57506040513d601f19601f82011682018060405250810190612f489190613e03565b60015b612fce573d8060008114612f7b576040519150601f19603f3d011682016040523d82523d6000602084013e612f80565b606091505b50600081511415612fc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbd9061448a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613023565b600190505b949350505050565b6060600e805461303a90614b33565b80601f016020809104026020016040519081016040528092919081815260200182805461306690614b33565b80156130b35780601f10613088576101008083540402835291602001916130b3565b820191906000526020600020905b81548152906001019060200180831161309657829003601f168201915b5050505050905090565b60606130c8826123b9565b613107576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130fe906146aa565b60405180910390fd5b600061311161302b565b90506000815111613131576040518060200160405280600081525061315c565b8061313b846134c3565b60405160200161314c9291906143a2565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131d9838383613624565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561321c5761321781613629565b61325b565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461325a576132598382613672565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329e57613299816137df565b6132dd565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132dc576132db82826138b0565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613352576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133499061460a565b60405180910390fd5b61335b816123b9565b1561339b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613392906144ea565b60405180910390fd5b6133a760008383612c71565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133f791906148b5565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6060600082141561350b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061361f565b600082905060005b6000821461353d57808061352690614b96565b915050600a826135369190614942565b9150613513565b60008167ffffffffffffffff81111561355957613558614cfb565b5b6040519080825280601f01601f19166020018201604052801561358b5781602001600182028036833780820191505090505b5090505b60008514613618576001826135a49190614a08565b9150600a856135b39190614bdf565b60306135bf91906148b5565b60f81b8183815181106135d5576135d4614ccc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136119190614942565b945061358f565b8093505050505b919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161367f8461122f565b6136899190614a08565b905060006007600084815260200190815260200160002054905081811461376e576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137f39190614a08565b905060006009600084815260200190815260200160002054905060006008838154811061382357613822614ccc565b5b90600052602060002001549050806008838154811061384557613844614ccc565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061389457613893614c9d565b5b6001900381819060005260206000200160009055905550505050565b60006138bb8361122f565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b82805461393b90614b33565b90600052602060002090601f01602090048101928261395d57600085556139a4565b82601f1061397657805160ff19168380011785556139a4565b828001600101855582156139a4579182015b828111156139a3578251825591602001919060010190613988565b5b5090506139b191906139b5565b5090565b5b808211156139ce5760008160009055506001016139b6565b5090565b60006139e56139e084614805565b6147e0565b905082815260208101848484011115613a0157613a00614d39565b5b613a0c848285614af1565b509392505050565b6000613a27613a2284614836565b6147e0565b905082815260208101848484011115613a4357613a42614d39565b5b613a4e848285614af1565b509392505050565b600081359050613a658161542f565b92915050565b60008083601f840112613a8157613a80614d2f565b5b8235905067ffffffffffffffff811115613a9e57613a9d614d2a565b5b602083019150836020820283011115613aba57613ab9614d34565b5b9250929050565b600081359050613ad081615446565b92915050565b600081359050613ae58161545d565b92915050565b600081519050613afa8161545d565b92915050565b600082601f830112613b1557613b14614d2f565b5b8135613b258482602086016139d2565b91505092915050565b600082601f830112613b4357613b42614d2f565b5b8135613b53848260208601613a14565b91505092915050565b600081359050613b6b81615474565b92915050565b600081359050613b808161548b565b92915050565b600060208284031215613b9c57613b9b614d43565b5b6000613baa84828501613a56565b91505092915050565b60008060408385031215613bca57613bc9614d43565b5b6000613bd885828601613a56565b9250506020613be985828601613a56565b9150509250929050565b600080600060608486031215613c0c57613c0b614d43565b5b6000613c1a86828701613a56565b9350506020613c2b86828701613a56565b9250506040613c3c86828701613b5c565b9150509250925092565b60008060008060808587031215613c6057613c5f614d43565b5b6000613c6e87828801613a56565b9450506020613c7f87828801613a56565b9350506040613c9087828801613b5c565b925050606085013567ffffffffffffffff811115613cb157613cb0614d3e565b5b613cbd87828801613b00565b91505092959194509250565b60008060408385031215613ce057613cdf614d43565b5b6000613cee85828601613a56565b9250506020613cff85828601613ac1565b9150509250929050565b60008060408385031215613d2057613d1f614d43565b5b6000613d2e85828601613a56565b9250506020613d3f85828601613b5c565b9150509250929050565b600080600060408486031215613d6257613d61614d43565b5b600084013567ffffffffffffffff811115613d8057613d7f614d3e565b5b613d8c86828701613a6b565b93509350506020613d9f86828701613b71565b9150509250925092565b600060208284031215613dbf57613dbe614d43565b5b6000613dcd84828501613ac1565b91505092915050565b600060208284031215613dec57613deb614d43565b5b6000613dfa84828501613ad6565b91505092915050565b600060208284031215613e1957613e18614d43565b5b6000613e2784828501613aeb565b91505092915050565b600060208284031215613e4657613e45614d43565b5b600082013567ffffffffffffffff811115613e6457613e63614d3e565b5b613e7084828501613b2e565b91505092915050565b600060208284031215613e8f57613e8e614d43565b5b6000613e9d84828501613b5c565b91505092915050565b600060208284031215613ebc57613ebb614d43565b5b6000613eca84828501613b71565b91505092915050565b613edc81614a70565b82525050565b613eeb81614a82565b82525050565b6000613efc82614867565b613f06818561487d565b9350613f16818560208601614b00565b613f1f81614d48565b840191505092915050565b6000613f3582614867565b613f3f818561488e565b9350613f4f818560208601614b00565b80840191505092915050565b6000613f6682614872565b613f708185614899565b9350613f80818560208601614b00565b613f8981614d48565b840191505092915050565b6000613f9f82614872565b613fa981856148aa565b9350613fb9818560208601614b00565b80840191505092915050565b6000613fd2602b83614899565b9150613fdd82614d59565b604082019050919050565b6000613ff5603283614899565b915061400082614da8565b604082019050919050565b6000614018602683614899565b915061402382614df7565b604082019050919050565b600061403b602083614899565b915061404682614e46565b602082019050919050565b600061405e601c83614899565b915061406982614e6f565b602082019050919050565b6000614081602483614899565b915061408c82614e98565b604082019050919050565b60006140a4601983614899565b91506140af82614ee7565b602082019050919050565b60006140c7601f83614899565b91506140d282614f10565b602082019050919050565b60006140ea602c83614899565b91506140f582614f39565b604082019050919050565b600061410d603883614899565b915061411882614f88565b604082019050919050565b6000614130602a83614899565b915061413b82614fd7565b604082019050919050565b6000614153602983614899565b915061415e82615026565b604082019050919050565b6000614176602e83614899565b915061418182615075565b604082019050919050565b6000614199602083614899565b91506141a4826150c4565b602082019050919050565b60006141bc603183614899565b91506141c7826150ed565b604082019050919050565b60006141df602c83614899565b91506141ea8261513c565b604082019050919050565b6000614202602083614899565b915061420d8261518b565b602082019050919050565b6000614225602983614899565b9150614230826151b4565b604082019050919050565b6000614248602f83614899565b915061425382615203565b604082019050919050565b600061426b602283614899565b915061427682615252565b604082019050919050565b600061428e602183614899565b9150614299826152a1565b604082019050919050565b60006142b1601b83614899565b91506142bc826152f0565b602082019050919050565b60006142d4602283614899565b91506142df82615319565b604082019050919050565b60006142f7603183614899565b915061430282615368565b604082019050919050565b600061431a602c83614899565b9150614325826153b7565b604082019050919050565b600061433d601883614899565b915061434882615406565b602082019050919050565b61435c81614ada565b82525050565b61436b81614ae4565b82525050565b600061437d8286613f2a565b91506143898285613f2a565b91506143958284613f2a565b9150819050949350505050565b60006143ae8285613f94565b91506143ba8284613f94565b91508190509392505050565b60006020820190506143db6000830184613ed3565b92915050565b60006080820190506143f66000830187613ed3565b6144036020830186613ed3565b6144106040830185614353565b81810360608301526144228184613ef1565b905095945050505050565b60006020820190506144426000830184613ee2565b92915050565b600060208201905081810360008301526144628184613f5b565b905092915050565b6000602082019050818103600083015261448381613fc5565b9050919050565b600060208201905081810360008301526144a381613fe8565b9050919050565b600060208201905081810360008301526144c38161400b565b9050919050565b600060208201905081810360008301526144e38161402e565b9050919050565b6000602082019050818103600083015261450381614051565b9050919050565b6000602082019050818103600083015261452381614074565b9050919050565b6000602082019050818103600083015261454381614097565b9050919050565b60006020820190508181036000830152614563816140ba565b9050919050565b60006020820190508181036000830152614583816140dd565b9050919050565b600060208201905081810360008301526145a381614100565b9050919050565b600060208201905081810360008301526145c381614123565b9050919050565b600060208201905081810360008301526145e381614146565b9050919050565b6000602082019050818103600083015261460381614169565b9050919050565b600060208201905081810360008301526146238161418c565b9050919050565b60006020820190508181036000830152614643816141af565b9050919050565b60006020820190508181036000830152614663816141d2565b9050919050565b60006020820190508181036000830152614683816141f5565b9050919050565b600060208201905081810360008301526146a381614218565b9050919050565b600060208201905081810360008301526146c38161423b565b9050919050565b600060208201905081810360008301526146e38161425e565b9050919050565b6000602082019050818103600083015261470381614281565b9050919050565b60006020820190508181036000830152614723816142a4565b9050919050565b60006020820190508181036000830152614743816142c7565b9050919050565b60006020820190508181036000830152614763816142ea565b9050919050565b600060208201905081810360008301526147838161430d565b9050919050565b600060208201905081810360008301526147a381614330565b9050919050565b60006020820190506147bf6000830184614353565b92915050565b60006020820190506147da6000830184614362565b92915050565b60006147ea6147fb565b90506147f68282614b65565b919050565b6000604051905090565b600067ffffffffffffffff8211156148205761481f614cfb565b5b61482982614d48565b9050602081019050919050565b600067ffffffffffffffff82111561485157614850614cfb565b5b61485a82614d48565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006148c082614ada565b91506148cb83614ada565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614900576148ff614c10565b5b828201905092915050565b600061491682614ae4565b915061492183614ae4565b92508260ff0382111561493757614936614c10565b5b828201905092915050565b600061494d82614ada565b915061495883614ada565b92508261496857614967614c3f565b5b828204905092915050565b600061497e82614ada565b915061498983614ada565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149c2576149c1614c10565b5b828202905092915050565b60006149d882614ae4565b91506149e383614ae4565b92508160ff04831182151516156149fd576149fc614c10565b5b828202905092915050565b6000614a1382614ada565b9150614a1e83614ada565b925082821015614a3157614a30614c10565b5b828203905092915050565b6000614a4782614ae4565b9150614a5283614ae4565b925082821015614a6557614a64614c10565b5b828203905092915050565b6000614a7b82614aba565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015614b1e578082015181840152602081019050614b03565b83811115614b2d576000848401525b50505050565b60006002820490506001821680614b4b57607f821691505b60208210811415614b5f57614b5e614c6e565b5b50919050565b614b6e82614d48565b810181811067ffffffffffffffff82111715614b8d57614b8c614cfb565b5b80604052505050565b6000614ba182614ada565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614bd457614bd3614c10565b5b600182019050919050565b6000614bea82614ada565b9150614bf583614ada565b925082614c0557614c04614c3f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820746f6b656e73600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e7420746f6b6560008201527f6e73000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e2070757263686173650000000000600082015250565b7f4578636565646564206d617820617661696c61626c6520746f2070757263686160008201527f7365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416c6c6f77206c697374206973206e6f74206163746976650000000000000000600082015250565b61543881614a70565b811461544357600080fd5b50565b61544f81614a82565b811461545a57600080fd5b50565b61546681614a8e565b811461547157600080fd5b50565b61547d81614ada565b811461548857600080fd5b50565b61549481614ae4565b811461549f57600080fd5b5056fe68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d577a716d6364766a32643736696a66624650556770635a755945456e35614a7265356b6948346e647a7a424c2f424c4f434b424552545fa264697066735822122059d6d2d32ceaa2c9d7d42f555761ba062f5cffd09d900b24e1ed1f965450929c64736f6c63430008070033

Deployed Bytecode Sourcemap

62433:6606:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67102:179;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22641:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24200:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23723:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37325:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25090:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62625:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36993:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62713:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68748:140;;;;;;;;;;;;;:::i;:::-;;25500:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68894:142;;;;;;;;;;;;;:::i;:::-;;37515:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67289:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22335:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62515:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62762:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63566:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22065:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44488:94;;;;;;;;;;;;;:::i;:::-;;66176:729;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63802:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67649:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63941:230;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62813:52;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43837:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22810:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68069:671;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24493:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25756:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65186:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65306:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67965:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63362:196;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65424:746;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24859:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62872:55;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62546:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63100:131;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44737:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62669:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67533:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67102:179;67213:4;67237:36;67261:11;67237:23;:36::i;:::-;67230:43;;67102:179;;;:::o;22641:100::-;22695:13;22728:5;22721:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22641:100;:::o;24200:221::-;24276:7;24304:16;24312:7;24304;:16::i;:::-;24296:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24389:15;:24;24405:7;24389:24;;;;;;;;;;;;;;;;;;;;;24382:31;;24200:221;;;:::o;23723:411::-;23804:13;23820:23;23835:7;23820:14;:23::i;:::-;23804:39;;23868:5;23862:11;;:2;:11;;;;23854:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23962:5;23946:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23971:37;23988:5;23995:12;:10;:12::i;:::-;23971:16;:37::i;:::-;23946:62;23924:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;24105:21;24114:2;24118:7;24105:8;:21::i;:::-;23793:341;23723:411;;:::o;37325:113::-;37386:7;37413:10;:17;;;;37406:24;;37325:113;:::o;25090:339::-;25285:41;25304:12;:10;:12::i;:::-;25318:7;25285:18;:41::i;:::-;25277:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;25393:28;25403:4;25409:2;25413:7;25393:9;:28::i;:::-;25090:339;;;:::o;62625:37::-;;;;;;;;;;;;;:::o;36993:256::-;37090:7;37126:23;37143:5;37126:16;:23::i;:::-;37118:5;:31;37110:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37215:12;:19;37228:5;37215:19;;;;;;;;;;;;;;;:26;37235:5;37215:26;;;;;;;;;;;;37208:33;;36993:256;;;;:::o;62713:42::-;62750:5;62713:42;:::o;68748:140::-;44068:12;:10;:12::i;:::-;44057:23;;:7;:5;:7::i;:::-;:23;;;44049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68796:12:::1;68811:21;68796:36;;68851:10;68843:28;;:37;68872:7;68843:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68785:103;68748:140::o:0;25500:185::-;25638:39;25655:4;25661:2;25665:7;25638:39;;;;;;;;;;;;:16;:39::i;:::-;25500:185;;;:::o;68894:142::-;44068:12;:10;:12::i;:::-;44057:23;;:7;:5;:7::i;:::-;:23;;;44049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68946:9:::1;68982:1;68958:21;:25;;;;:::i;:::-;68946:37;;69002:10;68994:28;;:34;69023:4;68994:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;68935:101;68894:142::o:0;37515:233::-;37590:7;37626:30;:28;:30::i;:::-;37618:5;:38;37610:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;37723:10;37734:5;37723:17;;;;;;;;:::i;:::-;;;;;;;;;;37716:24;;37515:233;;;:::o;67289:111::-;44068:12;:10;:12::i;:::-;44057:23;;:7;:5;:7::i;:::-;:23;;;44049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67384:8:::1;67365:16;:27;;;;;;;;;;;;:::i;:::-;;67289:111:::0;:::o;22335:239::-;22407:7;22427:13;22443:7;:16;22451:7;22443:16;;;;;;;;;;;;;;;;;;;;;22427:32;;22495:1;22478:19;;:5;:19;;;;22470:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;22561:5;22554:12;;;22335:239;;;:::o;62515:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;62762:44::-;62804:2;62762:44;:::o;63566:230::-;44068:12;:10;:12::i;:::-;44057:23;;:7;:5;:7::i;:::-;:23;;;44049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63677:9:::1;63672:117;63696:9;;:16;;63692:1;:20;63672:117;;;63761:16;63734:10;:24;63745:9;;63755:1;63745:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;63734:24;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;63714:3;;;;;:::i;:::-;;;;63672:117;;;;63566:230:::0;;;:::o;22065:208::-;22137:7;22182:1;22165:19;;:5;:19;;;;22157:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;22249:9;:16;22259:5;22249:16;;;;;;;;;;;;;;;;22242:23;;22065:208;;;:::o;44488:94::-;44068:12;:10;:12::i;:::-;44057:23;;:7;:5;:7::i;:::-;:23;;;44049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44553:21:::1;44571:1;44553:9;:21::i;:::-;44488:94::o:0;66176:729::-;66249:10;66262:13;:11;:13::i;:::-;66249:26;;66294:17;;;;;;;;;;;66286:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;66377:10;:22;66388:10;66377:22;;;;;;;;;;;;;;;;;;;;;;;;;66359:40;;:14;:40;;;;66351:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;62750:5;66462:14;66457:19;;:2;:19;;;;:::i;:::-;:33;;66449:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;66568:9;66550:14;66546:1;:18;;;;:::i;:::-;:31;;;;66538:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;66652:14;66626:10;:22;66637:10;66626:22;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;66682:9;66677:221;66701:14;66697:18;;:1;:18;66677:221;;;66737:19;66764:1;66759:2;:6;;;;:::i;:::-;66737:28;;66780:34;66790:10;66802:11;66780:9;:34::i;:::-;66829:57;66842:11;66855:30;66873:11;66855:17;:30::i;:::-;66829:12;:57::i;:::-;66722:176;66717:3;;;;;:::i;:::-;;;;66677:221;;;;66238:667;66176:729;:::o;63802:131::-;44068:12;:10;:12::i;:::-;44057:23;;:7;:5;:7::i;:::-;:23;;;44049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63907:18:::1;63887:17;;:38;;;;;;;;;;;;;;;;;;63802:131:::0;:::o;67649:308::-;44068:12;:10;:12::i;:::-;44057:23;;:7;:5;:7::i;:::-;:23;;;44049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67703:11:::1;67717:13;:11;:13::i;:::-;67703:27;;67739:6;67754:196;67770:1;67766;:5;67754:196;;;67791:19;67822:1;67813:6;:10;;;;:::i;:::-;67791:32;;67836:34;67846:10;67858:11;67836:9;:34::i;:::-;67883:57;67896:11;67909:30;67927:11;67909:17;:30::i;:::-;67883:12;:57::i;:::-;67778:172;67773:3;;;;;:::i;:::-;;;;67754:196;;;67694:263;;67649:308:::0;:::o;63941:230::-;44068:12;:10;:12::i;:::-;44057:23;;:7;:5;:7::i;:::-;:23;;;44049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;64052:9:::1;64047:117;64071:9;;:16;;64067:1;:20;64047:117;;;64136:16;64109:10;:24;64120:9;;64130:1;64120:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;64109:24;;;;;;;;;;;;;;;;:43;;;;;;;;;;;;;;;;;;64089:3;;;;;:::i;:::-;;;;64047:117;;;;63941:230:::0;;;:::o;62813:52::-;62855:10;62813:52;:::o;43837:87::-;43883:7;43910:6;;;;;;;;;;;43903:13;;43837:87;:::o;22810:104::-;22866:13;22899:7;22892:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22810:104;:::o;68069:671::-;68130:10;68143:13;:11;:13::i;:::-;68130:26;;68175:12;;;;;;;;;;;68167:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;62804:2;68245:14;:33;;68237:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;62750:5;68334:14;68329:2;:19;;;;:::i;:::-;:33;;68321:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;68454:9;68436:14;62855:10;68418:32;;;;:::i;:::-;:45;;68410:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;68517:9;68512:221;68536:14;68532:1;:18;68512:221;;;68572:19;68599:1;68594:2;:6;;;;:::i;:::-;68572:28;;68615:34;68625:10;68637:11;68615:9;:34::i;:::-;68664:57;68677:11;68690:30;68708:11;68690:17;:30::i;:::-;68664:12;:57::i;:::-;68557:176;68552:3;;;;;:::i;:::-;;;;68512:221;;;;68119:621;68069:671;:::o;24493:295::-;24608:12;:10;:12::i;:::-;24596:24;;:8;:24;;;;24588:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24708:8;24663:18;:32;24682:12;:10;:12::i;:::-;24663:32;;;;;;;;;;;;;;;:42;24696:8;24663:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24761:8;24732:48;;24747:12;:10;:12::i;:::-;24732:48;;;24771:8;24732:48;;;;;;:::i;:::-;;;;;;;;24493:295;;:::o;25756:328::-;25931:41;25950:12;:10;:12::i;:::-;25964:7;25931:18;:41::i;:::-;25923:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;26037:39;26051:4;26057:2;26061:7;26070:5;26037:13;:39::i;:::-;25756:328;;;;:::o;65186:114::-;65251:5;65276:10;:16;65287:4;65276:16;;;;;;;;;;;;;;;;;;;;;;;;;65269:23;;65186:114;;;:::o;65306:110::-;65367:5;65392:10;:16;65403:4;65392:16;;;;;;;;;;;;;;;;;;;;;;;;;65385:23;;65306:110;;;:::o;67965:96::-;44068:12;:10;:12::i;:::-;44057:23;;:7;:5;:7::i;:::-;:23;;;44049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;68045:8:::1;68030:12;;:23;;;;;;;;;;;;;;;;;;67965:96:::0;:::o;63362:196::-;63489:13;63527:23;63542:7;63527:14;:23::i;:::-;63520:30;;63362:196;;;:::o;65424:746::-;65497:10;65510:13;:11;:13::i;:::-;65497:26;;65542:17;;;;;;;;;;;65534:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;65625:10;:22;65636:10;65625:22;;;;;;;;;;;;;;;;;;;;;;;;;65607:40;;:14;:40;;;;65599:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;62750:5;65710:14;65705:19;;:2;:19;;;;:::i;:::-;:33;;65697:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;65833:9;65815:14;65794:35;;62917:10;65794:35;;;;:::i;:::-;:48;;65786:92;;;;;;;;;;;;:::i;:::-;;;;;;;;;65917:14;65891:10;:22;65902:10;65891:22;;;;;;;;;;;;;;;;:40;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;65947:9;65942:221;65966:14;65962:18;;:1;:18;65942:221;;;66002:19;66029:1;66024:2;:6;;;;:::i;:::-;66002:28;;66045:34;66055:10;66067:11;66045:9;:34::i;:::-;66094:57;66107:11;66120:30;66138:11;66120:17;:30::i;:::-;66094:12;:57::i;:::-;65987:176;65982:3;;;;;:::i;:::-;;;;65942:221;;;;65486:684;65424:746;:::o;24859:164::-;24956:4;24980:18;:25;24999:5;24980:25;;;;;;;;;;;;;;;:35;25006:8;24980:35;;;;;;;;;;;;;;;;;;;;;;;;;24973:42;;24859:164;;;;:::o;62872:55::-;62917:10;62872:55;:::o;62546:32::-;;;;;;;;;;;;;:::o;63100:131::-;44068:12;:10;:12::i;:::-;44057:23;;:7;:5;:7::i;:::-;:23;;;44049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;63205:18:::1;63185:17;;:38;;;;;;;;;;;;;;;;;;63100:131:::0;:::o;44737:192::-;44068:12;:10;:12::i;:::-;44057:23;;:7;:5;:7::i;:::-;:23;;;44049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44846:1:::1;44826:22;;:8;:22;;;;44818:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44902:19;44912:8;44902:9;:19::i;:::-;44737:192:::0;:::o;62669:37::-;;;;;;;;;;;;;:::o;67533:108::-;44068:12;:10;:12::i;:::-;44057:23;;:7;:5;:7::i;:::-;:23;;;44049:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;67623:10:::1;67610;:23;;;;;;;;;;;;:::i;:::-;;67533:108:::0;:::o;36685:224::-;36787:4;36826:35;36811:50;;;:11;:50;;;;:90;;;;36865:36;36889:11;36865:23;:36::i;:::-;36811:90;36804:97;;36685:224;;;:::o;27594:127::-;27659:4;27711:1;27683:30;;:7;:16;27691:7;27683:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27676:37;;27594:127;;;:::o;20144:98::-;20197:7;20224:10;20217:17;;20144:98;:::o;31576:174::-;31678:2;31651:15;:24;31667:7;31651:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31734:7;31730:2;31696:46;;31705:23;31720:7;31705:14;:23::i;:::-;31696:46;;;;;;;;;;;;31576:174;;:::o;27888:348::-;27981:4;28006:16;28014:7;28006;:16::i;:::-;27998:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;28082:13;28098:23;28113:7;28098:14;:23::i;:::-;28082:39;;28151:5;28140:16;;:7;:16;;;:51;;;;28184:7;28160:31;;:20;28172:7;28160:11;:20::i;:::-;:31;;;28140:51;:87;;;;28195:32;28212:5;28219:7;28195:16;:32::i;:::-;28140:87;28132:96;;;27888:348;;;;:::o;30880:578::-;31039:4;31012:31;;:23;31027:7;31012:14;:23::i;:::-;:31;;;31004:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;31122:1;31108:16;;:2;:16;;;;31100:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;31178:39;31199:4;31205:2;31209:7;31178:20;:39::i;:::-;31282:29;31299:1;31303:7;31282:8;:29::i;:::-;31343:1;31324:9;:15;31334:4;31324:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;31372:1;31355:9;:13;31365:2;31355:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31403:2;31384:7;:16;31392:7;31384:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31442:7;31438:2;31423:27;;31432:4;31423:27;;;;;;;;;;;;30880:578;;;:::o;44937:173::-;44993:16;45012:6;;;;;;;;;;;44993:25;;45038:8;45029:6;;:17;;;;;;;;;;;;;;;;;;45093:8;45062:40;;45083:8;45062:40;;;;;;;;;;;;44982:128;44937:173;:::o;28578:110::-;28654:26;28664:2;28668:7;28654:26;;;;;;;;;;;;:9;:26::i;:::-;28578:110;;:::o;64943:237::-;65010:13;65043:129;;;;;;;;;;;;;;;;;;65145:17;65154:7;65145:8;:17::i;:::-;65043:129;;;;;;;;;;;;;;;;;:6;:129::i;:::-;65036:136;;64943:237;;;:::o;35090:217::-;35190:16;35198:7;35190;:16::i;:::-;35182:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;35290:9;35268:10;:19;35279:7;35268:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;35090:217;;:::o;26966:315::-;27123:28;27133:4;27139:2;27143:7;27123:9;:28::i;:::-;27170:48;27193:4;27199:2;27203:7;27212:5;27170:22;:48::i;:::-;27162:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;26966:315;;;;:::o;34255:679::-;34328:13;34362:16;34370:7;34362;:16::i;:::-;34354:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;34445:23;34471:10;:19;34482:7;34471:19;;;;;;;;;;;34445:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34501:18;34522:10;:8;:10::i;:::-;34501:31;;34630:1;34614:4;34608:18;:23;34604:72;;;34655:9;34648:16;;;;;;34604:72;34806:1;34786:9;34780:23;:27;34776:108;;;34855:4;34861:9;34838:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34824:48;;;;;;34776:108;34903:23;34918:7;34903:14;:23::i;:::-;34896:30;;;;34255:679;;;;:::o;21696:305::-;21798:4;21850:25;21835:40;;;:11;:40;;;;:105;;;;21907:33;21892:48;;;:11;:48;;;;21835:105;:158;;;;21957:36;21981:11;21957:23;:36::i;:::-;21835:158;21815:178;;21696:305;;;:::o;66913:181::-;67041:45;67068:4;67074:2;67078:7;67041:26;:45::i;:::-;66913:181;;;:::o;28915:321::-;29045:18;29051:2;29055:7;29045:5;:18::i;:::-;29096:54;29127:1;29131:2;29135:7;29144:5;29096:22;:54::i;:::-;29074:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28915:321;;;:::o;64364:573::-;64414:27;64464:1;64458:2;:7;64454:50;;;64482:10;;;;;;;;;;;;;;;;;;;;;64454:50;64514:6;64523:2;64514:11;;64536:8;64555:69;64567:1;64562;:6;64555:69;;64585:5;;;;;:::i;:::-;;;;64610:2;64605:7;;;;;:::i;:::-;;;64555:69;;;64634:17;64664:3;64654:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64634:34;;64679:6;64688:3;64679:12;;64702:198;64715:1;64709:2;:7;64702:198;;64739:1;64737;:3;;;;:::i;:::-;64733:7;;64755:10;64795:2;64790;64785;:7;;;;:::i;:::-;:12;;;;:::i;:::-;64780:2;:17;;;;:::i;:::-;64769:2;:29;;;;:::i;:::-;64755:44;;64814:9;64833:4;64826:12;;64814:24;;64863:2;64853:4;64858:1;64853:7;;;;;;;;:::i;:::-;;;;;:12;;;;;;;;;;;64886:2;64880:8;;;;;:::i;:::-;;;64718:182;;64702:198;;;64924:4;64910:19;;;;;;64364:573;;;;:::o;64177:181::-;64267:13;64326:1;64336;64346;64307:42;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64293:57;;64177:181;;;;;:::o;32315:799::-;32470:4;32491:15;:2;:13;;;:15::i;:::-;32487:620;;;32543:2;32527:36;;;32564:12;:10;:12::i;:::-;32578:4;32584:7;32593:5;32527:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32523:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32786:1;32769:6;:13;:18;32765:272;;;32812:60;;;;;;;;;;:::i;:::-;;;;;;;;32765:272;32987:6;32981:13;32972:6;32968:2;32964:15;32957:38;32523:529;32660:41;;;32650:51;;;:6;:51;;;;32643:58;;;;;32487:620;33091:4;33084:11;;32315:799;;;;;;;:::o;67408:117::-;67468:13;67501:16;67494:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67408:117;:::o;22985:334::-;23058:13;23092:16;23100:7;23092;:16::i;:::-;23084:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;23173:21;23197:10;:8;:10::i;:::-;23173:34;;23249:1;23231:7;23225:21;:25;:86;;;;;;;;;;;;;;;;;23277:7;23286:18;:7;:16;:18::i;:::-;23260:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23225:86;23218:93;;;22985:334;;;:::o;12806:157::-;12891:4;12930:25;12915:40;;;:11;:40;;;;12908:47;;12806:157;;;:::o;38361:589::-;38505:45;38532:4;38538:2;38542:7;38505:26;:45::i;:::-;38583:1;38567:18;;:4;:18;;;38563:187;;;38602:40;38634:7;38602:31;:40::i;:::-;38563:187;;;38672:2;38664:10;;:4;:10;;;38660:90;;38691:47;38724:4;38730:7;38691:32;:47::i;:::-;38660:90;38563:187;38778:1;38764:16;;:2;:16;;;38760:183;;;38797:45;38834:7;38797:36;:45::i;:::-;38760:183;;;38870:4;38864:10;;:2;:10;;;38860:83;;38891:40;38919:2;38923:7;38891:27;:40::i;:::-;38860:83;38760:183;38361:589;;;:::o;29572:382::-;29666:1;29652:16;;:2;:16;;;;29644:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29725:16;29733:7;29725;:16::i;:::-;29724:17;29716:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29787:45;29816:1;29820:2;29824:7;29787:20;:45::i;:::-;29862:1;29845:9;:13;29855:2;29845:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29893:2;29874:7;:16;29882:7;29874:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29938:7;29934:2;29913:33;;29930:1;29913:33;;;;;;;;;;;;29572:382;;:::o;2848:387::-;2908:4;3116:12;3183:7;3171:20;3163:28;;3226:1;3219:4;:8;3212:15;;;2848:387;;;:::o;317:723::-;373:13;603:1;594:5;:10;590:53;;;621:10;;;;;;;;;;;;;;;;;;;;;590:53;653:12;668:5;653:20;;684:14;709:78;724:1;716:4;:9;709:78;;742:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;709:78;;;797:19;829:6;819:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;797:39;;847:154;863:1;854:5;:10;847:154;;891:1;881:11;;;;;:::i;:::-;;;958:2;950:5;:10;;;;:::i;:::-;937:2;:24;;;;:::i;:::-;924:39;;907:6;914;907:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;987:2;978:11;;;;;:::i;:::-;;;847:154;;;1025:6;1011:21;;;;;317:723;;;;:::o;33686:126::-;;;;:::o;39673:164::-;39777:10;:17;;;;39750:15;:24;39766:7;39750:24;;;;;;;;;;;:44;;;;39805:10;39821:7;39805:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39673:164;:::o;40464:988::-;40730:22;40780:1;40755:22;40772:4;40755:16;:22::i;:::-;:26;;;;:::i;:::-;40730:51;;40792:18;40813:17;:26;40831:7;40813:26;;;;;;;;;;;;40792:47;;40960:14;40946:10;:28;40942:328;;40991:19;41013:12;:18;41026:4;41013:18;;;;;;;;;;;;;;;:34;41032:14;41013:34;;;;;;;;;;;;40991:56;;41097:11;41064:12;:18;41077:4;41064:18;;;;;;;;;;;;;;;:30;41083:10;41064:30;;;;;;;;;;;:44;;;;41214:10;41181:17;:30;41199:11;41181:30;;;;;;;;;;;:43;;;;40976:294;40942:328;41366:17;:26;41384:7;41366:26;;;;;;;;;;;41359:33;;;41410:12;:18;41423:4;41410:18;;;;;;;;;;;;;;;:34;41429:14;41410:34;;;;;;;;;;;41403:41;;;40545:907;;40464:988;;:::o;41747:1079::-;42000:22;42045:1;42025:10;:17;;;;:21;;;;:::i;:::-;42000:46;;42057:18;42078:15;:24;42094:7;42078:24;;;;;;;;;;;;42057:45;;42429:19;42451:10;42462:14;42451:26;;;;;;;;:::i;:::-;;;;;;;;;;42429:48;;42515:11;42490:10;42501;42490:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42626:10;42595:15;:28;42611:11;42595:28;;;;;;;;;;;:41;;;;42767:15;:24;42783:7;42767:24;;;;;;;;;;;42760:31;;;42802:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41818:1008;;;41747:1079;:::o;39251:221::-;39336:14;39353:20;39370:2;39353:16;:20::i;:::-;39336:37;;39411:7;39384:12;:16;39397:2;39384:16;;;;;;;;;;;;;;;:24;39401:6;39384:24;;;;;;;;;;;:34;;;;39458:6;39429:17;:26;39447:7;39429:26;;;;;;;;;;;:35;;;;39325:147;39251:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::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:135::-;2912:5;2950:6;2937:20;2928:29;;2966:31;2991:5;2966:31;:::i;:::-;2868:135;;;;:::o;3009:329::-;3068:6;3117:2;3105:9;3096:7;3092:23;3088:32;3085:119;;;3123:79;;:::i;:::-;3085:119;3243:1;3268:53;3313:7;3304:6;3293:9;3289:22;3268:53;:::i;:::-;3258:63;;3214:117;3009:329;;;;:::o;3344:474::-;3412:6;3420;3469:2;3457:9;3448:7;3444:23;3440:32;3437:119;;;3475:79;;:::i;:::-;3437:119;3595:1;3620:53;3665:7;3656:6;3645:9;3641:22;3620:53;:::i;:::-;3610:63;;3566:117;3722:2;3748:53;3793:7;3784:6;3773:9;3769:22;3748:53;:::i;:::-;3738:63;;3693:118;3344:474;;;;;:::o;3824:619::-;3901:6;3909;3917;3966:2;3954:9;3945:7;3941:23;3937:32;3934:119;;;3972:79;;:::i;:::-;3934:119;4092:1;4117:53;4162:7;4153:6;4142:9;4138:22;4117:53;:::i;:::-;4107:63;;4063:117;4219:2;4245:53;4290:7;4281:6;4270:9;4266:22;4245:53;:::i;:::-;4235:63;;4190:118;4347:2;4373:53;4418:7;4409:6;4398:9;4394:22;4373:53;:::i;:::-;4363:63;;4318:118;3824:619;;;;;:::o;4449:943::-;4544:6;4552;4560;4568;4617:3;4605:9;4596:7;4592:23;4588:33;4585:120;;;4624:79;;:::i;:::-;4585:120;4744:1;4769:53;4814:7;4805:6;4794:9;4790:22;4769:53;:::i;:::-;4759:63;;4715:117;4871:2;4897:53;4942:7;4933:6;4922:9;4918:22;4897:53;:::i;:::-;4887:63;;4842:118;4999:2;5025:53;5070:7;5061:6;5050:9;5046:22;5025:53;:::i;:::-;5015:63;;4970:118;5155:2;5144:9;5140:18;5127:32;5186:18;5178:6;5175:30;5172:117;;;5208:79;;:::i;:::-;5172:117;5313:62;5367:7;5358:6;5347:9;5343:22;5313:62;:::i;:::-;5303:72;;5098:287;4449:943;;;;;;;:::o;5398:468::-;5463:6;5471;5520:2;5508:9;5499:7;5495:23;5491:32;5488:119;;;5526:79;;:::i;:::-;5488:119;5646:1;5671:53;5716:7;5707:6;5696:9;5692:22;5671:53;:::i;:::-;5661:63;;5617:117;5773:2;5799:50;5841:7;5832:6;5821:9;5817:22;5799:50;:::i;:::-;5789:60;;5744:115;5398:468;;;;;:::o;5872:474::-;5940:6;5948;5997:2;5985:9;5976:7;5972:23;5968:32;5965:119;;;6003:79;;:::i;:::-;5965:119;6123:1;6148:53;6193:7;6184:6;6173:9;6169:22;6148:53;:::i;:::-;6138:63;;6094:117;6250:2;6276:53;6321:7;6312:6;6301:9;6297:22;6276:53;:::i;:::-;6266:63;;6221:118;5872:474;;;;;:::o;6352:700::-;6445:6;6453;6461;6510:2;6498:9;6489:7;6485:23;6481:32;6478:119;;;6516:79;;:::i;:::-;6478:119;6664:1;6653:9;6649:17;6636:31;6694:18;6686:6;6683:30;6680:117;;;6716:79;;:::i;:::-;6680:117;6829:80;6901:7;6892:6;6881:9;6877:22;6829:80;:::i;:::-;6811:98;;;;6607:312;6958:2;6984:51;7027:7;7018:6;7007:9;7003:22;6984:51;:::i;:::-;6974:61;;6929:116;6352:700;;;;;:::o;7058:323::-;7114:6;7163:2;7151:9;7142:7;7138:23;7134:32;7131:119;;;7169:79;;:::i;:::-;7131:119;7289:1;7314:50;7356:7;7347:6;7336:9;7332:22;7314:50;:::i;:::-;7304:60;;7260:114;7058:323;;;;:::o;7387:327::-;7445:6;7494:2;7482:9;7473:7;7469:23;7465:32;7462:119;;;7500:79;;:::i;:::-;7462:119;7620:1;7645:52;7689:7;7680:6;7669:9;7665:22;7645:52;:::i;:::-;7635:62;;7591:116;7387:327;;;;:::o;7720:349::-;7789:6;7838:2;7826:9;7817:7;7813:23;7809:32;7806:119;;;7844:79;;:::i;:::-;7806:119;7964:1;7989:63;8044:7;8035:6;8024:9;8020:22;7989:63;:::i;:::-;7979:73;;7935:127;7720:349;;;;:::o;8075:509::-;8144:6;8193:2;8181:9;8172:7;8168:23;8164:32;8161:119;;;8199:79;;:::i;:::-;8161:119;8347:1;8336:9;8332:17;8319:31;8377:18;8369:6;8366:30;8363:117;;;8399:79;;:::i;:::-;8363:117;8504:63;8559:7;8550:6;8539:9;8535:22;8504:63;:::i;:::-;8494:73;;8290:287;8075:509;;;;:::o;8590:329::-;8649:6;8698:2;8686:9;8677:7;8673:23;8669:32;8666:119;;;8704:79;;:::i;:::-;8666:119;8824:1;8849:53;8894:7;8885:6;8874:9;8870:22;8849:53;:::i;:::-;8839:63;;8795:117;8590:329;;;;:::o;8925:325::-;8982:6;9031:2;9019:9;9010:7;9006:23;9002:32;8999:119;;;9037:79;;:::i;:::-;8999:119;9157:1;9182:51;9225:7;9216:6;9205:9;9201:22;9182:51;:::i;:::-;9172:61;;9128:115;8925:325;;;;:::o;9256:118::-;9343:24;9361:5;9343:24;:::i;:::-;9338:3;9331:37;9256:118;;:::o;9380:109::-;9461:21;9476:5;9461:21;:::i;:::-;9456:3;9449:34;9380:109;;:::o;9495:360::-;9581:3;9609:38;9641:5;9609:38;:::i;:::-;9663:70;9726:6;9721:3;9663:70;:::i;:::-;9656:77;;9742:52;9787:6;9782:3;9775:4;9768:5;9764:16;9742:52;:::i;:::-;9819:29;9841:6;9819:29;:::i;:::-;9814:3;9810:39;9803:46;;9585:270;9495:360;;;;:::o;9861:373::-;9965:3;9993:38;10025:5;9993:38;:::i;:::-;10047:88;10128:6;10123:3;10047:88;:::i;:::-;10040:95;;10144:52;10189:6;10184:3;10177:4;10170:5;10166:16;10144:52;:::i;:::-;10221:6;10216:3;10212:16;10205:23;;9969:265;9861:373;;;;:::o;10240:364::-;10328:3;10356:39;10389:5;10356:39;:::i;:::-;10411:71;10475:6;10470:3;10411:71;:::i;:::-;10404:78;;10491:52;10536:6;10531:3;10524:4;10517:5;10513:16;10491:52;:::i;:::-;10568:29;10590:6;10568:29;:::i;:::-;10563:3;10559:39;10552:46;;10332:272;10240:364;;;;:::o;10610:377::-;10716:3;10744:39;10777:5;10744:39;:::i;:::-;10799:89;10881:6;10876:3;10799:89;:::i;:::-;10792:96;;10897:52;10942:6;10937:3;10930:4;10923:5;10919:16;10897:52;:::i;:::-;10974:6;10969:3;10965:16;10958:23;;10720:267;10610:377;;;;:::o;10993:366::-;11135:3;11156:67;11220:2;11215:3;11156:67;:::i;:::-;11149:74;;11232:93;11321:3;11232:93;:::i;:::-;11350:2;11345:3;11341:12;11334:19;;10993:366;;;:::o;11365:::-;11507:3;11528:67;11592:2;11587:3;11528:67;:::i;:::-;11521:74;;11604:93;11693:3;11604:93;:::i;:::-;11722:2;11717:3;11713:12;11706:19;;11365:366;;;:::o;11737:::-;11879:3;11900:67;11964:2;11959:3;11900:67;:::i;:::-;11893:74;;11976:93;12065:3;11976:93;:::i;:::-;12094:2;12089:3;12085:12;12078:19;;11737:366;;;:::o;12109:::-;12251:3;12272:67;12336:2;12331:3;12272:67;:::i;:::-;12265:74;;12348:93;12437:3;12348:93;:::i;:::-;12466:2;12461:3;12457:12;12450:19;;12109:366;;;:::o;12481:::-;12623:3;12644:67;12708:2;12703:3;12644:67;:::i;:::-;12637:74;;12720:93;12809:3;12720:93;:::i;:::-;12838:2;12833:3;12829:12;12822:19;;12481:366;;;:::o;12853:::-;12995:3;13016:67;13080:2;13075:3;13016:67;:::i;:::-;13009:74;;13092:93;13181:3;13092:93;:::i;:::-;13210:2;13205:3;13201:12;13194:19;;12853:366;;;:::o;13225:::-;13367:3;13388:67;13452:2;13447:3;13388:67;:::i;:::-;13381:74;;13464:93;13553:3;13464:93;:::i;:::-;13582:2;13577:3;13573:12;13566:19;;13225:366;;;:::o;13597:::-;13739:3;13760:67;13824:2;13819:3;13760:67;:::i;:::-;13753:74;;13836:93;13925:3;13836:93;:::i;:::-;13954:2;13949:3;13945:12;13938:19;;13597:366;;;:::o;13969:::-;14111:3;14132:67;14196:2;14191:3;14132:67;:::i;:::-;14125:74;;14208:93;14297:3;14208:93;:::i;:::-;14326:2;14321:3;14317:12;14310:19;;13969:366;;;:::o;14341:::-;14483:3;14504:67;14568:2;14563:3;14504:67;:::i;:::-;14497:74;;14580:93;14669:3;14580:93;:::i;:::-;14698:2;14693:3;14689:12;14682:19;;14341:366;;;:::o;14713:::-;14855:3;14876:67;14940:2;14935:3;14876:67;:::i;:::-;14869:74;;14952:93;15041:3;14952:93;:::i;:::-;15070:2;15065:3;15061:12;15054:19;;14713:366;;;:::o;15085:::-;15227:3;15248:67;15312:2;15307:3;15248:67;:::i;:::-;15241:74;;15324:93;15413:3;15324:93;:::i;:::-;15442:2;15437:3;15433:12;15426:19;;15085:366;;;:::o;15457:::-;15599:3;15620:67;15684:2;15679:3;15620:67;:::i;:::-;15613:74;;15696:93;15785:3;15696:93;:::i;:::-;15814:2;15809:3;15805:12;15798:19;;15457:366;;;:::o;15829:::-;15971:3;15992:67;16056:2;16051:3;15992:67;:::i;:::-;15985:74;;16068:93;16157:3;16068:93;:::i;:::-;16186:2;16181:3;16177:12;16170:19;;15829:366;;;:::o;16201:::-;16343:3;16364:67;16428:2;16423:3;16364:67;:::i;:::-;16357:74;;16440:93;16529:3;16440:93;:::i;:::-;16558:2;16553:3;16549:12;16542:19;;16201:366;;;:::o;16573:::-;16715:3;16736:67;16800:2;16795:3;16736:67;:::i;:::-;16729:74;;16812:93;16901:3;16812:93;:::i;:::-;16930:2;16925:3;16921:12;16914:19;;16573:366;;;:::o;16945:::-;17087:3;17108:67;17172:2;17167:3;17108:67;:::i;:::-;17101:74;;17184:93;17273:3;17184:93;:::i;:::-;17302:2;17297:3;17293:12;17286:19;;16945:366;;;:::o;17317:::-;17459:3;17480:67;17544:2;17539:3;17480:67;:::i;:::-;17473:74;;17556:93;17645:3;17556:93;:::i;:::-;17674:2;17669:3;17665:12;17658:19;;17317:366;;;:::o;17689:::-;17831:3;17852:67;17916:2;17911:3;17852:67;:::i;:::-;17845:74;;17928:93;18017:3;17928:93;:::i;:::-;18046:2;18041:3;18037:12;18030:19;;17689:366;;;:::o;18061:::-;18203:3;18224:67;18288:2;18283:3;18224:67;:::i;:::-;18217:74;;18300:93;18389:3;18300:93;:::i;:::-;18418:2;18413:3;18409:12;18402:19;;18061:366;;;:::o;18433:::-;18575:3;18596:67;18660:2;18655:3;18596:67;:::i;:::-;18589:74;;18672:93;18761:3;18672:93;:::i;:::-;18790:2;18785:3;18781:12;18774:19;;18433:366;;;:::o;18805:::-;18947:3;18968:67;19032:2;19027:3;18968:67;:::i;:::-;18961:74;;19044:93;19133:3;19044:93;:::i;:::-;19162:2;19157:3;19153:12;19146:19;;18805:366;;;:::o;19177:::-;19319:3;19340:67;19404:2;19399:3;19340:67;:::i;:::-;19333:74;;19416:93;19505:3;19416:93;:::i;:::-;19534:2;19529:3;19525:12;19518:19;;19177:366;;;:::o;19549:::-;19691:3;19712:67;19776:2;19771:3;19712:67;:::i;:::-;19705:74;;19788:93;19877:3;19788:93;:::i;:::-;19906:2;19901:3;19897:12;19890:19;;19549:366;;;:::o;19921:::-;20063:3;20084:67;20148:2;20143:3;20084:67;:::i;:::-;20077:74;;20160:93;20249:3;20160:93;:::i;:::-;20278:2;20273:3;20269:12;20262:19;;19921:366;;;:::o;20293:::-;20435:3;20456:67;20520:2;20515:3;20456:67;:::i;:::-;20449:74;;20532:93;20621:3;20532:93;:::i;:::-;20650:2;20645:3;20641:12;20634:19;;20293:366;;;:::o;20665:118::-;20752:24;20770:5;20752:24;:::i;:::-;20747:3;20740:37;20665:118;;:::o;20789:112::-;20872:22;20888:5;20872:22;:::i;:::-;20867:3;20860:35;20789:112;;:::o;20907:583::-;21129:3;21151:93;21240:3;21231:6;21151:93;:::i;:::-;21144:100;;21261:93;21350:3;21341:6;21261:93;:::i;:::-;21254:100;;21371:93;21460:3;21451:6;21371:93;:::i;:::-;21364:100;;21481:3;21474:10;;20907:583;;;;;;:::o;21496:435::-;21676:3;21698:95;21789:3;21780:6;21698:95;:::i;:::-;21691:102;;21810:95;21901:3;21892:6;21810:95;:::i;:::-;21803:102;;21922:3;21915:10;;21496:435;;;;;:::o;21937:222::-;22030:4;22068:2;22057:9;22053:18;22045:26;;22081:71;22149:1;22138:9;22134:17;22125:6;22081:71;:::i;:::-;21937:222;;;;:::o;22165:640::-;22360:4;22398:3;22387:9;22383:19;22375:27;;22412:71;22480:1;22469:9;22465:17;22456:6;22412:71;:::i;:::-;22493:72;22561:2;22550:9;22546:18;22537:6;22493:72;:::i;:::-;22575;22643:2;22632:9;22628:18;22619:6;22575:72;:::i;:::-;22694:9;22688:4;22684:20;22679:2;22668:9;22664:18;22657:48;22722:76;22793:4;22784:6;22722:76;:::i;:::-;22714:84;;22165:640;;;;;;;:::o;22811:210::-;22898:4;22936:2;22925:9;22921:18;22913:26;;22949:65;23011:1;23000:9;22996:17;22987:6;22949:65;:::i;:::-;22811:210;;;;:::o;23027:313::-;23140:4;23178:2;23167:9;23163:18;23155:26;;23227:9;23221:4;23217:20;23213:1;23202:9;23198:17;23191:47;23255:78;23328:4;23319:6;23255:78;:::i;:::-;23247:86;;23027:313;;;;:::o;23346:419::-;23512:4;23550:2;23539:9;23535:18;23527:26;;23599:9;23593:4;23589:20;23585:1;23574:9;23570:17;23563:47;23627:131;23753:4;23627:131;:::i;:::-;23619:139;;23346:419;;;:::o;23771:::-;23937:4;23975:2;23964:9;23960:18;23952:26;;24024:9;24018:4;24014:20;24010:1;23999:9;23995:17;23988:47;24052:131;24178:4;24052:131;:::i;:::-;24044:139;;23771:419;;;:::o;24196:::-;24362:4;24400:2;24389:9;24385:18;24377:26;;24449:9;24443:4;24439:20;24435:1;24424:9;24420:17;24413:47;24477:131;24603:4;24477:131;:::i;:::-;24469:139;;24196:419;;;:::o;24621:::-;24787:4;24825:2;24814:9;24810:18;24802:26;;24874:9;24868:4;24864:20;24860:1;24849:9;24845:17;24838:47;24902:131;25028:4;24902:131;:::i;:::-;24894:139;;24621:419;;;:::o;25046:::-;25212:4;25250:2;25239:9;25235:18;25227:26;;25299:9;25293:4;25289:20;25285:1;25274:9;25270:17;25263:47;25327:131;25453:4;25327:131;:::i;:::-;25319:139;;25046:419;;;:::o;25471:::-;25637:4;25675:2;25664:9;25660:18;25652:26;;25724:9;25718:4;25714:20;25710:1;25699:9;25695:17;25688:47;25752:131;25878:4;25752:131;:::i;:::-;25744:139;;25471:419;;;:::o;25896:::-;26062:4;26100:2;26089:9;26085:18;26077:26;;26149:9;26143:4;26139:20;26135:1;26124:9;26120:17;26113:47;26177:131;26303:4;26177:131;:::i;:::-;26169:139;;25896:419;;;:::o;26321:::-;26487:4;26525:2;26514:9;26510:18;26502:26;;26574:9;26568:4;26564:20;26560:1;26549:9;26545:17;26538:47;26602:131;26728:4;26602:131;:::i;:::-;26594:139;;26321:419;;;:::o;26746:::-;26912:4;26950:2;26939:9;26935:18;26927:26;;26999:9;26993:4;26989:20;26985:1;26974:9;26970:17;26963:47;27027:131;27153:4;27027:131;:::i;:::-;27019:139;;26746:419;;;:::o;27171:::-;27337:4;27375:2;27364:9;27360:18;27352:26;;27424:9;27418:4;27414:20;27410:1;27399:9;27395:17;27388:47;27452:131;27578:4;27452:131;:::i;:::-;27444:139;;27171:419;;;:::o;27596:::-;27762:4;27800:2;27789:9;27785:18;27777:26;;27849:9;27843:4;27839:20;27835:1;27824:9;27820:17;27813:47;27877:131;28003:4;27877:131;:::i;:::-;27869:139;;27596:419;;;:::o;28021:::-;28187:4;28225:2;28214:9;28210:18;28202:26;;28274:9;28268:4;28264:20;28260:1;28249:9;28245:17;28238:47;28302:131;28428:4;28302:131;:::i;:::-;28294:139;;28021:419;;;:::o;28446:::-;28612:4;28650:2;28639:9;28635:18;28627:26;;28699:9;28693:4;28689:20;28685:1;28674:9;28670:17;28663:47;28727:131;28853:4;28727:131;:::i;:::-;28719:139;;28446:419;;;:::o;28871:::-;29037:4;29075:2;29064:9;29060:18;29052:26;;29124:9;29118:4;29114:20;29110:1;29099:9;29095:17;29088:47;29152:131;29278:4;29152:131;:::i;:::-;29144:139;;28871:419;;;:::o;29296:::-;29462:4;29500:2;29489:9;29485:18;29477:26;;29549:9;29543:4;29539:20;29535:1;29524:9;29520:17;29513:47;29577:131;29703:4;29577:131;:::i;:::-;29569:139;;29296:419;;;:::o;29721:::-;29887:4;29925:2;29914:9;29910:18;29902:26;;29974:9;29968:4;29964:20;29960:1;29949:9;29945:17;29938:47;30002:131;30128:4;30002:131;:::i;:::-;29994:139;;29721:419;;;:::o;30146:::-;30312:4;30350:2;30339:9;30335:18;30327:26;;30399:9;30393:4;30389:20;30385:1;30374:9;30370:17;30363:47;30427:131;30553:4;30427:131;:::i;:::-;30419:139;;30146:419;;;:::o;30571:::-;30737:4;30775:2;30764:9;30760:18;30752:26;;30824:9;30818:4;30814:20;30810:1;30799:9;30795:17;30788:47;30852:131;30978:4;30852:131;:::i;:::-;30844:139;;30571:419;;;:::o;30996:::-;31162:4;31200:2;31189:9;31185:18;31177:26;;31249:9;31243:4;31239:20;31235:1;31224:9;31220:17;31213:47;31277:131;31403:4;31277:131;:::i;:::-;31269:139;;30996:419;;;:::o;31421:::-;31587:4;31625:2;31614:9;31610:18;31602:26;;31674:9;31668:4;31664:20;31660:1;31649:9;31645:17;31638:47;31702:131;31828:4;31702:131;:::i;:::-;31694:139;;31421:419;;;:::o;31846:::-;32012:4;32050:2;32039:9;32035:18;32027:26;;32099:9;32093:4;32089:20;32085:1;32074:9;32070:17;32063:47;32127:131;32253:4;32127:131;:::i;:::-;32119:139;;31846:419;;;:::o;32271:::-;32437:4;32475:2;32464:9;32460:18;32452:26;;32524:9;32518:4;32514:20;32510:1;32499:9;32495:17;32488:47;32552:131;32678:4;32552:131;:::i;:::-;32544:139;;32271:419;;;:::o;32696:::-;32862:4;32900:2;32889:9;32885:18;32877:26;;32949:9;32943:4;32939:20;32935:1;32924:9;32920:17;32913:47;32977:131;33103:4;32977:131;:::i;:::-;32969:139;;32696:419;;;:::o;33121:::-;33287:4;33325:2;33314:9;33310:18;33302:26;;33374:9;33368:4;33364:20;33360:1;33349:9;33345:17;33338:47;33402:131;33528:4;33402:131;:::i;:::-;33394:139;;33121:419;;;:::o;33546:::-;33712:4;33750:2;33739:9;33735:18;33727:26;;33799:9;33793:4;33789:20;33785:1;33774:9;33770:17;33763:47;33827:131;33953:4;33827:131;:::i;:::-;33819:139;;33546:419;;;:::o;33971:::-;34137:4;34175:2;34164:9;34160:18;34152:26;;34224:9;34218:4;34214:20;34210:1;34199:9;34195:17;34188:47;34252:131;34378:4;34252:131;:::i;:::-;34244:139;;33971:419;;;:::o;34396:222::-;34489:4;34527:2;34516:9;34512:18;34504:26;;34540:71;34608:1;34597:9;34593:17;34584:6;34540:71;:::i;:::-;34396:222;;;;:::o;34624:214::-;34713:4;34751:2;34740:9;34736:18;34728:26;;34764:67;34828:1;34817:9;34813:17;34804:6;34764:67;:::i;:::-;34624:214;;;;:::o;34844:129::-;34878:6;34905:20;;:::i;:::-;34895:30;;34934:33;34962:4;34954:6;34934:33;:::i;:::-;34844:129;;;:::o;34979:75::-;35012:6;35045:2;35039:9;35029:19;;34979:75;:::o;35060:307::-;35121:4;35211:18;35203:6;35200:30;35197:56;;;35233:18;;:::i;:::-;35197:56;35271:29;35293:6;35271:29;:::i;:::-;35263:37;;35355:4;35349;35345:15;35337:23;;35060:307;;;:::o;35373:308::-;35435:4;35525:18;35517:6;35514:30;35511:56;;;35547:18;;:::i;:::-;35511:56;35585:29;35607:6;35585:29;:::i;:::-;35577:37;;35669:4;35663;35659:15;35651:23;;35373:308;;;:::o;35687:98::-;35738:6;35772:5;35766:12;35756:22;;35687:98;;;:::o;35791:99::-;35843:6;35877:5;35871:12;35861:22;;35791:99;;;:::o;35896:168::-;35979:11;36013:6;36008:3;36001:19;36053:4;36048:3;36044:14;36029:29;;35896:168;;;;:::o;36070:147::-;36171:11;36208:3;36193:18;;36070:147;;;;:::o;36223:169::-;36307:11;36341:6;36336:3;36329:19;36381:4;36376:3;36372:14;36357:29;;36223:169;;;;:::o;36398:148::-;36500:11;36537:3;36522:18;;36398:148;;;;:::o;36552:305::-;36592:3;36611:20;36629:1;36611:20;:::i;:::-;36606:25;;36645:20;36663:1;36645:20;:::i;:::-;36640:25;;36799:1;36731:66;36727:74;36724:1;36721:81;36718:107;;;36805:18;;:::i;:::-;36718:107;36849:1;36846;36842:9;36835:16;;36552:305;;;;:::o;36863:237::-;36901:3;36920:18;36936:1;36920:18;:::i;:::-;36915:23;;36952:18;36968:1;36952:18;:::i;:::-;36947:23;;37042:1;37036:4;37032:12;37029:1;37026:19;37023:45;;;37048:18;;:::i;:::-;37023:45;37092:1;37089;37085:9;37078:16;;36863:237;;;;:::o;37106:185::-;37146:1;37163:20;37181:1;37163:20;:::i;:::-;37158:25;;37197:20;37215:1;37197:20;:::i;:::-;37192:25;;37236:1;37226:35;;37241:18;;:::i;:::-;37226:35;37283:1;37280;37276:9;37271:14;;37106:185;;;;:::o;37297:348::-;37337:7;37360:20;37378:1;37360:20;:::i;:::-;37355:25;;37394:20;37412:1;37394:20;:::i;:::-;37389:25;;37582:1;37514:66;37510:74;37507:1;37504:81;37499:1;37492:9;37485:17;37481:105;37478:131;;;37589:18;;:::i;:::-;37478:131;37637:1;37634;37630:9;37619:20;;37297:348;;;;:::o;37651:280::-;37689:7;37712:18;37728:1;37712:18;:::i;:::-;37707:23;;37744:18;37760:1;37744:18;:::i;:::-;37739:23;;37868:1;37862:4;37858:12;37855:1;37852:19;37847:1;37840:9;37833:17;37829:43;37826:69;;;37875:18;;:::i;:::-;37826:69;37923:1;37920;37916:9;37905:20;;37651:280;;;;:::o;37937:191::-;37977:4;37997:20;38015:1;37997:20;:::i;:::-;37992:25;;38031:20;38049:1;38031:20;:::i;:::-;38026:25;;38070:1;38067;38064:8;38061:34;;;38075:18;;:::i;:::-;38061:34;38120:1;38117;38113:9;38105:17;;37937:191;;;;:::o;38134:185::-;38172:4;38192:18;38208:1;38192:18;:::i;:::-;38187:23;;38224:18;38240:1;38224:18;:::i;:::-;38219:23;;38261:1;38258;38255:8;38252:34;;;38266:18;;:::i;:::-;38252:34;38311:1;38308;38304:9;38296:17;;38134:185;;;;:::o;38325:96::-;38362:7;38391:24;38409:5;38391:24;:::i;:::-;38380:35;;38325:96;;;:::o;38427:90::-;38461:7;38504:5;38497:13;38490:21;38479:32;;38427:90;;;:::o;38523:149::-;38559:7;38599:66;38592:5;38588:78;38577:89;;38523:149;;;:::o;38678:126::-;38715:7;38755:42;38748:5;38744:54;38733:65;;38678:126;;;:::o;38810:77::-;38847:7;38876:5;38865:16;;38810:77;;;:::o;38893:86::-;38928:7;38968:4;38961:5;38957:16;38946:27;;38893:86;;;:::o;38985:154::-;39069:6;39064:3;39059;39046:30;39131:1;39122:6;39117:3;39113:16;39106:27;38985:154;;;:::o;39145:307::-;39213:1;39223:113;39237:6;39234:1;39231:13;39223:113;;;39322:1;39317:3;39313:11;39307:18;39303:1;39298:3;39294:11;39287:39;39259:2;39256:1;39252:10;39247:15;;39223:113;;;39354:6;39351:1;39348:13;39345:101;;;39434:1;39425:6;39420:3;39416:16;39409:27;39345:101;39194:258;39145:307;;;:::o;39458:320::-;39502:6;39539:1;39533:4;39529:12;39519:22;;39586:1;39580:4;39576:12;39607:18;39597:81;;39663:4;39655:6;39651:17;39641:27;;39597:81;39725:2;39717:6;39714:14;39694:18;39691:38;39688:84;;;39744:18;;:::i;:::-;39688:84;39509:269;39458:320;;;:::o;39784:281::-;39867:27;39889:4;39867:27;:::i;:::-;39859:6;39855:40;39997:6;39985:10;39982:22;39961:18;39949:10;39946:34;39943:62;39940:88;;;40008:18;;:::i;:::-;39940:88;40048:10;40044:2;40037:22;39827:238;39784:281;;:::o;40071:233::-;40110:3;40133:24;40151:5;40133:24;:::i;:::-;40124:33;;40179:66;40172:5;40169:77;40166:103;;;40249:18;;:::i;:::-;40166:103;40296:1;40289:5;40285:13;40278:20;;40071:233;;;:::o;40310:176::-;40342:1;40359:20;40377:1;40359:20;:::i;:::-;40354:25;;40393:20;40411:1;40393:20;:::i;:::-;40388:25;;40432:1;40422:35;;40437:18;;:::i;:::-;40422:35;40478:1;40475;40471:9;40466:14;;40310:176;;;;:::o;40492:180::-;40540:77;40537:1;40530:88;40637:4;40634:1;40627:15;40661:4;40658:1;40651:15;40678:180;40726:77;40723:1;40716:88;40823:4;40820:1;40813:15;40847:4;40844:1;40837:15;40864:180;40912:77;40909:1;40902:88;41009:4;41006:1;40999:15;41033:4;41030:1;41023:15;41050:180;41098:77;41095:1;41088:88;41195:4;41192:1;41185:15;41219:4;41216:1;41209:15;41236:180;41284:77;41281:1;41274:88;41381:4;41378:1;41371:15;41405:4;41402:1;41395:15;41422:180;41470:77;41467:1;41460:88;41567:4;41564:1;41557:15;41591:4;41588:1;41581:15;41608:117;41717:1;41714;41707:12;41731:117;41840:1;41837;41830:12;41854:117;41963:1;41960;41953:12;41977:117;42086:1;42083;42076:12;42100:117;42209:1;42206;42199:12;42223:117;42332:1;42329;42322:12;42346:102;42387:6;42438:2;42434:7;42429:2;42422:5;42418:14;42414:28;42404:38;;42346:102;;;:::o;42454:230::-;42594:34;42590:1;42582:6;42578:14;42571:58;42663:13;42658:2;42650:6;42646:15;42639:38;42454:230;:::o;42690:237::-;42830:34;42826:1;42818:6;42814:14;42807:58;42899:20;42894:2;42886:6;42882:15;42875:45;42690:237;:::o;42933:225::-;43073:34;43069:1;43061:6;43057:14;43050:58;43142:8;43137:2;43129:6;43125:15;43118:33;42933:225;:::o;43164:182::-;43304:34;43300:1;43292:6;43288:14;43281:58;43164:182;:::o;43352:178::-;43492:30;43488:1;43480:6;43476:14;43469:54;43352:178;:::o;43536:223::-;43676:34;43672:1;43664:6;43660:14;43653:58;43745:6;43740:2;43732:6;43728:15;43721:31;43536:223;:::o;43765:175::-;43905:27;43901:1;43893:6;43889:14;43882:51;43765:175;:::o;43946:181::-;44086:33;44082:1;44074:6;44070:14;44063:57;43946:181;:::o;44133:231::-;44273:34;44269:1;44261:6;44257:14;44250:58;44342:14;44337:2;44329:6;44325:15;44318:39;44133:231;:::o;44370:243::-;44510:34;44506:1;44498:6;44494:14;44487:58;44579:26;44574:2;44566:6;44562:15;44555:51;44370:243;:::o;44619:229::-;44759:34;44755:1;44747:6;44743:14;44736:58;44828:12;44823:2;44815:6;44811:15;44804:37;44619:229;:::o;44854:228::-;44994:34;44990:1;44982:6;44978:14;44971:58;45063:11;45058:2;45050:6;45046:15;45039:36;44854:228;:::o;45088:233::-;45228:34;45224:1;45216:6;45212:14;45205:58;45297:16;45292:2;45284:6;45280:15;45273:41;45088:233;:::o;45327:182::-;45467:34;45463:1;45455:6;45451:14;45444:58;45327:182;:::o;45515:236::-;45655:34;45651:1;45643:6;45639:14;45632:58;45724:19;45719:2;45711:6;45707:15;45700:44;45515:236;:::o;45757:231::-;45897:34;45893:1;45885:6;45881:14;45874:58;45966:14;45961:2;45953:6;45949:15;45942:39;45757:231;:::o;45994:182::-;46134:34;46130:1;46122:6;46118:14;46111:58;45994:182;:::o;46182:228::-;46322:34;46318:1;46310:6;46306:14;46299:58;46391:11;46386:2;46378:6;46374:15;46367:36;46182:228;:::o;46416:234::-;46556:34;46552:1;46544:6;46540:14;46533:58;46625:17;46620:2;46612:6;46608:15;46601:42;46416:234;:::o;46656:221::-;46796:34;46792:1;46784:6;46780:14;46773:58;46865:4;46860:2;46852:6;46848:15;46841:29;46656:221;:::o;46883:220::-;47023:34;47019:1;47011:6;47007:14;47000:58;47092:3;47087:2;47079:6;47075:15;47068:28;46883:220;:::o;47109:177::-;47249:29;47245:1;47237:6;47233:14;47226:53;47109:177;:::o;47292:221::-;47432:34;47428:1;47420:6;47416:14;47409:58;47501:4;47496:2;47488:6;47484:15;47477:29;47292:221;:::o;47519:236::-;47659:34;47655:1;47647:6;47643:14;47636:58;47728:19;47723:2;47715:6;47711:15;47704:44;47519:236;:::o;47761:231::-;47901:34;47897:1;47889:6;47885:14;47878:58;47970:14;47965:2;47957:6;47953:15;47946:39;47761:231;:::o;47998:174::-;48138:26;48134:1;48126:6;48122:14;48115:50;47998:174;:::o;48178:122::-;48251:24;48269:5;48251:24;:::i;:::-;48244:5;48241:35;48231:63;;48290:1;48287;48280:12;48231:63;48178:122;:::o;48306:116::-;48376:21;48391:5;48376:21;:::i;:::-;48369:5;48366:32;48356:60;;48412:1;48409;48402:12;48356:60;48306:116;:::o;48428:120::-;48500:23;48517:5;48500:23;:::i;:::-;48493:5;48490:34;48480:62;;48538:1;48535;48528:12;48480:62;48428:120;:::o;48554:122::-;48627:24;48645:5;48627:24;:::i;:::-;48620:5;48617:35;48607:63;;48666:1;48663;48656:12;48607:63;48554:122;:::o;48682:118::-;48753:22;48769:5;48753:22;:::i;:::-;48746:5;48743:33;48733:61;;48790:1;48787;48780:12;48733:61;48682:118;:::o

Swarm Source

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