ETH Price: $3,487.44 (-0.45%)
Gas: 2 Gwei

Token

Hoes (HOES)
 

Overview

Max Total Supply

462 HOES

Holders

243

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
spuro.eth
Balance
1 HOES
0xb5e8add227067bf3db9989686285919fb669b580
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:
Hoes

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-25
*/

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {

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

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

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

// File: @openzeppelin/contracts/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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

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



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

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



pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC721/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}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

// File: @openzeppelin/contracts/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/contracts/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/contracts/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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/Hoes.sol
pragma solidity ^0.8.0;

contract Hoes is ERC721Enumerable, Ownable {
    uint256 public constant MAX_NFT_SUPPLY = 7777;
    uint public constant MAX_PURCHASABLE = 50;
    uint256 public constant HOES_PRICE = 33690000000000000; // 0.03369 ETH
    string public PROVENANCE_HASH = "";

    bool public saleStarted = false;

    constructor() ERC721("Hoes", "HOES") {
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return "https://api.nonfungiblehoes.io/";
    }

    function getTokenURI(uint256 tokenId) public view returns (string memory) {
        return tokenURI(tokenId);
    }

   function mint(uint256 amountToMint) public payable {
        require(saleStarted == true, "This sale has not started.");
        require(totalSupply() < MAX_NFT_SUPPLY, "All NFTs have been minted.");
        require(amountToMint > 0, "You must mint at least one hoe.");
        require(amountToMint <= MAX_PURCHASABLE, "You cannot mint more than 50 hoes.");
        require(totalSupply() + amountToMint <= MAX_NFT_SUPPLY, "The amount of hoes you are trying to mint exceeds the MAX_NFT_SUPPLY.");
        
        require(HOES_PRICE * amountToMint == msg.value, "Incorrect Ether value.");

        for (uint256 i = 0; i < amountToMint; i++) {
            uint256 mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        }
   }

    function startSale() public onlyOwner {
        saleStarted = true;
    }

    function pauseSale() public onlyOwner {
        saleStarted = false;
    }

   function reserveTokens() public onlyOwner {  
       require(saleStarted == false, "Owner cannot mint tokens after the sale has started.");

       for (uint256 i = 0; i < 110; i++) {
           uint256 mintIndex = totalSupply();
           _safeMint(msg.sender, mintIndex);
       }
   }

    function setProvenanceHash(string memory _hash) public onlyOwner {
        PROVENANCE_HASH = _hash;
    }

    function withdraw() public payable onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }
}

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":"HOES_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PURCHASABLE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveTokens","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":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_hash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","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":"payable","type":"function"}]

