ETH Price: $3,108.32 (+1.52%)
Gas: 4 Gwei

Token

Gravel (GRAVEL)
 

Overview

Max Total Supply

2,500 GRAVEL

Holders

980

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
theunbrokenwindow.eth
Balance
10 GRAVEL
0x376a6efe8e98f3ae2af230b3d45b8cc5e962bc27
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

LITERALLY JUST GRAVEL.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Gravel

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-10
*/

// 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/Gravel.sol

pragma solidity ^0.8.0;




contract Gravel is ERC721Enumerable, Ownable {
    uint256 public constant MAX_NFT_SUPPLY = 2500;
    uint public constant MAX_PURCHASABLE = 30;
    uint256 public GRAVEL_PRICE = 30000000000000000; // 0.03 ETH
    string public PROVENANCE_HASH = "";

    bool public saleStarted = false;

    constructor() ERC721("Gravel", "GRAVEL") {
    }

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

    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 Gravel.");
        require(amountToMint <= MAX_PURCHASABLE, "You cannot mint more than 30 Gravel.");
        require(totalSupply() + amountToMint <= MAX_NFT_SUPPLY, "The amount of Gravel you are trying to mint exceeds the MAX_NFT_SUPPLY.");
        
        require(GRAVEL_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 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":"GRAVEL_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":[{"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"}]

6080604052666a94d74f430000600b5560405180602001604052806000815250600c908051906020019062000036929190620001bf565b506000600d60006101000a81548160ff0219169083151502179055503480156200005f57600080fd5b506040518060400160405280600681526020017f47726176656c00000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f47524156454c00000000000000000000000000000000000000000000000000008152508160009080519060200190620000e4929190620001bf565b508060019080519060200190620000fd929190620001bf565b505050600062000112620001b760201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002d4565b600033905090565b828054620001cd906200026f565b90600052602060002090601f016020900481019282620001f157600085556200023d565b82601f106200020c57805160ff19168380011785556200023d565b828001600101855582156200023d579182015b828111156200023c5782518255916020019190600101906200021f565b5b5090506200024c919062000250565b5090565b5b808211156200026b57600081600090555060010162000251565b5090565b600060028204905060018216806200028857607f821691505b602082108114156200029f576200029e620002a5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613fb580620002e46000396000f3fe6080604052600436106101cd5760003560e01c80636352211e116100f7578063b5077f4411610095578063e33c402311610064578063e33c402314610648578063e985e9c514610673578063f2fde38b146106b0578063ff1b6556146106d9576101cd565b8063b5077f44146105a0578063b66a0e5d146105cb578063b88d4fde146105e2578063c87b56dd1461060b576101cd565b80638da5cb5b116100d15780638da5cb5b1461050557806395d89b4114610530578063a0712d681461055b578063a22cb46514610577576101cd565b80636352211e1461047457806370a08231146104b1578063715018a6146104ee576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103cc5780634f6ccce7146103f557806355367ba9146104325780635c474f9e14610449576101cd565b806323b872dd1461031f5780632f745c59146103485780633bb3a24d146103855780633ccfd60b146103c2576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806310969523146102a0578063119e4398146102c957806318160ddd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612cf0565b610704565b60405161020691906137b3565b60405180910390f35b34801561021b57600080fd5b5061022461077e565b60405161023191906137ce565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612d83565b610810565b60405161026e919061374c565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612cb4565b610895565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612d42565b6109ad565b005b3480156102d557600080fd5b506102de610a43565b6040516102eb9190613af0565b60405180910390f35b34801561030057600080fd5b50610309610a48565b6040516103169190613af0565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612bae565b610a55565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612cb4565b610ab5565b60405161037c9190613af0565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190612d83565b610b5a565b6040516103b991906137ce565b60405180910390f35b6103ca610b6c565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612bae565b610c28565b005b34801561040157600080fd5b5061041c60048036038101906104179190612d83565b610c48565b6040516104299190613af0565b60405180910390f35b34801561043e57600080fd5b50610447610cdf565b005b34801561045557600080fd5b5061045e610d78565b60405161046b91906137b3565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190612d83565b610d8b565b6040516104a8919061374c565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190612b49565b610e3d565b6040516104e59190613af0565b60405180910390f35b3480156104fa57600080fd5b50610503610ef5565b005b34801561051157600080fd5b5061051a611032565b604051610527919061374c565b60405180910390f35b34801561053c57600080fd5b5061054561105c565b60405161055291906137ce565b60405180910390f35b61057560048036038101906105709190612d83565b6110ee565b005b34801561058357600080fd5b5061059e60048036038101906105999190612c78565b6112f5565b005b3480156105ac57600080fd5b506105b5611476565b6040516105c29190613af0565b60405180910390f35b3480156105d757600080fd5b506105e061147c565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612bfd565b611515565b005b34801561061757600080fd5b50610632600480360381019061062d9190612d83565b611577565b60405161063f91906137ce565b60405180910390f35b34801561065457600080fd5b5061065d61161e565b60405161066a9190613af0565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612b72565b611624565b6040516106a791906137b3565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612b49565b6116b8565b005b3480156106e557600080fd5b506106ee611864565b6040516106fb91906137ce565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107775750610776826118f2565b5b9050919050565b60606000805461078d90613daa565b80601f01602080910402602001604051908101604052809291908181526020018280546107b990613daa565b80156108065780601f106107db57610100808354040283529160200191610806565b820191906000526020600020905b8154815290600101906020018083116107e957829003601f168201915b5050505050905090565b600061081b826119d4565b61085a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610851906139f0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a082610d8b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090890613a90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610930611a40565b73ffffffffffffffffffffffffffffffffffffffff16148061095f575061095e81610959611a40565b611624565b5b61099e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099590613950565b60405180910390fd5b6109a88383611a48565b505050565b6109b5611a40565b73ffffffffffffffffffffffffffffffffffffffff166109d3611032565b73ffffffffffffffffffffffffffffffffffffffff1614610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090613a30565b60405180910390fd5b80600c9080519060200190610a3f92919061296d565b5050565b601e81565b6000600880549050905090565b610a66610a60611a40565b82611b01565b610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c90613ab0565b60405180910390fd5b610ab0838383611bdf565b505050565b6000610ac083610e3d565b8210610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af890613830565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610b6582611577565b9050919050565b610b74611a40565b73ffffffffffffffffffffffffffffffffffffffff16610b92611032565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90613a30565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c2657600080fd5b565b610c4383838360405180602001604052806000815250611515565b505050565b6000610c52610a48565b8210610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90613ad0565b60405180910390fd5b60088281548110610ccd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ce7611a40565b73ffffffffffffffffffffffffffffffffffffffff16610d05611032565b73ffffffffffffffffffffffffffffffffffffffff1614610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290613a30565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90613990565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590613970565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610efd611a40565b73ffffffffffffffffffffffffffffffffffffffff16610f1b611032565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890613a30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461106b90613daa565b80601f016020809104026020016040519081016040528092919081815260200182805461109790613daa565b80156110e45780601f106110b9576101008083540402835291602001916110e4565b820191906000526020600020905b8154815290600101906020018083116110c757829003601f168201915b5050505050905090565b60011515600d60009054906101000a900460ff16151514611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906137f0565b60405180910390fd5b6109c461114f610a48565b1061118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690613910565b60405180910390fd5b600081116111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990613810565b60405180910390fd5b601e811115611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d90613a10565b60405180910390fd5b6109c481611222610a48565b61122c9190613bdf565b111561126d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611264906138b0565b60405180910390fd5b3481600b5461127c9190613c66565b146112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b3906139b0565b60405180910390fd5b60005b818110156112f15760006112d1610a48565b90506112dd3382611e3b565b5080806112e990613ddc565b9150506112bf565b5050565b6112fd611a40565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611362906138f0565b60405180910390fd5b8060056000611378611a40565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611425611a40565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161146a91906137b3565b60405180910390a35050565b6109c481565b611484611a40565b73ffffffffffffffffffffffffffffffffffffffff166114a2611032565b73ffffffffffffffffffffffffffffffffffffffff16146114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90613a30565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b611526611520611a40565b83611b01565b611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90613ab0565b60405180910390fd5b61157184848484611e59565b50505050565b6060611582826119d4565b6115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b890613a70565b60405180910390fd5b60006115cb611eb5565b905060008151116115eb5760405180602001604052806000815250611616565b806115f584611ef2565b604051602001611606929190613728565b6040516020818303038152906040525b915050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c0611a40565b73ffffffffffffffffffffffffffffffffffffffff166116de611032565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613a30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90613870565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c805461187190613daa565b80601f016020809104026020016040519081016040528092919081815260200182805461189d90613daa565b80156118ea5780601f106118bf576101008083540402835291602001916118ea565b820191906000526020600020905b8154815290600101906020018083116118cd57829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119bd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119cd57506119cc8261209f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611abb83610d8b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b0c826119d4565b611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290613930565b60405180910390fd5b6000611b5683610d8b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bc557508373ffffffffffffffffffffffffffffffffffffffff16611bad84610810565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bd65750611bd58185611624565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bff82610d8b565b73ffffffffffffffffffffffffffffffffffffffff1614611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c90613a50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc906138d0565b60405180910390fd5b611cd0838383612109565b611cdb600082611a48565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d2b9190613cc0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d829190613bdf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e5582826040518060200160405280600081525061221d565b5050565b611e64848484611bdf565b611e7084848484612278565b611eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea690613850565b60405180910390fd5b50505050565b60606040518060400160405280601b81526020017f68747470733a2f2f6170692e67726176656c6e6674732e636f6d2f0000000000815250905090565b60606000821415611f3a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061209a565b600082905060005b60008214611f6c578080611f5590613ddc565b915050600a82611f659190613c35565b9150611f42565b60008167ffffffffffffffff811115611fae577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fe05781602001600182028036833780820191505090505b5090505b6000851461209357600182611ff99190613cc0565b9150600a856120089190613e25565b60306120149190613bdf565b60f81b818381518110612050577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561208c9190613c35565b9450611fe4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61211483838361240f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121575761215281612414565b612196565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461219557612194838261245d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d9576121d4816125ca565b612218565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461221757612216828261270d565b5b5b505050565b612227838361278c565b6122346000848484612278565b612273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226a90613850565b60405180910390fd5b505050565b60006122998473ffffffffffffffffffffffffffffffffffffffff1661295a565b15612402578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c2611a40565b8786866040518563ffffffff1660e01b81526004016122e49493929190613767565b602060405180830381600087803b1580156122fe57600080fd5b505af192505050801561232f57506040513d601f19601f8201168201806040525081019061232c9190612d19565b60015b6123b2573d806000811461235f576040519150601f19603f3d011682016040523d82523d6000602084013e612364565b606091505b506000815114156123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a190613850565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612407565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161246a84610e3d565b6124749190613cc0565b9050600060076000848152602001908152602001600020549050818114612559576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506125de9190613cc0565b9050600060096000848152602001908152602001600020549050600060088381548110612634577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061267c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806126f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061271883610e3d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f3906139d0565b60405180910390fd5b612805816119d4565b15612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90613890565b60405180910390fd5b61285160008383612109565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a19190613bdf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461297990613daa565b90600052602060002090601f01602090048101928261299b57600085556129e2565b82601f106129b457805160ff19168380011785556129e2565b828001600101855582156129e2579182015b828111156129e15782518255916020019190600101906129c6565b5b5090506129ef91906129f3565b5090565b5b80821115612a0c5760008160009055506001016129f4565b5090565b6000612a23612a1e84613b3c565b613b0b565b905082815260208101848484011115612a3b57600080fd5b612a46848285613d68565b509392505050565b6000612a61612a5c84613b6c565b613b0b565b905082815260208101848484011115612a7957600080fd5b612a84848285613d68565b509392505050565b600081359050612a9b81613f23565b92915050565b600081359050612ab081613f3a565b92915050565b600081359050612ac581613f51565b92915050565b600081519050612ada81613f51565b92915050565b600082601f830112612af157600080fd5b8135612b01848260208601612a10565b91505092915050565b600082601f830112612b1b57600080fd5b8135612b2b848260208601612a4e565b91505092915050565b600081359050612b4381613f68565b92915050565b600060208284031215612b5b57600080fd5b6000612b6984828501612a8c565b91505092915050565b60008060408385031215612b8557600080fd5b6000612b9385828601612a8c565b9250506020612ba485828601612a8c565b9150509250929050565b600080600060608486031215612bc357600080fd5b6000612bd186828701612a8c565b9350506020612be286828701612a8c565b9250506040612bf386828701612b34565b9150509250925092565b60008060008060808587031215612c1357600080fd5b6000612c2187828801612a8c565b9450506020612c3287828801612a8c565b9350506040612c4387828801612b34565b925050606085013567ffffffffffffffff811115612c6057600080fd5b612c6c87828801612ae0565b91505092959194509250565b60008060408385031215612c8b57600080fd5b6000612c9985828601612a8c565b9250506020612caa85828601612aa1565b9150509250929050565b60008060408385031215612cc757600080fd5b6000612cd585828601612a8c565b9250506020612ce685828601612b34565b9150509250929050565b600060208284031215612d0257600080fd5b6000612d1084828501612ab6565b91505092915050565b600060208284031215612d2b57600080fd5b6000612d3984828501612acb565b91505092915050565b600060208284031215612d5457600080fd5b600082013567ffffffffffffffff811115612d6e57600080fd5b612d7a84828501612b0a565b91505092915050565b600060208284031215612d9557600080fd5b6000612da384828501612b34565b91505092915050565b612db581613cf4565b82525050565b612dc481613d06565b82525050565b6000612dd582613b9c565b612ddf8185613bb2565b9350612def818560208601613d77565b612df881613f12565b840191505092915050565b6000612e0e82613ba7565b612e188185613bc3565b9350612e28818560208601613d77565b612e3181613f12565b840191505092915050565b6000612e4782613ba7565b612e518185613bd4565b9350612e61818560208601613d77565b80840191505092915050565b6000612e7a601a83613bc3565b91507f546869732073616c6520686173206e6f7420737461727465642e0000000000006000830152602082019050919050565b6000612eba602283613bc3565b91507f596f75206d757374206d696e74206174206c65617374206f6e6520477261766560008301527f6c2e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f20602b83613bc3565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612f86603283613bc3565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612fec602683613bc3565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613052601c83613bc3565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613092604783613bc3565b91507f54686520616d6f756e74206f662047726176656c20796f75206172652074727960008301527f696e6720746f206d696e74206578636565647320746865204d41585f4e46545f60208301527f535550504c592e000000000000000000000000000000000000000000000000006040830152606082019050919050565b600061311e602483613bc3565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613184601983613bc3565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006131c4601a83613bc3565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b6000613204602c83613bc3565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061326a603883613bc3565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006132d0602a83613bc3565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613336602983613bc3565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061339c601683613bc3565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b60006133dc602083613bc3565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061341c602c83613bc3565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613482602483613bc3565b91507f596f752063616e6e6f74206d696e74206d6f7265207468616e2033302047726160008301527f76656c2e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134e8602083613bc3565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613528602983613bc3565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061358e602f83613bc3565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006135f4602183613bc3565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061365a603183613bc3565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006136c0602c83613bc3565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61372281613d5e565b82525050565b60006137348285612e3c565b91506137408284612e3c565b91508190509392505050565b60006020820190506137616000830184612dac565b92915050565b600060808201905061377c6000830187612dac565b6137896020830186612dac565b6137966040830185613719565b81810360608301526137a88184612dca565b905095945050505050565b60006020820190506137c86000830184612dbb565b92915050565b600060208201905081810360008301526137e88184612e03565b905092915050565b6000602082019050818103600083015261380981612e6d565b9050919050565b6000602082019050818103600083015261382981612ead565b9050919050565b6000602082019050818103600083015261384981612f13565b9050919050565b6000602082019050818103600083015261386981612f79565b9050919050565b6000602082019050818103600083015261388981612fdf565b9050919050565b600060208201905081810360008301526138a981613045565b9050919050565b600060208201905081810360008301526138c981613085565b9050919050565b600060208201905081810360008301526138e981613111565b9050919050565b6000602082019050818103600083015261390981613177565b9050919050565b60006020820190508181036000830152613929816131b7565b9050919050565b60006020820190508181036000830152613949816131f7565b9050919050565b600060208201905081810360008301526139698161325d565b9050919050565b60006020820190508181036000830152613989816132c3565b9050919050565b600060208201905081810360008301526139a981613329565b9050919050565b600060208201905081810360008301526139c98161338f565b9050919050565b600060208201905081810360008301526139e9816133cf565b9050919050565b60006020820190508181036000830152613a098161340f565b9050919050565b60006020820190508181036000830152613a2981613475565b9050919050565b60006020820190508181036000830152613a49816134db565b9050919050565b60006020820190508181036000830152613a698161351b565b9050919050565b60006020820190508181036000830152613a8981613581565b9050919050565b60006020820190508181036000830152613aa9816135e7565b9050919050565b60006020820190508181036000830152613ac98161364d565b9050919050565b60006020820190508181036000830152613ae9816136b3565b9050919050565b6000602082019050613b056000830184613719565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613b3257613b31613ee3565b5b8060405250919050565b600067ffffffffffffffff821115613b5757613b56613ee3565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613b8757613b86613ee3565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bea82613d5e565b9150613bf583613d5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c2a57613c29613e56565b5b828201905092915050565b6000613c4082613d5e565b9150613c4b83613d5e565b925082613c5b57613c5a613e85565b5b828204905092915050565b6000613c7182613d5e565b9150613c7c83613d5e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cb557613cb4613e56565b5b828202905092915050565b6000613ccb82613d5e565b9150613cd683613d5e565b925082821015613ce957613ce8613e56565b5b828203905092915050565b6000613cff82613d3e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d95578082015181840152602081019050613d7a565b83811115613da4576000848401525b50505050565b60006002820490506001821680613dc257607f821691505b60208210811415613dd657613dd5613eb4565b5b50919050565b6000613de782613d5e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e1a57613e19613e56565b5b600182019050919050565b6000613e3082613d5e565b9150613e3b83613d5e565b925082613e4b57613e4a613e85565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613f2c81613cf4565b8114613f3757600080fd5b50565b613f4381613d06565b8114613f4e57600080fd5b50565b613f5a81613d12565b8114613f6557600080fd5b50565b613f7181613d5e565b8114613f7c57600080fd5b5056fea2646970667358221220213872bea08b15fe6f165d4ba6cbc804381797dea862ecfde5bd82ee5d9977c864736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c80636352211e116100f7578063b5077f4411610095578063e33c402311610064578063e33c402314610648578063e985e9c514610673578063f2fde38b146106b0578063ff1b6556146106d9576101cd565b8063b5077f44146105a0578063b66a0e5d146105cb578063b88d4fde146105e2578063c87b56dd1461060b576101cd565b80638da5cb5b116100d15780638da5cb5b1461050557806395d89b4114610530578063a0712d681461055b578063a22cb46514610577576101cd565b80636352211e1461047457806370a08231146104b1578063715018a6146104ee576101cd565b806323b872dd1161016f57806342842e0e1161013e57806342842e0e146103cc5780634f6ccce7146103f557806355367ba9146104325780635c474f9e14610449576101cd565b806323b872dd1461031f5780632f745c59146103485780633bb3a24d146103855780633ccfd60b146103c2576101cd565b8063095ea7b3116101ab578063095ea7b31461027757806310969523146102a0578063119e4398146102c957806318160ddd146102f4576101cd565b806301ffc9a7146101d257806306fdde031461020f578063081812fc1461023a575b600080fd5b3480156101de57600080fd5b506101f960048036038101906101f49190612cf0565b610704565b60405161020691906137b3565b60405180910390f35b34801561021b57600080fd5b5061022461077e565b60405161023191906137ce565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c9190612d83565b610810565b60405161026e919061374c565b60405180910390f35b34801561028357600080fd5b5061029e60048036038101906102999190612cb4565b610895565b005b3480156102ac57600080fd5b506102c760048036038101906102c29190612d42565b6109ad565b005b3480156102d557600080fd5b506102de610a43565b6040516102eb9190613af0565b60405180910390f35b34801561030057600080fd5b50610309610a48565b6040516103169190613af0565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612bae565b610a55565b005b34801561035457600080fd5b5061036f600480360381019061036a9190612cb4565b610ab5565b60405161037c9190613af0565b60405180910390f35b34801561039157600080fd5b506103ac60048036038101906103a79190612d83565b610b5a565b6040516103b991906137ce565b60405180910390f35b6103ca610b6c565b005b3480156103d857600080fd5b506103f360048036038101906103ee9190612bae565b610c28565b005b34801561040157600080fd5b5061041c60048036038101906104179190612d83565b610c48565b6040516104299190613af0565b60405180910390f35b34801561043e57600080fd5b50610447610cdf565b005b34801561045557600080fd5b5061045e610d78565b60405161046b91906137b3565b60405180910390f35b34801561048057600080fd5b5061049b60048036038101906104969190612d83565b610d8b565b6040516104a8919061374c565b60405180910390f35b3480156104bd57600080fd5b506104d860048036038101906104d39190612b49565b610e3d565b6040516104e59190613af0565b60405180910390f35b3480156104fa57600080fd5b50610503610ef5565b005b34801561051157600080fd5b5061051a611032565b604051610527919061374c565b60405180910390f35b34801561053c57600080fd5b5061054561105c565b60405161055291906137ce565b60405180910390f35b61057560048036038101906105709190612d83565b6110ee565b005b34801561058357600080fd5b5061059e60048036038101906105999190612c78565b6112f5565b005b3480156105ac57600080fd5b506105b5611476565b6040516105c29190613af0565b60405180910390f35b3480156105d757600080fd5b506105e061147c565b005b3480156105ee57600080fd5b5061060960048036038101906106049190612bfd565b611515565b005b34801561061757600080fd5b50610632600480360381019061062d9190612d83565b611577565b60405161063f91906137ce565b60405180910390f35b34801561065457600080fd5b5061065d61161e565b60405161066a9190613af0565b60405180910390f35b34801561067f57600080fd5b5061069a60048036038101906106959190612b72565b611624565b6040516106a791906137b3565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d29190612b49565b6116b8565b005b3480156106e557600080fd5b506106ee611864565b6040516106fb91906137ce565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107775750610776826118f2565b5b9050919050565b60606000805461078d90613daa565b80601f01602080910402602001604051908101604052809291908181526020018280546107b990613daa565b80156108065780601f106107db57610100808354040283529160200191610806565b820191906000526020600020905b8154815290600101906020018083116107e957829003601f168201915b5050505050905090565b600061081b826119d4565b61085a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610851906139f0565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108a082610d8b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610911576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090890613a90565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610930611a40565b73ffffffffffffffffffffffffffffffffffffffff16148061095f575061095e81610959611a40565b611624565b5b61099e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099590613950565b60405180910390fd5b6109a88383611a48565b505050565b6109b5611a40565b73ffffffffffffffffffffffffffffffffffffffff166109d3611032565b73ffffffffffffffffffffffffffffffffffffffff1614610a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2090613a30565b60405180910390fd5b80600c9080519060200190610a3f92919061296d565b5050565b601e81565b6000600880549050905090565b610a66610a60611a40565b82611b01565b610aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9c90613ab0565b60405180910390fd5b610ab0838383611bdf565b505050565b6000610ac083610e3d565b8210610b01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af890613830565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6060610b6582611577565b9050919050565b610b74611a40565b73ffffffffffffffffffffffffffffffffffffffff16610b92611032565b73ffffffffffffffffffffffffffffffffffffffff1614610be8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdf90613a30565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050610c2657600080fd5b565b610c4383838360405180602001604052806000815250611515565b505050565b6000610c52610a48565b8210610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90613ad0565b60405180910390fd5b60088281548110610ccd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b610ce7611a40565b73ffffffffffffffffffffffffffffffffffffffff16610d05611032565b73ffffffffffffffffffffffffffffffffffffffff1614610d5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5290613a30565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff1681565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2b90613990565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea590613970565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610efd611a40565b73ffffffffffffffffffffffffffffffffffffffff16610f1b611032565b73ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890613a30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461106b90613daa565b80601f016020809104026020016040519081016040528092919081815260200182805461109790613daa565b80156110e45780601f106110b9576101008083540402835291602001916110e4565b820191906000526020600020905b8154815290600101906020018083116110c757829003601f168201915b5050505050905090565b60011515600d60009054906101000a900460ff16151514611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b906137f0565b60405180910390fd5b6109c461114f610a48565b1061118f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118690613910565b60405180910390fd5b600081116111d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c990613810565b60405180910390fd5b601e811115611216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120d90613a10565b60405180910390fd5b6109c481611222610a48565b61122c9190613bdf565b111561126d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611264906138b0565b60405180910390fd5b3481600b5461127c9190613c66565b146112bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b3906139b0565b60405180910390fd5b60005b818110156112f15760006112d1610a48565b90506112dd3382611e3b565b5080806112e990613ddc565b9150506112bf565b5050565b6112fd611a40565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561136b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611362906138f0565b60405180910390fd5b8060056000611378611a40565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611425611a40565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161146a91906137b3565b60405180910390a35050565b6109c481565b611484611a40565b73ffffffffffffffffffffffffffffffffffffffff166114a2611032565b73ffffffffffffffffffffffffffffffffffffffff16146114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef90613a30565b60405180910390fd5b6001600d60006101000a81548160ff021916908315150217905550565b611526611520611a40565b83611b01565b611565576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155c90613ab0565b60405180910390fd5b61157184848484611e59565b50505050565b6060611582826119d4565b6115c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b890613a70565b60405180910390fd5b60006115cb611eb5565b905060008151116115eb5760405180602001604052806000815250611616565b806115f584611ef2565b604051602001611606929190613728565b6040516020818303038152906040525b915050919050565b600b5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6116c0611a40565b73ffffffffffffffffffffffffffffffffffffffff166116de611032565b73ffffffffffffffffffffffffffffffffffffffff1614611734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172b90613a30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179b90613870565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600c805461187190613daa565b80601f016020809104026020016040519081016040528092919081815260200182805461189d90613daa565b80156118ea5780601f106118bf576101008083540402835291602001916118ea565b820191906000526020600020905b8154815290600101906020018083116118cd57829003601f168201915b505050505081565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119bd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806119cd57506119cc8261209f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611abb83610d8b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b0c826119d4565b611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4290613930565b60405180910390fd5b6000611b5683610d8b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bc557508373ffffffffffffffffffffffffffffffffffffffff16611bad84610810565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bd65750611bd58185611624565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bff82610d8b565b73ffffffffffffffffffffffffffffffffffffffff1614611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c90613a50565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbc906138d0565b60405180910390fd5b611cd0838383612109565b611cdb600082611a48565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d2b9190613cc0565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d829190613bdf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611e5582826040518060200160405280600081525061221d565b5050565b611e64848484611bdf565b611e7084848484612278565b611eaf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea690613850565b60405180910390fd5b50505050565b60606040518060400160405280601b81526020017f68747470733a2f2f6170692e67726176656c6e6674732e636f6d2f0000000000815250905090565b60606000821415611f3a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061209a565b600082905060005b60008214611f6c578080611f5590613ddc565b915050600a82611f659190613c35565b9150611f42565b60008167ffffffffffffffff811115611fae577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611fe05781602001600182028036833780820191505090505b5090505b6000851461209357600182611ff99190613cc0565b9150600a856120089190613e25565b60306120149190613bdf565b60f81b818381518110612050577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561208c9190613c35565b9450611fe4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61211483838361240f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121575761215281612414565b612196565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461219557612194838261245d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121d9576121d4816125ca565b612218565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461221757612216828261270d565b5b5b505050565b612227838361278c565b6122346000848484612278565b612273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226a90613850565b60405180910390fd5b505050565b60006122998473ffffffffffffffffffffffffffffffffffffffff1661295a565b15612402578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026122c2611a40565b8786866040518563ffffffff1660e01b81526004016122e49493929190613767565b602060405180830381600087803b1580156122fe57600080fd5b505af192505050801561232f57506040513d601f19601f8201168201806040525081019061232c9190612d19565b60015b6123b2573d806000811461235f576040519150601f19603f3d011682016040523d82523d6000602084013e612364565b606091505b506000815114156123aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a190613850565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612407565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161246a84610e3d565b6124749190613cc0565b9050600060076000848152602001908152602001600020549050818114612559576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506125de9190613cc0565b9050600060096000848152602001908152602001600020549050600060088381548110612634577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061267c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806126f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061271883610e3d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156127fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127f3906139d0565b60405180910390fd5b612805816119d4565b15612845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283c90613890565b60405180910390fd5b61285160008383612109565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128a19190613bdf565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461297990613daa565b90600052602060002090601f01602090048101928261299b57600085556129e2565b82601f106129b457805160ff19168380011785556129e2565b828001600101855582156129e2579182015b828111156129e15782518255916020019190600101906129c6565b5b5090506129ef91906129f3565b5090565b5b80821115612a0c5760008160009055506001016129f4565b5090565b6000612a23612a1e84613b3c565b613b0b565b905082815260208101848484011115612a3b57600080fd5b612a46848285613d68565b509392505050565b6000612a61612a5c84613b6c565b613b0b565b905082815260208101848484011115612a7957600080fd5b612a84848285613d68565b509392505050565b600081359050612a9b81613f23565b92915050565b600081359050612ab081613f3a565b92915050565b600081359050612ac581613f51565b92915050565b600081519050612ada81613f51565b92915050565b600082601f830112612af157600080fd5b8135612b01848260208601612a10565b91505092915050565b600082601f830112612b1b57600080fd5b8135612b2b848260208601612a4e565b91505092915050565b600081359050612b4381613f68565b92915050565b600060208284031215612b5b57600080fd5b6000612b6984828501612a8c565b91505092915050565b60008060408385031215612b8557600080fd5b6000612b9385828601612a8c565b9250506020612ba485828601612a8c565b9150509250929050565b600080600060608486031215612bc357600080fd5b6000612bd186828701612a8c565b9350506020612be286828701612a8c565b9250506040612bf386828701612b34565b9150509250925092565b60008060008060808587031215612c1357600080fd5b6000612c2187828801612a8c565b9450506020612c3287828801612a8c565b9350506040612c4387828801612b34565b925050606085013567ffffffffffffffff811115612c6057600080fd5b612c6c87828801612ae0565b91505092959194509250565b60008060408385031215612c8b57600080fd5b6000612c9985828601612a8c565b9250506020612caa85828601612aa1565b9150509250929050565b60008060408385031215612cc757600080fd5b6000612cd585828601612a8c565b9250506020612ce685828601612b34565b9150509250929050565b600060208284031215612d0257600080fd5b6000612d1084828501612ab6565b91505092915050565b600060208284031215612d2b57600080fd5b6000612d3984828501612acb565b91505092915050565b600060208284031215612d5457600080fd5b600082013567ffffffffffffffff811115612d6e57600080fd5b612d7a84828501612b0a565b91505092915050565b600060208284031215612d9557600080fd5b6000612da384828501612b34565b91505092915050565b612db581613cf4565b82525050565b612dc481613d06565b82525050565b6000612dd582613b9c565b612ddf8185613bb2565b9350612def818560208601613d77565b612df881613f12565b840191505092915050565b6000612e0e82613ba7565b612e188185613bc3565b9350612e28818560208601613d77565b612e3181613f12565b840191505092915050565b6000612e4782613ba7565b612e518185613bd4565b9350612e61818560208601613d77565b80840191505092915050565b6000612e7a601a83613bc3565b91507f546869732073616c6520686173206e6f7420737461727465642e0000000000006000830152602082019050919050565b6000612eba602283613bc3565b91507f596f75206d757374206d696e74206174206c65617374206f6e6520477261766560008301527f6c2e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612f20602b83613bc3565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000612f86603283613bc3565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612fec602683613bc3565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613052601c83613bc3565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613092604783613bc3565b91507f54686520616d6f756e74206f662047726176656c20796f75206172652074727960008301527f696e6720746f206d696e74206578636565647320746865204d41585f4e46545f60208301527f535550504c592e000000000000000000000000000000000000000000000000006040830152606082019050919050565b600061311e602483613bc3565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613184601983613bc3565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006131c4601a83613bc3565b91507f416c6c204e4654732068617665206265656e206d696e7465642e0000000000006000830152602082019050919050565b6000613204602c83613bc3565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061326a603883613bc3565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006132d0602a83613bc3565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613336602983613bc3565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061339c601683613bc3565b91507f496e636f72726563742045746865722076616c75652e000000000000000000006000830152602082019050919050565b60006133dc602083613bc3565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061341c602c83613bc3565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613482602483613bc3565b91507f596f752063616e6e6f74206d696e74206d6f7265207468616e2033302047726160008301527f76656c2e000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006134e8602083613bc3565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613528602983613bc3565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061358e602f83613bc3565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006135f4602183613bc3565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061365a603183613bc3565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006136c0602c83613bc3565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b61372281613d5e565b82525050565b60006137348285612e3c565b91506137408284612e3c565b91508190509392505050565b60006020820190506137616000830184612dac565b92915050565b600060808201905061377c6000830187612dac565b6137896020830186612dac565b6137966040830185613719565b81810360608301526137a88184612dca565b905095945050505050565b60006020820190506137c86000830184612dbb565b92915050565b600060208201905081810360008301526137e88184612e03565b905092915050565b6000602082019050818103600083015261380981612e6d565b9050919050565b6000602082019050818103600083015261382981612ead565b9050919050565b6000602082019050818103600083015261384981612f13565b9050919050565b6000602082019050818103600083015261386981612f79565b9050919050565b6000602082019050818103600083015261388981612fdf565b9050919050565b600060208201905081810360008301526138a981613045565b9050919050565b600060208201905081810360008301526138c981613085565b9050919050565b600060208201905081810360008301526138e981613111565b9050919050565b6000602082019050818103600083015261390981613177565b9050919050565b60006020820190508181036000830152613929816131b7565b9050919050565b60006020820190508181036000830152613949816131f7565b9050919050565b600060208201905081810360008301526139698161325d565b9050919050565b60006020820190508181036000830152613989816132c3565b9050919050565b600060208201905081810360008301526139a981613329565b9050919050565b600060208201905081810360008301526139c98161338f565b9050919050565b600060208201905081810360008301526139e9816133cf565b9050919050565b60006020820190508181036000830152613a098161340f565b9050919050565b60006020820190508181036000830152613a2981613475565b9050919050565b60006020820190508181036000830152613a49816134db565b9050919050565b60006020820190508181036000830152613a698161351b565b9050919050565b60006020820190508181036000830152613a8981613581565b9050919050565b60006020820190508181036000830152613aa9816135e7565b9050919050565b60006020820190508181036000830152613ac98161364d565b9050919050565b60006020820190508181036000830152613ae9816136b3565b9050919050565b6000602082019050613b056000830184613719565b92915050565b6000604051905081810181811067ffffffffffffffff82111715613b3257613b31613ee3565b5b8060405250919050565b600067ffffffffffffffff821115613b5757613b56613ee3565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613b8757613b86613ee3565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613bea82613d5e565b9150613bf583613d5e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c2a57613c29613e56565b5b828201905092915050565b6000613c4082613d5e565b9150613c4b83613d5e565b925082613c5b57613c5a613e85565b5b828204905092915050565b6000613c7182613d5e565b9150613c7c83613d5e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cb557613cb4613e56565b5b828202905092915050565b6000613ccb82613d5e565b9150613cd683613d5e565b925082821015613ce957613ce8613e56565b5b828203905092915050565b6000613cff82613d3e565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613d95578082015181840152602081019050613d7a565b83811115613da4576000848401525b50505050565b60006002820490506001821680613dc257607f821691505b60208210811415613dd657613dd5613eb4565b5b50919050565b6000613de782613d5e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613e1a57613e19613e56565b5b600182019050919050565b6000613e3082613d5e565b9150613e3b83613d5e565b925082613e4b57613e4a613e85565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613f2c81613cf4565b8114613f3757600080fd5b50565b613f4381613d06565b8114613f4e57600080fd5b50565b613f5a81613d12565b8114613f6557600080fd5b50565b613f7181613d5e565b8114613f7c57600080fd5b5056fea2646970667358221220213872bea08b15fe6f165d4ba6cbc804381797dea862ecfde5bd82ee5d9977c864736f6c63430008000033

Deployed Bytecode Sourcemap

42794:1804:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34304:237;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21513:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22973:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22510:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44360:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42898:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34957:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23863:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34625:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43290:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44475:120;;;:::i;:::-;;24239:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35147:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44276:76;;;;;;;;;;;;;:::i;:::-;;43055:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21207:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20937:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42174:148;;;;;;;;;;;;;:::i;:::-;;41523:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21682:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43414:771;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23266:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42846:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44193:75;;;;;;;;;;;;;:::i;:::-;;24461:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21857:360;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42946:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23632:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42477:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43012:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34304:237;34406:4;34445:35;34430:50;;;:11;:50;;;;:103;;;;34497:36;34521:11;34497:23;:36::i;:::-;34430:103;34423:110;;34304:237;;;:::o;21513:100::-;21567:13;21600:5;21593:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21513:100;:::o;22973:221::-;23049:7;23077:16;23085:7;23077;:16::i;:::-;23069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23162:15;:24;23178:7;23162:24;;;;;;;;;;;;;;;;;;;;;23155:31;;22973:221;;;:::o;22510:397::-;22591:13;22607:23;22622:7;22607:14;:23::i;:::-;22591:39;;22655:5;22649:11;;:2;:11;;;;22641:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22735:5;22719:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22744:37;22761:5;22768:12;:10;:12::i;:::-;22744:16;:37::i;:::-;22719:62;22711:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22878:21;22887:2;22891:7;22878:8;:21::i;:::-;22510:397;;;:::o;44360:107::-;41754:12;:10;:12::i;:::-;41743:23;;:7;:5;:7::i;:::-;:23;;;41735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44454:5:::1;44436:15;:23;;;;;;;;;;;;:::i;:::-;;44360:107:::0;:::o;42898:41::-;42937:2;42898:41;:::o;34957:113::-;35018:7;35045:10;:17;;;;35038:24;;34957:113;:::o;23863:305::-;24024:41;24043:12;:10;:12::i;:::-;24057:7;24024:18;:41::i;:::-;24016:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24132:28;24142:4;24148:2;24152:7;24132:9;:28::i;:::-;23863:305;;;:::o;34625:256::-;34722:7;34758:23;34775:5;34758:16;:23::i;:::-;34750:5;:31;34742:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34847:12;:19;34860:5;34847:19;;;;;;;;;;;;;;;:26;34867:5;34847:26;;;;;;;;;;;;34840:33;;34625:256;;;;:::o;43290:117::-;43349:13;43382:17;43391:7;43382:8;:17::i;:::-;43375:24;;43290:117;;;:::o;44475:120::-;41754:12;:10;:12::i;:::-;41743:23;;:7;:5;:7::i;:::-;:23;;;41735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44547:10:::1;44539:24;;:47;44564:21;44539:47;;;;;;;;;;;;;;;;;;;;;;;44531:56;;;::::0;::::1;;44475:120::o:0;24239:151::-;24343:39;24360:4;24366:2;24370:7;24343:39;;;;;;;;;;;;:16;:39::i;:::-;24239:151;;;:::o;35147:233::-;35222:7;35258:30;:28;:30::i;:::-;35250:5;:38;35242:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35355:10;35366:5;35355:17;;;;;;;;;;;;;;;;;;;;;;;;35348:24;;35147:233;;;:::o;44276:76::-;41754:12;:10;:12::i;:::-;41743:23;;:7;:5;:7::i;:::-;:23;;;41735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44339:5:::1;44325:11;;:19;;;;;;;;;;;;;;;;;;44276:76::o:0;43055:31::-;;;;;;;;;;;;;:::o;21207:239::-;21279:7;21299:13;21315:7;:16;21323:7;21315:16;;;;;;;;;;;;;;;;;;;;;21299:32;;21367:1;21350:19;;:5;:19;;;;21342:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21433:5;21426:12;;;21207:239;;;:::o;20937:208::-;21009:7;21054:1;21037:19;;:5;:19;;;;21029:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21121:9;:16;21131:5;21121:16;;;;;;;;;;;;;;;;21114:23;;20937:208;;;:::o;42174:148::-;41754:12;:10;:12::i;:::-;41743:23;;:7;:5;:7::i;:::-;:23;;;41735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42281:1:::1;42244:40;;42265:6;;;;;;;;;;;42244:40;;;;;;;;;;;;42312:1;42295:6;;:19;;;;;;;;;;;;;;;;;;42174:148::o:0;41523:87::-;41569:7;41596:6;;;;;;;;;;;41589:13;;41523:87;:::o;21682:104::-;21738:13;21771:7;21764:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21682:104;:::o;43414:771::-;43499:4;43484:19;;:11;;;;;;;;;;;:19;;;43476:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;42887:4;43553:13;:11;:13::i;:::-;:30;43545:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;43648:1;43633:12;:16;43625:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;42937:2;43707:12;:31;;43699:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;42887:4;43814:12;43798:13;:11;:13::i;:::-;:28;;;;:::i;:::-;:46;;43790:130;;;;;;;;;;;;:::i;:::-;;;;;;;;;43980:9;43964:12;43949;;:27;;;;:::i;:::-;:40;43941:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;44034:9;44029:150;44053:12;44049:1;:16;44029:150;;;44087:17;44107:13;:11;:13::i;:::-;44087:33;;44135:32;44145:10;44157:9;44135;:32::i;:::-;44029:150;44067:3;;;;;:::i;:::-;;;;44029:150;;;;43414:771;:::o;23266:295::-;23381:12;:10;:12::i;:::-;23369:24;;:8;:24;;;;23361:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23481:8;23436:18;:32;23455:12;:10;:12::i;:::-;23436:32;;;;;;;;;;;;;;;:42;23469:8;23436:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23534:8;23505:48;;23520:12;:10;:12::i;:::-;23505:48;;;23544:8;23505:48;;;;;;:::i;:::-;;;;;;;;23266:295;;:::o;42846:45::-;42887:4;42846:45;:::o;44193:75::-;41754:12;:10;:12::i;:::-;41743:23;;:7;:5;:7::i;:::-;:23;;;41735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44256:4:::1;44242:11;;:18;;;;;;;;;;;;;;;;;;44193:75::o:0;24461:285::-;24593:41;24612:12;:10;:12::i;:::-;24626:7;24593:18;:41::i;:::-;24585:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24699:39;24713:4;24719:2;24723:7;24732:5;24699:13;:39::i;:::-;24461:285;;;;:::o;21857:360::-;21930:13;21964:16;21972:7;21964;:16::i;:::-;21956:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22045:21;22069:10;:8;:10::i;:::-;22045:34;;22121:1;22103:7;22097:21;:25;:112;;;;;;;;;;;;;;;;;22162:7;22171:18;:7;:16;:18::i;:::-;22145:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22097:112;22090:119;;;21857:360;;;:::o;42946:47::-;;;;:::o;23632:164::-;23729:4;23753:18;:25;23772:5;23753:25;;;;;;;;;;;;;;;:35;23779:8;23753:35;;;;;;;;;;;;;;;;;;;;;;;;;23746:42;;23632:164;;;;:::o;42477:244::-;41754:12;:10;:12::i;:::-;41743:23;;:7;:5;:7::i;:::-;:23;;;41735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42586:1:::1;42566:22;;:8;:22;;;;42558:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42676:8;42647:38;;42668:6;;;;;;;;;;;42647:38;;;;;;;;;;;;42705:8;42696:6;;:17;;;;;;;;;;;;;;;;;;42477:244:::0;:::o;43012:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20581:292::-;20683:4;20722:25;20707:40;;;:11;:40;;;;:105;;;;20779:33;20764:48;;;:11;:48;;;;20707:105;:158;;;;20829:36;20853:11;20829:23;:36::i;:::-;20707:158;20700:165;;20581:292;;;:::o;26213:127::-;26278:4;26330:1;26302:30;;:7;:16;26310:7;26302:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26295:37;;26213:127;;;:::o;15875:98::-;15928:7;15955:10;15948:17;;15875:98;:::o;30090:174::-;30192:2;30165:15;:24;30181:7;30165:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30248:7;30244:2;30210:46;;30219:23;30234:7;30219:14;:23::i;:::-;30210:46;;;;;;;;;;;;30090:174;;:::o;26507:348::-;26600:4;26625:16;26633:7;26625;:16::i;:::-;26617:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26701:13;26717:23;26732:7;26717:14;:23::i;:::-;26701:39;;26770:5;26759:16;;:7;:16;;;:51;;;;26803:7;26779:31;;:20;26791:7;26779:11;:20::i;:::-;:31;;;26759:51;:87;;;;26814:32;26831:5;26838:7;26814:16;:32::i;:::-;26759:87;26751:96;;;26507:348;;;;:::o;29428:544::-;29553:4;29526:31;;:23;29541:7;29526:14;:23::i;:::-;:31;;;29518:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29636:1;29622:16;;:2;:16;;;;29614:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29692:39;29713:4;29719:2;29723:7;29692:20;:39::i;:::-;29796:29;29813:1;29817:7;29796:8;:29::i;:::-;29857:1;29838:9;:15;29848:4;29838:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29886:1;29869:9;:13;29879:2;29869:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29917:2;29898:7;:16;29906:7;29898:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29956:7;29952:2;29937:27;;29946:4;29937:27;;;;;;;;;;;;29428:544;;;:::o;27197:110::-;27273:26;27283:2;27287:7;27273:26;;;;;;;;;;;;:9;:26::i;:::-;27197:110;;:::o;25628:272::-;25742:28;25752:4;25758:2;25762:7;25742:9;:28::i;:::-;25789:48;25812:4;25818:2;25822:7;25831:5;25789:22;:48::i;:::-;25781:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25628:272;;;;:::o;43152:130::-;43212:13;43238:36;;;;;;;;;;;;;;;;;;;43152:130;:::o;16528:723::-;16584:13;16814:1;16805:5;:10;16801:53;;;16832:10;;;;;;;;;;;;;;;;;;;;;16801:53;16864:12;16879:5;16864:20;;16895:14;16920:78;16935:1;16927:4;:9;16920:78;;16953:8;;;;;:::i;:::-;;;;16984:2;16976:10;;;;;:::i;:::-;;;16920:78;;;17008:19;17040:6;17030:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17008:39;;17058:154;17074:1;17065:5;:10;17058:154;;17102:1;17092:11;;;;;:::i;:::-;;;17169:2;17161:5;:10;;;;:::i;:::-;17148:2;:24;;;;:::i;:::-;17135:39;;17118:6;17125;17118:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17198:2;17189:11;;;;;:::i;:::-;;;17058:154;;;17236:6;17222:21;;;;;16528:723;;;;:::o;19081:157::-;19166:4;19205:25;19190:40;;;:11;:40;;;;19183:47;;19081:157;;;:::o;35993:555::-;36103:45;36130:4;36136:2;36140:7;36103:26;:45::i;:::-;36181:1;36165:18;;:4;:18;;;36161:187;;;36200:40;36232:7;36200:31;:40::i;:::-;36161:187;;;36270:2;36262:10;;:4;:10;;;36258:90;;36289:47;36322:4;36328:7;36289:32;:47::i;:::-;36258:90;36161:187;36376:1;36362:16;;:2;:16;;;36358:183;;;36395:45;36432:7;36395:36;:45::i;:::-;36358:183;;;36468:4;36462:10;;:2;:10;;;36458:83;;36489:40;36517:2;36521:7;36489:27;:40::i;:::-;36458:83;36358:183;35993:555;;;:::o;27534:250::-;27630:18;27636:2;27640:7;27630:5;:18::i;:::-;27667:54;27698:1;27702:2;27706:7;27715:5;27667:22;:54::i;:::-;27659:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27534:250;;;:::o;30829:843::-;30950:4;30976:15;:2;:13;;;:15::i;:::-;30972:693;;;31028:2;31012:36;;;31049:12;:10;:12::i;:::-;31063:4;31069:7;31078:5;31012:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31008:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31275:1;31258:6;:13;:18;31254:341;;;31301:60;;;;;;;;;;:::i;:::-;;;;;;;;31254:341;31545:6;31539:13;31530:6;31526:2;31522:15;31515:38;31008:602;31145:45;;;31135:55;;;:6;:55;;;;31128:62;;;;;30972:693;31649:4;31642:11;;30829:843;;;;;;;:::o;32285:93::-;;;;:::o;37271:164::-;37375:10;:17;;;;37348:15;:24;37364:7;37348:24;;;;;;;;;;;:44;;;;37403:10;37419:7;37403:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37271:164;:::o;38062:988::-;38328:22;38378:1;38353:22;38370:4;38353:16;:22::i;:::-;:26;;;;:::i;:::-;38328:51;;38390:18;38411:17;:26;38429:7;38411:26;;;;;;;;;;;;38390:47;;38558:14;38544:10;:28;38540:328;;38589:19;38611:12;:18;38624:4;38611:18;;;;;;;;;;;;;;;:34;38630:14;38611:34;;;;;;;;;;;;38589:56;;38695:11;38662:12;:18;38675:4;38662:18;;;;;;;;;;;;;;;:30;38681:10;38662:30;;;;;;;;;;;:44;;;;38812:10;38779:17;:30;38797:11;38779:30;;;;;;;;;;;:43;;;;38540:328;;38964:17;:26;38982:7;38964:26;;;;;;;;;;;38957:33;;;39008:12;:18;39021:4;39008:18;;;;;;;;;;;;;;;:34;39027:14;39008:34;;;;;;;;;;;39001:41;;;38062:988;;;;:::o;39345:1079::-;39598:22;39643:1;39623:10;:17;;;;:21;;;;:::i;:::-;39598:46;;39655:18;39676:15;:24;39692:7;39676:24;;;;;;;;;;;;39655:45;;40027:19;40049:10;40060:14;40049:26;;;;;;;;;;;;;;;;;;;;;;;;40027:48;;40113:11;40088:10;40099;40088:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;40224:10;40193:15;:28;40209:11;40193:28;;;;;;;;;;;:41;;;;40365:15;:24;40381:7;40365:24;;;;;;;;;;;40358:31;;;40400:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39345:1079;;;;:::o;36849:221::-;36934:14;36951:20;36968:2;36951:16;:20::i;:::-;36934:37;;37009:7;36982:12;:16;36995:2;36982:16;;;;;;;;;;;;;;;:24;36999:6;36982:24;;;;;;;;;;;:34;;;;37056:6;37027:17;:26;37045:7;37027:26;;;;;;;;;;;:35;;;;36849:221;;;:::o;28120:382::-;28214:1;28200:16;;:2;:16;;;;28192:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28273:16;28281:7;28273;:16::i;:::-;28272:17;28264:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28335:45;28364:1;28368:2;28372:7;28335:20;:45::i;:::-;28410:1;28393:9;:13;28403:2;28393:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28441:2;28422:7;:16;28430:7;28422:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28486:7;28482:2;28461:33;;28478:1;28461:33;;;;;;;;;;;;28120:382;;:::o;7994:422::-;8054:4;8262:12;8373:7;8361:20;8353:28;;8407:1;8400:4;:8;8393:15;;;7994: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:366::-;;7935:67;7999:2;7994:3;7935:67;:::i;:::-;7928:74;;8032:34;8028:1;8023:3;8019:11;8012:55;8098:4;8093:2;8088:3;8084:12;8077:26;8129:2;8124:3;8120:12;8113:19;;7918:220;;;:::o;8144:375::-;;8307:67;8371:2;8366:3;8307:67;:::i;:::-;8300:74;;8404:34;8400:1;8395:3;8391:11;8384:55;8470:13;8465:2;8460:3;8456:12;8449:35;8510:2;8505:3;8501:12;8494:19;;8290:229;;;:::o;8525:382::-;;8688:67;8752:2;8747:3;8688:67;:::i;:::-;8681:74;;8785:34;8781:1;8776:3;8772:11;8765:55;8851:20;8846:2;8841:3;8837:12;8830:42;8898:2;8893:3;8889:12;8882:19;;8671:236;;;:::o;8913:370::-;;9076:67;9140:2;9135:3;9076:67;:::i;:::-;9069:74;;9173:34;9169:1;9164:3;9160:11;9153:55;9239:8;9234:2;9229:3;9225:12;9218:30;9274:2;9269:3;9265:12;9258:19;;9059:224;;;:::o;9289:326::-;;9452:67;9516:2;9511:3;9452:67;:::i;:::-;9445:74;;9549:30;9545:1;9540:3;9536:11;9529:51;9606:2;9601:3;9597:12;9590:19;;9435:180;;;:::o;9621:437::-;;9784:67;9848:2;9843:3;9784:67;:::i;:::-;9777:74;;9881:34;9877:1;9872:3;9868:11;9861:55;9947:34;9942:2;9937:3;9933:12;9926:56;10013:9;10008:2;10003:3;9999:12;9992:31;10049:2;10044:3;10040:12;10033:19;;9767:291;;;:::o;10064:368::-;;10227:67;10291:2;10286:3;10227:67;:::i;:::-;10220:74;;10324:34;10320:1;10315:3;10311:11;10304:55;10390:6;10385:2;10380:3;10376:12;10369:28;10423:2;10418:3;10414:12;10407:19;;10210:222;;;:::o;10438:323::-;;10601:67;10665:2;10660:3;10601:67;:::i;:::-;10594:74;;10698:27;10694:1;10689:3;10685:11;10678:48;10752:2;10747:3;10743:12;10736:19;;10584:177;;;:::o;10767:324::-;;10930:67;10994:2;10989:3;10930:67;:::i;:::-;10923:74;;11027:28;11023:1;11018:3;11014:11;11007:49;11082:2;11077:3;11073:12;11066:19;;10913:178;;;:::o;11097:376::-;;11260:67;11324:2;11319:3;11260:67;:::i;:::-;11253:74;;11357:34;11353:1;11348:3;11344:11;11337:55;11423:14;11418:2;11413:3;11409:12;11402:36;11464:2;11459:3;11455:12;11448:19;;11243:230;;;:::o;11479:388::-;;11642:67;11706:2;11701:3;11642:67;:::i;:::-;11635:74;;11739:34;11735:1;11730:3;11726:11;11719:55;11805:26;11800:2;11795:3;11791:12;11784:48;11858:2;11853:3;11849:12;11842:19;;11625:242;;;:::o;11873:374::-;;12036:67;12100:2;12095:3;12036:67;:::i;:::-;12029:74;;12133:34;12129:1;12124:3;12120:11;12113:55;12199:12;12194:2;12189:3;12185:12;12178:34;12238:2;12233:3;12229:12;12222:19;;12019:228;;;:::o;12253:373::-;;12416:67;12480:2;12475:3;12416:67;:::i;:::-;12409:74;;12513:34;12509:1;12504:3;12500:11;12493:55;12579:11;12574:2;12569:3;12565:12;12558:33;12617:2;12612:3;12608:12;12601:19;;12399:227;;;:::o;12632:320::-;;12795:67;12859:2;12854:3;12795:67;:::i;:::-;12788:74;;12892:24;12888:1;12883:3;12879:11;12872:45;12943:2;12938:3;12934:12;12927:19;;12778:174;;;:::o;12958:330::-;;13121:67;13185:2;13180:3;13121:67;:::i;:::-;13114:74;;13218:34;13214:1;13209:3;13205:11;13198:55;13279:2;13274:3;13270:12;13263:19;;13104:184;;;:::o;13294:376::-;;13457:67;13521:2;13516:3;13457:67;:::i;:::-;13450:74;;13554:34;13550:1;13545:3;13541:11;13534:55;13620:14;13615:2;13610:3;13606:12;13599:36;13661:2;13656:3;13652:12;13645:19;;13440:230;;;:::o;13676:368::-;;13839:67;13903:2;13898:3;13839:67;:::i;:::-;13832:74;;13936:34;13932:1;13927:3;13923:11;13916:55;14002:6;13997:2;13992:3;13988:12;13981:28;14035:2;14030:3;14026:12;14019:19;;13822:222;;;:::o;14050:330::-;;14213:67;14277:2;14272:3;14213:67;:::i;:::-;14206:74;;14310:34;14306:1;14301:3;14297:11;14290:55;14371:2;14366:3;14362:12;14355:19;;14196:184;;;:::o;14386:373::-;;14549:67;14613:2;14608:3;14549:67;:::i;:::-;14542:74;;14646:34;14642:1;14637:3;14633:11;14626:55;14712:11;14707:2;14702:3;14698:12;14691:33;14750:2;14745:3;14741:12;14734:19;;14532:227;;;:::o;14765:379::-;;14928:67;14992:2;14987:3;14928:67;:::i;:::-;14921:74;;15025:34;15021:1;15016:3;15012:11;15005:55;15091:17;15086:2;15081:3;15077:12;15070:39;15135:2;15130:3;15126:12;15119:19;;14911:233;;;:::o;15150:365::-;;15313:67;15377:2;15372:3;15313:67;:::i;:::-;15306:74;;15410:34;15406:1;15401:3;15397:11;15390:55;15476:3;15471:2;15466:3;15462:12;15455:25;15506:2;15501:3;15497:12;15490:19;;15296:219;;;:::o;15521:381::-;;15684:67;15748:2;15743:3;15684:67;:::i;:::-;15677:74;;15781:34;15777:1;15772:3;15768:11;15761:55;15847:19;15842:2;15837:3;15833:12;15826:41;15893:2;15888:3;15884:12;15877:19;;15667:235;;;:::o;15908:376::-;;16071:67;16135:2;16130:3;16071:67;:::i;:::-;16064:74;;16168:34;16164:1;16159:3;16155:11;16148:55;16234:14;16229:2;16224:3;16220:12;16213:36;16275:2;16270:3;16266:12;16259:19;;16054:230;;;:::o;16290:118::-;16377:24;16395:5;16377:24;:::i;:::-;16372:3;16365:37;16355:53;;:::o;16414:435::-;;16616:95;16707:3;16698:6;16616:95;:::i;:::-;16609:102;;16728:95;16819:3;16810:6;16728:95;:::i;:::-;16721:102;;16840:3;16833:10;;16598:251;;;;;:::o;16855:222::-;;16986:2;16975:9;16971:18;16963:26;;16999:71;17067:1;17056:9;17052:17;17043:6;16999:71;:::i;:::-;16953:124;;;;:::o;17083:640::-;;17316:3;17305:9;17301:19;17293:27;;17330:71;17398:1;17387:9;17383:17;17374:6;17330:71;:::i;:::-;17411:72;17479:2;17468:9;17464:18;17455:6;17411:72;:::i;:::-;17493;17561:2;17550:9;17546:18;17537:6;17493:72;:::i;:::-;17612:9;17606:4;17602:20;17597:2;17586:9;17582:18;17575:48;17640:76;17711:4;17702:6;17640:76;:::i;:::-;17632:84;;17283:440;;;;;;;:::o;17729:210::-;;17854:2;17843:9;17839:18;17831:26;;17867:65;17929:1;17918:9;17914:17;17905:6;17867:65;:::i;:::-;17821:118;;;;:::o;17945:313::-;;18096:2;18085:9;18081:18;18073:26;;18145:9;18139:4;18135:20;18131:1;18120:9;18116:17;18109:47;18173:78;18246:4;18237:6;18173:78;:::i;:::-;18165:86;;18063:195;;;;:::o;18264:419::-;;18468:2;18457:9;18453:18;18445:26;;18517:9;18511:4;18507:20;18503:1;18492:9;18488:17;18481:47;18545:131;18671:4;18545:131;:::i;:::-;18537:139;;18435:248;;;:::o;18689:419::-;;18893:2;18882:9;18878:18;18870:26;;18942:9;18936:4;18932:20;18928:1;18917:9;18913:17;18906:47;18970:131;19096:4;18970:131;:::i;:::-;18962:139;;18860:248;;;:::o;19114:419::-;;19318:2;19307:9;19303:18;19295:26;;19367:9;19361:4;19357:20;19353:1;19342:9;19338:17;19331:47;19395:131;19521:4;19395:131;:::i;:::-;19387:139;;19285:248;;;:::o;19539:419::-;;19743:2;19732:9;19728:18;19720:26;;19792:9;19786:4;19782:20;19778:1;19767:9;19763:17;19756:47;19820:131;19946:4;19820:131;:::i;:::-;19812:139;;19710:248;;;:::o;19964:419::-;;20168:2;20157:9;20153:18;20145:26;;20217:9;20211:4;20207:20;20203:1;20192:9;20188:17;20181:47;20245:131;20371:4;20245:131;:::i;:::-;20237:139;;20135:248;;;:::o;20389:419::-;;20593:2;20582:9;20578:18;20570:26;;20642:9;20636:4;20632:20;20628:1;20617:9;20613:17;20606:47;20670:131;20796:4;20670:131;:::i;:::-;20662:139;;20560:248;;;:::o;20814:419::-;;21018:2;21007:9;21003:18;20995:26;;21067:9;21061:4;21057:20;21053:1;21042:9;21038:17;21031:47;21095:131;21221:4;21095:131;:::i;:::-;21087:139;;20985:248;;;:::o;21239:419::-;;21443:2;21432:9;21428:18;21420:26;;21492:9;21486:4;21482:20;21478:1;21467:9;21463:17;21456:47;21520:131;21646:4;21520:131;:::i;:::-;21512:139;;21410:248;;;:::o;21664:419::-;;21868:2;21857:9;21853:18;21845:26;;21917:9;21911:4;21907:20;21903:1;21892:9;21888:17;21881:47;21945:131;22071:4;21945:131;:::i;:::-;21937:139;;21835:248;;;:::o;22089:419::-;;22293:2;22282:9;22278:18;22270:26;;22342:9;22336:4;22332:20;22328:1;22317:9;22313:17;22306:47;22370:131;22496:4;22370:131;:::i;:::-;22362:139;;22260:248;;;:::o;22514:419::-;;22718:2;22707:9;22703:18;22695:26;;22767:9;22761:4;22757:20;22753:1;22742:9;22738:17;22731:47;22795:131;22921:4;22795:131;:::i;:::-;22787:139;;22685:248;;;:::o;22939:419::-;;23143:2;23132:9;23128:18;23120:26;;23192:9;23186:4;23182:20;23178:1;23167:9;23163:17;23156:47;23220:131;23346:4;23220:131;:::i;:::-;23212:139;;23110:248;;;:::o;23364:419::-;;23568:2;23557:9;23553:18;23545:26;;23617:9;23611:4;23607:20;23603:1;23592:9;23588:17;23581:47;23645:131;23771:4;23645:131;:::i;:::-;23637:139;;23535:248;;;:::o;23789:419::-;;23993:2;23982:9;23978:18;23970:26;;24042:9;24036:4;24032:20;24028:1;24017:9;24013:17;24006:47;24070:131;24196:4;24070:131;:::i;:::-;24062:139;;23960:248;;;:::o;24214:419::-;;24418:2;24407:9;24403:18;24395:26;;24467:9;24461:4;24457:20;24453:1;24442:9;24438:17;24431:47;24495:131;24621:4;24495:131;:::i;:::-;24487:139;;24385:248;;;:::o;24639:419::-;;24843:2;24832:9;24828:18;24820:26;;24892:9;24886:4;24882:20;24878:1;24867:9;24863:17;24856:47;24920:131;25046:4;24920:131;:::i;:::-;24912:139;;24810:248;;;:::o;25064:419::-;;25268:2;25257:9;25253:18;25245:26;;25317:9;25311:4;25307:20;25303:1;25292:9;25288:17;25281:47;25345:131;25471:4;25345:131;:::i;:::-;25337:139;;25235:248;;;:::o;25489:419::-;;25693:2;25682:9;25678:18;25670:26;;25742:9;25736:4;25732:20;25728:1;25717:9;25713:17;25706:47;25770:131;25896:4;25770:131;:::i;:::-;25762:139;;25660:248;;;:::o;25914:419::-;;26118:2;26107:9;26103:18;26095:26;;26167:9;26161:4;26157:20;26153:1;26142:9;26138:17;26131:47;26195:131;26321:4;26195:131;:::i;:::-;26187:139;;26085:248;;;:::o;26339:419::-;;26543:2;26532:9;26528:18;26520:26;;26592:9;26586:4;26582:20;26578:1;26567:9;26563:17;26556:47;26620:131;26746:4;26620:131;:::i;:::-;26612:139;;26510:248;;;:::o;26764:419::-;;26968:2;26957:9;26953:18;26945:26;;27017:9;27011:4;27007:20;27003:1;26992:9;26988:17;26981:47;27045:131;27171:4;27045:131;:::i;:::-;27037:139;;26935:248;;;:::o;27189:419::-;;27393:2;27382:9;27378:18;27370:26;;27442:9;27436:4;27432:20;27428:1;27417:9;27413:17;27406:47;27470:131;27596:4;27470:131;:::i;:::-;27462:139;;27360:248;;;:::o;27614:419::-;;27818:2;27807:9;27803:18;27795:26;;27867:9;27861:4;27857:20;27853:1;27842:9;27838:17;27831:47;27895:131;28021:4;27895:131;:::i;:::-;27887:139;;27785:248;;;:::o;28039:419::-;;28243:2;28232:9;28228:18;28220:26;;28292:9;28286:4;28282:20;28278:1;28267:9;28263:17;28256:47;28320:131;28446:4;28320:131;:::i;:::-;28312:139;;28210:248;;;:::o;28464:222::-;;28595:2;28584:9;28580:18;28572:26;;28608:71;28676:1;28665:9;28661:17;28652:6;28608:71;:::i;:::-;28562:124;;;;:::o;28692:283::-;;28758:2;28752:9;28742:19;;28800:4;28792:6;28788:17;28907:6;28895:10;28892:22;28871:18;28859:10;28856:34;28853:62;28850:2;;;28918:18;;:::i;:::-;28850:2;28958:10;28954:2;28947:22;28732:243;;;;:::o;28981:331::-;;29132:18;29124:6;29121:30;29118:2;;;29154:18;;:::i;:::-;29118:2;29239:4;29235:9;29228:4;29220:6;29216:17;29212:33;29204:41;;29300:4;29294;29290:15;29282:23;;29047:265;;;:::o;29318:332::-;;29470:18;29462:6;29459:30;29456:2;;;29492:18;;:::i;:::-;29456:2;29577:4;29573:9;29566:4;29558:6;29554:17;29550:33;29542:41;;29638:4;29632;29628:15;29620:23;;29385:265;;;:::o;29656:98::-;;29741:5;29735:12;29725:22;;29714:40;;;:::o;29760:99::-;;29846:5;29840:12;29830:22;;29819:40;;;:::o;29865:168::-;;29982:6;29977:3;29970:19;30022:4;30017:3;30013:14;29998:29;;29960:73;;;;:::o;30039:169::-;;30157:6;30152:3;30145:19;30197:4;30192:3;30188:14;30173:29;;30135:73;;;;:::o;30214:148::-;;30353:3;30338:18;;30328:34;;;;:::o;30368:305::-;;30427:20;30445:1;30427:20;:::i;:::-;30422:25;;30461:20;30479:1;30461:20;:::i;:::-;30456:25;;30615:1;30547:66;30543:74;30540:1;30537:81;30534:2;;;30621:18;;:::i;:::-;30534:2;30665:1;30662;30658:9;30651:16;;30412:261;;;;:::o;30679:185::-;;30736:20;30754:1;30736:20;:::i;:::-;30731:25;;30770:20;30788:1;30770:20;:::i;:::-;30765:25;;30809:1;30799:2;;30814:18;;:::i;:::-;30799:2;30856:1;30853;30849:9;30844:14;;30721:143;;;;:::o;30870:348::-;;30933:20;30951:1;30933:20;:::i;:::-;30928:25;;30967:20;30985:1;30967:20;:::i;:::-;30962:25;;31155:1;31087:66;31083:74;31080:1;31077:81;31072:1;31065:9;31058:17;31054:105;31051:2;;;31162:18;;:::i;:::-;31051:2;31210:1;31207;31203:9;31192:20;;30918:300;;;;:::o;31224:191::-;;31284:20;31302:1;31284:20;:::i;:::-;31279:25;;31318:20;31336:1;31318:20;:::i;:::-;31313:25;;31357:1;31354;31351:8;31348:2;;;31362:18;;:::i;:::-;31348:2;31407:1;31404;31400:9;31392:17;;31269:146;;;;:::o;31421:96::-;;31487:24;31505:5;31487:24;:::i;:::-;31476:35;;31466:51;;;:::o;31523:90::-;;31600:5;31593:13;31586:21;31575:32;;31565:48;;;:::o;31619:149::-;;31695:66;31688:5;31684:78;31673:89;;31663:105;;;:::o;31774:126::-;;31851:42;31844:5;31840:54;31829:65;;31819:81;;;:::o;31906:77::-;;31972:5;31961:16;;31951:32;;;:::o;31989:154::-;32073:6;32068:3;32063;32050:30;32135:1;32126:6;32121:3;32117:16;32110:27;32040:103;;;:::o;32149:307::-;32217:1;32227:113;32241:6;32238:1;32235:13;32227:113;;;32326:1;32321:3;32317:11;32311:18;32307:1;32302:3;32298:11;32291:39;32263:2;32260:1;32256:10;32251:15;;32227:113;;;32358:6;32355:1;32352:13;32349:2;;;32438:1;32429:6;32424:3;32420:16;32413:27;32349:2;32198:258;;;;:::o;32462:320::-;;32543:1;32537:4;32533:12;32523:22;;32590:1;32584:4;32580:12;32611:18;32601:2;;32667:4;32659:6;32655:17;32645:27;;32601:2;32729;32721:6;32718:14;32698:18;32695:38;32692:2;;;32748:18;;:::i;:::-;32692:2;32513:269;;;;:::o;32788:233::-;;32850:24;32868:5;32850:24;:::i;:::-;32841:33;;32896:66;32889:5;32886:77;32883:2;;;32966:18;;:::i;:::-;32883:2;33013:1;33006:5;33002:13;32995:20;;32831:190;;;:::o;33027:176::-;;33076:20;33094:1;33076:20;:::i;:::-;33071:25;;33110:20;33128:1;33110:20;:::i;:::-;33105:25;;33149:1;33139:2;;33154:18;;:::i;:::-;33139:2;33195:1;33192;33188:9;33183:14;;33061:142;;;;:::o;33209:180::-;33257:77;33254:1;33247:88;33354:4;33351:1;33344:15;33378:4;33375:1;33368:15;33395:180;33443:77;33440:1;33433:88;33540:4;33537:1;33530:15;33564:4;33561:1;33554:15;33581:180;33629:77;33626:1;33619:88;33726:4;33723:1;33716:15;33750:4;33747:1;33740:15;33767:180;33815:77;33812:1;33805:88;33912:4;33909:1;33902:15;33936:4;33933:1;33926:15;33953:102;;34045:2;34041:7;34036:2;34029:5;34025:14;34021:28;34011:38;;34001:54;;;:::o;34061:122::-;34134:24;34152:5;34134:24;:::i;:::-;34127:5;34124:35;34114:2;;34173:1;34170;34163:12;34114:2;34104:79;:::o;34189:116::-;34259:21;34274:5;34259:21;:::i;:::-;34252:5;34249:32;34239:2;;34295:1;34292;34285:12;34239:2;34229:76;:::o;34311:120::-;34383:23;34400:5;34383:23;:::i;:::-;34376:5;34373:34;34363:2;;34421:1;34418;34411:12;34363:2;34353:78;:::o;34437:122::-;34510:24;34528:5;34510:24;:::i;:::-;34503:5;34500:35;34490:2;;34549:1;34546;34539:12;34490:2;34480:79;:::o

Swarm Source

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