ETH Price: $3,110.70 (-5.51%)
Gas: 6 Gwei

Token

NuBloom Fractal (NBFR)
 

Overview

Max Total Supply

8,918 NBFR

Holders

1,210

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 NBFR
0xcbfc78d7e26c2ff131867ed74fa65572dad6fc90
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

NuBloom Fractal is a collection of unique flower species generated using Lindenmayer systems, which rewrite strings iteratively creating fractal patterns.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
NuBloomFractal

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

 

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/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/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/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 || ERC721.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 || ERC721.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/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: @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: contracts/NuBloomFractal.sol

 

pragma solidity ^0.8.0;




/**
 * @title NuBloomFractal contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
contract NuBloomFractal is ERC721, ERC721Enumerable, Ownable {

    string public PROVENANCE;
    uint256 public constant tokenPrice = 15000000000000000; // 0.015 ETH
    uint public constant maxTokenPurchase = 5;
    uint256 public MAX_TOKENS = 8888;
    bool public saleIsActive = false;

    string public _baseURIextended;
    uint public flowerReserve = 200;

    constructor() ERC721("NuBloom Fractal", "NBFR") {
    }

    // CHANGED: needed to resolve conflicting fns in ERC721 and ERC721Enumerable
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    // CHANGED: needed to resolve conflicting fns in ERC721 and ERC721Enumerable
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    // CHANGED: added to account for changes in openzeppelin versions
    function setBaseURI(string memory baseURI_) external onlyOwner() {
        _baseURIextended = baseURI_;
    }

    // CHANGED: added to account for changes in openzeppelin versions
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseURIextended;
        
    }

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

    function reserveFlower(address _to, uint256 _reserveAmount) public onlyOwner {        
        uint supply = totalSupply();
        require(_reserveAmount > 0 && _reserveAmount <= flowerReserve, "Not enough reserve left for team");
        for (uint i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        flowerReserve = flowerReserve - _reserveAmount;
    }
    
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }
    
    function mintFlower(uint numberOfTokens) public payable {
        uint tokensupply = totalSupply();
        require(saleIsActive, "Sale must be active to mint Tokens");
        require(numberOfTokens <= maxTokenPurchase, "Exceeded max token purchase");
        // CHANGED: mult and add to + and *
        require(totalSupply() + numberOfTokens <= MAX_TOKENS, "Purchase would exceed max supply of tokens");
        // CHANGED: mult and add to + and *
        if (tokensupply + numberOfTokens >= 51){
            require(tokenPrice * numberOfTokens <= msg.value, "Ether value sent is not correct");
        }
        
        
        for(uint i = 0; i < numberOfTokens; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_TOKENS) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    function withdraw() public onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(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":"MAX_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseURIextended","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":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flowerReserve","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":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintFlower","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserveFlower","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenance","type":"string"}],"name":"setProvenance","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":[],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526122b8600c55600d805460ff1916905560c8600f553480156200002657600080fd5b50604080518082018252600f81526e139d509b1bdbdb48119c9858dd185b608a1b6020808301918252835180850190945260048452632721232960e11b9084015281519192916200007a91600091620000fd565b50805162000090906001906020840190620000fd565b5050506000620000a5620000f960201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001e0565b3390565b8280546200010b90620001a3565b90600052602060002090601f0160209004810192826200012f57600085556200017a565b82601f106200014a57805160ff19168380011785556200017a565b828001600101855582156200017a579182015b828111156200017a5782518255916020019190600101906200015d565b50620001889291506200018c565b5090565b5b808211156200018857600081556001016200018d565b600281046001821680620001b857607f821691505b60208210811415620001da57634e487b7160e01b600052602260045260246000fd5b50919050565b61243d80620001f06000396000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063eb8d244411610064578063eb8d244414610516578063f2fde38b1461052b578063f47c84c51461054b578063ffe630b514610560576101e3565b8063a22cb46514610496578063b88d4fde146104b6578063c87b56dd146104d6578063e985e9c5146104f6576101e3565b8063767f9805116100d1578063767f9805146104425780637ff9b596146104575780638da5cb5b1461046c57806395d89b4114610481576101e3565b80636352211e146103d85780636373a6b1146103f857806370a082311461040d578063715018a61461042d576101e3565b80632af86c7b1161017a5780633ccfd60b116101495780633ccfd60b1461036357806342842e0e146103785780634f6ccce71461039857806355f804b3146103b8576101e3565b80632af86c7b146102fb5780632f745c591461030e5780633428f5ed1461032e57806334918dfd1461034e576101e3565b8063095ea7b3116101b6578063095ea7b31461028257806309aa3dcf146102a457806318160ddd146102c657806323b872dd146102db576101e3565b806301ffc9a7146101e857806306fdde031461021e578063081812fc146102405780630928fc221461026d575b600080fd5b3480156101f457600080fd5b50610208610203366004611b1f565b610580565b6040516102159190611c61565b60405180910390f35b34801561022a57600080fd5b50610233610593565b6040516102159190611c6c565b34801561024c57600080fd5b5061026061025b366004611b9d565b610625565b6040516102159190611c10565b34801561027957600080fd5b50610233610671565b34801561028e57600080fd5b506102a261029d366004611af6565b6106ff565b005b3480156102b057600080fd5b506102b9610797565b60405161021591906122ab565b3480156102d257600080fd5b506102b961079c565b3480156102e757600080fd5b506102a26102f6366004611a08565b6107a2565b6102a2610309366004611b9d565b6107da565b34801561031a57600080fd5b506102b9610329366004611af6565b6108e4565b34801561033a57600080fd5b506102a2610349366004611af6565b610936565b34801561035a57600080fd5b506102a26109f6565b34801561036f57600080fd5b506102a2610a49565b34801561038457600080fd5b506102a2610393366004611a08565b610abb565b3480156103a457600080fd5b506102b96103b3366004611b9d565b610ad6565b3480156103c457600080fd5b506102a26103d3366004611b57565b610b31565b3480156103e457600080fd5b506102606103f3366004611b9d565b610b83565b34801561040457600080fd5b50610233610bb8565b34801561041957600080fd5b506102b96104283660046119bc565b610bc5565b34801561043957600080fd5b506102a2610c09565b34801561044e57600080fd5b506102b9610c92565b34801561046357600080fd5b506102b9610c98565b34801561047857600080fd5b50610260610ca3565b34801561048d57600080fd5b50610233610cb2565b3480156104a257600080fd5b506102a26104b1366004611abc565b610cc1565b3480156104c257600080fd5b506102a26104d1366004611a43565b610d8f565b3480156104e257600080fd5b506102336104f1366004611b9d565b610dce565b34801561050257600080fd5b506102086105113660046119d6565b610e51565b34801561052257600080fd5b50610208610e7f565b34801561053757600080fd5b506102a26105463660046119bc565b610e88565b34801561055757600080fd5b506102b9610f49565b34801561056c57600080fd5b506102a261057b366004611b57565b610f4f565b600061058b82610fa1565b90505b919050565b6060600080546105a290612342565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce90612342565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b600061063082610fc6565b6106555760405162461bcd60e51b815260040161064c9061207d565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600e805461067e90612342565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa90612342565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b505050505081565b600061070a82610b83565b9050806001600160a01b0316836001600160a01b0316141561073e5760405162461bcd60e51b815260040161064c90612196565b806001600160a01b0316610750610fe3565b6001600160a01b0316148061076c575061076c81610511610fe3565b6107885760405162461bcd60e51b815260040161064c90611f0e565b6107928383610fe7565b505050565b600581565b60085490565b6107b36107ad610fe3565b82611055565b6107cf5760405162461bcd60e51b815260040161064c9061220e565b6107928383836110da565b60006107e461079c565b600d5490915060ff166108095760405162461bcd60e51b815260040161064c90611e80565b600582111561082a5760405162461bcd60e51b815260040161064c906121d7565b600c548261083661079c565b61084091906122b4565b111561085e5760405162461bcd60e51b815260040161064c90611ffe565b603361086a83836122b4565b1061089f57346108818366354a6ba7a180006122e0565b111561089f5760405162461bcd60e51b815260040161064c90611e49565b60005b828110156107925760006108b461079c565b9050600c546108c161079c565b10156108d1576108d13382611207565b50806108dc8161237d565b9150506108a2565b60006108ef83610bc5565b821061090d5760405162461bcd60e51b815260040161064c90611c7f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61093e610fe3565b6001600160a01b031661094f610ca3565b6001600160a01b0316146109755760405162461bcd60e51b815260040161064c906120c9565b600061097f61079c565b90506000821180156109935750600f548211155b6109af5760405162461bcd60e51b815260040161064c90611d99565b60005b828110156109df576109cd846109c883856122b4565b611207565b806109d78161237d565b9150506109b2565b5081600f546109ee91906122ff565b600f55505050565b6109fe610fe3565b6001600160a01b0316610a0f610ca3565b6001600160a01b031614610a355760405162461bcd60e51b815260040161064c906120c9565b600d805460ff19811660ff90911615179055565b610a51610fe3565b6001600160a01b0316610a62610ca3565b6001600160a01b031614610a885760405162461bcd60e51b815260040161064c906120c9565b6040514790339082156108fc029083906000818181858888f19350505050158015610ab7573d6000803e3d6000fd5b5050565b61079283838360405180602001604052806000815250610d8f565b6000610ae061079c565b8210610afe5760405162461bcd60e51b815260040161064c9061225f565b60088281548110610b1f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610b39610fe3565b6001600160a01b0316610b4a610ca3565b6001600160a01b031614610b705760405162461bcd60e51b815260040161064c906120c9565b8051610ab790600e90602084019061189c565b6000818152600260205260408120546001600160a01b03168061058b5760405162461bcd60e51b815260040161064c90611fb5565b600b805461067e90612342565b60006001600160a01b038216610bed5760405162461bcd60e51b815260040161064c90611f6b565b506001600160a01b031660009081526003602052604090205490565b610c11610fe3565b6001600160a01b0316610c22610ca3565b6001600160a01b031614610c485760405162461bcd60e51b815260040161064c906120c9565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600f5481565b66354a6ba7a1800081565b600a546001600160a01b031690565b6060600180546105a290612342565b610cc9610fe3565b6001600160a01b0316826001600160a01b03161415610cfa5760405162461bcd60e51b815260040161064c90611e12565b8060056000610d07610fe3565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d4b610fe3565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d839190611c61565b60405180910390a35050565b610da0610d9a610fe3565b83611055565b610dbc5760405162461bcd60e51b815260040161064c9061220e565b610dc884848484611221565b50505050565b6060610dd982610fc6565b610df55760405162461bcd60e51b815260040161064c90612147565b6000610dff611254565b90506000815111610e1f5760405180602001604052806000815250610e4a565b80610e2984611263565b604051602001610e3a929190611be1565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600d5460ff1681565b610e90610fe3565b6001600160a01b0316610ea1610ca3565b6001600160a01b031614610ec75760405162461bcd60e51b815260040161064c906120c9565b6001600160a01b038116610eed5760405162461bcd60e51b815260040161064c90611d1c565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600c5481565b610f57610fe3565b6001600160a01b0316610f68610ca3565b6001600160a01b031614610f8e5760405162461bcd60e51b815260040161064c906120c9565b8051610ab790600b90602084019061189c565b60006001600160e01b0319821663780e9d6360e01b148061058b575061058b8261137e565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061101c82610b83565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061106082610fc6565b61107c5760405162461bcd60e51b815260040161064c90611ec2565b600061108783610b83565b9050806001600160a01b0316846001600160a01b031614806110c25750836001600160a01b03166110b784610625565b6001600160a01b0316145b806110d257506110d28185610e51565b949350505050565b826001600160a01b03166110ed82610b83565b6001600160a01b0316146111135760405162461bcd60e51b815260040161064c906120fe565b6001600160a01b0382166111395760405162461bcd60e51b815260040161064c90611dce565b6111448383836113be565b61114f600082610fe7565b6001600160a01b03831660009081526003602052604081208054600192906111789084906122ff565b90915550506001600160a01b03821660009081526003602052604081208054600192906111a69084906122b4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ab78282604051806020016040528060008152506113c9565b61122c8484846110da565b611238848484846113fc565b610dc85760405162461bcd60e51b815260040161064c90611cca565b6060600e80546105a290612342565b60608161128857506040805180820190915260018152600360fc1b602082015261058e565b8160005b81156112b2578061129c8161237d565b91506112ab9050600a836122cc565b915061128c565b60008167ffffffffffffffff8111156112db57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611305576020820181803683370190505b5090505b84156110d25761131a6001836122ff565b9150611327600a86612398565b6113329060306122b4565b60f81b81838151811061135557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611377600a866122cc565b9450611309565b60006001600160e01b031982166380ac58cd60e01b14806113af57506001600160e01b03198216635b5e139f60e01b145b8061058b575061058b82611517565b610792838383611530565b6113d383836115b9565b6113e060008484846113fc565b6107925760405162461bcd60e51b815260040161064c90611cca565b6000611410846001600160a01b0316611698565b1561150c57836001600160a01b031663150b7a0261142c610fe3565b8786866040518563ffffffff1660e01b815260040161144e9493929190611c24565b602060405180830381600087803b15801561146857600080fd5b505af1925050508015611498575060408051601f3d908101601f1916820190925261149591810190611b3b565b60015b6114f2573d8080156114c6576040519150601f19603f3d011682016040523d82523d6000602084013e6114cb565b606091505b5080516114ea5760405162461bcd60e51b815260040161064c90611cca565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110d2565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b61153b838383610792565b6001600160a01b038316611557576115528161169e565b61157a565b816001600160a01b0316836001600160a01b03161461157a5761157a83826116e2565b6001600160a01b038216611596576115918161177f565b610792565b826001600160a01b0316826001600160a01b031614610792576107928282611858565b6001600160a01b0382166115df5760405162461bcd60e51b815260040161064c90612048565b6115e881610fc6565b156116055760405162461bcd60e51b815260040161064c90611d62565b611611600083836113be565b6001600160a01b038216600090815260036020526040812080546001929061163a9084906122b4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016116ef84610bc5565b6116f991906122ff565b60008381526007602052604090205490915080821461174c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611791906001906122ff565b600083815260096020526040812054600880549394509092849081106117c757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106117f657634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061183c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061186383610bc5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546118a890612342565b90600052602060002090601f0160209004810192826118ca5760008555611910565b82601f106118e357805160ff1916838001178555611910565b82800160010185558215611910579182015b828111156119105782518255916020019190600101906118f5565b5061191c929150611920565b5090565b5b8082111561191c5760008155600101611921565b600067ffffffffffffffff80841115611950576119506123d8565b604051601f8501601f191681016020018281118282101715611974576119746123d8565b60405284815291508183850186101561198c57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461058e57600080fd5b6000602082840312156119cd578081fd5b610e4a826119a5565b600080604083850312156119e8578081fd5b6119f1836119a5565b91506119ff602084016119a5565b90509250929050565b600080600060608486031215611a1c578081fd5b611a25846119a5565b9250611a33602085016119a5565b9150604084013590509250925092565b60008060008060808587031215611a58578081fd5b611a61856119a5565b9350611a6f602086016119a5565b925060408501359150606085013567ffffffffffffffff811115611a91578182fd5b8501601f81018713611aa1578182fd5b611ab087823560208401611935565b91505092959194509250565b60008060408385031215611ace578182fd5b611ad7836119a5565b915060208301358015158114611aeb578182fd5b809150509250929050565b60008060408385031215611b08578182fd5b611b11836119a5565b946020939093013593505050565b600060208284031215611b30578081fd5b8135610e4a816123ee565b600060208284031215611b4c578081fd5b8151610e4a816123ee565b600060208284031215611b68578081fd5b813567ffffffffffffffff811115611b7e578182fd5b8201601f81018413611b8e578182fd5b6110d284823560208401611935565b600060208284031215611bae578081fd5b5035919050565b60008151808452611bcd816020860160208601612316565b601f01601f19169290920160200192915050565b60008351611bf3818460208801612316565b835190830190611c07818360208801612316565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c5790830184611bb5565b9695505050505050565b901515815260200190565b600060208252610e4a6020830184611bb5565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526022908201527f53616c65206d7573742062652061637469766520746f206d696e7420546f6b656040820152616e7360f01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601b908201527f4578636565646564206d617820746f6b656e2070757263686173650000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b600082198211156122c7576122c76123ac565b500190565b6000826122db576122db6123c2565b500490565b60008160001904831182151516156122fa576122fa6123ac565b500290565b600082821015612311576123116123ac565b500390565b60005b83811015612331578181015183820152602001612319565b83811115610dc85750506000910152565b60028104600182168061235657607f821691505b6020821081141561237757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612391576123916123ac565b5060010190565b6000826123a7576123a76123c2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461240457600080fd5b5056fea2646970667358221220cbf4c6c732a231772b85e4a1afbb9781c8b21dbc670af91ee69b57fd1714734e64736f6c63430008000033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063eb8d244411610064578063eb8d244414610516578063f2fde38b1461052b578063f47c84c51461054b578063ffe630b514610560576101e3565b8063a22cb46514610496578063b88d4fde146104b6578063c87b56dd146104d6578063e985e9c5146104f6576101e3565b8063767f9805116100d1578063767f9805146104425780637ff9b596146104575780638da5cb5b1461046c57806395d89b4114610481576101e3565b80636352211e146103d85780636373a6b1146103f857806370a082311461040d578063715018a61461042d576101e3565b80632af86c7b1161017a5780633ccfd60b116101495780633ccfd60b1461036357806342842e0e146103785780634f6ccce71461039857806355f804b3146103b8576101e3565b80632af86c7b146102fb5780632f745c591461030e5780633428f5ed1461032e57806334918dfd1461034e576101e3565b8063095ea7b3116101b6578063095ea7b31461028257806309aa3dcf146102a457806318160ddd146102c657806323b872dd146102db576101e3565b806301ffc9a7146101e857806306fdde031461021e578063081812fc146102405780630928fc221461026d575b600080fd5b3480156101f457600080fd5b50610208610203366004611b1f565b610580565b6040516102159190611c61565b60405180910390f35b34801561022a57600080fd5b50610233610593565b6040516102159190611c6c565b34801561024c57600080fd5b5061026061025b366004611b9d565b610625565b6040516102159190611c10565b34801561027957600080fd5b50610233610671565b34801561028e57600080fd5b506102a261029d366004611af6565b6106ff565b005b3480156102b057600080fd5b506102b9610797565b60405161021591906122ab565b3480156102d257600080fd5b506102b961079c565b3480156102e757600080fd5b506102a26102f6366004611a08565b6107a2565b6102a2610309366004611b9d565b6107da565b34801561031a57600080fd5b506102b9610329366004611af6565b6108e4565b34801561033a57600080fd5b506102a2610349366004611af6565b610936565b34801561035a57600080fd5b506102a26109f6565b34801561036f57600080fd5b506102a2610a49565b34801561038457600080fd5b506102a2610393366004611a08565b610abb565b3480156103a457600080fd5b506102b96103b3366004611b9d565b610ad6565b3480156103c457600080fd5b506102a26103d3366004611b57565b610b31565b3480156103e457600080fd5b506102606103f3366004611b9d565b610b83565b34801561040457600080fd5b50610233610bb8565b34801561041957600080fd5b506102b96104283660046119bc565b610bc5565b34801561043957600080fd5b506102a2610c09565b34801561044e57600080fd5b506102b9610c92565b34801561046357600080fd5b506102b9610c98565b34801561047857600080fd5b50610260610ca3565b34801561048d57600080fd5b50610233610cb2565b3480156104a257600080fd5b506102a26104b1366004611abc565b610cc1565b3480156104c257600080fd5b506102a26104d1366004611a43565b610d8f565b3480156104e257600080fd5b506102336104f1366004611b9d565b610dce565b34801561050257600080fd5b506102086105113660046119d6565b610e51565b34801561052257600080fd5b50610208610e7f565b34801561053757600080fd5b506102a26105463660046119bc565b610e88565b34801561055757600080fd5b506102b9610f49565b34801561056c57600080fd5b506102a261057b366004611b57565b610f4f565b600061058b82610fa1565b90505b919050565b6060600080546105a290612342565b80601f01602080910402602001604051908101604052809291908181526020018280546105ce90612342565b801561061b5780601f106105f05761010080835404028352916020019161061b565b820191906000526020600020905b8154815290600101906020018083116105fe57829003601f168201915b5050505050905090565b600061063082610fc6565b6106555760405162461bcd60e51b815260040161064c9061207d565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600e805461067e90612342565b80601f01602080910402602001604051908101604052809291908181526020018280546106aa90612342565b80156106f75780601f106106cc576101008083540402835291602001916106f7565b820191906000526020600020905b8154815290600101906020018083116106da57829003601f168201915b505050505081565b600061070a82610b83565b9050806001600160a01b0316836001600160a01b0316141561073e5760405162461bcd60e51b815260040161064c90612196565b806001600160a01b0316610750610fe3565b6001600160a01b0316148061076c575061076c81610511610fe3565b6107885760405162461bcd60e51b815260040161064c90611f0e565b6107928383610fe7565b505050565b600581565b60085490565b6107b36107ad610fe3565b82611055565b6107cf5760405162461bcd60e51b815260040161064c9061220e565b6107928383836110da565b60006107e461079c565b600d5490915060ff166108095760405162461bcd60e51b815260040161064c90611e80565b600582111561082a5760405162461bcd60e51b815260040161064c906121d7565b600c548261083661079c565b61084091906122b4565b111561085e5760405162461bcd60e51b815260040161064c90611ffe565b603361086a83836122b4565b1061089f57346108818366354a6ba7a180006122e0565b111561089f5760405162461bcd60e51b815260040161064c90611e49565b60005b828110156107925760006108b461079c565b9050600c546108c161079c565b10156108d1576108d13382611207565b50806108dc8161237d565b9150506108a2565b60006108ef83610bc5565b821061090d5760405162461bcd60e51b815260040161064c90611c7f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61093e610fe3565b6001600160a01b031661094f610ca3565b6001600160a01b0316146109755760405162461bcd60e51b815260040161064c906120c9565b600061097f61079c565b90506000821180156109935750600f548211155b6109af5760405162461bcd60e51b815260040161064c90611d99565b60005b828110156109df576109cd846109c883856122b4565b611207565b806109d78161237d565b9150506109b2565b5081600f546109ee91906122ff565b600f55505050565b6109fe610fe3565b6001600160a01b0316610a0f610ca3565b6001600160a01b031614610a355760405162461bcd60e51b815260040161064c906120c9565b600d805460ff19811660ff90911615179055565b610a51610fe3565b6001600160a01b0316610a62610ca3565b6001600160a01b031614610a885760405162461bcd60e51b815260040161064c906120c9565b6040514790339082156108fc029083906000818181858888f19350505050158015610ab7573d6000803e3d6000fd5b5050565b61079283838360405180602001604052806000815250610d8f565b6000610ae061079c565b8210610afe5760405162461bcd60e51b815260040161064c9061225f565b60088281548110610b1f57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610b39610fe3565b6001600160a01b0316610b4a610ca3565b6001600160a01b031614610b705760405162461bcd60e51b815260040161064c906120c9565b8051610ab790600e90602084019061189c565b6000818152600260205260408120546001600160a01b03168061058b5760405162461bcd60e51b815260040161064c90611fb5565b600b805461067e90612342565b60006001600160a01b038216610bed5760405162461bcd60e51b815260040161064c90611f6b565b506001600160a01b031660009081526003602052604090205490565b610c11610fe3565b6001600160a01b0316610c22610ca3565b6001600160a01b031614610c485760405162461bcd60e51b815260040161064c906120c9565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600f5481565b66354a6ba7a1800081565b600a546001600160a01b031690565b6060600180546105a290612342565b610cc9610fe3565b6001600160a01b0316826001600160a01b03161415610cfa5760405162461bcd60e51b815260040161064c90611e12565b8060056000610d07610fe3565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610d4b610fe3565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d839190611c61565b60405180910390a35050565b610da0610d9a610fe3565b83611055565b610dbc5760405162461bcd60e51b815260040161064c9061220e565b610dc884848484611221565b50505050565b6060610dd982610fc6565b610df55760405162461bcd60e51b815260040161064c90612147565b6000610dff611254565b90506000815111610e1f5760405180602001604052806000815250610e4a565b80610e2984611263565b604051602001610e3a929190611be1565b6040516020818303038152906040525b9392505050565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b600d5460ff1681565b610e90610fe3565b6001600160a01b0316610ea1610ca3565b6001600160a01b031614610ec75760405162461bcd60e51b815260040161064c906120c9565b6001600160a01b038116610eed5760405162461bcd60e51b815260040161064c90611d1c565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600c5481565b610f57610fe3565b6001600160a01b0316610f68610ca3565b6001600160a01b031614610f8e5760405162461bcd60e51b815260040161064c906120c9565b8051610ab790600b90602084019061189c565b60006001600160e01b0319821663780e9d6360e01b148061058b575061058b8261137e565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061101c82610b83565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061106082610fc6565b61107c5760405162461bcd60e51b815260040161064c90611ec2565b600061108783610b83565b9050806001600160a01b0316846001600160a01b031614806110c25750836001600160a01b03166110b784610625565b6001600160a01b0316145b806110d257506110d28185610e51565b949350505050565b826001600160a01b03166110ed82610b83565b6001600160a01b0316146111135760405162461bcd60e51b815260040161064c906120fe565b6001600160a01b0382166111395760405162461bcd60e51b815260040161064c90611dce565b6111448383836113be565b61114f600082610fe7565b6001600160a01b03831660009081526003602052604081208054600192906111789084906122ff565b90915550506001600160a01b03821660009081526003602052604081208054600192906111a69084906122b4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610ab78282604051806020016040528060008152506113c9565b61122c8484846110da565b611238848484846113fc565b610dc85760405162461bcd60e51b815260040161064c90611cca565b6060600e80546105a290612342565b60608161128857506040805180820190915260018152600360fc1b602082015261058e565b8160005b81156112b2578061129c8161237d565b91506112ab9050600a836122cc565b915061128c565b60008167ffffffffffffffff8111156112db57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611305576020820181803683370190505b5090505b84156110d25761131a6001836122ff565b9150611327600a86612398565b6113329060306122b4565b60f81b81838151811061135557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611377600a866122cc565b9450611309565b60006001600160e01b031982166380ac58cd60e01b14806113af57506001600160e01b03198216635b5e139f60e01b145b8061058b575061058b82611517565b610792838383611530565b6113d383836115b9565b6113e060008484846113fc565b6107925760405162461bcd60e51b815260040161064c90611cca565b6000611410846001600160a01b0316611698565b1561150c57836001600160a01b031663150b7a0261142c610fe3565b8786866040518563ffffffff1660e01b815260040161144e9493929190611c24565b602060405180830381600087803b15801561146857600080fd5b505af1925050508015611498575060408051601f3d908101601f1916820190925261149591810190611b3b565b60015b6114f2573d8080156114c6576040519150601f19603f3d011682016040523d82523d6000602084013e6114cb565b606091505b5080516114ea5760405162461bcd60e51b815260040161064c90611cca565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110d2565b506001949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b61153b838383610792565b6001600160a01b038316611557576115528161169e565b61157a565b816001600160a01b0316836001600160a01b03161461157a5761157a83826116e2565b6001600160a01b038216611596576115918161177f565b610792565b826001600160a01b0316826001600160a01b031614610792576107928282611858565b6001600160a01b0382166115df5760405162461bcd60e51b815260040161064c90612048565b6115e881610fc6565b156116055760405162461bcd60e51b815260040161064c90611d62565b611611600083836113be565b6001600160a01b038216600090815260036020526040812080546001929061163a9084906122b4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b600060016116ef84610bc5565b6116f991906122ff565b60008381526007602052604090205490915080821461174c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611791906001906122ff565b600083815260096020526040812054600880549394509092849081106117c757634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600883815481106117f657634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061183c57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061186383610bc5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546118a890612342565b90600052602060002090601f0160209004810192826118ca5760008555611910565b82601f106118e357805160ff1916838001178555611910565b82800160010185558215611910579182015b828111156119105782518255916020019190600101906118f5565b5061191c929150611920565b5090565b5b8082111561191c5760008155600101611921565b600067ffffffffffffffff80841115611950576119506123d8565b604051601f8501601f191681016020018281118282101715611974576119746123d8565b60405284815291508183850186101561198c57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461058e57600080fd5b6000602082840312156119cd578081fd5b610e4a826119a5565b600080604083850312156119e8578081fd5b6119f1836119a5565b91506119ff602084016119a5565b90509250929050565b600080600060608486031215611a1c578081fd5b611a25846119a5565b9250611a33602085016119a5565b9150604084013590509250925092565b60008060008060808587031215611a58578081fd5b611a61856119a5565b9350611a6f602086016119a5565b925060408501359150606085013567ffffffffffffffff811115611a91578182fd5b8501601f81018713611aa1578182fd5b611ab087823560208401611935565b91505092959194509250565b60008060408385031215611ace578182fd5b611ad7836119a5565b915060208301358015158114611aeb578182fd5b809150509250929050565b60008060408385031215611b08578182fd5b611b11836119a5565b946020939093013593505050565b600060208284031215611b30578081fd5b8135610e4a816123ee565b600060208284031215611b4c578081fd5b8151610e4a816123ee565b600060208284031215611b68578081fd5b813567ffffffffffffffff811115611b7e578182fd5b8201601f81018413611b8e578182fd5b6110d284823560208401611935565b600060208284031215611bae578081fd5b5035919050565b60008151808452611bcd816020860160208601612316565b601f01601f19169290920160200192915050565b60008351611bf3818460208801612316565b835190830190611c07818360208801612316565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c5790830184611bb5565b9695505050505050565b901515815260200190565b600060208252610e4a6020830184611bb5565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252818101527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601f908201527f45746865722076616c75652073656e74206973206e6f7420636f727265637400604082015260600190565b60208082526022908201527f53616c65206d7573742062652061637469766520746f206d696e7420546f6b656040820152616e7360f01b606082015260800190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b6020808252601b908201527f4578636565646564206d617820746f6b656e2070757263686173650000000000604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b90815260200190565b600082198211156122c7576122c76123ac565b500190565b6000826122db576122db6123c2565b500490565b60008160001904831182151516156122fa576122fa6123ac565b500290565b600082821015612311576123116123ac565b500390565b60005b83811015612331578181015183820152602001612319565b83811115610dc85750506000910152565b60028104600182168061235657607f821691505b6020821081141561237757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612391576123916123ac565b5060010190565b6000826123a7576123a76123c2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461240457600080fd5b5056fea2646970667358221220cbf4c6c732a231772b85e4a1afbb9781c8b21dbc670af91ee69b57fd1714734e64736f6c63430008000033

Deployed Bytecode Sourcemap

42944:3027:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43741:179;;;;;;;;;;-1:-1:-1;43741:179:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22503:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23970:221::-;;;;;;;;;;-1:-1:-1;23970:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43247:30::-;;;;;;;;;;;;;:::i;23500:404::-;;;;;;;;;;-1:-1:-1;23500:404:0;;;;;:::i;:::-;;:::i;:::-;;43119:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;37273:113::-;;;;;;;;;;;;;:::i;24860:305::-;;;;;;;;;;-1:-1:-1;24860:305:0;;;;;:::i;:::-;;:::i;44955:863::-;;;;;;:::i;:::-;;:::i;36941:256::-;;;;;;;;;;-1:-1:-1;36941:256:0;;;;;:::i;:::-;;:::i;44440:402::-;;;;;;;;;;-1:-1:-1;44440:402:0;;;;;:::i;:::-;;:::i;44854:89::-;;;;;;;;;;;;;:::i;45826:140::-;;;;;;;;;;;;;:::i;25236:151::-;;;;;;;;;;-1:-1:-1;25236:151:0;;;;;:::i;:::-;;:::i;37463:233::-;;;;;;;;;;-1:-1:-1;37463:233:0;;;;;:::i;:::-;;:::i;43999:111::-;;;;;;;;;;-1:-1:-1;43999:111:0;;;;;:::i;:::-;;:::i;22197:239::-;;;;;;;;;;-1:-1:-1;22197:239:0;;;;;:::i;:::-;;:::i;43014:24::-;;;;;;;;;;;;;:::i;21927:208::-;;;;;;;;;;-1:-1:-1;21927:208:0;;;;;:::i;:::-;;:::i;35135:148::-;;;;;;;;;;;;;:::i;43284:31::-;;;;;;;;;;;;;:::i;43045:54::-;;;;;;;;;;;;;:::i;34484:87::-;;;;;;;;;;;;;:::i;22672:104::-;;;;;;;;;;;;;:::i;24263:295::-;;;;;;;;;;-1:-1:-1;24263:295:0;;;;;:::i;:::-;;:::i;25458:285::-;;;;;;;;;;-1:-1:-1;25458:285:0;;;;;:::i;:::-;;:::i;22847:360::-;;;;;;;;;;-1:-1:-1;22847:360:0;;;;;:::i;:::-;;:::i;24629:164::-;;;;;;;;;;-1:-1:-1;24629:164:0;;;;;:::i;:::-;;:::i;43206:32::-;;;;;;;;;;;;;:::i;35438:244::-;;;;;;;;;;-1:-1:-1;35438:244:0;;;;;:::i;:::-;;:::i;43167:32::-;;;;;;;;;;;;;:::i;44324:108::-;;;;;;;;;;-1:-1:-1;44324:108:0;;;;;:::i;:::-;;:::i;43741:179::-;43852:4;43876:36;43900:11;43876:23;:36::i;:::-;43869:43;;43741:179;;;;:::o;22503:100::-;22557:13;22590:5;22583:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22503:100;:::o;23970:221::-;24046:7;24074:16;24082:7;24074;:16::i;:::-;24066:73;;;;-1:-1:-1;;;24066:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;24159:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24159:24:0;;23970:221::o;43247:30::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23500:404::-;23581:13;23597:23;23612:7;23597:14;:23::i;:::-;23581:39;;23645:5;-1:-1:-1;;;;;23639:11:0;:2;-1:-1:-1;;;;;23639:11:0;;;23631:57;;;;-1:-1:-1;;;23631:57:0;;;;;;;:::i;:::-;23725:5;-1:-1:-1;;;;;23709:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23709:21:0;;:69;;;;23734:44;23758:5;23765:12;:10;:12::i;23734:44::-;23701:161;;;;-1:-1:-1;;;23701:161:0;;;;;;;:::i;:::-;23875:21;23884:2;23888:7;23875:8;:21::i;:::-;23500:404;;;:::o;43119:41::-;43159:1;43119:41;:::o;37273:113::-;37361:10;:17;37273:113;:::o;24860:305::-;25021:41;25040:12;:10;:12::i;:::-;25054:7;25021:18;:41::i;:::-;25013:103;;;;-1:-1:-1;;;25013:103:0;;;;;;;:::i;:::-;25129:28;25139:4;25145:2;25149:7;25129:9;:28::i;44955:863::-;45022:16;45041:13;:11;:13::i;:::-;45073:12;;45022:32;;-1:-1:-1;45073:12:0;;45065:59;;;;-1:-1:-1;;;45065:59:0;;;;;;;:::i;:::-;43159:1;45143:14;:34;;45135:74;;;;-1:-1:-1;;;45135:74:0;;;;;;;:::i;:::-;45307:10;;45289:14;45273:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:44;;45265:99;;;;-1:-1:-1;;;45265:99:0;;;;;;;:::i;:::-;45456:2;45424:28;45438:14;45424:11;:28;:::i;:::-;:34;45420:150;;45513:9;45482:27;45495:14;43082:17;45482:27;:::i;:::-;:40;;45474:84;;;;-1:-1:-1;;;45474:84:0;;;;;;;:::i;:::-;45604:6;45600:211;45620:14;45616:1;:18;45600:211;;;45656:14;45673:13;:11;:13::i;:::-;45656:30;;45721:10;;45705:13;:11;:13::i;:::-;:26;45701:99;;;45752:32;45762:10;45774:9;45752;:32::i;:::-;-1:-1:-1;45636:3:0;;;;:::i;:::-;;;;45600:211;;36941:256;37038:7;37074:23;37091:5;37074:16;:23::i;:::-;37066:5;:31;37058:87;;;;-1:-1:-1;;;37058:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;37163:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36941:256::o;44440:402::-;34715:12;:10;:12::i;:::-;-1:-1:-1;;;;;34704:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34704:23:0;;34696:68;;;;-1:-1:-1;;;34696:68:0;;;;;;;:::i;:::-;44536:11:::1;44550:13;:11;:13::i;:::-;44536:27;;44599:1;44582:14;:18;:53;;;;;44622:13;;44604:14;:31;;44582:53;44574:98;;;;-1:-1:-1::0;;;44574:98:0::1;;;;;;;:::i;:::-;44688:6;44683:95;44704:14;44700:1;:18;44683:95;;;44740:26;44750:3:::0;44755:10:::1;44764:1:::0;44755:6;:10:::1;:::i;:::-;44740:9;:26::i;:::-;44720:3:::0;::::1;::::0;::::1;:::i;:::-;;;;44683:95;;;;44820:14;44804:13;;:30;;;;:::i;:::-;44788:13;:46:::0;-1:-1:-1;;;44440:402:0:o;44854:89::-;34715:12;:10;:12::i;:::-;-1:-1:-1;;;;;34704:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34704:23:0;;34696:68;;;;-1:-1:-1;;;34696:68:0;;;;;;;:::i;:::-;44923:12:::1;::::0;;-1:-1:-1;;44907:28:0;::::1;44923:12;::::0;;::::1;44922:13;44907:28;::::0;;44854:89::o;45826:140::-;34715:12;:10;:12::i;:::-;-1:-1:-1;;;;;34704:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34704:23:0;;34696:68;;;;-1:-1:-1;;;34696:68:0;;;;;;;:::i;:::-;45921:37:::1;::::0;45889:21:::1;::::0;45929:10:::1;::::0;45921:37;::::1;;;::::0;45889:21;;45874:12:::1;45921:37:::0;45874:12;45921:37;45889:21;45929:10;45921:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;34775:1;45826:140::o:0;25236:151::-;25340:39;25357:4;25363:2;25367:7;25340:39;;;;;;;;;;;;:16;:39::i;37463:233::-;37538:7;37574:30;:28;:30::i;:::-;37566:5;:38;37558:95;;;;-1:-1:-1;;;37558:95:0;;;;;;;:::i;:::-;37671:10;37682:5;37671:17;;;;;;-1:-1:-1;;;37671:17:0;;;;;;;;;;;;;;;;;37664:24;;37463:233;;;:::o;43999:111::-;34715:12;:10;:12::i;:::-;-1:-1:-1;;;;;34704:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34704:23:0;;34696:68;;;;-1:-1:-1;;;34696:68:0;;;;;;;:::i;:::-;44075:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;22197:239::-:0;22269:7;22305:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22305:16:0;22340:19;22332:73;;;;-1:-1:-1;;;22332:73:0;;;;;;;:::i;43014:24::-;;;;;;;:::i;21927:208::-;21999:7;-1:-1:-1;;;;;22027:19:0;;22019:74;;;;-1:-1:-1;;;22019:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22111:16:0;;;;;:9;:16;;;;;;;21927:208::o;35135:148::-;34715:12;:10;:12::i;:::-;-1:-1:-1;;;;;34704:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34704:23:0;;34696:68;;;;-1:-1:-1;;;34696:68:0;;;;;;;:::i;:::-;35226:6:::1;::::0;35205:40:::1;::::0;35242:1:::1;::::0;-1:-1:-1;;;;;35226:6:0::1;::::0;35205:40:::1;::::0;35242:1;;35205:40:::1;35256:6;:19:::0;;-1:-1:-1;;;;;;35256:19:0::1;::::0;;35135:148::o;43284:31::-;;;;:::o;43045:54::-;43082:17;43045:54;:::o;34484:87::-;34557:6;;-1:-1:-1;;;;;34557:6:0;34484:87;:::o;22672:104::-;22728:13;22761:7;22754:14;;;;;:::i;24263:295::-;24378:12;:10;:12::i;:::-;-1:-1:-1;;;;;24366:24:0;:8;-1:-1:-1;;;;;24366:24:0;;;24358:62;;;;-1:-1:-1;;;24358:62:0;;;;;;;:::i;:::-;24478:8;24433:18;:32;24452:12;:10;:12::i;:::-;-1:-1:-1;;;;;24433:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24433:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24433:53:0;;;;;;;;;;;24517:12;:10;:12::i;:::-;-1:-1:-1;;;;;24502:48:0;;24541:8;24502:48;;;;;;:::i;:::-;;;;;;;;24263:295;;:::o;25458:285::-;25590:41;25609:12;:10;:12::i;:::-;25623:7;25590:18;:41::i;:::-;25582:103;;;;-1:-1:-1;;;25582:103:0;;;;;;;:::i;:::-;25696:39;25710:4;25716:2;25720:7;25729:5;25696:13;:39::i;:::-;25458:285;;;;:::o;22847:360::-;22920:13;22954:16;22962:7;22954;:16::i;:::-;22946:76;;;;-1:-1:-1;;;22946:76:0;;;;;;;:::i;:::-;23035:21;23059:10;:8;:10::i;:::-;23035:34;;23111:1;23093:7;23087:21;:25;:112;;;;;;;;;;;;;;;;;23152:7;23161:18;:7;:16;:18::i;:::-;23135:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23087:112;23080:119;22847:360;-1:-1:-1;;;22847:360:0:o;24629:164::-;-1:-1:-1;;;;;24750:25:0;;;24726:4;24750:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24629:164::o;43206:32::-;;;;;;:::o;35438:244::-;34715:12;:10;:12::i;:::-;-1:-1:-1;;;;;34704:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34704:23:0;;34696:68;;;;-1:-1:-1;;;34696:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35527:22:0;::::1;35519:73;;;;-1:-1:-1::0;;;35519:73:0::1;;;;;;;:::i;:::-;35629:6;::::0;35608:38:::1;::::0;-1:-1:-1;;;;;35608:38:0;;::::1;::::0;35629:6:::1;::::0;35608:38:::1;::::0;35629:6:::1;::::0;35608:38:::1;35657:6;:17:::0;;-1:-1:-1;;;;;;35657:17:0::1;-1:-1:-1::0;;;;;35657:17:0;;;::::1;::::0;;;::::1;::::0;;35438:244::o;43167:32::-;;;;:::o;44324:108::-;34715:12;:10;:12::i;:::-;-1:-1:-1;;;;;34704:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;34704:23:0;;34696:68;;;;-1:-1:-1;;;34696:68:0;;;;;;;:::i;:::-;44401:23;;::::1;::::0;:10:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;36620:237::-:0;36722:4;-1:-1:-1;;;;;;36746:50:0;;-1:-1:-1;;;36746:50:0;;:103;;;36813:36;36837:11;36813:23;:36::i;27210:127::-;27275:4;27299:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27299:16:0;:30;;;27210:127::o;16854:98::-;16934:10;16854:98;:::o;31094:174::-;31169:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31169:29:0;-1:-1:-1;;;;;31169:29:0;;;;;;;;:24;;31223:23;31169:24;31223:14;:23::i;:::-;-1:-1:-1;;;;;31214:46:0;;;;;;;;;;;31094:174;;:::o;27504:355::-;27597:4;27622:16;27630:7;27622;:16::i;:::-;27614:73;;;;-1:-1:-1;;;27614:73:0;;;;;;;:::i;:::-;27698:13;27714:23;27729:7;27714:14;:23::i;:::-;27698:39;;27767:5;-1:-1:-1;;;;;27756:16:0;:7;-1:-1:-1;;;;;27756:16:0;;:51;;;;27800:7;-1:-1:-1;;;;;27776:31:0;:20;27788:7;27776:11;:20::i;:::-;-1:-1:-1;;;;;27776:31:0;;27756:51;:94;;;;27811:39;27835:5;27842:7;27811:23;:39::i;:::-;27748:103;27504:355;-1:-1:-1;;;;27504:355:0:o;30432:544::-;30557:4;-1:-1:-1;;;;;30530:31:0;:23;30545:7;30530:14;:23::i;:::-;-1:-1:-1;;;;;30530:31:0;;30522:85;;;;-1:-1:-1;;;30522:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30626:16:0;;30618:65;;;;-1:-1:-1;;;30618:65:0;;;;;;;:::i;:::-;30696:39;30717:4;30723:2;30727:7;30696:20;:39::i;:::-;30800:29;30817:1;30821:7;30800:8;:29::i;:::-;-1:-1:-1;;;;;30842:15:0;;;;;;:9;:15;;;;;:20;;30861:1;;30842:15;:20;;30861:1;;30842:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30873:13:0;;;;;;:9;:13;;;;;:18;;30890:1;;30873:13;:18;;30890:1;;30873:18;:::i;:::-;;;;-1:-1:-1;;30902:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30902:21:0;-1:-1:-1;;;;;30902:21:0;;;;;;;;;30941:27;;30902:16;;30941:27;;;;;;;30432:544;;;:::o;28201:110::-;28277:26;28287:2;28291:7;28277:26;;;;;;;;;;;;:9;:26::i;26625:272::-;26739:28;26749:4;26755:2;26759:7;26739:9;:28::i;:::-;26786:48;26809:4;26815:2;26819:7;26828:5;26786:22;:48::i;:::-;26778:111;;;;-1:-1:-1;;;26778:111:0;;;;;;;:::i;44189:127::-;44249:13;44282:16;44275:23;;;;;:::i;17510:723::-;17566:13;17787:10;17783:53;;-1:-1:-1;17814:10:0;;;;;;;;;;;;-1:-1:-1;;;17814:10:0;;;;;;17783:53;17861:5;17846:12;17902:78;17909:9;;17902:78;;17935:8;;;;:::i;:::-;;-1:-1:-1;17958:10:0;;-1:-1:-1;17966:2:0;17958:10;;:::i;:::-;;;17902:78;;;17990:19;18022:6;18012:17;;;;;;-1:-1:-1;;;18012:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18012:17:0;;17990:39;;18040:154;18047:10;;18040:154;;18074:11;18084:1;18074:11;;:::i;:::-;;-1:-1:-1;18143:10:0;18151:2;18143:5;:10;:::i;:::-;18130:24;;:2;:24;:::i;:::-;18117:39;;18100:6;18107;18100:14;;;;;;-1:-1:-1;;;18100:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;18100:56:0;;;;;;;;-1:-1:-1;18171:11:0;18180:2;18171:11;;:::i;:::-;;;18040:154;;21571:292;21673:4;-1:-1:-1;;;;;;21697:40:0;;-1:-1:-1;;;21697:40:0;;:105;;-1:-1:-1;;;;;;;21754:48:0;;-1:-1:-1;;;21754:48:0;21697:105;:158;;;;21819:36;21843:11;21819:23;:36::i;43470:181::-;43598:45;43625:4;43631:2;43635:7;43598:26;:45::i;28538:250::-;28634:18;28640:2;28644:7;28634:5;:18::i;:::-;28671:54;28702:1;28706:2;28710:7;28719:5;28671:22;:54::i;:::-;28663:117;;;;-1:-1:-1;;;28663:117:0;;;;;;;:::i;31833:843::-;31954:4;31980:15;:2;-1:-1:-1;;;;;31980:13:0;;:15::i;:::-;31976:693;;;32032:2;-1:-1:-1;;;;;32016:36:0;;32053:12;:10;:12::i;:::-;32067:4;32073:7;32082:5;32016:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32016:72:0;;;;;;;;-1:-1:-1;;32016:72:0;;;;;;;;;;;;:::i;:::-;;;32012:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32262:13:0;;32258:341;;32305:60;;-1:-1:-1;;;32305:60:0;;;;;;;:::i;32258:341::-;32549:6;32543:13;32534:6;32530:2;32526:15;32519:38;32012:602;-1:-1:-1;;;;;;32139:55:0;-1:-1:-1;;;32139:55:0;;-1:-1:-1;32132:62:0;;31976:693;-1:-1:-1;32653:4:0;31833:843;;;;;;:::o;20066:157::-;-1:-1:-1;;;;;;20175:40:0;;-1:-1:-1;;;20175:40:0;20066:157;;;:::o;38309:555::-;38419:45;38446:4;38452:2;38456:7;38419:26;:45::i;:::-;-1:-1:-1;;;;;38481:18:0;;38477:187;;38516:40;38548:7;38516:31;:40::i;:::-;38477:187;;;38586:2;-1:-1:-1;;;;;38578:10:0;:4;-1:-1:-1;;;;;38578:10:0;;38574:90;;38605:47;38638:4;38644:7;38605:32;:47::i;:::-;-1:-1:-1;;;;;38678:16:0;;38674:183;;38711:45;38748:7;38711:36;:45::i;:::-;38674:183;;;38784:4;-1:-1:-1;;;;;38778:10:0;:2;-1:-1:-1;;;;;38778:10:0;;38774:83;;38805:40;38833:2;38837:7;38805:27;:40::i;29124:382::-;-1:-1:-1;;;;;29204:16:0;;29196:61;;;;-1:-1:-1;;;29196:61:0;;;;;;;:::i;:::-;29277:16;29285:7;29277;:16::i;:::-;29276:17;29268:58;;;;-1:-1:-1;;;29268:58:0;;;;;;;:::i;:::-;29339:45;29368:1;29372:2;29376:7;29339:20;:45::i;:::-;-1:-1:-1;;;;;29397:13:0;;;;;;:9;:13;;;;;:18;;29414:1;;29397:13;:18;;29414:1;;29397:18;:::i;:::-;;;;-1:-1:-1;;29426:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29426:21:0;-1:-1:-1;;;;;29426:21:0;;;;;;;;29465:33;;29426:16;;;29465:33;;29426:16;;29465:33;29124:382;;:::o;8970:422::-;9337:20;9376:8;;;8970:422::o;39587:164::-;39691:10;:17;;39664:24;;;;:15;:24;;;;;:44;;;39719:24;;;;;;;;;;;;39587:164::o;40378:988::-;40644:22;40694:1;40669:22;40686:4;40669:16;:22::i;:::-;:26;;;;:::i;:::-;40706:18;40727:26;;;:17;:26;;;;;;40644:51;;-1:-1:-1;40860:28:0;;;40856:328;;-1:-1:-1;;;;;40927:18:0;;40905:19;40927:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40978:30;;;;;;:44;;;41095:30;;:17;:30;;;;;:43;;;40856:328;-1:-1:-1;41280:26:0;;;;:17;:26;;;;;;;;41273:33;;;-1:-1:-1;;;;;41324:18:0;;;;;:12;:18;;;;;:34;;;;;;;41317:41;40378:988::o;41661:1079::-;41939:10;:17;41914:22;;41939:21;;41959:1;;41939:21;:::i;:::-;41971:18;41992:24;;;:15;:24;;;;;;42365:10;:26;;41914:46;;-1:-1:-1;41992:24:0;;41914:46;;42365:26;;;;-1:-1:-1;;;42365:26:0;;;;;;;;;;;;;;;;;42343:48;;42429:11;42404:10;42415;42404:22;;;;;;-1:-1:-1;;;42404:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;42509:28;;;:15;:28;;;;;;;:41;;;42681:24;;;;;42674:31;42716:10;:16;;;;;-1:-1:-1;;;42716:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;41661:1079;;;;:::o;39165:221::-;39250:14;39267:20;39284:2;39267:16;:20::i;:::-;-1:-1:-1;;;;;39298:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39343:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39165:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:257::-;;3098:2;3086:9;3077:7;3073:23;3069:32;3066:2;;;3119:6;3111;3104:22;3066:2;3163:9;3150:23;3182:32;3208:5;3182:32;:::i;3249:261::-;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:32;3474:5;3448:32;:::i;3515:482::-;;3637:2;3625:9;3616:7;3612:23;3608:32;3605:2;;;3658:6;3650;3643:22;3605:2;3703:9;3690:23;3736:18;3728:6;3725:30;3722:2;;;3773:6;3765;3758:22;3722:2;3801:22;;3854:4;3846:13;;3842:27;-1:-1:-1;3832:2:1;;3888:6;3880;3873:22;3832:2;3916:75;3983:7;3978:2;3965:16;3960:2;3956;3952:11;3916:75;:::i;4002:190::-;;4114:2;4102:9;4093:7;4089:23;4085:32;4082:2;;;4135:6;4127;4120:22;4082:2;-1:-1:-1;4163:23:1;;4072:120;-1:-1:-1;4072:120:1:o;4197:259::-;;4278:5;4272:12;4305:6;4300:3;4293:19;4321:63;4377:6;4370:4;4365:3;4361:14;4354:4;4347:5;4343:16;4321:63;:::i;:::-;4438:2;4417:15;-1:-1:-1;;4413:29:1;4404:39;;;;4445:4;4400:50;;4248:208;-1:-1:-1;;4248:208:1:o;4461:470::-;;4678:6;4672:13;4694:53;4740:6;4735:3;4728:4;4720:6;4716:17;4694:53;:::i;:::-;4810:13;;4769:16;;;;4832:57;4810:13;4769:16;4866:4;4854:17;;4832:57;:::i;:::-;4905:20;;4648:283;-1:-1:-1;;;;4648:283:1:o;4936:203::-;-1:-1:-1;;;;;5100:32:1;;;;5082:51;;5070:2;5055:18;;5037:102::o;5144:490::-;-1:-1:-1;;;;;5413:15:1;;;5395:34;;5465:15;;5460:2;5445:18;;5438:43;5512:2;5497:18;;5490:34;;;5560:3;5555:2;5540:18;;5533:31;;;5144:490;;5581:47;;5608:19;;5600:6;5581:47;:::i;:::-;5573:55;5347:287;-1:-1:-1;;;;;;5347:287:1:o;5639:187::-;5804:14;;5797:22;5779:41;;5767:2;5752:18;;5734:92::o;5831:221::-;;5980:2;5969:9;5962:21;6000:46;6042:2;6031:9;6027:18;6019:6;6000:46;:::i;6057:407::-;6259:2;6241:21;;;6298:2;6278:18;;;6271:30;6337:34;6332:2;6317:18;;6310:62;-1:-1:-1;;;6403:2:1;6388:18;;6381:41;6454:3;6439:19;;6231:233::o;6469:414::-;6671:2;6653:21;;;6710:2;6690:18;;;6683:30;6749:34;6744:2;6729:18;;6722:62;-1:-1:-1;;;6815:2:1;6800:18;;6793:48;6873:3;6858:19;;6643:240::o;6888:402::-;7090:2;7072:21;;;7129:2;7109:18;;;7102:30;7168:34;7163:2;7148:18;;7141:62;-1:-1:-1;;;7234:2:1;7219:18;;7212:36;7280:3;7265:19;;7062:228::o;7295:352::-;7497:2;7479:21;;;7536:2;7516:18;;;7509:30;7575;7570:2;7555:18;;7548:58;7638:2;7623:18;;7469:178::o;7652:356::-;7854:2;7836:21;;;7873:18;;;7866:30;7932:34;7927:2;7912:18;;7905:62;7999:2;7984:18;;7826:182::o;8013:400::-;8215:2;8197:21;;;8254:2;8234:18;;;8227:30;8293:34;8288:2;8273:18;;8266:62;-1:-1:-1;;;8359:2:1;8344:18;;8337:34;8403:3;8388:19;;8187:226::o;8418:349::-;8620:2;8602:21;;;8659:2;8639:18;;;8632:30;8698:27;8693:2;8678:18;;8671:55;8758:2;8743:18;;8592:175::o;8772:355::-;8974:2;8956:21;;;9013:2;8993:18;;;8986:30;9052:33;9047:2;9032:18;;9025:61;9118:2;9103:18;;8946:181::o;9132:398::-;9334:2;9316:21;;;9373:2;9353:18;;;9346:30;9412:34;9407:2;9392:18;;9385:62;-1:-1:-1;;;9478:2:1;9463:18;;9456:32;9520:3;9505:19;;9306:224::o;9535:408::-;9737:2;9719:21;;;9776:2;9756:18;;;9749:30;9815:34;9810:2;9795:18;;9788:62;-1:-1:-1;;;9881:2:1;9866:18;;9859:42;9933:3;9918:19;;9709:234::o;9948:420::-;10150:2;10132:21;;;10189:2;10169:18;;;10162:30;10228:34;10223:2;10208:18;;10201:62;10299:26;10294:2;10279:18;;10272:54;10358:3;10343:19;;10122:246::o;10373:406::-;10575:2;10557:21;;;10614:2;10594:18;;;10587:30;10653:34;10648:2;10633:18;;10626:62;-1:-1:-1;;;10719:2:1;10704:18;;10697:40;10769:3;10754:19;;10547:232::o;10784:405::-;10986:2;10968:21;;;11025:2;11005:18;;;10998:30;11064:34;11059:2;11044:18;;11037:62;-1:-1:-1;;;11130:2:1;11115:18;;11108:39;11179:3;11164:19;;10958:231::o;11194:406::-;11396:2;11378:21;;;11435:2;11415:18;;;11408:30;11474:34;11469:2;11454:18;;11447:62;-1:-1:-1;;;11540:2:1;11525:18;;11518:40;11590:3;11575:19;;11368:232::o;11605:356::-;11807:2;11789:21;;;11826:18;;;11819:30;11885:34;11880:2;11865:18;;11858:62;11952:2;11937:18;;11779:182::o;11966:408::-;12168:2;12150:21;;;12207:2;12187:18;;;12180:30;12246:34;12241:2;12226:18;;12219:62;-1:-1:-1;;;12312:2:1;12297:18;;12290:42;12364:3;12349:19;;12140:234::o;12379:356::-;12581:2;12563:21;;;12600:18;;;12593:30;12659:34;12654:2;12639:18;;12632:62;12726:2;12711:18;;12553:182::o;12740:405::-;12942:2;12924:21;;;12981:2;12961:18;;;12954:30;13020:34;13015:2;13000:18;;12993:62;-1:-1:-1;;;13086:2:1;13071:18;;13064:39;13135:3;13120:19;;12914:231::o;13150:411::-;13352:2;13334:21;;;13391:2;13371:18;;;13364:30;13430:34;13425:2;13410:18;;13403:62;-1:-1:-1;;;13496:2:1;13481:18;;13474:45;13551:3;13536:19;;13324:237::o;13566:397::-;13768:2;13750:21;;;13807:2;13787:18;;;13780:30;13846:34;13841:2;13826:18;;13819:62;-1:-1:-1;;;13912:2:1;13897:18;;13890:31;13953:3;13938:19;;13740:223::o;13968:351::-;14170:2;14152:21;;;14209:2;14189:18;;;14182:30;14248:29;14243:2;14228:18;;14221:57;14310:2;14295:18;;14142:177::o;14324:413::-;14526:2;14508:21;;;14565:2;14545:18;;;14538:30;14604:34;14599:2;14584:18;;14577:62;-1:-1:-1;;;14670:2:1;14655:18;;14648:47;14727:3;14712:19;;14498:239::o;14742:408::-;14944:2;14926:21;;;14983:2;14963:18;;;14956:30;15022:34;15017:2;15002:18;;14995:62;-1:-1:-1;;;15088:2:1;15073:18;;15066:42;15140:3;15125:19;;14916:234::o;15155:177::-;15301:25;;;15289:2;15274:18;;15256:76::o;15337:128::-;;15408:1;15404:6;15401:1;15398:13;15395:2;;;15414:18;;:::i;:::-;-1:-1:-1;15450:9:1;;15385:80::o;15470:120::-;;15536:1;15526:2;;15541:18;;:::i;:::-;-1:-1:-1;15575:9:1;;15516:74::o;15595:168::-;;15701:1;15697;15693:6;15689:14;15686:1;15683:21;15678:1;15671:9;15664:17;15660:45;15657:2;;;15708:18;;:::i;:::-;-1:-1:-1;15748:9:1;;15647:116::o;15768:125::-;;15836:1;15833;15830:8;15827:2;;;15841:18;;:::i;:::-;-1:-1:-1;15878:9:1;;15817:76::o;15898:258::-;15970:1;15980:113;15994:6;15991:1;15988:13;15980:113;;;16070:11;;;16064:18;16051:11;;;16044:39;16016:2;16009:10;15980:113;;;16111:6;16108:1;16105:13;16102:2;;;-1:-1:-1;;16146:1:1;16128:16;;16121:27;15951:205::o;16161:380::-;16246:1;16236:12;;16293:1;16283:12;;;16304:2;;16358:4;16350:6;16346:17;16336:27;;16304:2;16411;16403:6;16400:14;16380:18;16377:38;16374:2;;;16457:10;16452:3;16448:20;16445:1;16438:31;16492:4;16489:1;16482:15;16520:4;16517:1;16510:15;16374:2;;16216:325;;;:::o;16546:135::-;;-1:-1:-1;;16606:17:1;;16603:2;;;16626:18;;:::i;:::-;-1:-1:-1;16673:1:1;16662:13;;16593:88::o;16686:112::-;;16744:1;16734:2;;16749:18;;:::i;:::-;-1:-1:-1;16783:9:1;;16724:74::o;16803:127::-;16864:10;16859:3;16855:20;16852:1;16845:31;16895:4;16892:1;16885:15;16919:4;16916:1;16909:15;16935:127;16996:10;16991:3;16987:20;16984:1;16977:31;17027:4;17024:1;17017:15;17051:4;17048:1;17041:15;17067:127;17128:10;17123:3;17119:20;17116:1;17109:31;17159:4;17156:1;17149:15;17183:4;17180:1;17173:15;17199:133;-1:-1:-1;;;;;;17275:32:1;;17265:43;;17255:2;;17322:1;17319;17312:12;17255:2;17245:87;:::o

Swarm Source

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