608060405260405180602001604052806000815250600b90805190602001906200002b929190620001b4565b506000600c60006101000a81548160ff0219169083151502179055503480156200005457600080fd5b506040518060400160405280600481526020017f486f6573000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f484f4553000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d9929190620001b4565b508060019080519060200190620000f2929190620001b4565b505050600062000107620001ac60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002c9565b600033905090565b828054620001c29062000264565b90600052602060002090601f016020900481019282620001e6576000855562000232565b82601f106200020157805160ff191683800117855562000232565b8280016001018555821562000232579182015b828111156200023157825182559160200191906001019062000214565b5b50905062000241919062000245565b5090565b5b808211156200026057600081600090555060010162000246565b5090565b600060028204905060018216806200027d57607f821691505b602082108114156200029457620002936200029a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61414c80620002d96000396000f3fe6080604052600436106101d85760003560e01c806355367ba911610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610658578063e985e9c514610695578063f2fde38b146106d2578063ff1b6556146106fb576101d8565b8063a22cb465146105c4578063b5077f44146105ed578063b66a0e5d14610618578063b88d4fde1461062f576101d8565b8063715018a6116100d1578063715018a61461053b5780638da5cb5b1461055257806395d89b411461057d578063a0712d68146105a8576101d8565b806355367ba91461047f5780635c474f9e146104965780636352211e146104c157806370a08231146104fe576101d8565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b146103e457806342842e0e146103ee5780634d0610fd146104175780634f6ccce714610442576101d8565b806323b872dd1461032a57806327ac36c4146103535780632f745c591461036a5780633bb3a24d146103a7576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806310969523146102ab578063119e4398146102d457806318160ddd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612e27565b610726565b604051610211919061392a565b60405180910390f35b34801561022657600080fd5b5061022f6107a0565b60405161023c9190613945565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612eba565b610832565b60405161027991906138c3565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612deb565b6108b7565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190612e79565b6109cf565b005b3480156102e057600080fd5b506102e9610a65565b6040516102f69190613c87565b60405180910390f35b34801561030b57600080fd5b50610314610a6a565b6040516103219190613c87565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612ce5565b610a77565b005b34801561035f57600080fd5b50610368610ad7565b005b34801561037657600080fd5b50610391600480360381019061038c9190612deb565b610be2565b60405161039e9190613c87565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612eba565b610c87565b6040516103db9190613945565b60405180910390f35b6103ec610c99565b005b3480156103fa57600080fd5b5061041560048036038101906104109190612ce5565b610d55565b005b34801561042357600080fd5b5061042c610d75565b6040516104399190613c87565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190612eba565b610d80565b6040516104769190613c87565b60405180910390f35b34801561048b57600080fd5b50610494610e17565b005b3480156104a257600080fd5b506104ab610eb0565b6040516104b8919061392a565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190612eba565b610ec3565b6040516104f591906138c3565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190612c80565b610f75565b6040516105329190613c87565b60405180910390f35b34801561054757600080fd5b5061055061102d565b005b34801561055e57600080fd5b5061056761116a565b60405161057491906138c3565b60405180910390f35b34801561058957600080fd5b50610592611194565b60405161059f9190613945565b60405180910390f35b6105c260048036038101906105bd9190612eba565b611226565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612daf565b611432565b005b3480156105f957600080fd5b506106026115b3565b60405161060f9190613c87565b60405180910390f35b34801561062457600080fd5b5061062d6115b9565b005b34801561063b57600080fd5b5061065660048036038101906106519190612d34565b611652565b005b34801561066457600080fd5b5061067f600480360381019061067a9190612eba565b6116b4565b60405161068c9190613945565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612ca9565b61175b565b6040516106c9919061392a565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612c80565b6117ef565b005b34801561070757600080fd5b5061071061199b565b60405161071d9190613945565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610799575061079882611a29565b5b9050919050565b6060600080546107af90613f41565b80601f01602080910402602001604051908101604052809291908181526020018280546107db90613f41565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b600061083d82611b0b565b61087c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087390613b87565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c282610ec3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092a90613c27565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610952611b77565b73ffffffffffffffffffffffffffffffffffffffff16148061098157506109808161097b611b77565b61175b565b5b6109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790613ac7565b60405180910390fd5b6109ca8383611b7f565b505050565b6109d7611b77565b73ffffffffffffffffffffffffffffffffffffffff166109f561116a565b73ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290613ba7565b60405180910390fd5b80600b9080519060200190610a61929190612aa4565b5050565b603281565b6000600880549050905090565b610a88610a82611b77565b82611c38565b610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe90613c47565b60405180910390fd5b610ad2838383611d16565b505050565b610adf611b77565b73ffffffffffffffffffffffffffffffffffffffff16610afd61116a565b73ffffffffffffffffffffffffffffffffffffffff1614610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90613ba7565b60405180910390fd5b60001515600c60009054906101000a900460ff16151514610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613b47565b60405180910390fd5b60005b606e811015610bdf576000610bbf610a6a565b9050610bcb3382611f72565b508080610bd790613f73565b915050610bac565b50565b6000610bed83610f75565b8210610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2590613987565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610c92826116b4565b9050919050565b610ca1611b77565b73ffffffffffffffffffffffffffffffffffffffff16610cbf61116a565b73ffffffffffffffffffffffffffffffffffffffff1614610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613ba7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d5357600080fd5b565b610d7083838360405180602001604052806000815250611652565b505050565b6677b0e0627ba00081565b6000610d8a610a6a565b8210610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290613c67565b60405180910390fd5b60088281548110610e05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e1f611b77565b73ffffffffffffffffffffffffffffffffffffffff16610e3d61116a565b73ffffffffffffffffffffffffffffffffffffffff1614610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613ba7565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390613b07565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90613ae7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611035611b77565b73ffffffffffffffffffffffffffffffffffffffff1661105361116a565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090613ba7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111a390613f41565b80601f01602080910402602001604051908101604052809291908181526020018280546111cf90613f41565b801561121c5780601f106111f15761010080835404028352916020019161121c565b820191906000526020600020905b8154815290600101906020018083116111ff57829003601f168201915b5050505050905090565b60011515600c60009054906101000a900460ff1615151461127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390613967565b60405180910390fd5b611e61611287610a6a565b106112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90613a67565b60405180910390fd5b6000811161130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190613a87565b60405180910390fd5b603281111561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590613bc7565b60405180910390fd5b611e618161135a610a6a565b6113649190613d76565b11156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c906139e7565b60405180910390fd5b34816677b0e0627ba0006113b99190613dfd565b146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090613b27565b60405180910390fd5b60005b8181101561142e57600061140e610a6a565b905061141a3382611f72565b50808061142690613f73565b9150506113fc565b5050565b61143a611b77565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90613a47565b60405180910390fd5b80600560006114b5611b77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611562611b77565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a7919061392a565b60405180910390a35050565b611e6181565b6115c1611b77565b73ffffffffffffffffffffffffffffffffffffffff166115df61116a565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613ba7565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b61166361165d611b77565b83611c38565b6116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990613c47565b60405180910390fd5b6116ae84848484611f90565b50505050565b60606116bf82611b0b565b6116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590613c07565b60405180910390fd5b6000611708611fec565b905060008151116117285760405180602001604052806000815250611753565b8061173284612029565b60405160200161174392919061389f565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117f7611b77565b73ffffffffffffffffffffffffffffffffffffffff1661181561116a565b73ffffffffffffffffffffffffffffffffffffffff161461186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290613ba7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d2906139c7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b80546119a890613f41565b80601f01602080910402602001604051908101604052809291908181526020018280546119d490613f41565b8015611a215780601f106119f657610100808354040283529160200191611a21565b820191906000526020600020905b815481529060010190602001808311611a0457829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611af457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b045750611b03826121d6565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bf283610ec3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c4382611b0b565b611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7990613aa7565b60405180910390fd5b6000611c8d83610ec3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cfc57508373ffffffffffffffffffffffffffffffffffffffff16611ce484610832565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d0d5750611d0c818561175b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d3682610ec3565b73ffffffffffffffffffffffffffffffffffffffff1614611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8390613be7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390613a27565b60405180910390fd5b611e07838383612240565b611e12600082611b7f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e629190613e57565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb99190613d76565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f8c828260405180602001604052806000815250612354565b5050565b611f9b848484611d16565b611fa7848484846123af565b611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd906139a7565b60405180910390fd5b50505050565b60606040518060400160405280601f81526020017f68747470733a2f2f6170692e6e6f6e66756e6769626c65686f65732e696f2f00815250905090565b60606000821415612071576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121d1565b600082905060005b600082146120a357808061208c90613f73565b915050600a8261209c9190613dcc565b9150612079565b60008167ffffffffffffffff8111156120e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121175781602001600182028036833780820191505090505b5090505b600085146121ca576001826121309190613e57565b9150600a8561213f9190613fbc565b603061214b9190613d76565b60f81b818381518110612187577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121c39190613dcc565b945061211b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61224b838383612546565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561228e576122898161254b565b6122cd565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122cc576122cb8382612594565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123105761230b81612701565b61234f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461234e5761234d8282612844565b5b5b505050565b61235e83836128c3565b61236b60008484846123af565b6123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a1906139a7565b60405180910390fd5b505050565b60006123d08473ffffffffffffffffffffffffffffffffffffffff16612a91565b15612539578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123f9611b77565b8786866040518563ffffffff1660e01b815260040161241b94939291906138de565b602060405180830381600087803b15801561243557600080fd5b505af192505050801561246657506040513d601f19601f820116820180604052508101906124639190612e50565b60015b6124e9573d8060008114612496576040519150601f19603f3d011682016040523d82523d6000602084013e61249b565b606091505b506000815114156124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d8906139a7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061253e565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125a184610f75565b6125ab9190613e57565b9050600060076000848152602001908152602001600020549050818114612690576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127159190613e57565b905060006009600084815260200190815260200160002054905060006008838154811061276b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106127b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612828577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061284f83610f75565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a90613b67565b60405180910390fd5b61293c81611b0b565b1561297c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297390613a07565b60405180910390fd5b61298860008383612240565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d89190613d76565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612ab090613f41565b90600052602060002090601f016020900481019282612ad25760008555612b19565b82601f10612aeb57805160ff1916838001178555612b19565b82800160010185558215612b19579182015b82811115612b18578251825591602001919060010190612afd565b5b509050612b269190612b2a565b5090565b5b80821115612b43576000816000905550600101612b2b565b5090565b6000612b5a612b5584613cd3565b613ca2565b905082815260208101848484011115612b7257600080fd5b612b7d848285613eff565b509392505050565b6000612b98612b9384613d03565b613ca2565b905082815260208101848484011115612bb057600080fd5b612bbb848285613eff565b509392505050565b600081359050612bd2816140ba565b92915050565b600081359050612be7816140d1565b92915050565b600081359050612bfc816140e8565b92915050565b600081519050612c11816140e8565b92915050565b600082601f830112612c2857600080fd5b8135612c38848260208601612b47565b91505092915050565b600082601f830112612c5257600080fd5b8135612c62848260208601612b85565b91505092915050565b600081359050612c7a816140ff565b92915050565b600060208284031215612c9257600080fd5b6000612ca084828501612bc3565b91505092915050565b60008060408385031215612cbc57600080fd5b6000612cca85828601612bc3565b9250506020612cdb85828601612bc3565b9150509250929050565b600080600060608486031215612cfa57600080fd5b6000612d0886828701612bc3565b9350506020612d1986828701612bc3565b9250506040612d2a86828701612c6b565b9150509250925092565b60008060008060808587031215612d4a57600080fd5b6000612d5887828801612bc3565b9450506020612d6987828801612bc3565b9350506040612d7a87828801612c6b565b925050606085013567ffffffffffffffff811115612d9757600080fd5b612da387828801612c17565b91505092959194509250565b60008060408385031215612dc257600080fd5b6000612dd085828601612bc3565b9250506020612de185828601612bd8565b9150509250929050565b60008060408385031215612dfe57600080fd5b6000612e0c85828601612bc3565b9250506020612e1d85828601612c6b565b9150509250929050565b600060208284031215612e3957600080fd5b6000612e4784828501612bed565b91505092915050565b600060208284031215612e6257600080fd5b6000612e7084828501612c02565b91505092915050565b600060208284031215612e8b57600080fd5b600082013567ffffffffffffffff811115612ea557600080fd5b612eb184828501612c41565b91505092915050565b600060208284031215612ecc57600080fd5b6000612eda84828501612c6b565b91505092915050565b612eec81613e8b565b82525050565b612efb81613e9d565b82525050565b6000612f0c82613d33565b612f168185613d49565b9350612f26818560208601613f0e565b612f2f816140a9565b840191505092915050565b6000612f4582613d3e565b612f4f8185613d5a565b9350612f5f818560208601613f0e565b612f68816140a9565b840191505092915050565b6000612f7e82613d3e565b612f888185613d6b565b9350612f98818560208601613f0e565b80840191505092915050565b6000612fb1601a83613d5a565b91507f546869732073616c6520686173206e6f7420737461727465642e0000000000006000830152602082019050919050565b6000612ff1602b83613d5a565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613057603283613d5a565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006130bd602683613d5a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613123604583613d5a565b91507f54686520616d6f756e74206f6620686f657320796f752061726520747279696e60008301527f6720746f206d696e74206578636565647320746865204d41585f4e46545f535560208301527f50504c592e0000000000000000000000000000000000000000000000000000006040830152606082019050919050565b60006131af601c83613d5a565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006131ef602483613d5a565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613255601983613d5a565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613295601a83613d5a565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b60006132d5601f83613d5a565b91507f596f75206d757374206d696e74206174206c65617374206f6e6520686f652e006000830152602082019050919050565b6000613315602c83613d5a565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061337b603883613d5a565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006133e1602a83613d5a565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613447602983613d5a565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ad601683613d5a565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b60006134ed603483613d5a565b91507f4f776e65722063616e6e6f74206d696e7420746f6b656e73206166746572207460008301527f68652073616c652068617320737461727465642e0000000000000000000000006020830152604082019050919050565b6000613553602083613d5a565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613593602c83613d5a565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006135f9602083613d5a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613639602283613d5a565b91507f596f752063616e6e6f74206d696e74206d6f7265207468616e20353020686f6560008301527f732e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061369f602983613d5a565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613705602f83613d5a565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061376b602183613d5a565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137d1603183613d5a565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613837602c83613d5a565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61389981613ef5565b82525050565b60006138ab8285612f73565b91506138b78284612f73565b91508190509392505050565b60006020820190506138d86000830184612ee3565b92915050565b60006080820190506138f36000830187612ee3565b6139006020830186612ee3565b61390d6040830185613890565b818103606083015261391f8184612f01565b905095945050505050565b600060208201905061393f6000830184612ef2565b92915050565b6000602082019050818103600083015261395f8184612f3a565b905092915050565b6000602082019050818103600083015261398081612fa4565b9050919050565b600060208201905081810360008301526139a081612fe4565b9050919050565b600060208201905081810360008301526139c08161304a565b9050919050565b600060208201905081810360008301526139e0816130b0565b9050919050565b60006020820190508181036000830152613a0081613116565b9050919050565b60006020820190508181036000830152613a20816131a2565b9050919050565b60006020820190508181036000830152613a40816131e2565b9050919050565b60006020820190508181036000830152613a6081613248565b9050919050565b60006020820190508181036000830152613a8081613288565b9050919050565b60006020820190508181036000830152613aa0816132c8565b9050919050565b60006020820190508181036000830152613ac081613308565b9050919050565b60006020820190508181036000830152613ae08161336e565b9050919050565b60006020820190508181036000830152613b00816133d4565b9050919050565b60006020820190508181036000830152613b208161343a565b9050919050565b60006020820190508181036000830152613b40816134a0565b9050919050565b60006020820190508181036000830152613b60816134e0565b9050919050565b60006020820190508181036000830152613b8081613546565b9050919050565b60006020820190508181036000830152613ba081613586565b9050919050565b60006020820190508181036000830152613bc0816135ec565b9050919050565b60006020820190508181036000830152613be08161362c565b9050919050565b60006020820190508181036000830152613c0081613692565b9050919050565b60006020820190508181036000830152613c20816136f8565b9050919050565b60006020820190508181036000830152613c408161375e565b9050919050565b60006020820190508181036000830152613c60816137c4565b9050919050565b60006020820190508181036000830152613c808161382a565b9050919050565b6000602082019050613c9c6000830184613890565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613cc957613cc861407a565b5b8060405250919050565b600067ffffffffffffffff821115613cee57613ced61407a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613d1e57613d1d61407a565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d8182613ef5565b9150613d8c83613ef5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dc157613dc0613fed565b5b828201905092915050565b6000613dd782613ef5565b9150613de283613ef5565b925082613df257613df161401c565b5b828204905092915050565b6000613e0882613ef5565b9150613e1383613ef5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e4c57613e4b613fed565b5b828202905092915050565b6000613e6282613ef5565b9150613e6d83613ef5565b925082821015613e8057613e7f613fed565b5b828203905092915050565b6000613e9682613ed5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f2c578082015181840152602081019050613f11565b83811115613f3b576000848401525b50505050565b60006002820490506001821680613f5957607f821691505b60208210811415613f6d57613f6c61404b565b5b50919050565b6000613f7e82613ef5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fb157613fb0613fed565b5b600182019050919050565b6000613fc782613ef5565b9150613fd283613ef5565b925082613fe257613fe161401c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6140c381613e8b565b81146140ce57600080fd5b50565b6140da81613e9d565b81146140e557600080fd5b50565b6140f181613ea9565b81146140fc57600080fd5b50565b61410881613ef5565b811461411357600080fd5b5056fea2646970667358221220a44bf3485f2e2033169bce3897e2afe4255fffbac6109ad500ecef1ee41bcea064736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101d85760003560e01c806355367ba911610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd14610658578063e985e9c514610695578063f2fde38b146106d2578063ff1b6556146106fb576101d8565b8063a22cb465146105c4578063b5077f44146105ed578063b66a0e5d14610618578063b88d4fde1461062f576101d8565b8063715018a6116100d1578063715018a61461053b5780638da5cb5b1461055257806395d89b411461057d578063a0712d68146105a8576101d8565b806355367ba91461047f5780635c474f9e146104965780636352211e146104c157806370a08231146104fe576101d8565b806323b872dd1161017a5780633ccfd60b116101495780633ccfd60b146103e457806342842e0e146103ee5780634d0610fd146104175780634f6ccce714610442576101d8565b806323b872dd1461032a57806327ac36c4146103535780632f745c591461036a5780633bb3a24d146103a7576101d8565b8063095ea7b3116101b6578063095ea7b31461028257806310969523146102ab578063119e4398146102d457806318160ddd146102ff576101d8565b806301ffc9a7146101dd57806306fdde031461021a578063081812fc14610245575b600080fd5b3480156101e957600080fd5b5061020460048036038101906101ff9190612e27565b610726565b604051610211919061392a565b60405180910390f35b34801561022657600080fd5b5061022f6107a0565b60405161023c9190613945565b60405180910390f35b34801561025157600080fd5b5061026c60048036038101906102679190612eba565b610832565b60405161027991906138c3565b60405180910390f35b34801561028e57600080fd5b506102a960048036038101906102a49190612deb565b6108b7565b005b3480156102b757600080fd5b506102d260048036038101906102cd9190612e79565b6109cf565b005b3480156102e057600080fd5b506102e9610a65565b6040516102f69190613c87565b60405180910390f35b34801561030b57600080fd5b50610314610a6a565b6040516103219190613c87565b60405180910390f35b34801561033657600080fd5b50610351600480360381019061034c9190612ce5565b610a77565b005b34801561035f57600080fd5b50610368610ad7565b005b34801561037657600080fd5b50610391600480360381019061038c9190612deb565b610be2565b60405161039e9190613c87565b60405180910390f35b3480156103b357600080fd5b506103ce60048036038101906103c99190612eba565b610c87565b6040516103db9190613945565b60405180910390f35b6103ec610c99565b005b3480156103fa57600080fd5b5061041560048036038101906104109190612ce5565b610d55565b005b34801561042357600080fd5b5061042c610d75565b6040516104399190613c87565b60405180910390f35b34801561044e57600080fd5b5061046960048036038101906104649190612eba565b610d80565b6040516104769190613c87565b60405180910390f35b34801561048b57600080fd5b50610494610e17565b005b3480156104a257600080fd5b506104ab610eb0565b6040516104b8919061392a565b60405180910390f35b3480156104cd57600080fd5b506104e860048036038101906104e39190612eba565b610ec3565b6040516104f591906138c3565b60405180910390f35b34801561050a57600080fd5b5061052560048036038101906105209190612c80565b610f75565b6040516105329190613c87565b60405180910390f35b34801561054757600080fd5b5061055061102d565b005b34801561055e57600080fd5b5061056761116a565b60405161057491906138c3565b60405180910390f35b34801561058957600080fd5b50610592611194565b60405161059f9190613945565b60405180910390f35b6105c260048036038101906105bd9190612eba565b611226565b005b3480156105d057600080fd5b506105eb60048036038101906105e69190612daf565b611432565b005b3480156105f957600080fd5b506106026115b3565b60405161060f9190613c87565b60405180910390f35b34801561062457600080fd5b5061062d6115b9565b005b34801561063b57600080fd5b5061065660048036038101906106519190612d34565b611652565b005b34801561066457600080fd5b5061067f600480360381019061067a9190612eba565b6116b4565b60405161068c9190613945565b60405180910390f35b3480156106a157600080fd5b506106bc60048036038101906106b79190612ca9565b61175b565b6040516106c9919061392a565b60405180910390f35b3480156106de57600080fd5b506106f960048036038101906106f49190612c80565b6117ef565b005b34801561070757600080fd5b5061071061199b565b60405161071d9190613945565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610799575061079882611a29565b5b9050919050565b6060600080546107af90613f41565b80601f01602080910402602001604051908101604052809291908181526020018280546107db90613f41565b80156108285780601f106107fd57610100808354040283529160200191610828565b820191906000526020600020905b81548152906001019060200180831161080b57829003601f168201915b5050505050905090565b600061083d82611b0b565b61087c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087390613b87565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108c282610ec3565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092a90613c27565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610952611b77565b73ffffffffffffffffffffffffffffffffffffffff16148061098157506109808161097b611b77565b61175b565b5b6109c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b790613ac7565b60405180910390fd5b6109ca8383611b7f565b505050565b6109d7611b77565b73ffffffffffffffffffffffffffffffffffffffff166109f561116a565b73ffffffffffffffffffffffffffffffffffffffff1614610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a4290613ba7565b60405180910390fd5b80600b9080519060200190610a61929190612aa4565b5050565b603281565b6000600880549050905090565b610a88610a82611b77565b82611c38565b610ac7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abe90613c47565b60405180910390fd5b610ad2838383611d16565b505050565b610adf611b77565b73ffffffffffffffffffffffffffffffffffffffff16610afd61116a565b73ffffffffffffffffffffffffffffffffffffffff1614610b53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4a90613ba7565b60405180910390fd5b60001515600c60009054906101000a900460ff16151514610ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba090613b47565b60405180910390fd5b60005b606e811015610bdf576000610bbf610a6a565b9050610bcb3382611f72565b508080610bd790613f73565b915050610bac565b50565b6000610bed83610f75565b8210610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2590613987565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610c92826116b4565b9050919050565b610ca1611b77565b73ffffffffffffffffffffffffffffffffffffffff16610cbf61116a565b73ffffffffffffffffffffffffffffffffffffffff1614610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613ba7565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610d5357600080fd5b565b610d7083838360405180602001604052806000815250611652565b505050565b6677b0e0627ba00081565b6000610d8a610a6a565b8210610dcb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc290613c67565b60405180910390fd5b60088281548110610e05577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610e1f611b77565b73ffffffffffffffffffffffffffffffffffffffff16610e3d61116a565b73ffffffffffffffffffffffffffffffffffffffff1614610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a90613ba7565b60405180910390fd5b6000600c60006101000a81548160ff021916908315150217905550565b600c60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6390613b07565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fdd90613ae7565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611035611b77565b73ffffffffffffffffffffffffffffffffffffffff1661105361116a565b73ffffffffffffffffffffffffffffffffffffffff16146110a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110a090613ba7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546111a390613f41565b80601f01602080910402602001604051908101604052809291908181526020018280546111cf90613f41565b801561121c5780601f106111f15761010080835404028352916020019161121c565b820191906000526020600020905b8154815290600101906020018083116111ff57829003601f168201915b5050505050905090565b60011515600c60009054906101000a900460ff1615151461127c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127390613967565b60405180910390fd5b611e61611287610a6a565b106112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90613a67565b60405180910390fd5b6000811161130a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130190613a87565b60405180910390fd5b603281111561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590613bc7565b60405180910390fd5b611e618161135a610a6a565b6113649190613d76565b11156113a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139c906139e7565b60405180910390fd5b34816677b0e0627ba0006113b99190613dfd565b146113f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f090613b27565b60405180910390fd5b60005b8181101561142e57600061140e610a6a565b905061141a3382611f72565b50808061142690613f73565b9150506113fc565b5050565b61143a611b77565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149f90613a47565b60405180910390fd5b80600560006114b5611b77565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611562611b77565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115a7919061392a565b60405180910390a35050565b611e6181565b6115c1611b77565b73ffffffffffffffffffffffffffffffffffffffff166115df61116a565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613ba7565b60405180910390fd5b6001600c60006101000a81548160ff021916908315150217905550565b61166361165d611b77565b83611c38565b6116a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169990613c47565b60405180910390fd5b6116ae84848484611f90565b50505050565b60606116bf82611b0b565b6116fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f590613c07565b60405180910390fd5b6000611708611fec565b905060008151116117285760405180602001604052806000815250611753565b8061173284612029565b60405160200161174392919061389f565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6117f7611b77565b73ffffffffffffffffffffffffffffffffffffffff1661181561116a565b73ffffffffffffffffffffffffffffffffffffffff161461186b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186290613ba7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156118db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d2906139c7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b80546119a890613f41565b80601f01602080910402602001604051908101604052809291908181526020018280546119d490613f41565b8015611a215780601f106119f657610100808354040283529160200191611a21565b820191906000526020600020905b815481529060010190602001808311611a0457829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611af457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b045750611b03826121d6565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611bf283610ec3565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611c4382611b0b565b611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7990613aa7565b60405180910390fd5b6000611c8d83610ec3565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611cfc57508373ffffffffffffffffffffffffffffffffffffffff16611ce484610832565b73ffffffffffffffffffffffffffffffffffffffff16145b80611d0d5750611d0c818561175b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611d3682610ec3565b73ffffffffffffffffffffffffffffffffffffffff1614611d8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8390613be7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df390613a27565b60405180910390fd5b611e07838383612240565b611e12600082611b7f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e629190613e57565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611eb99190613d76565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611f8c828260405180602001604052806000815250612354565b5050565b611f9b848484611d16565b611fa7848484846123af565b611fe6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fdd906139a7565b60405180910390fd5b50505050565b60606040518060400160405280601f81526020017f68747470733a2f2f6170692e6e6f6e66756e6769626c65686f65732e696f2f00815250905090565b60606000821415612071576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506121d1565b600082905060005b600082146120a357808061208c90613f73565b915050600a8261209c9190613dcc565b9150612079565b60008167ffffffffffffffff8111156120e5577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121175781602001600182028036833780820191505090505b5090505b600085146121ca576001826121309190613e57565b9150600a8561213f9190613fbc565b603061214b9190613d76565b60f81b818381518110612187577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856121c39190613dcc565b945061211b565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61224b838383612546565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561228e576122898161254b565b6122cd565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146122cc576122cb8382612594565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123105761230b81612701565b61234f565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461234e5761234d8282612844565b5b5b505050565b61235e83836128c3565b61236b60008484846123af565b6123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a1906139a7565b60405180910390fd5b505050565b60006123d08473ffffffffffffffffffffffffffffffffffffffff16612a91565b15612539578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026123f9611b77565b8786866040518563ffffffff1660e01b815260040161241b94939291906138de565b602060405180830381600087803b15801561243557600080fd5b505af192505050801561246657506040513d601f19601f820116820180604052508101906124639190612e50565b60015b6124e9573d8060008114612496576040519150601f19603f3d011682016040523d82523d6000602084013e61249b565b606091505b506000815114156124e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d8906139a7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061253e565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016125a184610f75565b6125ab9190613e57565b9050600060076000848152602001908152602001600020549050818114612690576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506127159190613e57565b905060006009600084815260200190815260200160002054905060006008838154811061276b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106127b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612828577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061284f83610f75565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612933576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292a90613b67565b60405180910390fd5b61293c81611b0b565b1561297c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161297390613a07565b60405180910390fd5b61298860008383612240565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129d89190613d76565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612ab090613f41565b90600052602060002090601f016020900481019282612ad25760008555612b19565b82601f10612aeb57805160ff1916838001178555612b19565b82800160010185558215612b19579182015b82811115612b18578251825591602001919060010190612afd565b5b509050612b269190612b2a565b5090565b5b80821115612b43576000816000905550600101612b2b565b5090565b6000612b5a612b5584613cd3565b613ca2565b905082815260208101848484011115612b7257600080fd5b612b7d848285613eff565b509392505050565b6000612b98612b9384613d03565b613ca2565b905082815260208101848484011115612bb057600080fd5b612bbb848285613eff565b509392505050565b600081359050612bd2816140ba565b92915050565b600081359050612be7816140d1565b92915050565b600081359050612bfc816140e8565b92915050565b600081519050612c11816140e8565b92915050565b600082601f830112612c2857600080fd5b8135612c38848260208601612b47565b91505092915050565b600082601f830112612c5257600080fd5b8135612c62848260208601612b85565b91505092915050565b600081359050612c7a816140ff565b92915050565b600060208284031215612c9257600080fd5b6000612ca084828501612bc3565b91505092915050565b60008060408385031215612cbc57600080fd5b6000612cca85828601612bc3565b9250506020612cdb85828601612bc3565b9150509250929050565b600080600060608486031215612cfa57600080fd5b6000612d0886828701612bc3565b9350506020612d1986828701612bc3565b9250506040612d2a86828701612c6b565b9150509250925092565b60008060008060808587031215612d4a57600080fd5b6000612d5887828801612bc3565b9450506020612d6987828801612bc3565b9350506040612d7a87828801612c6b565b925050606085013567ffffffffffffffff811115612d9757600080fd5b612da387828801612c17565b91505092959194509250565b60008060408385031215612dc257600080fd5b6000612dd085828601612bc3565b9250506020612de185828601612bd8565b9150509250929050565b60008060408385031215612dfe57600080fd5b6000612e0c85828601612bc3565b9250506020612e1d85828601612c6b565b9150509250929050565b600060208284031215612e3957600080fd5b6000612e4784828501612bed565b91505092915050565b600060208284031215612e6257600080fd5b6000612e7084828501612c02565b91505092915050565b600060208284031215612e8b57600080fd5b600082013567ffffffffffffffff811115612ea557600080fd5b612eb184828501612c41565b91505092915050565b600060208284031215612ecc57600080fd5b6000612eda84828501612c6b565b91505092915050565b612eec81613e8b565b82525050565b612efb81613e9d565b82525050565b6000612f0c82613d33565b612f168185613d49565b9350612f26818560208601613f0e565b612f2f816140a9565b840191505092915050565b6000612f4582613d3e565b612f4f8185613d5a565b9350612f5f818560208601613f0e565b612f68816140a9565b840191505092915050565b6000612f7e82613d3e565b612f888185613d6b565b9350612f98818560208601613f0e565b80840191505092915050565b6000612fb1601a83613d5a565b91507f546869732073616c6520686173206e6f7420737461727465642e0000000000006000830152602082019050919050565b6000612ff1602b83613d5a565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613057603283613d5a565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006130bd602683613d5a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613123604583613d5a565b91507f54686520616d6f756e74206f6620686f657320796f752061726520747279696e60008301527f6720746f206d696e74206578636565647320746865204d41585f4e46545f535560208301527f50504c592e0000000000000000000000000000000000000000000000000000006040830152606082019050919050565b60006131af601c83613d5a565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006131ef602483613d5a565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613255601983613d5a565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613295601a83613d5a565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b60006132d5601f83613d5a565b91507f596f75206d757374206d696e74206174206c65617374206f6e6520686f652e006000830152602082019050919050565b6000613315602c83613d5a565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061337b603883613d5a565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006133e1602a83613d5a565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613447602983613d5a565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006134ad601683613d5a565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b60006134ed603483613d5a565b91507f4f776e65722063616e6e6f74206d696e7420746f6b656e73206166746572207460008301527f68652073616c652068617320737461727465642e0000000000000000000000006020830152604082019050919050565b6000613553602083613d5a565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613593602c83613d5a565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006135f9602083613d5a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613639602283613d5a565b91507f596f752063616e6e6f74206d696e74206d6f7265207468616e20353020686f6560008301527f732e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061369f602983613d5a565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613705602f83613d5a565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061376b602183613d5a565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006137d1603183613d5a565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000613837602c83613d5a565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61389981613ef5565b82525050565b60006138ab8285612f73565b91506138b78284612f73565b91508190509392505050565b60006020820190506138d86000830184612ee3565b92915050565b60006080820190506138f36000830187612ee3565b6139006020830186612ee3565b61390d6040830185613890565b818103606083015261391f8184612f01565b905095945050505050565b600060208201905061393f6000830184612ef2565b92915050565b6000602082019050818103600083015261395f8184612f3a565b905092915050565b6000602082019050818103600083015261398081612fa4565b9050919050565b600060208201905081810360008301526139a081612fe4565b9050919050565b600060208201905081810360008301526139c08161304a565b9050919050565b600060208201905081810360008301526139e0816130b0565b9050919050565b60006020820190508181036000830152613a0081613116565b9050919050565b60006020820190508181036000830152613a20816131a2565b9050919050565b60006020820190508181036000830152613a40816131e2565b9050919050565b60006020820190508181036000830152613a6081613248565b9050919050565b60006020820190508181036000830152613a8081613288565b9050919050565b60006020820190508181036000830152613aa0816132c8565b9050919050565b60006020820190508181036000830152613ac081613308565b9050919050565b60006020820190508181036000830152613ae08161336e565b9050919050565b60006020820190508181036000830152613b00816133d4565b9050919050565b60006020820190508181036000830152613b208161343a565b9050919050565b60006020820190508181036000830152613b40816134a0565b9050919050565b60006020820190508181036000830152613b60816134e0565b9050919050565b60006020820190508181036000830152613b8081613546565b9050919050565b60006020820190508181036000830152613ba081613586565b9050919050565b60006020820190508181036000830152613bc0816135ec565b9050919050565b60006020820190508181036000830152613be08161362c565b9050919050565b60006020820190508181036000830152613c0081613692565b9050919050565b60006020820190508181036000830152613c20816136f8565b9050919050565b60006020820190508181036000830152613c408161375e565b9050919050565b60006020820190508181036000830152613c60816137c4565b9050919050565b60006020820190508181036000830152613c808161382a565b9050919050565b6000602082019050613c9c6000830184613890565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613cc957613cc861407a565b5b8060405250919050565b600067ffffffffffffffff821115613cee57613ced61407a565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613d1e57613d1d61407a565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613d8182613ef5565b9150613d8c83613ef5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613dc157613dc0613fed565b5b828201905092915050565b6000613dd782613ef5565b9150613de283613ef5565b925082613df257613df161401c565b5b828204905092915050565b6000613e0882613ef5565b9150613e1383613ef5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613e4c57613e4b613fed565b5b828202905092915050565b6000613e6282613ef5565b9150613e6d83613ef5565b925082821015613e8057613e7f613fed565b5b828203905092915050565b6000613e9682613ed5565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613f2c578082015181840152602081019050613f11565b83811115613f3b576000848401525b50505050565b60006002820490506001821680613f5957607f821691505b60208210811415613f6d57613f6c61404b565b5b50919050565b6000613f7e82613ef5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613fb157613fb0613fed565b5b600182019050919050565b6000613fc782613ef5565b9150613fd283613ef5565b925082613fe257613fe161401c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6140c381613e8b565b81146140ce57600080fd5b50565b6140da81613e9d565b81146140e557600080fd5b50565b6140f181613ea9565b81146140fc57600080fd5b50565b61410881613ef5565b811461411357600080fd5b5056fea2646970667358221220a44bf3485f2e2033169bce3897e2afe4255fffbac6109ad500ecef1ee41bcea064736f6c63430008000033

