ETH Price: $3,237.56 (-1.13%)
Gas: 4 Gwei

Token

FastaMAX (FASTA)
 

Overview

Max Total Supply

231 FASTA

Holders

67

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 FASTA
0x17FCDF505d90821bE2C1cC9deFA930153E73E7A7
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FastaMAX

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-07
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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

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

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

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

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

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

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

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

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

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

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


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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts/fastamax.sol
contract FastaMAX is ERC721Enumerable, Ownable {

    using SafeMath for uint256;

    // Private members
    enum MemberClaimStatus { Invalid, Listed }                                  // Members, listed?
    mapping (address => MemberClaimStatus) private _whiteListedMembers;         // Whitelisted members for presale
    mapping (address => uint256) private _whiteListMints;                       // Whitelisted mints per address
    string private m_BaseURI = "";                                              // https://api.fastamax.art/fasta/

    // Supply / sale variables
    uint256 public MAX_FASTA = 10000;                                           // Maximum supply
    uint256 public MAX_PRESALE_FASTA_PER_ADDRESS = 300;                         // Total maximum fasta for whitelisted wallet
    uint256 public fastaPrice = 70000000000000000;                              // 0.07 ETH

    // Per TX
    uint public maxFastaPerMint = 20;                                            // Max fastamax in one go !
    uint public maxFastaPerPresaleMint = 25;                                     // Max pre-sale fastamax in one go !

    // Active?!
    bool public mintingActive = false;                                          // Minting active
    bool public isPresaleActive = false;                                        // Presale active

    // Provenance
    string public provenanceHash = "";                                          // Provencance, data integrity

    constructor(
        string memory name,                                                     // FastaMAX
        string memory symbol,                                                   // FASTA
        string memory baseURI                                                   // baseURI
    ) ERC721(name, symbol) {
        m_BaseURI = baseURI;
    }

    // withdrawBalance
    //  -   Withdraws balance to contract owner
    function withdrawBalance() public onlyOwner {
        // Get the total balance
        uint256 balance = address(this).balance;

        // Transfer respective amounts
        payable(msg.sender).transfer(balance);
    }

    // reserveFasta
    //  -   Reserves fastamax for owner
    //  -   Used for giveaways/etc
    function reserveFasta(uint256 quantity) public onlyOwner {
        for(uint i = 0; i < quantity; i++) {
            uint mintIndex = totalSupply();
            if (mintIndex < MAX_FASTA) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

     // bulkTransfer
    function bulkTransfer(address to, uint256[] memory tokenIds) public {
        for(uint i = 0; i < tokenIds.length; i++) {
            safeTransferFrom(msg.sender, to, tokenIds[i]);
        }
    }

    // Mint fasta
    //  -   Mints fasta by quantities
    function mintFasta(uint numberOfFasta) public payable  {
        require(mintingActive, "Minting is not activated yet.");
        require(numberOfFasta > 0, "Why are you minting less than zero fasta.");
        require(
            totalSupply().add(numberOfFasta) <= MAX_FASTA,
            'Only 10,000 fasta are available'
        );
        require(numberOfFasta <= maxFastaPerMint, "Cannot mint this number of fasta in one go !");
        require(fastaPrice.mul(numberOfFasta) <= msg.value, 'Ethereum sent is not sufficient.');

        for(uint i = 0; i < numberOfFasta; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_FASTA) {
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    // mintFastaAsMember
    //  -   Mints fasta as whitelisted member
     function mintFastaAsMember(uint numberOfFasta) public payable {
        require(isPresaleActive, "Presale is not active yet.");
        require(numberOfFasta > 0, "Why are you minting less than zero fasta.");
        require(_whiteListedMembers[msg.sender] == MemberClaimStatus.Listed, "You are not a whitelisted member !");
        require(_whiteListMints[msg.sender].add(numberOfFasta) <= MAX_PRESALE_FASTA_PER_ADDRESS, "You are minting more than your allowed presale fasta!");
        require(totalSupply().add(numberOfFasta) <= MAX_FASTA, "Only 10,000 fasta are available");
        require(numberOfFasta <= maxFastaPerPresaleMint, "Cannot mint this number of presale fasta in one go !");
        require(fastaPrice.mul(numberOfFasta) <= msg.value, 'Ethereum sent is not sufficient.');

        for(uint i = 0; i < numberOfFasta; i++) {
            uint mintIndex = totalSupply();
            if (totalSupply() < MAX_FASTA) {
                _safeMint(msg.sender, mintIndex);
                _whiteListMints[msg.sender] = _whiteListMints[msg.sender].add(1);
            }
        }
    }

    // addToWhitelist
    //  -   Adds discord/invited members to presale whitelist
    function addToWhitelist(address[] memory members) public onlyOwner {
        for (uint256 i = 0; i < members.length; i++) {
            _whiteListedMembers[members[i]] = MemberClaimStatus.Listed;
            _whiteListMints[members[i]] = 0;
        }
    }

    // isWhitelisted
    //  -   Public helper to check if an address is whitelisted
    function isWhitelisted (address addr) public view returns (bool) {
        return _whiteListedMembers[addr] == MemberClaimStatus.Listed;
    }

    // switchMinting
    //  -   Allows, disallows minting
    function switchMinting() public onlyOwner {
        mintingActive = !mintingActive;
    }

    // switchPresale
    //  -   Allows, disallows presale
    function switchPresale() public onlyOwner {
        isPresaleActive = !isPresaleActive;
    }

    // setMaxQuantityPerMint
    //  -   Sets the maximum mints per tx
    function setMaxQuantityPerMint (uint256 quantity) public onlyOwner {
        maxFastaPerMint = quantity;
    }

     // setMaxQuantityPerPresaleMint
    //  -   Sets the maximum mints per tx for presale
    function setMaxQuantityPerPresaleMint (uint256 quantity) public onlyOwner {
        maxFastaPerPresaleMint = quantity;
    }

    // setPresaleMaxPerWallet
    //  -   Emergency function to update the max per presale wallet
    function setMaxPerPresaleWallet (uint256 quantity) public onlyOwner {
        MAX_PRESALE_FASTA_PER_ADDRESS = quantity;
    }

    // setBaseURI
    //  -  Metadata lives here
    function setBaseURI(string memory baseURI) external onlyOwner() {
        m_BaseURI = baseURI;
    }

    // _baseURI
    function _baseURI() internal view override returns (string memory) {
        return m_BaseURI;
    }

    // setProvenance
    //  -   Provenance for data integrity
    function setProvenance(string memory _provenance)
        external
        onlyOwner
    {
        provenanceHash = _provenance;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseURI","type":"string"}],"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_FASTA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PRESALE_FASTA_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"members","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"bulkTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fastaPrice","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":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFastaPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFastaPerPresaleMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfFasta","type":"uint256"}],"name":"mintFasta","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfFasta","type":"uint256"}],"name":"mintFastaAsMember","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveFasta","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":[{"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":"uint256","name":"quantity","type":"uint256"}],"name":"setMaxPerPresaleWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setMaxQuantityPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setMaxQuantityPerPresaleMint","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":"switchMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600d916200014f565b50612710600e5561012c600f5566f8b0a10e4700006010556014601181905560196012556013805461ffff19169055604080516020810191829052600090819052620000699291906200014f565b503480156200007757600080fd5b5060405162002e2738038062002e278339810160408190526200009a91620002ac565b825183908390620000b39060009060208501906200014f565b508051620000c99060019060208401906200014f565b5050506000620000de6200014b60201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35080516200014190600d9060208401906200014f565b5050505062000390565b3390565b8280546200015d906200033d565b90600052602060002090601f016020900481019282620001815760008555620001cc565b82601f106200019c57805160ff1916838001178555620001cc565b82800160010185558215620001cc579182015b82811115620001cc578251825591602001919060010190620001af565b50620001da929150620001de565b5090565b5b80821115620001da5760008155600101620001df565b600082601f8301126200020757600080fd5b81516001600160401b03808211156200022457620002246200037a565b604051601f8301601f19908116603f011681019082821181831017156200024f576200024f6200037a565b816040528381526020925086838588010111156200026c57600080fd5b600091505b8382101562000290578582018301518183018401529082019062000271565b83821115620002a25760008385830101525b9695505050505050565b600080600060608486031215620002c257600080fd5b83516001600160401b0380821115620002da57600080fd5b620002e887838801620001f5565b94506020860151915080821115620002ff57600080fd5b6200030d87838801620001f5565b935060408601519150808211156200032457600080fd5b506200033386828701620001f5565b9150509250925092565b600181811c908216806200035257607f821691505b602082108114156200037457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a8780620003a06000396000f3fe6080604052600436106102465760003560e01c8063715018a611610139578063b88d4fde116100b6578063d28a47611161007a578063d28a476114610658578063e20e5f4914610678578063e4b302e71461068e578063e985e9c5146106a4578063f2fde38b146106ed578063ffe630b51461070d57600080fd5b8063b88d4fde146105d8578063c29ad3ff146105f8578063c6ab67a31461060d578063c87b56dd14610622578063cf43e0ff1461064257600080fd5b80638da5cb5b116100fd5780638da5cb5b1461054557806390fd50ca1461056357806394a0e80f1461058357806395d89b41146105a3578063a22cb465146105b857600080fd5b8063715018a6146104d457806375aecd05146104e9578063784b4227146104fc5780637f6497831461050f57806388fe24991461052f57600080fd5b80633b6ccee7116101c75780635fd8c7101161018b5780635fd8c7101461044057806360d938dc1461045557806361edf7c7146104745780636352211e1461049457806370a08231146104b457600080fd5b80633b6ccee7146103b557806342842e0e146103ca578063490c33f2146103ea5780634f6ccce71461040057806355f804b31461042057600080fd5b806323b872dd1161020e57806323b872dd1461031b578063290b2a0f1461033b5780632f745c591461035b57806331f9c9191461037b5780633af32abf1461039557600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b6102663660046125ff565b61072d565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610295610758565b6040516102779190612733565b3480156102ae57600080fd5b506102c26102bd366004612682565b6107ea565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004612536565b610884565b005b34801561030857600080fd5b506008545b604051908152602001610277565b34801561032757600080fd5b506102fa610336366004612392565b61099a565b34801561034757600080fd5b506102fa610356366004612682565b6109cb565b34801561036757600080fd5b5061030d610376366004612536565b6109fa565b34801561038757600080fd5b5060135461026b9060ff1681565b3480156103a157600080fd5b5061026b6103b0366004612344565b610a90565b3480156103c157600080fd5b506102fa610ac8565b3480156103d657600080fd5b506102fa6103e5366004612392565b610b06565b3480156103f657600080fd5b5061030d60105481565b34801561040c57600080fd5b5061030d61041b366004612682565b610b21565b34801561042c57600080fd5b506102fa61043b366004612639565b610bb4565b34801561044c57600080fd5b506102fa610bf5565b34801561046157600080fd5b5060135461026b90610100900460ff1681565b34801561048057600080fd5b506102fa61048f366004612682565b610c4e565b3480156104a057600080fd5b506102c26104af366004612682565b610c7d565b3480156104c057600080fd5b5061030d6104cf366004612344565b610cf4565b3480156104e057600080fd5b506102fa610d7b565b6102fa6104f7366004612682565b610def565b6102fa61050a366004612682565b610fd0565b34801561051b57600080fd5b506102fa61052a366004612560565b6112eb565b34801561053b57600080fd5b5061030d600e5481565b34801561055157600080fd5b50600a546001600160a01b03166102c2565b34801561056f57600080fd5b506102fa61057e366004612682565b6113d1565b34801561058f57600080fd5b506102fa61059e366004612682565b611400565b3480156105af57600080fd5b50610295611469565b3480156105c457600080fd5b506102fa6105d33660046124fa565b611478565b3480156105e457600080fd5b506102fa6105f33660046123ce565b61153d565b34801561060457600080fd5b506102fa611575565b34801561061957600080fd5b506102956115bc565b34801561062e57600080fd5b5061029561063d366004612682565b61164a565b34801561064e57600080fd5b5061030d60115481565b34801561066457600080fd5b506102fa61067336600461244a565b611725565b34801561068457600080fd5b5061030d600f5481565b34801561069a57600080fd5b5061030d60125481565b3480156106b057600080fd5b5061026b6106bf36600461235f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106f957600080fd5b506102fa610708366004612344565b611767565b34801561071957600080fd5b506102fa610728366004612639565b611852565b60006001600160e01b0319821663780e9d6360e01b148061075257506107528261188f565b92915050565b6060600080546107679061294a565b80601f01602080910402602001604051908101604052809291908181526020018280546107939061294a565b80156107e05780601f106107b5576101008083540402835291602001916107e0565b820191906000526020600020905b8154815290600101906020018083116107c357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108685760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088f82610c7d565b9050806001600160a01b0316836001600160a01b031614156108fd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161085f565b336001600160a01b0382161480610919575061091981336106bf565b61098b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161085f565b61099583836118df565b505050565b6109a4338261194d565b6109c05760405162461bcd60e51b815260040161085f90612816565b610995838383611a44565b600a546001600160a01b031633146109f55760405162461bcd60e51b815260040161085f90612798565b601155565b6000610a0583610cf4565b8210610a675760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161085f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600060016001600160a01b0383166000908152600b602052604090205460ff166001811115610ac157610ac16129e0565b1492915050565b600a546001600160a01b03163314610af25760405162461bcd60e51b815260040161085f90612798565b6013805460ff19811660ff90911615179055565b6109958383836040518060200160405280600081525061153d565b6000610b2c60085490565b8210610b8f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161085f565b60088281548110610ba257610ba2612a0c565b90600052602060002001549050919050565b600a546001600160a01b03163314610bde5760405162461bcd60e51b815260040161085f90612798565b8051610bf190600d906020840190612237565b5050565b600a546001600160a01b03163314610c1f5760405162461bcd60e51b815260040161085f90612798565b6040514790339082156108fc029083906000818181858888f19350505050158015610bf1573d6000803e3d6000fd5b600a546001600160a01b03163314610c785760405162461bcd60e51b815260040161085f90612798565b601255565b6000818152600260205260408120546001600160a01b0316806107525760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161085f565b60006001600160a01b038216610d5f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161085f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610da55760405162461bcd60e51b815260040161085f90612798565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60135460ff16610e415760405162461bcd60e51b815260206004820152601d60248201527f4d696e74696e67206973206e6f7420616374697661746564207965742e000000604482015260640161085f565b60008111610e615760405162461bcd60e51b815260040161085f906127cd565b600e54610e7782610e7160085490565b90611bef565b1115610ec55760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c792031302c3030302066617374612061726520617661696c61626c6500604482015260640161085f565b601154811115610f2c5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f74206d696e742074686973206e756d626572206f6620666173746160448201526b20696e206f6e6520676f202160a01b606482015260840161085f565b6010543490610f3b9083611bfb565b1115610f895760405162461bcd60e51b815260206004820181905260248201527f457468657265756d2073656e74206973206e6f742073756666696369656e742e604482015260640161085f565b60005b81811015610bf1576000610f9f60085490565b9050600e54610fad60085490565b1015610fbd57610fbd3382611c07565b5080610fc881612985565b915050610f8c565b601354610100900460ff166110275760405162461bcd60e51b815260206004820152601a60248201527f50726573616c65206973206e6f7420616374697665207965742e000000000000604482015260640161085f565b600081116110475760405162461bcd60e51b815260040161085f906127cd565b6001336000908152600b602052604090205460ff16600181111561106d5761106d6129e0565b146110c55760405162461bcd60e51b815260206004820152602260248201527f596f7520617265206e6f7420612077686974656c6973746564206d656d626572604482015261202160f01b606482015260840161085f565b600f54336000908152600c60205260409020546110e29083611bef565b111561114e5760405162461bcd60e51b815260206004820152603560248201527f596f7520617265206d696e74696e67206d6f7265207468616e20796f757220616044820152746c6c6f7765642070726573616c652066617374612160581b606482015260840161085f565b600e5461115e82610e7160085490565b11156111ac5760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c792031302c3030302066617374612061726520617661696c61626c6500604482015260640161085f565b60125481111561121b5760405162461bcd60e51b815260206004820152603460248201527f43616e6e6f74206d696e742074686973206e756d626572206f662070726573616044820152736c6520666173746120696e206f6e6520676f202160601b606482015260840161085f565b601054349061122a9083611bfb565b11156112785760405162461bcd60e51b815260206004820181905260248201527f457468657265756d2073656e74206973206e6f742073756666696369656e742e604482015260640161085f565b60005b81811015610bf157600061128e60085490565b9050600e5461129c60085490565b10156112d8576112ac3382611c07565b336000908152600c60205260409020546112c7906001611bef565b336000908152600c60205260409020555b50806112e381612985565b91505061127b565b600a546001600160a01b031633146113155760405162461bcd60e51b815260040161085f90612798565b60005b8151811015610bf1576001600b600084848151811061133957611339612a0c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191660018381811115611375576113756129e0565b02179055506000600c600084848151811061139257611392612a0c565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806113c990612985565b915050611318565b600a546001600160a01b031633146113fb5760405162461bcd60e51b815260040161085f90612798565b600f55565b600a546001600160a01b0316331461142a5760405162461bcd60e51b815260040161085f90612798565b60005b81811015610bf157600061144060085490565b9050600e54811015611456576114563382611c07565b508061146181612985565b91505061142d565b6060600180546107679061294a565b6001600160a01b0382163314156114d15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161085f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611547338361194d565b6115635760405162461bcd60e51b815260040161085f90612816565b61156f84848484611c21565b50505050565b600a546001600160a01b0316331461159f5760405162461bcd60e51b815260040161085f90612798565b6013805461ff001981166101009182900460ff1615909102179055565b601480546115c99061294a565b80601f01602080910402602001604051908101604052809291908181526020018280546115f59061294a565b80156116425780601f1061161757610100808354040283529160200191611642565b820191906000526020600020905b81548152906001019060200180831161162557829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166116c95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161085f565b60006116d3611c54565b905060008151116116f3576040518060200160405280600081525061171e565b806116fd84611c63565b60405160200161170e9291906126c7565b6040516020818303038152906040525b9392505050565b60005b815181101561099557611755338484848151811061174857611748612a0c565b6020026020010151610b06565b8061175f81612985565b915050611728565b600a546001600160a01b031633146117915760405162461bcd60e51b815260040161085f90612798565b6001600160a01b0381166117f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085f565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0316331461187c5760405162461bcd60e51b815260040161085f90612798565b8051610bf1906014906020840190612237565b60006001600160e01b031982166380ac58cd60e01b14806118c057506001600160e01b03198216635b5e139f60e01b145b8061075257506301ffc9a760e01b6001600160e01b0319831614610752565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061191482610c7d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161085f565b60006119d183610c7d565b9050806001600160a01b0316846001600160a01b03161480611a0c5750836001600160a01b0316611a01846107ea565b6001600160a01b0316145b80611a3c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a5782610c7d565b6001600160a01b031614611abf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161085f565b6001600160a01b038216611b215760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161085f565b611b2c838383611d61565b611b376000826118df565b6001600160a01b0383166000908152600360205260408120805460019290611b60908490612907565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b8e9084906128bc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061171e82846128bc565b600061171e82846128e8565b610bf1828260405180602001604052806000815250611e19565b611c2c848484611a44565b611c3884848484611e4c565b61156f5760405162461bcd60e51b815260040161085f90612746565b6060600d80546107679061294a565b606081611c875750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cb15780611c9b81612985565b9150611caa9050600a836128d4565b9150611c8b565b60008167ffffffffffffffff811115611ccc57611ccc612a22565b6040519080825280601f01601f191660200182016040528015611cf6576020820181803683370190505b5090505b8415611a3c57611d0b600183612907565b9150611d18600a866129a0565b611d239060306128bc565b60f81b818381518110611d3857611d38612a0c565b60200101906001600160f81b031916908160001a905350611d5a600a866128d4565b9450611cfa565b6001600160a01b038316611dbc57611db781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ddf565b816001600160a01b0316836001600160a01b031614611ddf57611ddf8382611f59565b6001600160a01b038216611df65761099581611ff6565b826001600160a01b0316826001600160a01b0316146109955761099582826120a5565b611e2383836120e9565b611e306000848484611e4c565b6109955760405162461bcd60e51b815260040161085f90612746565b60006001600160a01b0384163b15611f4e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e909033908990889088906004016126f6565b602060405180830381600087803b158015611eaa57600080fd5b505af1925050508015611eda575060408051601f3d908101601f19168201909252611ed79181019061261c565b60015b611f34573d808015611f08576040519150601f19603f3d011682016040523d82523d6000602084013e611f0d565b606091505b508051611f2c5760405162461bcd60e51b815260040161085f90612746565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a3c565b506001949350505050565b60006001611f6684610cf4565b611f709190612907565b600083815260076020526040902054909150808214611fc3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061200890600190612907565b6000838152600960205260408120546008805493945090928490811061203057612030612a0c565b90600052602060002001549050806008838154811061205157612051612a0c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612089576120896129f6565b6001900381819060005260206000200160009055905550505050565b60006120b083610cf4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661213f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161085f565b6000818152600260205260409020546001600160a01b0316156121a45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161085f565b6121b060008383611d61565b6001600160a01b03821660009081526003602052604081208054600192906121d99084906128bc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122439061294a565b90600052602060002090601f01602090048101928261226557600085556122ab565b82601f1061227e57805160ff19168380011785556122ab565b828001600101855582156122ab579182015b828111156122ab578251825591602001919060010190612290565b506122b79291506122bb565b5090565b5b808211156122b757600081556001016122bc565b600067ffffffffffffffff8311156122ea576122ea612a22565b6122fd601f8401601f1916602001612867565b905082815283838301111561231157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461233f57600080fd5b919050565b60006020828403121561235657600080fd5b61171e82612328565b6000806040838503121561237257600080fd5b61237b83612328565b915061238960208401612328565b90509250929050565b6000806000606084860312156123a757600080fd5b6123b084612328565b92506123be60208501612328565b9150604084013590509250925092565b600080600080608085870312156123e457600080fd5b6123ed85612328565b93506123fb60208601612328565b925060408501359150606085013567ffffffffffffffff81111561241e57600080fd5b8501601f8101871361242f57600080fd5b61243e878235602084016122d0565b91505092959194509250565b6000806040838503121561245d57600080fd5b61246683612328565b915060208084013567ffffffffffffffff81111561248357600080fd5b8401601f8101861361249457600080fd5b80356124a76124a282612898565b612867565b80828252848201915084840189868560051b87010111156124c757600080fd5b600094505b838510156124ea5780358352600194909401939185019185016124cc565b5080955050505050509250929050565b6000806040838503121561250d57600080fd5b61251683612328565b91506020830135801515811461252b57600080fd5b809150509250929050565b6000806040838503121561254957600080fd5b61255283612328565b946020939093013593505050565b6000602080838503121561257357600080fd5b823567ffffffffffffffff81111561258a57600080fd5b8301601f8101851361259b57600080fd5b80356125a96124a282612898565b80828252848201915084840188868560051b87010111156125c957600080fd5b600094505b838510156125f3576125df81612328565b8352600194909401939185019185016125ce565b50979650505050505050565b60006020828403121561261157600080fd5b813561171e81612a38565b60006020828403121561262e57600080fd5b815161171e81612a38565b60006020828403121561264b57600080fd5b813567ffffffffffffffff81111561266257600080fd5b8201601f8101841361267357600080fd5b611a3c848235602084016122d0565b60006020828403121561269457600080fd5b5035919050565b600081518084526126b381602086016020860161291e565b601f01601f19169290920160200192915050565b600083516126d981846020880161291e565b8351908301906126ed81836020880161291e565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127299083018461269b565b9695505050505050565b60208152600061171e602083018461269b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5768792061726520796f75206d696e74696e67206c657373207468616e207a656040820152683937903330b9ba309760b91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561289057612890612a22565b604052919050565b600067ffffffffffffffff8211156128b2576128b2612a22565b5060051b60200190565b600082198211156128cf576128cf6129b4565b500190565b6000826128e3576128e36129ca565b500490565b6000816000190483118215151615612902576129026129b4565b500290565b600082821015612919576129196129b4565b500390565b60005b83811015612939578181015183820152602001612921565b8381111561156f5750506000910152565b600181811c9082168061295e57607f821691505b6020821081141561297f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612999576129996129b4565b5060010190565b6000826129af576129af6129ca565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612a4e57600080fd5b5056fea264697066735822122039cf1899d2fb82e6e70c6e812d588436afad81dec243e78492a0ccde247d53b764736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000846617374614d415800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054641535441000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6170692e66617374616d61782e6172742f66617374612f00

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063715018a611610139578063b88d4fde116100b6578063d28a47611161007a578063d28a476114610658578063e20e5f4914610678578063e4b302e71461068e578063e985e9c5146106a4578063f2fde38b146106ed578063ffe630b51461070d57600080fd5b8063b88d4fde146105d8578063c29ad3ff146105f8578063c6ab67a31461060d578063c87b56dd14610622578063cf43e0ff1461064257600080fd5b80638da5cb5b116100fd5780638da5cb5b1461054557806390fd50ca1461056357806394a0e80f1461058357806395d89b41146105a3578063a22cb465146105b857600080fd5b8063715018a6146104d457806375aecd05146104e9578063784b4227146104fc5780637f6497831461050f57806388fe24991461052f57600080fd5b80633b6ccee7116101c75780635fd8c7101161018b5780635fd8c7101461044057806360d938dc1461045557806361edf7c7146104745780636352211e1461049457806370a08231146104b457600080fd5b80633b6ccee7146103b557806342842e0e146103ca578063490c33f2146103ea5780634f6ccce71461040057806355f804b31461042057600080fd5b806323b872dd1161020e57806323b872dd1461031b578063290b2a0f1461033b5780632f745c591461035b57806331f9c9191461037b5780633af32abf1461039557600080fd5b806301ffc9a71461024b57806306fdde0314610280578063081812fc146102a2578063095ea7b3146102da57806318160ddd146102fc575b600080fd5b34801561025757600080fd5b5061026b6102663660046125ff565b61072d565b60405190151581526020015b60405180910390f35b34801561028c57600080fd5b50610295610758565b6040516102779190612733565b3480156102ae57600080fd5b506102c26102bd366004612682565b6107ea565b6040516001600160a01b039091168152602001610277565b3480156102e657600080fd5b506102fa6102f5366004612536565b610884565b005b34801561030857600080fd5b506008545b604051908152602001610277565b34801561032757600080fd5b506102fa610336366004612392565b61099a565b34801561034757600080fd5b506102fa610356366004612682565b6109cb565b34801561036757600080fd5b5061030d610376366004612536565b6109fa565b34801561038757600080fd5b5060135461026b9060ff1681565b3480156103a157600080fd5b5061026b6103b0366004612344565b610a90565b3480156103c157600080fd5b506102fa610ac8565b3480156103d657600080fd5b506102fa6103e5366004612392565b610b06565b3480156103f657600080fd5b5061030d60105481565b34801561040c57600080fd5b5061030d61041b366004612682565b610b21565b34801561042c57600080fd5b506102fa61043b366004612639565b610bb4565b34801561044c57600080fd5b506102fa610bf5565b34801561046157600080fd5b5060135461026b90610100900460ff1681565b34801561048057600080fd5b506102fa61048f366004612682565b610c4e565b3480156104a057600080fd5b506102c26104af366004612682565b610c7d565b3480156104c057600080fd5b5061030d6104cf366004612344565b610cf4565b3480156104e057600080fd5b506102fa610d7b565b6102fa6104f7366004612682565b610def565b6102fa61050a366004612682565b610fd0565b34801561051b57600080fd5b506102fa61052a366004612560565b6112eb565b34801561053b57600080fd5b5061030d600e5481565b34801561055157600080fd5b50600a546001600160a01b03166102c2565b34801561056f57600080fd5b506102fa61057e366004612682565b6113d1565b34801561058f57600080fd5b506102fa61059e366004612682565b611400565b3480156105af57600080fd5b50610295611469565b3480156105c457600080fd5b506102fa6105d33660046124fa565b611478565b3480156105e457600080fd5b506102fa6105f33660046123ce565b61153d565b34801561060457600080fd5b506102fa611575565b34801561061957600080fd5b506102956115bc565b34801561062e57600080fd5b5061029561063d366004612682565b61164a565b34801561064e57600080fd5b5061030d60115481565b34801561066457600080fd5b506102fa61067336600461244a565b611725565b34801561068457600080fd5b5061030d600f5481565b34801561069a57600080fd5b5061030d60125481565b3480156106b057600080fd5b5061026b6106bf36600461235f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106f957600080fd5b506102fa610708366004612344565b611767565b34801561071957600080fd5b506102fa610728366004612639565b611852565b60006001600160e01b0319821663780e9d6360e01b148061075257506107528261188f565b92915050565b6060600080546107679061294a565b80601f01602080910402602001604051908101604052809291908181526020018280546107939061294a565b80156107e05780601f106107b5576101008083540402835291602001916107e0565b820191906000526020600020905b8154815290600101906020018083116107c357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108685760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088f82610c7d565b9050806001600160a01b0316836001600160a01b031614156108fd5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161085f565b336001600160a01b0382161480610919575061091981336106bf565b61098b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161085f565b61099583836118df565b505050565b6109a4338261194d565b6109c05760405162461bcd60e51b815260040161085f90612816565b610995838383611a44565b600a546001600160a01b031633146109f55760405162461bcd60e51b815260040161085f90612798565b601155565b6000610a0583610cf4565b8210610a675760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161085f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600060016001600160a01b0383166000908152600b602052604090205460ff166001811115610ac157610ac16129e0565b1492915050565b600a546001600160a01b03163314610af25760405162461bcd60e51b815260040161085f90612798565b6013805460ff19811660ff90911615179055565b6109958383836040518060200160405280600081525061153d565b6000610b2c60085490565b8210610b8f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161085f565b60088281548110610ba257610ba2612a0c565b90600052602060002001549050919050565b600a546001600160a01b03163314610bde5760405162461bcd60e51b815260040161085f90612798565b8051610bf190600d906020840190612237565b5050565b600a546001600160a01b03163314610c1f5760405162461bcd60e51b815260040161085f90612798565b6040514790339082156108fc029083906000818181858888f19350505050158015610bf1573d6000803e3d6000fd5b600a546001600160a01b03163314610c785760405162461bcd60e51b815260040161085f90612798565b601255565b6000818152600260205260408120546001600160a01b0316806107525760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161085f565b60006001600160a01b038216610d5f5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161085f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610da55760405162461bcd60e51b815260040161085f90612798565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b60135460ff16610e415760405162461bcd60e51b815260206004820152601d60248201527f4d696e74696e67206973206e6f7420616374697661746564207965742e000000604482015260640161085f565b60008111610e615760405162461bcd60e51b815260040161085f906127cd565b600e54610e7782610e7160085490565b90611bef565b1115610ec55760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c792031302c3030302066617374612061726520617661696c61626c6500604482015260640161085f565b601154811115610f2c5760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f74206d696e742074686973206e756d626572206f6620666173746160448201526b20696e206f6e6520676f202160a01b606482015260840161085f565b6010543490610f3b9083611bfb565b1115610f895760405162461bcd60e51b815260206004820181905260248201527f457468657265756d2073656e74206973206e6f742073756666696369656e742e604482015260640161085f565b60005b81811015610bf1576000610f9f60085490565b9050600e54610fad60085490565b1015610fbd57610fbd3382611c07565b5080610fc881612985565b915050610f8c565b601354610100900460ff166110275760405162461bcd60e51b815260206004820152601a60248201527f50726573616c65206973206e6f7420616374697665207965742e000000000000604482015260640161085f565b600081116110475760405162461bcd60e51b815260040161085f906127cd565b6001336000908152600b602052604090205460ff16600181111561106d5761106d6129e0565b146110c55760405162461bcd60e51b815260206004820152602260248201527f596f7520617265206e6f7420612077686974656c6973746564206d656d626572604482015261202160f01b606482015260840161085f565b600f54336000908152600c60205260409020546110e29083611bef565b111561114e5760405162461bcd60e51b815260206004820152603560248201527f596f7520617265206d696e74696e67206d6f7265207468616e20796f757220616044820152746c6c6f7765642070726573616c652066617374612160581b606482015260840161085f565b600e5461115e82610e7160085490565b11156111ac5760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c792031302c3030302066617374612061726520617661696c61626c6500604482015260640161085f565b60125481111561121b5760405162461bcd60e51b815260206004820152603460248201527f43616e6e6f74206d696e742074686973206e756d626572206f662070726573616044820152736c6520666173746120696e206f6e6520676f202160601b606482015260840161085f565b601054349061122a9083611bfb565b11156112785760405162461bcd60e51b815260206004820181905260248201527f457468657265756d2073656e74206973206e6f742073756666696369656e742e604482015260640161085f565b60005b81811015610bf157600061128e60085490565b9050600e5461129c60085490565b10156112d8576112ac3382611c07565b336000908152600c60205260409020546112c7906001611bef565b336000908152600c60205260409020555b50806112e381612985565b91505061127b565b600a546001600160a01b031633146113155760405162461bcd60e51b815260040161085f90612798565b60005b8151811015610bf1576001600b600084848151811061133957611339612a0c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191660018381811115611375576113756129e0565b02179055506000600c600084848151811061139257611392612a0c565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806113c990612985565b915050611318565b600a546001600160a01b031633146113fb5760405162461bcd60e51b815260040161085f90612798565b600f55565b600a546001600160a01b0316331461142a5760405162461bcd60e51b815260040161085f90612798565b60005b81811015610bf157600061144060085490565b9050600e54811015611456576114563382611c07565b508061146181612985565b91505061142d565b6060600180546107679061294a565b6001600160a01b0382163314156114d15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161085f565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611547338361194d565b6115635760405162461bcd60e51b815260040161085f90612816565b61156f84848484611c21565b50505050565b600a546001600160a01b0316331461159f5760405162461bcd60e51b815260040161085f90612798565b6013805461ff001981166101009182900460ff1615909102179055565b601480546115c99061294a565b80601f01602080910402602001604051908101604052809291908181526020018280546115f59061294a565b80156116425780601f1061161757610100808354040283529160200191611642565b820191906000526020600020905b81548152906001019060200180831161162557829003601f168201915b505050505081565b6000818152600260205260409020546060906001600160a01b03166116c95760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161085f565b60006116d3611c54565b905060008151116116f3576040518060200160405280600081525061171e565b806116fd84611c63565b60405160200161170e9291906126c7565b6040516020818303038152906040525b9392505050565b60005b815181101561099557611755338484848151811061174857611748612a0c565b6020026020010151610b06565b8061175f81612985565b915050611728565b600a546001600160a01b031633146117915760405162461bcd60e51b815260040161085f90612798565b6001600160a01b0381166117f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161085f565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0316331461187c5760405162461bcd60e51b815260040161085f90612798565b8051610bf1906014906020840190612237565b60006001600160e01b031982166380ac58cd60e01b14806118c057506001600160e01b03198216635b5e139f60e01b145b8061075257506301ffc9a760e01b6001600160e01b0319831614610752565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061191482610c7d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166119c65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161085f565b60006119d183610c7d565b9050806001600160a01b0316846001600160a01b03161480611a0c5750836001600160a01b0316611a01846107ea565b6001600160a01b0316145b80611a3c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611a5782610c7d565b6001600160a01b031614611abf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161085f565b6001600160a01b038216611b215760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161085f565b611b2c838383611d61565b611b376000826118df565b6001600160a01b0383166000908152600360205260408120805460019290611b60908490612907565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b8e9084906128bc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600061171e82846128bc565b600061171e82846128e8565b610bf1828260405180602001604052806000815250611e19565b611c2c848484611a44565b611c3884848484611e4c565b61156f5760405162461bcd60e51b815260040161085f90612746565b6060600d80546107679061294a565b606081611c875750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cb15780611c9b81612985565b9150611caa9050600a836128d4565b9150611c8b565b60008167ffffffffffffffff811115611ccc57611ccc612a22565b6040519080825280601f01601f191660200182016040528015611cf6576020820181803683370190505b5090505b8415611a3c57611d0b600183612907565b9150611d18600a866129a0565b611d239060306128bc565b60f81b818381518110611d3857611d38612a0c565b60200101906001600160f81b031916908160001a905350611d5a600a866128d4565b9450611cfa565b6001600160a01b038316611dbc57611db781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ddf565b816001600160a01b0316836001600160a01b031614611ddf57611ddf8382611f59565b6001600160a01b038216611df65761099581611ff6565b826001600160a01b0316826001600160a01b0316146109955761099582826120a5565b611e2383836120e9565b611e306000848484611e4c565b6109955760405162461bcd60e51b815260040161085f90612746565b60006001600160a01b0384163b15611f4e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e909033908990889088906004016126f6565b602060405180830381600087803b158015611eaa57600080fd5b505af1925050508015611eda575060408051601f3d908101601f19168201909252611ed79181019061261c565b60015b611f34573d808015611f08576040519150601f19603f3d011682016040523d82523d6000602084013e611f0d565b606091505b508051611f2c5760405162461bcd60e51b815260040161085f90612746565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a3c565b506001949350505050565b60006001611f6684610cf4565b611f709190612907565b600083815260076020526040902054909150808214611fc3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061200890600190612907565b6000838152600960205260408120546008805493945090928490811061203057612030612a0c565b90600052602060002001549050806008838154811061205157612051612a0c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612089576120896129f6565b6001900381819060005260206000200160009055905550505050565b60006120b083610cf4565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661213f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161085f565b6000818152600260205260409020546001600160a01b0316156121a45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161085f565b6121b060008383611d61565b6001600160a01b03821660009081526003602052604081208054600192906121d99084906128bc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546122439061294a565b90600052602060002090601f01602090048101928261226557600085556122ab565b82601f1061227e57805160ff19168380011785556122ab565b828001600101855582156122ab579182015b828111156122ab578251825591602001919060010190612290565b506122b79291506122bb565b5090565b5b808211156122b757600081556001016122bc565b600067ffffffffffffffff8311156122ea576122ea612a22565b6122fd601f8401601f1916602001612867565b905082815283838301111561231157600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461233f57600080fd5b919050565b60006020828403121561235657600080fd5b61171e82612328565b6000806040838503121561237257600080fd5b61237b83612328565b915061238960208401612328565b90509250929050565b6000806000606084860312156123a757600080fd5b6123b084612328565b92506123be60208501612328565b9150604084013590509250925092565b600080600080608085870312156123e457600080fd5b6123ed85612328565b93506123fb60208601612328565b925060408501359150606085013567ffffffffffffffff81111561241e57600080fd5b8501601f8101871361242f57600080fd5b61243e878235602084016122d0565b91505092959194509250565b6000806040838503121561245d57600080fd5b61246683612328565b915060208084013567ffffffffffffffff81111561248357600080fd5b8401601f8101861361249457600080fd5b80356124a76124a282612898565b612867565b80828252848201915084840189868560051b87010111156124c757600080fd5b600094505b838510156124ea5780358352600194909401939185019185016124cc565b5080955050505050509250929050565b6000806040838503121561250d57600080fd5b61251683612328565b91506020830135801515811461252b57600080fd5b809150509250929050565b6000806040838503121561254957600080fd5b61255283612328565b946020939093013593505050565b6000602080838503121561257357600080fd5b823567ffffffffffffffff81111561258a57600080fd5b8301601f8101851361259b57600080fd5b80356125a96124a282612898565b80828252848201915084840188868560051b87010111156125c957600080fd5b600094505b838510156125f3576125df81612328565b8352600194909401939185019185016125ce565b50979650505050505050565b60006020828403121561261157600080fd5b813561171e81612a38565b60006020828403121561262e57600080fd5b815161171e81612a38565b60006020828403121561264b57600080fd5b813567ffffffffffffffff81111561266257600080fd5b8201601f8101841361267357600080fd5b611a3c848235602084016122d0565b60006020828403121561269457600080fd5b5035919050565b600081518084526126b381602086016020860161291e565b601f01601f19169290920160200192915050565b600083516126d981846020880161291e565b8351908301906126ed81836020880161291e565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127299083018461269b565b9695505050505050565b60208152600061171e602083018461269b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f5768792061726520796f75206d696e74696e67206c657373207468616e207a656040820152683937903330b9ba309760b91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561289057612890612a22565b604052919050565b600067ffffffffffffffff8211156128b2576128b2612a22565b5060051b60200190565b600082198211156128cf576128cf6129b4565b500190565b6000826128e3576128e36129ca565b500490565b6000816000190483118215151615612902576129026129b4565b500290565b600082821015612919576129196129b4565b500390565b60005b83811015612939578181015183820152602001612921565b8381111561156f5750506000910152565b600181811c9082168061295e57607f821691505b6020821081141561297f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612999576129996129b4565b5060010190565b6000826129af576129af6129ca565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114612a4e57600080fd5b5056fea264697066735822122039cf1899d2fb82e6e70c6e812d588436afad81dec243e78492a0ccde247d53b764736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000846617374614d415800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054641535441000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6170692e66617374616d61782e6172742f66617374612f00

-----Decoded View---------------
Arg [0] : name (string): FastaMAX
Arg [1] : symbol (string): FASTA
Arg [2] : baseURI (string): https://api.fastamax.art/fasta/

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 46617374614d4158000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4641535441000000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [8] : 68747470733a2f2f6170692e66617374616d61782e6172742f66617374612f00


Deployed Bytecode Sourcemap

49339:6885:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40911:237;;;;;;;;;;-1:-1:-1;40911:237:0;;;;;:::i;:::-;;:::i;:::-;;;7315:14:1;;7308:22;7290:41;;7278:2;7263:18;40911:237:0;;;;;;;;28184:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29644:221::-;;;;;;;;;;-1:-1:-1;29644:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6613:32:1;;;6595:51;;6583:2;6568:18;29644:221:0;6449:203:1;29181:397:0;;;;;;;;;;-1:-1:-1;29181:397:0;;;;;:::i;:::-;;:::i;:::-;;41564:113;;;;;;;;;;-1:-1:-1;41652:10:0;:17;41564:113;;;18422:25:1;;;18410:2;18395:18;41564:113:0;18276:177:1;30534:305:0;;;;;;;;;;-1:-1:-1;30534:305:0;;;;;:::i;:::-;;:::i;55145:112::-;;;;;;;;;;-1:-1:-1;55145:112:0;;;;;:::i;:::-;;:::i;41232:256::-;;;;;;;;;;-1:-1:-1;41232:256:0;;;;;:::i;:::-;;:::i;50519:33::-;;;;;;;;;;-1:-1:-1;50519:33:0;;;;;;;;54596:144;;;;;;;;;;-1:-1:-1;54596:144:0;;;;;:::i;:::-;;:::i;54809:91::-;;;;;;;;;;;;;:::i;30910:151::-;;;;;;;;;;-1:-1:-1;30910:151:0;;;;;:::i;:::-;;:::i;50161:45::-;;;;;;;;;;;;;;;;41754:233;;;;;;;;;;-1:-1:-1;41754:233:0;;;;;:::i;:::-;;:::i;55778:102::-;;;;;;;;;;-1:-1:-1;55778:102:0;;;;;:::i;:::-;;:::i;51287:226::-;;;;;;;;;;;;;:::i;50618:35::-;;;;;;;;;;-1:-1:-1;50618:35:0;;;;;;;;;;;55358:126;;;;;;;;;;-1:-1:-1;55358:126:0;;;;;:::i;:::-;;:::i;27878:239::-;;;;;;;;;;-1:-1:-1;27878:239:0;;;;;:::i;:::-;;:::i;27608:208::-;;;;;;;;;;-1:-1:-1;27608:208:0;;;;;:::i;:::-;;:::i;48752:148::-;;;;;;;;;;;;;:::i;52190:767::-;;;;;;:::i;:::-;;:::i;53039:1107::-;;;;;;:::i;:::-;;:::i;54240:261::-;;;;;;;;;;-1:-1:-1;54240:261:0;;;;;:::i;:::-;;:::i;49935:32::-;;;;;;;;;;;;;;;;48101:87;;;;;;;;;;-1:-1:-1;48174:6:0;;-1:-1:-1;;;;;48174:6:0;48101:87;;55592:127;;;;;;;;;;-1:-1:-1;55592:127:0;;;;;:::i;:::-;;:::i;51619:275::-;;;;;;;;;;-1:-1:-1;51619:275:0;;;;;:::i;:::-;;:::i;28353:104::-;;;;;;;;;;;;;:::i;29937:295::-;;;;;;;;;;-1:-1:-1;29937:295:0;;;;;:::i;:::-;;:::i;31132:285::-;;;;;;;;;;-1:-1:-1;31132:285:0;;;;;:::i;:::-;;:::i;54969:95::-;;;;;;;;;;;;;:::i;50738:33::-;;;;;;;;;;;;;:::i;28528:360::-;;;;;;;;;;-1:-1:-1;28528:360:0;;;;;:::i;:::-;;:::i;50271:32::-;;;;;;;;;;;;;;;;51924:200;;;;;;;;;;-1:-1:-1;51924:200:0;;;;;:::i;:::-;;:::i;50034:50::-;;;;;;;;;;;;;;;;50381:39;;;;;;;;;;;;;;;;30303:164;;;;;;;;;;-1:-1:-1;30303:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30424:25:0;;;30400:4;30424:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30303:164;49055:244;;;;;;;;;;-1:-1:-1;49055:244:0;;;;;:::i;:::-;;:::i;56080:139::-;;;;;;;;;;-1:-1:-1;56080:139:0;;;;;:::i;:::-;;:::i;40911:237::-;41013:4;-1:-1:-1;;;;;;41037:50:0;;-1:-1:-1;;;41037:50:0;;:103;;;41104:36;41128:11;41104:23;:36::i;:::-;41030:110;40911:237;-1:-1:-1;;40911:237:0:o;28184:100::-;28238:13;28271:5;28264:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28184:100;:::o;29644:221::-;29720:7;32973:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32973:16:0;29740:73;;;;-1:-1:-1;;;29740:73:0;;13631:2:1;29740:73:0;;;13613:21:1;13670:2;13650:18;;;13643:30;13709:34;13689:18;;;13682:62;-1:-1:-1;;;13760:18:1;;;13753:42;13812:19;;29740:73:0;;;;;;;;;-1:-1:-1;29833:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29833:24:0;;29644:221::o;29181:397::-;29262:13;29278:23;29293:7;29278:14;:23::i;:::-;29262:39;;29326:5;-1:-1:-1;;;;;29320:11:0;:2;-1:-1:-1;;;;;29320:11:0;;;29312:57;;;;-1:-1:-1;;;29312:57:0;;15231:2:1;29312:57:0;;;15213:21:1;15270:2;15250:18;;;15243:30;15309:34;15289:18;;;15282:62;-1:-1:-1;;;15360:18:1;;;15353:31;15401:19;;29312:57:0;15029:397:1;29312:57:0;22727:10;-1:-1:-1;;;;;29390:21:0;;;;:62;;-1:-1:-1;29415:37:0;29432:5;22727:10;30303:164;:::i;29415:37::-;29382:154;;;;-1:-1:-1;;;29382:154:0;;11303:2:1;29382:154:0;;;11285:21:1;11342:2;11322:18;;;11315:30;11381:34;11361:18;;;11354:62;11452:26;11432:18;;;11425:54;11496:19;;29382:154:0;11101:420:1;29382:154:0;29549:21;29558:2;29562:7;29549:8;:21::i;:::-;29251:327;29181:397;;:::o;30534:305::-;30695:41;22727:10;30728:7;30695:18;:41::i;:::-;30687:103;;;;-1:-1:-1;;;30687:103:0;;;;;;;:::i;:::-;30803:28;30813:4;30819:2;30823:7;30803:9;:28::i;55145:112::-;48174:6;;-1:-1:-1;;;;;48174:6:0;22727:10;48321:23;48313:68;;;;-1:-1:-1;;;48313:68:0;;;;;;;:::i;:::-;55223:15:::1;:26:::0;55145:112::o;41232:256::-;41329:7;41365:23;41382:5;41365:16;:23::i;:::-;41357:5;:31;41349:87;;;;-1:-1:-1;;;41349:87:0;;8536:2:1;41349:87:0;;;8518:21:1;8575:2;8555:18;;;8548:30;8614:34;8594:18;;;8587:62;-1:-1:-1;;;8665:18:1;;;8658:41;8716:19;;41349:87:0;8334:407:1;41349:87:0;-1:-1:-1;;;;;;41454:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41232:256::o;54596:144::-;54655:4;54708:24;-1:-1:-1;;;;;54679:25:0;;;;;;:19;:25;;;;;;;;;:53;;;;;;;:::i;:::-;;;54596:144;-1:-1:-1;;54596:144:0:o;54809:91::-;48174:6;;-1:-1:-1;;;;;48174:6:0;22727:10;48321:23;48313:68;;;;-1:-1:-1;;;48313:68:0;;;;;;;:::i;:::-;54879:13:::1;::::0;;-1:-1:-1;;54862:30:0;::::1;54879:13;::::0;;::::1;54878:14;54862:30;::::0;;54809:91::o;30910:151::-;31014:39;31031:4;31037:2;31041:7;31014:39;;;;;;;;;;;;:16;:39::i;41754:233::-;41829:7;41865:30;41652:10;:17;;41564:113;41865:30;41857:5;:38;41849:95;;;;-1:-1:-1;;;41849:95:0;;17644:2:1;41849:95:0;;;17626:21:1;17683:2;17663:18;;;17656:30;17722:34;17702:18;;;17695:62;-1:-1:-1;;;17773:18:1;;;17766:42;17825:19;;41849:95:0;17442:408:1;41849:95:0;41962:10;41973:5;41962:17;;;;;;;;:::i;:::-;;;;;;;;;41955:24;;41754:233;;;:::o;55778:102::-;48174:6;;-1:-1:-1;;;;;48174:6:0;22727:10;48321:23;48313:68;;;;-1:-1:-1;;;48313:68:0;;;;;;;:::i;:::-;55853:19;;::::1;::::0;:9:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;:::-;;55778:102:::0;:::o;51287:226::-;48174:6;;-1:-1:-1;;;;;48174:6:0;22727:10;48321:23;48313:68;;;;-1:-1:-1;;;48313:68:0;;;;;;;:::i;:::-;51468:37:::1;::::0;51394:21:::1;::::0;51476:10:::1;::::0;51468:37;::::1;;;::::0;51394:21;;51376:15:::1;51468:37:::0;51376:15;51468:37;51394:21;51476:10;51468:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;55358:126:::0;48174:6;;-1:-1:-1;;;;;48174:6:0;22727:10;48321:23;48313:68;;;;-1:-1:-1;;;48313:68:0;;;;;;;:::i;:::-;55443:22:::1;:33:::0;55358:126::o;27878:239::-;27950:7;27986:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27986:16:0;28021:19;28013:73;;;;-1:-1:-1;;;28013:73:0;;12139:2:1;28013:73:0;;;12121:21:1;12178:2;12158:18;;;12151:30;12217:34;12197:18;;;12190:62;-1:-1:-1;;;12268:18:1;;;12261:39;12317:19;;28013:73:0;11937:405:1;27608:208:0;27680:7;-1:-1:-1;;;;;27708:19:0;;27700:74;;;;-1:-1:-1;;;27700:74:0;;11728:2:1;27700:74:0;;;11710:21:1;11767:2;11747:18;;;11740:30;11806:34;11786:18;;;11779:62;-1:-1:-1;;;11857:18:1;;;11850:40;11907:19;;27700:74:0;11526:406:1;27700:74:0;-1:-1:-1;;;;;;27792:16:0;;;;;:9;:16;;;;;;;27608:208::o;48752:148::-;48174:6;;-1:-1:-1;;;;;48174:6:0;22727:10;48321:23;48313:68;;;;-1:-1:-1;;;48313:68:0;;;;;;;:::i;:::-;48843:6:::1;::::0;48822:40:::1;::::0;48859:1:::1;::::0;-1:-1:-1;;;;;48843:6:0::1;::::0;48822:40:::1;::::0;48859:1;;48822:40:::1;48873:6;:19:::0;;-1:-1:-1;;;;;;48873:19:0::1;::::0;;48752:148::o;52190:767::-;52264:13;;;;52256:55;;;;-1:-1:-1;;;52256:55:0;;17286:2:1;52256:55:0;;;17268:21:1;17325:2;17305:18;;;17298:30;17364:31;17344:18;;;17337:59;17413:18;;52256:55:0;17084:353:1;52256:55:0;52346:1;52330:13;:17;52322:71;;;;-1:-1:-1;;;52322:71:0;;;;;;;:::i;:::-;52462:9;;52426:32;52444:13;52426;41652:10;:17;;41564:113;52426:13;:17;;:32::i;:::-;:45;;52404:126;;;;-1:-1:-1;;;52404:126:0;;13271:2:1;52404:126:0;;;13253:21:1;13310:2;13290:18;;;13283:30;13349:33;13329:18;;;13322:61;13400:18;;52404:126:0;13069:355:1;52404:126:0;52566:15;;52549:13;:32;;52541:89;;;;-1:-1:-1;;;52541:89:0;;8123:2:1;52541:89:0;;;8105:21:1;8162:2;8142:18;;;8135:30;8201:34;8181:18;;;8174:62;-1:-1:-1;;;8252:18:1;;;8245:42;8304:19;;52541:89:0;7921:408:1;52541:89:0;52649:10;;52682:9;;52649:29;;52664:13;52649:14;:29::i;:::-;:42;;52641:87;;;;-1:-1:-1;;;52641:87:0;;12910:2:1;52641:87:0;;;12892:21:1;;;12929:18;;;12922:30;12988:34;12968:18;;;12961:62;13040:18;;52641:87:0;12708:356:1;52641:87:0;52745:6;52741:209;52761:13;52757:1;:17;52741:209;;;52796:14;52813:13;41652:10;:17;;41564:113;52813:13;52796:30;;52861:9;;52845:13;41652:10;:17;;41564:113;52845:13;:25;52841:98;;;52891:32;52901:10;52913:9;52891;:32::i;:::-;-1:-1:-1;52776:3:0;;;;:::i;:::-;;;;52741:209;;53039:1107;53120:15;;;;;;;53112:54;;;;-1:-1:-1;;;53112:54:0;;7768:2:1;53112:54:0;;;7750:21:1;7807:2;7787:18;;;7780:30;7846:28;7826:18;;;7819:56;7892:18;;53112:54:0;7566:350:1;53112:54:0;53201:1;53185:13;:17;53177:71;;;;-1:-1:-1;;;53177:71:0;;;;;;;:::i;:::-;53302:24;53287:10;53267:31;;;;:19;:31;;;;;;;;;:59;;;;;;;:::i;:::-;;53259:106;;;;-1:-1:-1;;;53259:106:0;;16465:2:1;53259:106:0;;;16447:21:1;16504:2;16484:18;;;16477:30;16543:34;16523:18;;;16516:62;-1:-1:-1;;;16594:18:1;;;16587:32;16636:19;;53259:106:0;16263:398:1;53259:106:0;53434:29;;53400:10;53384:27;;;;:15;:27;;;;;;:46;;53416:13;53384:31;:46::i;:::-;:79;;53376:145;;;;-1:-1:-1;;;53376:145:0;;15633:2:1;53376:145:0;;;15615:21:1;15672:2;15652:18;;;15645:30;15711:34;15691:18;;;15684:62;-1:-1:-1;;;15762:18:1;;;15755:51;15823:19;;53376:145:0;15431:417:1;53376:145:0;53576:9;;53540:32;53558:13;53540;41652:10;:17;;41564:113;53540:32;:45;;53532:89;;;;-1:-1:-1;;;53532:89:0;;13271:2:1;53532:89:0;;;13253:21:1;13310:2;13290:18;;;13283:30;13349:33;13329:18;;;13322:61;13400:18;;53532:89:0;13069:355:1;53532:89:0;53657:22;;53640:13;:39;;53632:104;;;;-1:-1:-1;;;53632:104:0;;18057:2:1;53632:104:0;;;18039:21:1;18096:2;18076:18;;;18069:30;18135:34;18115:18;;;18108:62;-1:-1:-1;;;18186:18:1;;;18179:50;18246:19;;53632:104:0;17855:416:1;53632:104:0;53755:10;;53788:9;;53755:29;;53770:13;53755:14;:29::i;:::-;:42;;53747:87;;;;-1:-1:-1;;;53747:87:0;;12910:2:1;53747:87:0;;;12892:21:1;;;12929:18;;;12922:30;12988:34;12968:18;;;12961:62;13040:18;;53747:87:0;12708:356:1;53747:87:0;53851:6;53847:292;53867:13;53863:1;:17;53847:292;;;53902:14;53919:13;41652:10;:17;;41564:113;53919:13;53902:30;;53967:9;;53951:13;41652:10;:17;;41564:113;53951:13;:25;53947:181;;;53997:32;54007:10;54019:9;53997;:32::i;:::-;54094:10;54078:27;;;;:15;:27;;;;;;:34;;54110:1;54078:31;:34::i;:::-;54064:10;54048:27;;;;:15;:27;;;;;:64;53947:181;-1:-1:-1;53882:3:0;;;;:::i;:::-;;;;53847:292;;54240:261;48174:6;;-1:-1:-1;;;;;48174:6:0;22727:10;48321:23;48313:68;;;;-1:-1:-1;;;48313:68:0;;;;;;;:::i;:::-;54323:9:::1;54318:176;54342:7;:14;54338:1;:18;54318:176;;;54412:24;54378:19;:31;54398:7;54406:1;54398:10;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;54378:31:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;54378:31:0;:58;;-1:-1:-1;;54378:58:0::1;::::0;;;;::::1;;;;;;:::i;:::-;;;;;;54481:1;54451:15;:27;54467:7;54475:1;54467:10;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;54451:27:0::1;-1:-1:-1::0;;;;;54451:27:0::1;;;;;;;;;;;;:31;;;;54358:3;;;;;:::i;:::-;;;;54318:176;;55592:127:::0;48174:6;;-1:-1:-1;;;;;48174:6:0;22727:10;48321:23;48313:68;;;;-1:-1:-1;;;48313:68:0;;;;;;;:::i;:::-;55671:29:::1;:40:::0;55592:127::o;51619:275::-;48174:6;;-1:-1:-1;;;;;48174:6:0;22727:10;48321:23;48313:68;;;;-1:-1:-1;;;48313:68:0;;;;;;;:::i;:::-;51691:6:::1;51687:200;51707:8;51703:1;:12;51687:200;;;51737:14;51754:13;41652:10:::0;:17;;41564:113;51754:13:::1;51737:30;;51798:9;;51786;:21;51782:94;;;51828:32;51838:10;51850:9;51828;:32::i;:::-;-1:-1:-1::0;51717:3:0;::::1;::::0;::::1;:::i;:::-;;;;51687:200;;28353:104:::0;28409:13;28442:7;28435:14;;;;;:::i;29937:295::-;-1:-1:-1;;;;;30040:24:0;;22727:10;30040:24;;30032:62;;;;-1:-1:-1;;;30032:62:0;;10536:2:1;30032:62:0;;;10518:21:1;10575:2;10555:18;;;10548:30;10614:27;10594:18;;;10587:55;10659:18;;30032:62:0;10334:349:1;30032:62:0;22727:10;30107:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30107:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30107:53:0;;;;;;;;;;30176:48;;7290:41:1;;;30107:42:0;;22727:10;30176:48;;7263:18:1;30176:48:0;;;;;;;29937:295;;:::o;31132:285::-;31264:41;22727:10;31297:7;31264:18;:41::i;:::-;31256:103;;;;-1:-1:-1;;;31256:103:0;;;;;;;:::i;:::-;31370:39;31384:4;31390:2;31394:7;31403:5;31370:13;:39::i;:::-;31132:285;;;;:::o;54969:95::-;48174:6;;-1:-1:-1;;;;;48174:6:0;22727:10;48321:23;48313:68;;;;-1:-1:-1;;;48313:68:0;;;;;;;:::i;:::-;55041:15:::1;::::0;;-1:-1:-1;;55022:34:0;::::1;55041:15;::::0;;;::::1;;;55040:16;55022:34:::0;;::::1;;::::0;;54969:95::o;50738:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28528:360::-;32949:4;32973:16;;;:7;:16;;;;;;28601:13;;-1:-1:-1;;;;;32973:16:0;28627:76;;;;-1:-1:-1;;;28627:76:0;;14815:2:1;28627:76:0;;;14797:21:1;14854:2;14834:18;;;14827:30;14893:34;14873:18;;;14866:62;-1:-1:-1;;;14944:18:1;;;14937:45;14999:19;;28627:76:0;14613:411:1;28627:76:0;28716:21;28740:10;:8;:10::i;:::-;28716:34;;28792:1;28774:7;28768:21;:25;:112;;;;;;;;;;;;;;;;;28833:7;28842:18;:7;:16;:18::i;:::-;28816:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28768:112;28761:119;28528:360;-1:-1:-1;;;28528:360:0:o;51924:200::-;52007:6;52003:114;52023:8;:15;52019:1;:19;52003:114;;;52060:45;52077:10;52089:2;52093:8;52102:1;52093:11;;;;;;;;:::i;:::-;;;;;;;52060:16;:45::i;:::-;52040:3;;;;:::i;:::-;;;;52003:114;;49055:244;48174:6;;-1:-1:-1;;;;;48174:6:0;22727:10;48321:23;48313:68;;;;-1:-1:-1;;;48313:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49144:22:0;::::1;49136:73;;;::::0;-1:-1:-1;;;49136:73:0;;9367:2:1;49136:73:0::1;::::0;::::1;9349:21:1::0;9406:2;9386:18;;;9379:30;9445:34;9425:18;;;9418:62;-1:-1:-1;;;9496:18:1;;;9489:36;9542:19;;49136:73:0::1;9165:402:1::0;49136:73:0::1;49246:6;::::0;49225:38:::1;::::0;-1:-1:-1;;;;;49225:38:0;;::::1;::::0;49246:6:::1;::::0;49225:38:::1;::::0;49246:6:::1;::::0;49225:38:::1;49274:6;:17:::0;;-1:-1:-1;;;;;;49274:17:0::1;-1:-1:-1::0;;;;;49274:17:0;;;::::1;::::0;;;::::1;::::0;;49055:244::o;56080:139::-;48174:6;;-1:-1:-1;;;;;48174:6:0;22727:10;48321:23;48313:68;;;;-1:-1:-1;;;48313:68:0;;;;;;;:::i;:::-;56183:28;;::::1;::::0;:14:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;27252:292::-:0;27354:4;-1:-1:-1;;;;;;27378:40:0;;-1:-1:-1;;;27378:40:0;;:105;;-1:-1:-1;;;;;;;27435:48:0;;-1:-1:-1;;;27435:48:0;27378:105;:158;;;-1:-1:-1;;;;;;;;;;25904:40:0;;;27500:36;25795:157;36761:174;36836:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36836:29:0;-1:-1:-1;;;;;36836:29:0;;;;;;;;:24;;36890:23;36836:24;36890:14;:23::i;:::-;-1:-1:-1;;;;;36881:46:0;;;;;;;;;;;36761:174;;:::o;33178:348::-;33271:4;32973:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32973:16:0;33288:73;;;;-1:-1:-1;;;33288:73:0;;10890:2:1;33288:73:0;;;10872:21:1;10929:2;10909:18;;;10902:30;10968:34;10948:18;;;10941:62;-1:-1:-1;;;11019:18:1;;;11012:42;11071:19;;33288:73:0;10688:408:1;33288:73:0;33372:13;33388:23;33403:7;33388:14;:23::i;:::-;33372:39;;33441:5;-1:-1:-1;;;;;33430:16:0;:7;-1:-1:-1;;;;;33430:16:0;;:51;;;;33474:7;-1:-1:-1;;;;;33450:31:0;:20;33462:7;33450:11;:20::i;:::-;-1:-1:-1;;;;;33450:31:0;;33430:51;:87;;;-1:-1:-1;;;;;;30424:25:0;;;30400:4;30424:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33485:32;33422:96;33178:348;-1:-1:-1;;;;33178:348:0:o;36099:544::-;36224:4;-1:-1:-1;;;;;36197:31:0;:23;36212:7;36197:14;:23::i;:::-;-1:-1:-1;;;;;36197:31:0;;36189:85;;;;-1:-1:-1;;;36189:85:0;;14405:2:1;36189:85:0;;;14387:21:1;14444:2;14424:18;;;14417:30;14483:34;14463:18;;;14456:62;-1:-1:-1;;;14534:18:1;;;14527:39;14583:19;;36189:85:0;14203:405:1;36189:85:0;-1:-1:-1;;;;;36293:16:0;;36285:65;;;;-1:-1:-1;;;36285:65:0;;10131:2:1;36285:65:0;;;10113:21:1;10170:2;10150:18;;;10143:30;10209:34;10189:18;;;10182:62;-1:-1:-1;;;10260:18:1;;;10253:34;10304:19;;36285:65:0;9929:400:1;36285:65:0;36363:39;36384:4;36390:2;36394:7;36363:20;:39::i;:::-;36467:29;36484:1;36488:7;36467:8;:29::i;:::-;-1:-1:-1;;;;;36509:15:0;;;;;;:9;:15;;;;;:20;;36528:1;;36509:15;:20;;36528:1;;36509:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36540:13:0;;;;;;:9;:13;;;;;:18;;36557:1;;36540:13;:18;;36557:1;;36540:18;:::i;:::-;;;;-1:-1:-1;;36569:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36569:21:0;-1:-1:-1;;;;;36569:21:0;;;;;;;;;36608:27;;36569:16;;36608:27;;;;;;;36099:544;;;:::o;2761:98::-;2819:7;2846:5;2850:1;2846;:5;:::i;3499:98::-;3557:7;3584:5;3588:1;3584;:5;:::i;33868:110::-;33944:26;33954:2;33958:7;33944:26;;;;;;;;;;;;:9;:26::i;32299:272::-;32413:28;32423:4;32429:2;32433:7;32413:9;:28::i;:::-;32460:48;32483:4;32489:2;32493:7;32502:5;32460:22;:48::i;:::-;32452:111;;;;-1:-1:-1;;;32452:111:0;;;;;;;:::i;55905:102::-;55957:13;55990:9;55983:16;;;;;:::i;23271:723::-;23327:13;23548:10;23544:53;;-1:-1:-1;;23575:10:0;;;;;;;;;;;;-1:-1:-1;;;23575:10:0;;;;;23271:723::o;23544:53::-;23622:5;23607:12;23663:78;23670:9;;23663:78;;23696:8;;;;:::i;:::-;;-1:-1:-1;23719:10:0;;-1:-1:-1;23727:2:0;23719:10;;:::i;:::-;;;23663:78;;;23751:19;23783:6;23773:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23773:17:0;;23751:39;;23801:154;23808:10;;23801:154;;23835:11;23845:1;23835:11;;:::i;:::-;;-1:-1:-1;23904:10:0;23912:2;23904:5;:10;:::i;:::-;23891:24;;:2;:24;:::i;:::-;23878:39;;23861:6;23868;23861:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;23861:56:0;;;;;;;;-1:-1:-1;23932:11:0;23941:2;23932:11;;:::i;:::-;;;23801:154;;42600:555;-1:-1:-1;;;;;42772:18:0;;42768:187;;42807:40;42839:7;43982:10;:17;;43955:24;;;;:15;:24;;;;;:44;;;44010:24;;;;;;;;;;;;43878:164;42807:40;42768:187;;;42877:2;-1:-1:-1;;;;;42869:10:0;:4;-1:-1:-1;;;;;42869:10:0;;42865:90;;42896:47;42929:4;42935:7;42896:32;:47::i;:::-;-1:-1:-1;;;;;42969:16:0;;42965:183;;43002:45;43039:7;43002:36;:45::i;42965:183::-;43075:4;-1:-1:-1;;;;;43069:10:0;:2;-1:-1:-1;;;;;43069:10:0;;43065:83;;43096:40;43124:2;43128:7;43096:27;:40::i;34205:250::-;34301:18;34307:2;34311:7;34301:5;:18::i;:::-;34338:54;34369:1;34373:2;34377:7;34386:5;34338:22;:54::i;:::-;34330:117;;;;-1:-1:-1;;;34330:117:0;;;;;;;:::i;37500:843::-;37621:4;-1:-1:-1;;;;;37647:13:0;;15162:20;15201:8;37643:693;;37683:72;;-1:-1:-1;;;37683:72:0;;-1:-1:-1;;;;;37683:36:0;;;;;:72;;22727:10;;37734:4;;37740:7;;37749:5;;37683:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37683:72:0;;;;;;;;-1:-1:-1;;37683:72:0;;;;;;;;;;;;:::i;:::-;;;37679:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37929:13:0;;37925:341;;37972:60;;-1:-1:-1;;;37972:60:0;;;;;;;:::i;37925:341::-;38216:6;38210:13;38201:6;38197:2;38193:15;38186:38;37679:602;-1:-1:-1;;;;;;37806:55:0;-1:-1:-1;;;37806:55:0;;-1:-1:-1;37799:62:0;;37643:693;-1:-1:-1;38320:4:0;37500:843;;;;;;:::o;44669:988::-;44935:22;44985:1;44960:22;44977:4;44960:16;:22::i;:::-;:26;;;;:::i;:::-;44997:18;45018:26;;;:17;:26;;;;;;44935:51;;-1:-1:-1;45151:28:0;;;45147:328;;-1:-1:-1;;;;;45218:18:0;;45196:19;45218:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45269:30;;;;;;:44;;;45386:30;;:17;:30;;;;;:43;;;45147:328;-1:-1:-1;45571:26:0;;;;:17;:26;;;;;;;;45564:33;;;-1:-1:-1;;;;;45615:18:0;;;;;:12;:18;;;;;:34;;;;;;;45608:41;44669:988::o;45952:1079::-;46230:10;:17;46205:22;;46230:21;;46250:1;;46230:21;:::i;:::-;46262:18;46283:24;;;:15;:24;;;;;;46656:10;:26;;46205:46;;-1:-1:-1;46283:24:0;;46205:46;;46656:26;;;;;;:::i;:::-;;;;;;;;;46634:48;;46720:11;46695:10;46706;46695:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46800:28;;;:15;:28;;;;;;;:41;;;46972:24;;;;;46965:31;47007:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;46023:1008;;;45952:1079;:::o;43456:221::-;43541:14;43558:20;43575:2;43558:16;:20::i;:::-;-1:-1:-1;;;;;43589:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43634:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43456:221:0:o;34791:382::-;-1:-1:-1;;;;;34871:16:0;;34863:61;;;;-1:-1:-1;;;34863:61:0;;12549:2:1;34863:61:0;;;12531:21:1;;;12568:18;;;12561:30;12627:34;12607:18;;;12600:62;12679:18;;34863:61:0;12347:356:1;34863:61:0;32949:4;32973:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32973:16:0;:30;34935:58;;;;-1:-1:-1;;;34935:58:0;;9774:2:1;34935:58:0;;;9756:21:1;9813:2;9793:18;;;9786:30;9852;9832:18;;;9825:58;9900:18;;34935:58:0;9572:352:1;34935:58:0;35006:45;35035:1;35039:2;35043:7;35006:20;:45::i;:::-;-1:-1:-1;;;;;35064:13:0;;;;;;:9;:13;;;;;:18;;35081:1;;35064:13;:18;;35081:1;;35064:18;:::i;:::-;;;;-1:-1:-1;;35093:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35093:21:0;-1:-1:-1;;;;;35093:21:0;;;;;;;;35132:33;;35093:16;;;35132:33;;35093:16;;35132:33;34791:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;1819:18;1811:6;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:976::-;2156:6;2164;2217:2;2205:9;2196:7;2192:23;2188:32;2185:52;;;2233:1;2230;2223:12;2185:52;2256:29;2275:9;2256:29;:::i;:::-;2246:39;;2304:2;2357;2346:9;2342:18;2329:32;2384:18;2376:6;2373:30;2370:50;;;2416:1;2413;2406:12;2370:50;2439:22;;2492:4;2484:13;;2480:27;-1:-1:-1;2470:55:1;;2521:1;2518;2511:12;2470:55;2557:2;2544:16;2580:60;2596:43;2636:2;2596:43;:::i;:::-;2580:60;:::i;:::-;2662:3;2686:2;2681:3;2674:15;2714:2;2709:3;2705:12;2698:19;;2745:2;2741;2737:11;2793:7;2788:2;2782;2779:1;2775:10;2771:2;2767:19;2763:28;2760:41;2757:61;;;2814:1;2811;2804:12;2757:61;2836:1;2827:10;;2846:163;2860:2;2857:1;2854:9;2846:163;;;2917:17;;2905:30;;2878:1;2871:9;;;;;2955:12;;;;2987;;2846:163;;;2850:3;3028:5;3018:15;;;;;;;2063:976;;;;;:::o;3044:347::-;3109:6;3117;3170:2;3158:9;3149:7;3145:23;3141:32;3138:52;;;3186:1;3183;3176:12;3138:52;3209:29;3228:9;3209:29;:::i;:::-;3199:39;;3288:2;3277:9;3273:18;3260:32;3335:5;3328:13;3321:21;3314:5;3311:32;3301:60;;3357:1;3354;3347:12;3301:60;3380:5;3370:15;;;3044:347;;;;;:::o;3396:254::-;3464:6;3472;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3564:29;3583:9;3564:29;:::i;:::-;3554:39;3640:2;3625:18;;;;3612:32;;-1:-1:-1;;;3396:254:1:o;3655:908::-;3739:6;3770:2;3813;3801:9;3792:7;3788:23;3784:32;3781:52;;;3829:1;3826;3819:12;3781:52;3869:9;3856:23;3902:18;3894:6;3891:30;3888:50;;;3934:1;3931;3924:12;3888:50;3957:22;;4010:4;4002:13;;3998:27;-1:-1:-1;3988:55:1;;4039:1;4036;4029:12;3988:55;4075:2;4062:16;4098:60;4114:43;4154:2;4114:43;:::i;4098:60::-;4180:3;4204:2;4199:3;4192:15;4232:2;4227:3;4223:12;4216:19;;4263:2;4259;4255:11;4311:7;4306:2;4300;4297:1;4293:10;4289:2;4285:19;4281:28;4278:41;4275:61;;;4332:1;4329;4322:12;4275:61;4354:1;4345:10;;4364:169;4378:2;4375:1;4372:9;4364:169;;;4435:23;4454:3;4435:23;:::i;:::-;4423:36;;4396:1;4389:9;;;;;4479:12;;;;4511;;4364:169;;;-1:-1:-1;4552:5:1;3655:908;-1:-1:-1;;;;;;;3655:908:1:o;4568:245::-;4626:6;4679:2;4667:9;4658:7;4654:23;4650:32;4647:52;;;4695:1;4692;4685:12;4647:52;4734:9;4721:23;4753:30;4777:5;4753:30;:::i;4818:249::-;4887:6;4940:2;4928:9;4919:7;4915:23;4911:32;4908:52;;;4956:1;4953;4946:12;4908:52;4988:9;4982:16;5007:30;5031:5;5007:30;:::i;5072:450::-;5141:6;5194:2;5182:9;5173:7;5169:23;5165:32;5162:52;;;5210:1;5207;5200:12;5162:52;5250:9;5237:23;5283:18;5275:6;5272:30;5269:50;;;5315:1;5312;5305:12;5269:50;5338:22;;5391:4;5383:13;;5379:27;-1:-1:-1;5369:55:1;;5420:1;5417;5410:12;5369:55;5443:73;5508:7;5503:2;5490:16;5485:2;5481;5477:11;5443:73;:::i;5527:180::-;5586:6;5639:2;5627:9;5618:7;5614:23;5610:32;5607:52;;;5655:1;5652;5645:12;5607:52;-1:-1:-1;5678:23:1;;5527:180;-1:-1:-1;5527:180:1:o;5712:257::-;5753:3;5791:5;5785:12;5818:6;5813:3;5806:19;5834:63;5890:6;5883:4;5878:3;5874:14;5867:4;5860:5;5856:16;5834:63;:::i;:::-;5951:2;5930:15;-1:-1:-1;;5926:29:1;5917:39;;;;5958:4;5913:50;;5712:257;-1:-1:-1;;5712:257:1:o;5974:470::-;6153:3;6191:6;6185:13;6207:53;6253:6;6248:3;6241:4;6233:6;6229:17;6207:53;:::i;:::-;6323:13;;6282:16;;;;6345:57;6323:13;6282:16;6379:4;6367:17;;6345:57;:::i;:::-;6418:20;;5974:470;-1:-1:-1;;;;5974:470:1:o;6657:488::-;-1:-1:-1;;;;;6926:15:1;;;6908:34;;6978:15;;6973:2;6958:18;;6951:43;7025:2;7010:18;;7003:34;;;7073:3;7068:2;7053:18;;7046:31;;;6851:4;;7094:45;;7119:19;;7111:6;7094:45;:::i;:::-;7086:53;6657:488;-1:-1:-1;;;;;;6657:488:1:o;7342:219::-;7491:2;7480:9;7473:21;7454:4;7511:44;7551:2;7540:9;7536:18;7528:6;7511:44;:::i;8746:414::-;8948:2;8930:21;;;8987:2;8967:18;;;8960:30;9026:34;9021:2;9006:18;;8999:62;-1:-1:-1;;;9092:2:1;9077:18;;9070:48;9150:3;9135:19;;8746:414::o;13842:356::-;14044:2;14026:21;;;14063:18;;;14056:30;14122:34;14117:2;14102:18;;14095:62;14189:2;14174:18;;13842:356::o;15853:405::-;16055:2;16037:21;;;16094:2;16074:18;;;16067:30;16133:34;16128:2;16113:18;;16106:62;-1:-1:-1;;;16199:2:1;16184:18;;16177:39;16248:3;16233:19;;15853:405::o;16666:413::-;16868:2;16850:21;;;16907:2;16887:18;;;16880:30;16946:34;16941:2;16926:18;;16919:62;-1:-1:-1;;;17012:2:1;16997:18;;16990:47;17069:3;17054:19;;16666:413::o;18458:275::-;18529:2;18523:9;18594:2;18575:13;;-1:-1:-1;;18571:27:1;18559:40;;18629:18;18614:34;;18650:22;;;18611:62;18608:88;;;18676:18;;:::i;:::-;18712:2;18705:22;18458:275;;-1:-1:-1;18458:275:1:o;18738:183::-;18798:4;18831:18;18823:6;18820:30;18817:56;;;18853:18;;:::i;:::-;-1:-1:-1;18898:1:1;18894:14;18910:4;18890:25;;18738:183::o;18926:128::-;18966:3;18997:1;18993:6;18990:1;18987:13;18984:39;;;19003:18;;:::i;:::-;-1:-1:-1;19039:9:1;;18926:128::o;19059:120::-;19099:1;19125;19115:35;;19130:18;;:::i;:::-;-1:-1:-1;19164:9:1;;19059:120::o;19184:168::-;19224:7;19290:1;19286;19282:6;19278:14;19275:1;19272:21;19267:1;19260:9;19253:17;19249:45;19246:71;;;19297:18;;:::i;:::-;-1:-1:-1;19337:9:1;;19184:168::o;19357:125::-;19397:4;19425:1;19422;19419:8;19416:34;;;19430:18;;:::i;:::-;-1:-1:-1;19467:9:1;;19357:125::o;19487:258::-;19559:1;19569:113;19583:6;19580:1;19577:13;19569:113;;;19659:11;;;19653:18;19640:11;;;19633:39;19605:2;19598:10;19569:113;;;19700:6;19697:1;19694:13;19691:48;;;-1:-1:-1;;19735:1:1;19717:16;;19710:27;19487:258::o;19750:380::-;19829:1;19825:12;;;;19872;;;19893:61;;19947:4;19939:6;19935:17;19925:27;;19893:61;20000:2;19992:6;19989:14;19969:18;19966:38;19963:161;;;20046:10;20041:3;20037:20;20034:1;20027:31;20081:4;20078:1;20071:15;20109:4;20106:1;20099:15;19963:161;;19750:380;;;:::o;20135:135::-;20174:3;-1:-1:-1;;20195:17:1;;20192:43;;;20215:18;;:::i;:::-;-1:-1:-1;20262:1:1;20251:13;;20135:135::o;20275:112::-;20307:1;20333;20323:35;;20338:18;;:::i;:::-;-1:-1:-1;20372:9:1;;20275:112::o;20392:127::-;20453:10;20448:3;20444:20;20441:1;20434:31;20484:4;20481:1;20474:15;20508:4;20505:1;20498:15;20524:127;20585:10;20580:3;20576:20;20573:1;20566:31;20616:4;20613:1;20606:15;20640:4;20637:1;20630:15;20656:127;20717:10;20712:3;20708:20;20705:1;20698:31;20748:4;20745:1;20738:15;20772:4;20769:1;20762:15;20788:127;20849:10;20844:3;20840:20;20837:1;20830:31;20880:4;20877:1;20870:15;20904:4;20901:1;20894:15;20920:127;20981:10;20976:3;20972:20;20969:1;20962:31;21012:4;21009:1;21002:15;21036:4;21033:1;21026:15;21052:127;21113:10;21108:3;21104:20;21101:1;21094:31;21144:4;21141:1;21134:15;21168:4;21165:1;21158:15;21184:131;-1:-1:-1;;;;;;21258:32:1;;21248:43;;21238:71;;21305:1;21302;21295:12;21238:71;21184:131;:::o

Swarm Source

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