Deployed Bytecode Sourcemap

42804:2105:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34322:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21527:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22987:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22524:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44671:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42906:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34975:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23877:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44368:295;;;;;;;;;;;;;:::i;:::-;;34643:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43308:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44786:120;;;:::i;:::-;;24253:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42954:54;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35165:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44285:76;;;;;;;;;;;;;:::i;:::-;;43073:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21221:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20951:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42194:148;;;;;;;;;;;;;:::i;:::-;;41543:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21696:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43432:762;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23280:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42854:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44202:75;;;;;;;;;;;;;:::i;:::-;;24475:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21871:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23646:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42497:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43030:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34322:237;34424:4;34463:35;34448:50;;;:11;:50;;;;:103;;;;34515:36;34539:11;34515:23;:36::i;:::-;34448:103;34441:110;;34322:237;;;:::o;21527:100::-;21581:13;21614:5;21607:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21527:100;:::o;22987:221::-;23063:7;23091:16;23099:7;23091;:16::i;:::-;23083:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23176:15;:24;23192:7;23176:24;;;;;;;;;;;;;;;;;;;;;23169:31;;22987:221;;;:::o;22524:397::-;22605:13;22621:23;22636:7;22621:14;:23::i;:::-;22605:39;;22669:5;22663:11;;:2;:11;;;;22655:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22749:5;22733:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22758:37;22775:5;22782:12;:10;:12::i;:::-;22758:16;:37::i;:::-;22733:62;22725:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22892:21;22901:2;22905:7;22892:8;:21::i;:::-;22524:397;;;:::o;44671:107::-;41774:12;:10;:12::i;:::-;41763:23;;:7;:5;:7::i;:::-;:23;;;41755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44765:5:::1;44747:15;:23;;;;;;;;;;;;:::i;:::-;;44671:107:::0;:::o;42906:41::-;42945:2;42906:41;:::o;34975:113::-;35036:7;35063:10;:17;;;;35056:24;;34975:113;:::o;23877:305::-;24038:41;24057:12;:10;:12::i;:::-;24071:7;24038:18;:41::i;:::-;24030:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24146:28;24156:4;24162:2;24166:7;24146:9;:28::i;:::-;23877:305;;;:::o;44368:295::-;41774:12;:10;:12::i;:::-;41763:23;;:7;:5;:7::i;:::-;:23;;;41755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44445:5:::1;44430:20;;:11;;;;;;;;;;;:20;;;44422:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;44524:9;44519:138;44543:3;44539:1;:7;44519:138;;;44567:17;44587:13;:11;:13::i;:::-;44567:33;;44614:32;44624:10;44636:9;44614;:32::i;:::-;44519:138;44548:3;;;;;:::i;:::-;;;;44519:138;;;;44368:295::o:0;34643:256::-;34740:7;34776:23;34793:5;34776:16;:23::i;:::-;34768:5;:31;34760:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34865:12;:19;34878:5;34865:19;;;;;;;;;;;;;;;:26;34885:5;34865:26;;;;;;;;;;;;34858:33;;34643:256;;;;:::o;43308:117::-;43367:13;43400:17;43409:7;43400:8;:17::i;:::-;43393:24;;43308:117;;;:::o;44786:120::-;41774:12;:10;:12::i;:::-;41763:23;;:7;:5;:7::i;:::-;:23;;;41755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44858:10:::1;44850:24;;:47;44875:21;44850:47;;;;;;;;;;;;;;;;;;;;;;;44842:56;;;::::0;::::1;;44786:120::o:0;24253:151::-;24357:39;24374:4;24380:2;24384:7;24357:39;;;;;;;;;;;;:16;:39::i;:::-;24253:151;;;:::o;42954:54::-;42991:17;42954:54;:::o;35165:233::-;35240:7;35276:30;:28;:30::i;:::-;35268:5;:38;35260:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35373:10;35384:5;35373:17;;;;;;;;;;;;;;;;;;;;;;;;35366:24;;35165:233;;;:::o;44285:76::-;41774:12;:10;:12::i;:::-;41763:23;;:7;:5;:7::i;:::-;:23;;;41755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44348:5:::1;44334:11;;:19;;;;;;;;;;;;;;;;;;44285:76::o:0;43073:31::-;;;;;;;;;;;;;:::o;21221:239::-;21293:7;21313:13;21329:7;:16;21337:7;21329:16;;;;;;;;;;;;;;;;;;;;;21313:32;;21381:1;21364:19;;:5;:19;;;;21356:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21447:5;21440:12;;;21221:239;;;:::o;20951:208::-;21023:7;21068:1;21051:19;;:5;:19;;;;21043:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21135:9;:16;21145:5;21135:16;;;;;;;;;;;;;;;;21128:23;;20951:208;;;:::o;42194:148::-;41774:12;:10;:12::i;:::-;41763:23;;:7;:5;:7::i;:::-;:23;;;41755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42301:1:::1;42264:40;;42285:6;;;;;;;;;;;42264:40;;;;;;;;;;;;42332:1;42315:6;;:19;;;;;;;;;;;;;;;;;;42194:148::o:0;41543:87::-;41589:7;41616:6;;;;;;;;;;;41609:13;;41543:87;:::o;21696:104::-;21752:13;21785:7;21778:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21696:104;:::o;43432:762::-;43517:4;43502:19;;:11;;;;;;;;;;;:19;;;43494:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;42895:4;43571:13;:11;:13::i;:::-;:30;43563:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43666:1;43651:12;:16;43643:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;42945:2;43722:12;:31;;43714:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;42895:4;43827:12;43811:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:46;;43803:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;43989:9;43973:12;42991:17;43960:25;;;;:::i;:::-;:38;43952:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44043:9;44038:150;44062:12;44058:1;:16;44038:150;;;44096:17;44116:13;:11;:13::i;:::-;44096:33;;44144:32;44154:10;44166:9;44144;:32::i;:::-;44038:150;44076:3;;;;;:::i;:::-;;;;44038:150;;;;43432:762;:::o;23280:295::-;23395:12;:10;:12::i;:::-;23383:24;;:8;:24;;;;23375:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23495:8;23450:18;:32;23469:12;:10;:12::i;:::-;23450:32;;;;;;;;;;;;;;;:42;23483:8;23450:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23548:8;23519:48;;23534:12;:10;:12::i;:::-;23519:48;;;23558:8;23519:48;;;;;;:::i;:::-;;;;;;;;23280:295;;:::o;42854:45::-;42895:4;42854:45;:::o;44202:75::-;41774:12;:10;:12::i;:::-;41763:23;;:7;:5;:7::i;:::-;:23;;;41755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44265:4:::1;44251:11;;:18;;;;;;;;;;;;;;;;;;44202:75::o:0;24475:285::-;24607:41;24626:12;:10;:12::i;:::-;24640:7;24607:18;:41::i;:::-;24599:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24713:39;24727:4;24733:2;24737:7;24746:5;24713:13;:39::i;:::-;24475:285;;;;:::o;21871:360::-;21944:13;21978:16;21986:7;21978;:16::i;:::-;21970:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22059:21;22083:10;:8;:10::i;:::-;22059:34;;22135:1;22117:7;22111:21;:25;:112;;;;;;;;;;;;;;;;;22176:7;22185:18;:7;:16;:18::i;:::-;22159:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22111:112;22104:119;;;21871:360;;;:::o;23646:164::-;23743:4;23767:18;:25;23786:5;23767:25;;;;;;;;;;;;;;;:35;23793:8;23767:35;;;;;;;;;;;;;;;;;;;;;;;;;23760:42;;23646:164;;;;:::o;42497:244::-;41774:12;:10;:12::i;:::-;41763:23;;:7;:5;:7::i;:::-;:23;;;41755:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42606:1:::1;42586:22;;:8;:22;;;;42578:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42696:8;42667:38;;42688:6;;;;;;;;;;;42667:38;;;;;;;;;;;;42725:8;42716:6;;:17;;;;;;;;;;;;;;;;;;42497:244:::0;:::o;43030:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20595:292::-;20697:4;20736:25;20721:40;;;:11;:40;;;;:105;;;;20793:33;20778:48;;;:11;:48;;;;20721:105;:158;;;;20843:36;20867:11;20843:23;:36::i;:::-;20721:158;20714:165;;20595:292;;;:::o;26227:127::-;26292:4;26344:1;26316:30;;:7;:16;26324:7;26316:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26309:37;;26227:127;;;:::o;15883:98::-;15936:7;15963:10;15956:17;;15883:98;:::o;30104:174::-;30206:2;30179:15;:24;30195:7;30179:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30262:7;30258:2;30224:46;;30233:23;30248:7;30233:14;:23::i;:::-;30224:46;;;;;;;;;;;;30104:174;;:::o;26521:348::-;26614:4;26639:16;26647:7;26639;:16::i;:::-;26631:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26715:13;26731:23;26746:7;26731:14;:23::i;:::-;26715:39;;26784:5;26773:16;;:7;:16;;;:51;;;;26817:7;26793:31;;:20;26805:7;26793:11;:20::i;:::-;:31;;;26773:51;:87;;;;26828:32;26845:5;26852:7;26828:16;:32::i;:::-;26773:87;26765:96;;;26521:348;;;;:::o;29442:544::-;29567:4;29540:31;;:23;29555:7;29540:14;:23::i;:::-;:31;;;29532:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29650:1;29636:16;;:2;:16;;;;29628:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29706:39;29727:4;29733:2;29737:7;29706:20;:39::i;:::-;29810:29;29827:1;29831:7;29810:8;:29::i;:::-;29871:1;29852:9;:15;29862:4;29852:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29900:1;29883:9;:13;29893:2;29883:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29931:2;29912:7;:16;29920:7;29912:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29970:7;29966:2;29951:27;;29960:4;29951:27;;;;;;;;;;;;29442:544;;;:::o;27211:110::-;27287:26;27297:2;27301:7;27287:26;;;;;;;;;;;;:9;:26::i;:::-;27211:110;;:::o;25642:272::-;25756:28;25766:4;25772:2;25776:7;25756:9;:28::i;:::-;25803:48;25826:4;25832:2;25836:7;25845:5;25803:22;:48::i;:::-;25795:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25642:272;;;;:::o;43166:134::-;43226:13;43252:40;;;;;;;;;;;;;;;;;;;43166:134;:::o;16538:723::-;16594:13;16824:1;16815:5;:10;16811:53;;;16842:10;;;;;;;;;;;;;;;;;;;;;16811:53;16874:12;16889:5;16874:20;;16905:14;16930:78;16945:1;16937:4;:9;16930:78;;16963:8;;;;;:::i;:::-;;;;16994:2;16986:10;;;;;:::i;:::-;;;16930:78;;;17018:19;17050:6;17040:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17018:39;;17068:154;17084:1;17075:5;:10;17068:154;;17112:1;17102:11;;;;;:::i;:::-;;;17179:2;17171:5;:10;;;;:::i;:::-;17158:2;:24;;;;:::i;:::-;17145:39;;17128:6;17135;17128:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17208:2;17199:11;;;;;:::i;:::-;;;17068:154;;;17246:6;17232:21;;;;;16538:723;;;;:::o;19093:157::-;19178:4;19217:25;19202:40;;;:11;:40;;;;19195:47;;19093:157;;;:::o;36011:555::-;36121:45;36148:4;36154:2;36158:7;36121:26;:45::i;:::-;36199:1;36183:18;;:4;:18;;;36179:187;;;36218:40;36250:7;36218:31;:40::i;:::-;36179:187;;;36288:2;36280:10;;:4;:10;;;36276:90;;36307:47;36340:4;36346:7;36307:32;:47::i;:::-;36276:90;36179:187;36394:1;36380:16;;:2;:16;;;36376:183;;;36413:45;36450:7;36413:36;:45::i;:::-;36376:183;;;36486:4;36480:10;;:2;:10;;;36476:83;;36507:40;36535:2;36539:7;36507:27;:40::i;:::-;36476:83;36376:183;36011:555;;;:::o;27548:250::-;27644:18;27650:2;27654:7;27644:5;:18::i;:::-;27681:54;27712:1;27716:2;27720:7;27729:5;27681:22;:54::i;:::-;27673:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27548:250;;;:::o;30843:843::-;30964:4;30990:15;:2;:13;;;:15::i;:::-;30986:693;;;31042:2;31026:36;;;31063:12;:10;:12::i;:::-;31077:4;31083:7;31092:5;31026:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31022:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31289:1;31272:6;:13;:18;31268:341;;;31315:60;;;;;;;;;;:::i;:::-;;;;;;;;31268:341;31559:6;31553:13;31544:6;31540:2;31536:15;31529:38;31022:602;31159:45;;;31149:55;;;:6;:55;;;;31142:62;;;;;30986:693;31663:4;31656:11;;30843:843;;;;;;;:::o;32299:93::-;;;;:::o;37289:164::-;37393:10;:17;;;;37366:15;:24;37382:7;37366:24;;;;;;;;;;;:44;;;;37421:10;37437:7;37421:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37289:164;:::o;38080:988::-;38346:22;38396:1;38371:22;38388:4;38371:16;:22::i;:::-;:26;;;;:::i;:::-;38346:51;;38408:18;38429:17;:26;38447:7;38429:26;;;;;;;;;;;;38408:47;;38576:14;38562:10;:28;38558:328;;38607:19;38629:12;:18;38642:4;38629:18;;;;;;;;;;;;;;;:34;38648:14;38629:34;;;;;;;;;;;;38607:56;;38713:11;38680:12;:18;38693:4;38680:18;;;;;;;;;;;;;;;:30;38699:10;38680:30;;;;;;;;;;;:44;;;;38830:10;38797:17;:30;38815:11;38797:30;;;;;;;;;;;:43;;;;38558:328;;38982:17;:26;39000:7;38982:26;;;;;;;;;;;38975:33;;;39026:12;:18;39039:4;39026:18;;;;;;;;;;;;;;;:34;39045:14;39026:34;;;;;;;;;;;39019:41;;;38080:988;;;;:::o;39363:1079::-;39616:22;39661:1;39641:10;:17;;;;:21;;;;:::i;:::-;39616:46;;39673:18;39694:15;:24;39710:7;39694:24;;;;;;;;;;;;39673:45;;40045:19;40067:10;40078:14;40067:26;;;;;;;;;;;;;;;;;;;;;;;;40045:48;;40131:11;40106:10;40117;40106:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40242:10;40211:15;:28;40227:11;40211:28;;;;;;;;;;;:41;;;;40383:15;:24;40399:7;40383:24;;;;;;;;;;;40376:31;;;40418:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39363:1079;;;;:::o;36867:221::-;36952:14;36969:20;36986:2;36969:16;:20::i;:::-;36952:37;;37027:7;37000:12;:16;37013:2;37000:16;;;;;;;;;;;;;;;:24;37017:6;37000:24;;;;;;;;;;;:34;;;;37074:6;37045:17;:26;37063:7;37045:26;;;;;;;;;;;:35;;;;36867:221;;;:::o;28134:382::-;28228:1;28214:16;;:2;:16;;;;28206:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28287:16;28295:7;28287;:16::i;:::-;28286:17;28278:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28349:45;28378:1;28382:2;28386:7;28349:20;:45::i;:::-;28424:1;28407:9;:13;28417:2;28407:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28455:2;28436:7;:16;28444:7;28436:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28500:7;28496:2;28475:33;;28492:1;28475:33;;;;;;;;;;;;28134:382;;:::o;8000:422::-;8060:4;8268:12;8379:7;8367:20;8359:28;;8413:1;8406:4;:8;8399:15;;;8000:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:118::-;6171:24;6189:5;6171:24;:::i;:::-;6166:3;6159:37;6149:53;;:::o;6208:109::-;6289:21;6304:5;6289:21;:::i;:::-;6284:3;6277:34;6267:50;;:::o;6323:360::-;;6437:38;6469:5;6437:38;:::i;:::-;6491:70;6554:6;6549:3;6491:70;:::i;:::-;6484:77;;6570:52;6615:6;6610:3;6603:4;6596:5;6592:16;6570:52;:::i;:::-;6647:29;6669:6;6647:29;:::i;:::-;6642:3;6638:39;6631:46;;6413:270;;;;;:::o;6689:364::-;;6805:39;6838:5;6805:39;:::i;:::-;6860:71;6924:6;6919:3;6860:71;:::i;:::-;6853:78;;6940:52;6985:6;6980:3;6973:4;6966:5;6962:16;6940:52;:::i;:::-;7017:29;7039:6;7017:29;:::i;:::-;7012:3;7008:39;7001:46;;6781:272;;;;;:::o;7059:377::-;;7193:39;7226:5;7193:39;:::i;:::-;7248:89;7330:6;7325:3;7248:89;:::i;:::-;7241:96;;7346:52;7391:6;7386:3;7379:4;7372:5;7368:16;7346:52;:::i;:::-;7423:6;7418:3;7414:16;7407:23;;7169:267;;;;;:::o;7442:324::-;;7605:67;7669:2;7664:3;7605:67;:::i;:::-;7598:74;;7702:28;7698:1;7693:3;7689:11;7682:49;7757:2;7752:3;7748:12;7741:19;;7588:178;;;:::o;7772:375::-;;7935:67;7999:2;7994:3;7935:67;:::i;:::-;7928:74;;8032:34;8028:1;8023:3;8019:11;8012:55;8098:13;8093:2;8088:3;8084:12;8077:35;8138:2;8133:3;8129:12;8122:19;;7918:229;;;:::o;8153:382::-;;8316:67;8380:2;8375:3;8316:67;:::i;:::-;8309:74;;8413:34;8409:1;8404:3;8400:11;8393:55;8479:20;8474:2;8469:3;8465:12;8458:42;8526:2;8521:3;8517:12;8510:19;;8299:236;;;:::o;8541:370::-;;8704:67;8768:2;8763:3;8704:67;:::i;:::-;8697:74;;8801:34;8797:1;8792:3;8788:11;8781:55;8867:8;8862:2;8857:3;8853:12;8846:30;8902:2;8897:3;8893:12;8886:19;;8687:224;;;:::o;8917:435::-;;9080:67;9144:2;9139:3;9080:67;:::i;:::-;9073:74;;9177:34;9173:1;9168:3;9164:11;9157:55;9243:34;9238:2;9233:3;9229:12;9222:56;9309:7;9304:2;9299:3;9295:12;9288:29;9343:2;9338:3;9334:12;9327:19;;9063:289;;;:::o;9358:326::-;;9521:67;9585:2;9580:3;9521:67;:::i;:::-;9514:74;;9618:30;9614:1;9609:3;9605:11;9598:51;9675:2;9670:3;9666:12;9659:19;;9504:180;;;:::o;9690:368::-;;9853:67;9917:2;9912:3;9853:67;:::i;:::-;9846:74;;9950:34;9946:1;9941:3;9937:11;9930:55;10016:6;10011:2;10006:3;10002:12;9995:28;10049:2;10044:3;10040:12;10033:19;;9836:222;;;:::o;10064:323::-;;10227:67;10291:2;10286:3;10227:67;:::i;:::-;10220:74;;10324:27;10320:1;10315:3;10311:11;10304:48;10378:2;10373:3;10369:12;10362:19;;10210:177;;;:::o;10393:324::-;;10556:67;10620:2;10615:3;10556:67;:::i;:::-;10549:74;;10653:28;10649:1;10644:3;10640:11;10633:49;10708:2;10703:3;10699:12;10692:19;;10539:178;;;:::o;10723:329::-;;10886:67;10950:2;10945:3;10886:67;:::i;:::-;10879:74;;10983:33;10979:1;10974:3;10970:11;10963:54;11043:2;11038:3;11034:12;11027:19;;10869:183;;;:::o;11058:376::-;;11221:67;11285:2;11280:3;11221:67;:::i;:::-;11214:74;;11318:34;11314:1;11309:3;11305:11;11298:55;11384:14;11379:2;11374:3;11370:12;11363:36;11425:2;11420:3;11416:12;11409:19;;11204:230;;;:::o;11440:388::-;;11603:67;11667:2;11662:3;11603:67;:::i;:::-;11596:74;;11700:34;11696:1;11691:3;11687:11;11680:55;11766:26;11761:2;11756:3;11752:12;11745:48;11819:2;11814:3;11810:12;11803:19;;11586:242;;;:::o;11834:374::-;;11997:67;12061:2;12056:3;11997:67;:::i;:::-;11990:74;;12094:34;12090:1;12085:3;12081:11;12074:55;12160:12;12155:2;12150:3;12146:12;12139:34;12199:2;12194:3;12190:12;12183:19;;11980:228;;;:::o;12214:373::-;;12377:67;12441:2;12436:3;12377:67;:::i;:::-;12370:74;;12474:34;12470:1;12465:3;12461:11;12454:55;12540:11;12535:2;12530:3;12526:12;12519:33;12578:2;12573:3;12569:12;12562:19;;12360:227;;;:::o;12593:320::-;;12756:67;12820:2;12815:3;12756:67;:::i;:::-;12749:74;;12853:24;12849:1;12844:3;12840:11;12833:45;12904:2;12899:3;12895:12;12888:19;;12739:174;;;:::o;12919:384::-;;13082:67;13146:2;13141:3;13082:67;:::i;:::-;13075:74;;13179:34;13175:1;13170:3;13166:11;13159:55;13245:22;13240:2;13235:3;13231:12;13224:44;13294:2;13289:3;13285:12;13278:19;;13065:238;;;:::o;13309:330::-;;13472:67;13536:2;13531:3;13472:67;:::i;:::-;13465:74;;13569:34;13565:1;13560:3;13556:11;13549:55;13630:2;13625:3;13621:12;13614:19;;13455:184;;;:::o;13645:376::-;;13808:67;13872:2;13867:3;13808:67;:::i;:::-;13801:74;;13905:34;13901:1;13896:3;13892:11;13885:55;13971:14;13966:2;13961:3;13957:12;13950:36;14012:2;14007:3;14003:12;13996:19;;13791:230;;;:::o;14027:330::-;;14190:67;14254:2;14249:3;14190:67;:::i;:::-;14183:74;;14287:34;14283:1;14278:3;14274:11;14267:55;14348:2;14343:3;14339:12;14332:19;;14173:184;;;:::o;14363:366::-;;14526:67;14590:2;14585:3;14526:67;:::i;:::-;14519:74;;14623:34;14619:1;14614:3;14610:11;14603:55;14689:4;14684:2;14679:3;14675:12;14668:26;14720:2;14715:3;14711:12;14704:19;;14509:220;;;:::o;14735:373::-;;14898:67;14962:2;14957:3;14898:67;:::i;:::-;14891:74;;14995:34;14991:1;14986:3;14982:11;14975:55;15061:11;15056:2;15051:3;15047:12;15040:33;15099:2;15094:3;15090:12;15083:19;;14881:227;;;:::o;15114:379::-;;15277:67;15341:2;15336:3;15277:67;:::i;:::-;15270:74;;15374:34;15370:1;15365:3;15361:11;15354:55;15440:17;15435:2;15430:3;15426:12;15419:39;15484:2;15479:3;15475:12;15468:19;;15260:233;;;:::o;15499:365::-;;15662:67;15726:2;15721:3;15662:67;:::i;:::-;15655:74;;15759:34;15755:1;15750:3;15746:11;15739:55;15825:3;15820:2;15815:3;15811:12;15804:25;15855:2;15850:3;15846:12;15839:19;;15645:219;;;:::o;15870:381::-;;16033:67;16097:2;16092:3;16033:67;:::i;:::-;16026:74;;16130:34;16126:1;16121:3;16117:11;16110:55;16196:19;16191:2;16186:3;16182:12;16175:41;16242:2;16237:3;16233:12;16226:19;;16016:235;;;:::o;16257:376::-;;16420:67;16484:2;16479:3;16420:67;:::i;:::-;16413:74;;16517:34;16513:1;16508:3;16504:11;16497:55;16583:14;16578:2;16573:3;16569:12;16562:36;16624:2;16619:3;16615:12;16608:19;;16403:230;;;:::o;16639:118::-;16726:24;16744:5;16726:24;:::i;:::-;16721:3;16714:37;16704:53;;:::o;16763:435::-;;16965:95;17056:3;17047:6;16965:95;:::i;:::-;16958:102;;17077:95;17168:3;17159:6;17077:95;:::i;:::-;17070:102;;17189:3;17182:10;;16947:251;;;;;:::o;17204:222::-;;17335:2;17324:9;17320:18;17312:26;;17348:71;17416:1;17405:9;17401:17;17392:6;17348:71;:::i;:::-;17302:124;;;;:::o;17432:640::-;;17665:3;17654:9;17650:19;17642:27;;17679:71;17747:1;17736:9;17732:17;17723:6;17679:71;:::i;:::-;17760:72;17828:2;17817:9;17813:18;17804:6;17760:72;:::i;:::-;17842;17910:2;17899:9;17895:18;17886:6;17842:72;:::i;:::-;17961:9;17955:4;17951:20;17946:2;17935:9;17931:18;17924:48;17989:76;18060:4;18051:6;17989:76;:::i;:::-;17981:84;;17632:440;;;;;;;:::o;18078:210::-;;18203:2;18192:9;18188:18;18180:26;;18216:65;18278:1;18267:9;18263:17;18254:6;18216:65;:::i;:::-;18170:118;;;;:::o;18294:313::-;;18445:2;18434:9;18430:18;18422:26;;18494:9;18488:4;18484:20;18480:1;18469:9;18465:17;18458:47;18522:78;18595:4;18586:6;18522:78;:::i;:::-;18514:86;;18412:195;;;;:::o;18613:419::-;;18817:2;18806:9;18802:18;18794:26;;18866:9;18860:4;18856:20;18852:1;18841:9;18837:17;18830:47;18894:131;19020:4;18894:131;:::i;:::-;18886:139;;18784:248;;;:::o;19038:419::-;;19242:2;19231:9;19227:18;19219:26;;19291:9;19285:4;19281:20;19277:1;19266:9;19262:17;19255:47;19319:131;19445:4;19319:131;:::i;:::-;19311:139;;19209:248;;;:::o;19463:419::-;;19667:2;19656:9;19652:18;19644:26;;19716:9;19710:4;19706:20;19702:1;19691:9;19687:17;19680:47;19744:131;19870:4;19744:131;:::i;:::-;19736:139;;19634:248;;;:::o;19888:419::-;;20092:2;20081:9;20077:18;20069:26;;20141:9;20135:4;20131:20;20127:1;20116:9;20112:17;20105:47;20169:131;20295:4;20169:131;:::i;:::-;20161:139;;20059:248;;;:::o;20313:419::-;;20517:2;20506:9;20502:18;20494:26;;20566:9;20560:4;20556:20;20552:1;20541:9;20537:17;20530:47;20594:131;20720:4;20594:131;:::i;:::-;20586:139;;20484:248;;;:::o;20738:419::-;;20942:2;20931:9;20927:18;20919:26;;20991:9;20985:4;20981:20;20977:1;20966:9;20962:17;20955:47;21019:131;21145:4;21019:131;:::i;:::-;21011:139;;20909:248;;;:::o;21163:419::-;;21367:2;21356:9;21352:18;21344:26;;21416:9;21410:4;21406:20;21402:1;21391:9;21387:17;21380:47;21444:131;21570:4;21444:131;:::i;:::-;21436:139;;21334:248;;;:::o;21588:419::-;;21792:2;21781:9;21777:18;21769:26;;21841:9;21835:4;21831:20;21827:1;21816:9;21812:17;21805:47;21869:131;21995:4;21869:131;:::i;:::-;21861:139;;21759:248;;;:::o;22013:419::-;;22217:2;22206:9;22202:18;22194:26;;22266:9;22260:4;22256:20;22252:1;22241:9;22237:17;22230:47;22294:131;22420:4;22294:131;:::i;:::-;22286:139;;22184:248;;;:::o;22438:419::-;;22642:2;22631:9;22627:18;22619:26;;22691:9;22685:4;22681:20;22677:1;22666:9;22662:17;22655:47;22719:131;22845:4;22719:131;:::i;:::-;22711:139;;22609:248;;;:::o;22863:419::-;;23067:2;23056:9;23052:18;23044:26;;23116:9;23110:4;23106:20;23102:1;23091:9;23087:17;23080:47;23144:131;23270:4;23144:131;:::i;:::-;23136:139;;23034:248;;;:::o;23288:419::-;;23492:2;23481:9;23477:18;23469:26;;23541:9;23535:4;23531:20;23527:1;23516:9;23512:17;23505:47;23569:131;23695:4;23569:131;:::i;:::-;23561:139;;23459:248;;;:::o;23713:419::-;;23917:2;23906:9;23902:18;23894:26;;23966:9;23960:4;23956:20;23952:1;23941:9;23937:17;23930:47;23994:131;24120:4;23994:131;:::i;:::-;23986:139;;23884:248;;;:::o;24138:419::-;;24342:2;24331:9;24327:18;24319:26;;24391:9;24385:4;24381:20;24377:1;24366:9;24362:17;24355:47;24419:131;24545:4;24419:131;:::i;:::-;24411:139;;24309:248;;;:::o;24563:419::-;;24767:2;24756:9;24752:18;24744:26;;24816:9;24810:4;24806:20;24802:1;24791:9;24787:17;24780:47;24844:131;24970:4;24844:131;:::i;:::-;24836:139;;24734:248;;;:::o;24988:419::-;;25192:2;25181:9;25177:18;25169:26;;25241:9;25235:4;25231:20;25227:1;25216:9;25212:17;25205:47;25269:131;25395:4;25269:131;:::i;:::-;25261:139;;25159:248;;;:::o;25413:419::-;;25617:2;25606:9;25602:18;25594:26;;25666:9;25660:4;25656:20;25652:1;25641:9;25637:17;25630:47;25694:131;25820:4;25694:131;:::i;:::-;25686:139;;25584:248;;;:::o;25838:419::-;;26042:2;26031:9;26027:18;26019:26;;26091:9;26085:4;26081:20;26077:1;26066:9;26062:17;26055:47;26119:131;26245:4;26119:131;:::i;:::-;26111:139;;26009:248;;;:::o;26263:419::-;;26467:2;26456:9;26452:18;26444:26;;26516:9;26510:4;26506:20;26502:1;26491:9;26487:17;26480:47;26544:131;26670:4;26544:131;:::i;:::-;26536:139;;26434:248;;;:::o;26688:419::-;;26892:2;26881:9;26877:18;26869:26;;26941:9;26935:4;26931:20;26927:1;26916:9;26912:17;26905:47;26969:131;27095:4;26969:131;:::i;:::-;26961:139;;26859:248;;;:::o;27113:419::-;;27317:2;27306:9;27302:18;27294:26;;27366:9;27360:4;27356:20;27352:1;27341:9;27337:17;27330:47;27394:131;27520:4;27394:131;:::i;:::-;27386:139;;27284:248;;;:::o;27538:419::-;;27742:2;27731:9;27727:18;27719:26;;27791:9;27785:4;27781:20;27777:1;27766:9;27762:17;27755:47;27819:131;27945:4;27819:131;:::i;:::-;27811:139;;27709:248;;;:::o;27963:419::-;;28167:2;28156:9;28152:18;28144:26;;28216:9;28210:4;28206:20;28202:1;28191:9;28187:17;28180:47;28244:131;28370:4;28244:131;:::i;:::-;28236:139;;28134:248;;;:::o;28388:419::-;;28592:2;28581:9;28577:18;28569:26;;28641:9;28635:4;28631:20;28627:1;28616:9;28612:17;28605:47;28669:131;28795:4;28669:131;:::i;:::-;28661:139;;28559:248;;;:::o;28813:419::-;;29017:2;29006:9;29002:18;28994:26;;29066:9;29060:4;29056:20;29052:1;29041:9;29037:17;29030:47;29094:131;29220:4;29094:131;:::i;:::-;29086:139;;28984:248;;;:::o;29238:222::-;;29369:2;29358:9;29354:18;29346:26;;29382:71;29450:1;29439:9;29435:17;29426:6;29382:71;:::i;:::-;29336:124;;;;:::o;29466:283::-;;29532:2;29526:9;29516:19;;29574:4;29566:6;29562:17;29681:6;29669:10;29666:22;29645:18;29633:10;29630:34;29627:62;29624:2;;;29692:18;;:::i;:::-;29624:2;29732:10;29728:2;29721:22;29506:243;;;;:::o;29755:331::-;;29906:18;29898:6;29895:30;29892:2;;;29928:18;;:::i;:::-;29892:2;30013:4;30009:9;30002:4;29994:6;29990:17;29986:33;29978:41;;30074:4;30068;30064:15;30056:23;;29821:265;;;:::o;30092:332::-;;30244:18;30236:6;30233:30;30230:2;;;30266:18;;:::i;:::-;30230:2;30351:4;30347:9;30340:4;30332:6;30328:17;30324:33;30316:41;;30412:4;30406;30402:15;30394:23;;30159:265;;;:::o;30430:98::-;;30515:5;30509:12;30499:22;;30488:40;;;:::o;30534:99::-;;30620:5;30614:12;30604:22;;30593:40;;;:::o;30639:168::-;;30756:6;30751:3;30744:19;30796:4;30791:3;30787:14;30772:29;;30734:73;;;;:::o;30813:169::-;;30931:6;30926:3;30919:19;30971:4;30966:3;30962:14;30947:29;;30909:73;;;;:::o;30988:148::-;;31127:3;31112:18;;31102:34;;;;:::o;31142:305::-;;31201:20;31219:1;31201:20;:::i;:::-;31196:25;;31235:20;31253:1;31235:20;:::i;:::-;31230:25;;31389:1;31321:66;31317:74;31314:1;31311:81;31308:2;;;31395:18;;:::i;:::-;31308:2;31439:1;31436;31432:9;31425:16;;31186:261;;;;:::o;31453:185::-;;31510:20;31528:1;31510:20;:::i;:::-;31505:25;;31544:20;31562:1;31544:20;:::i;:::-;31539:25;;31583:1;31573:2;;31588:18;;:::i;:::-;31573:2;31630:1;31627;31623:9;31618:14;;31495:143;;;;:::o;31644:348::-;;31707:20;31725:1;31707:20;:::i;:::-;31702:25;;31741:20;31759:1;31741:20;:::i;:::-;31736:25;;31929:1;31861:66;31857:74;31854:1;31851:81;31846:1;31839:9;31832:17;31828:105;31825:2;;;31936:18;;:::i;:::-;31825:2;31984:1;31981;31977:9;31966:20;;31692:300;;;;:::o;31998:191::-;;32058:20;32076:1;32058:20;:::i;:::-;32053:25;;32092:20;32110:1;32092:20;:::i;:::-;32087:25;;32131:1;32128;32125:8;32122:2;;;32136:18;;:::i;:::-;32122:2;32181:1;32178;32174:9;32166:17;;32043:146;;;;:::o;32195:96::-;;32261:24;32279:5;32261:24;:::i;:::-;32250:35;;32240:51;;;:::o;32297:90::-;;32374:5;32367:13;32360:21;32349:32;;32339:48;;;:::o;32393:149::-;;32469:66;32462:5;32458:78;32447:89;;32437:105;;;:::o;32548:126::-;;32625:42;32618:5;32614:54;32603:65;;32593:81;;;:::o;32680:77::-;;32746:5;32735:16;;32725:32;;;:::o;32763:154::-;32847:6;32842:3;32837;32824:30;32909:1;32900:6;32895:3;32891:16;32884:27;32814:103;;;:::o;32923:307::-;32991:1;33001:113;33015:6;33012:1;33009:13;33001:113;;;33100:1;33095:3;33091:11;33085:18;33081:1;33076:3;33072:11;33065:39;33037:2;33034:1;33030:10;33025:15;;33001:113;;;33132:6;33129:1;33126:13;33123:2;;;33212:1;33203:6;33198:3;33194:16;33187:27;33123:2;32972:258;;;;:::o;33236:320::-;;33317:1;33311:4;33307:12;33297:22;;33364:1;33358:4;33354:12;33385:18;33375:2;;33441:4;33433:6;33429:17;33419:27;;33375:2;33503;33495:6;33492:14;33472:18;33469:38;33466:2;;;33522:18;;:::i;:::-;33466:2;33287:269;;;;:::o;33562:233::-;;33624:24;33642:5;33624:24;:::i;:::-;33615:33;;33670:66;33663:5;33660:77;33657:2;;;33740:18;;:::i;:::-;33657:2;33787:1;33780:5;33776:13;33769:20;;33605:190;;;:::o;33801:176::-;;33850:20;33868:1;33850:20;:::i;:::-;33845:25;;33884:20;33902:1;33884:20;:::i;:::-;33879:25;;33923:1;33913:2;;33928:18;;:::i;:::-;33913:2;33969:1;33966;33962:9;33957:14;;33835:142;;;;:::o;33983:180::-;34031:77;34028:1;34021:88;34128:4;34125:1;34118:15;34152:4;34149:1;34142:15;34169:180;34217:77;34214:1;34207:88;34314:4;34311:1;34304:15;34338:4;34335:1;34328:15;34355:180;34403:77;34400:1;34393:88;34500:4;34497:1;34490:15;34524:4;34521:1;34514:15;34541:180;34589:77;34586:1;34579:88;34686:4;34683:1;34676:15;34710:4;34707:1;34700:15;34727:102;;34819:2;34815:7;34810:2;34803:5;34799:14;34795:28;34785:38;;34775:54;;;:::o;34835:122::-;34908:24;34926:5;34908:24;:::i;:::-;34901:5;34898:35;34888:2;;34947:1;34944;34937:12;34888:2;34878:79;:::o;34963:116::-;35033:21;35048:5;35033:21;:::i;:::-;35026:5;35023:32;35013:2;;35069:1;35066;35059:12;35013:2;35003:76;:::o;35085:120::-;35157:23;35174:5;35157:23;:::i;:::-;35150:5;35147:34;35137:2;;35195:1;35192;35185:12;35137:2;35127:78;:::o;35211:122::-;35284:24;35302:5;35284:24;:::i;:::-;35277:5;35274:35;35264:2;;35323:1;35320;35313:12;35264:2;35254:79;:::o

Swarm Source

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