ETH Price: $3,468.40 (+1.77%)
Gas: 8 Gwei

Token

SEASON 0: GENESIS (MNFST0)
 

Overview

Max Total Supply

999 MNFST0

Holders

232

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
wagmicrypto.eth
0x3c1c5dd60d1c28ca1adf907b08737ededf6d29fb
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:
ManifestGenesisERC1155

Compiler Version
v0.7.5+commit.eb77ed08

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-11-24
*/

// Sources flattened with hardhat v2.6.7 https://hardhat.org

// File @openzeppelin/contracts/introspection/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]



pragma solidity >=0.6.2 <0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC1155/[email protected]



pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values);

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(address from, address to, uint256 id, uint256 amount, bytes calldata data) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data) external;
}


// File @openzeppelin/contracts/token/ERC1155/[email protected]



pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}


// File @openzeppelin/contracts/token/ERC1155/[email protected]



pragma solidity >=0.6.0 <0.8.0;

/**
 * _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {

    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    )
        external
        returns(bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    )
        external
        returns(bytes4);
}


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity >=0.6.0 <0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}


// File @openzeppelin/contracts/introspection/[email protected]



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}


// File @openzeppelin/contracts/math/[email protected]



pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
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) {
        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) {
        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) {
        // 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) {
        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) {
        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) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @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) {
        require(b <= a, "SafeMath: subtraction overflow");
        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) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    /**
     * @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. 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) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        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) {
        require(b > 0, "SafeMath: modulo by zero");
        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) {
        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.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * 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) {
        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) {
        require(b > 0, errorMessage);
        return a % b;
    }
}


// File @openzeppelin/contracts/utils/[email protected]



pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

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

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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


// File @openzeppelin/contracts/token/ERC1155/[email protected]



pragma solidity >=0.6.0 <0.8.0;







/**
 *
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using SafeMath for uint256;
    using Address for address;

    // Mapping from token ID to account balances
    mapping (uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /*
     *     bytes4(keccak256('balanceOf(address,uint256)')) == 0x00fdd58e
     *     bytes4(keccak256('balanceOfBatch(address[],uint256[])')) == 0x4e1273f4
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,uint256,bytes)')) == 0xf242432a
     *     bytes4(keccak256('safeBatchTransferFrom(address,address,uint256[],uint256[],bytes)')) == 0x2eb2c2d6
     *
     *     => 0x00fdd58e ^ 0x4e1273f4 ^ 0xa22cb465 ^
     *        0xe985e9c5 ^ 0xf242432a ^ 0x2eb2c2d6 == 0xd9b67a26
     */
    bytes4 private constant _INTERFACE_ID_ERC1155 = 0xd9b67a26;

    /*
     *     bytes4(keccak256('uri(uint256)')) == 0x0e89341c
     */
    bytes4 private constant _INTERFACE_ID_ERC1155_METADATA_URI = 0x0e89341c;

    /**
     * @dev See {_setURI}.
     */
    constructor (string memory uri_) public {
        _setURI(uri_);

        // register the supported interfaces to conform to ERC1155 via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155);

        // register the supported interfaces to conform to ERC1155MetadataURI via ERC165
        _registerInterface(_INTERFACE_ID_ERC1155_METADATA_URI);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) external view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(
        address[] memory accounts,
        uint256[] memory ids
    )
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(_msgSender() != operator, "ERC1155: setting approval status for self");

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

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][from] = _balances[id][from].sub(amount, "ERC1155: insufficient balance for transfer");
        _balances[id][to] = _balances[id][to].add(amount);

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        public
        virtual
        override
    {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            _balances[id][from] = _balances[id][from].sub(
                amount,
                "ERC1155: insufficient balance for transfer"
            );
            _balances[id][to] = _balances[id][to].add(amount);
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `account`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(address account, uint256 id, uint256 amount, bytes memory data) internal virtual {
        require(account != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][account] = _balances[id][account].add(amount);
        emit TransferSingle(operator, address(0), account, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), account, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] = amounts[i].add(_balances[ids[i]][to]);
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `account`
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens of token type `id`.
     */
    function _burn(address account, uint256 id, uint256 amount) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        _balances[id][account] = _balances[id][account].sub(
            amount,
            "ERC1155: burn amount exceeds balance"
        );

        emit TransferSingle(operator, account, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(address account, uint256[] memory ids, uint256[] memory amounts) internal virtual {
        require(account != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, account, address(0), ids, amounts, "");

        for (uint i = 0; i < ids.length; i++) {
            _balances[ids[i]][account] = _balances[ids[i]][account].sub(
                amounts[i],
                "ERC1155: burn amount exceeds balance"
            );
        }

        emit TransferBatch(operator, account, address(0), ids, amounts);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        internal
        virtual
    { }

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    )
        private
    {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (bytes4 response) {
                if (response != IERC1155Receiver(to).onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}


// File @openzeppelin/contracts/access/[email protected]



pragma solidity >=0.6.0 <0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        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/ManifestGenesisERC1155.sol

pragma solidity ^0.7.5;




// import "hardhat/console.sol";

interface IERC721Contract {
    function balanceOf(address owner) external view returns (uint256 balance);
}

interface IERC20Contract {
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
}

abstract contract ManifestGenesisERC1155v1Contract {
    function checkSaleEligiblity(address _address) virtual public view returns (bool);
}

contract ManifestGenesisERC1155 is ERC1155, Ownable {

    event HoodieMinted(address sender, uint256 id);

    struct TokenWhitelist {
        address tokenAddress;
        bool isEnabled;
    }

    string public name = "SEASON 0: GENESIS";
    string public symbol = "MNFST0";

    uint256 public constant TOKEN_HOODIE_1 = 1;
    uint256 public constant TOKEN_HOODIE_2 = 2;
    uint256 public constant TOKEN_HOODIE_3 = 3;
    uint256 public MAX_PER_WALLET = 3;

    uint256 public price = 0.333 ether;
    
    uint256 public totalRemaining1 = 222;
    uint256 public totalRemaining2 = 222;
    uint256 public totalRemaining3 = 222;

    address public treasury;
    address public sMNFST;
    address public genesisV1;

    bool public treasuryHasMinted;
    bool public saleIsActive;
    bool public whitelistDisabled;

    TokenWhitelist[] public tokenWhitelistInfo;
    mapping(address => bool) private addressEligible;

    mapping( address => uint256 ) private totalClaimed;

    constructor (address _treasury, address _sMNFST, address _genesisV1, string memory _uri) ERC1155(_uri) {
        treasury = _treasury;
        sMNFST = _sMNFST;
        genesisV1 = _genesisV1;
    }

    function setTreasury(address _treasury) external onlyOwner {
        treasury = _treasury;
    }

    function setsMNFST(address _sMNFST) external onlyOwner {
        sMNFST = _sMNFST;
    }

    function setGenesisV1(address _genesisV1) external onlyOwner {
        genesisV1 = _genesisV1;
    }

    function toggleSaleIsActive() external onlyOwner {
        if (!saleIsActive) {
            require(
                IERC20Contract( sMNFST ).balanceOf(address(this)) >= 33 * (totalRemaining1 + totalRemaining2 + totalRemaining3) * 10 ** 9, 
                "NOT_ENOUGH_SMNFST"
            );
        }
        saleIsActive = !saleIsActive;
    }

    function toggleWhitelistIsEnabled() external onlyOwner {
        whitelistDisabled = !whitelistDisabled;
    }


    function addWhitelistToken(address _address, bool _isEnabled) public onlyOwner {
        require(_address != address(0));

        // check if token was already added
        for (uint256 i = 0; i < tokenWhitelistInfo.length; i++) {
            if (tokenWhitelistInfo[i].tokenAddress == _address) {
                // update info
                tokenWhitelistInfo[i].isEnabled = _isEnabled;
                return;
            }
        }
        
        // add new token with info
        tokenWhitelistInfo.push(TokenWhitelist({
            tokenAddress: _address,
            isEnabled: _isEnabled
        }));
    }

    function addWhitelistAddress(address[] calldata addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "Cannot add null address");
            addressEligible[addresses[i]] = true;
        }
    }

    function mint(uint256 hoodieId) external payable {
        require(saleIsActive, "SALE_NOT_STARTED");
        require(msg.value == price, "WRONG_ETH");
        require(totalClaimed[msg.sender] < MAX_PER_WALLET, "EXCEEDS_MAX_PER_WALLET");
        require(checkSaleEligiblity(msg.sender), "NOT_ELIGIBLE");

        if (hoodieId == TOKEN_HOODIE_1) {
            require(totalRemaining1 > 0, "AMOUNT_EXCEEDS_REMAINING");
            totalRemaining1--;
        }
        else if (hoodieId == TOKEN_HOODIE_2) {
            require(totalRemaining2 > 0, "AMOUNT_EXCEEDS_REMAINING");
            totalRemaining2--;
        }
        else if (hoodieId == TOKEN_HOODIE_3) {
            require(totalRemaining3 > 0, "AMOUNT_EXCEEDS_REMAINING");
            totalRemaining3--;
        }
        else {
            revert("WRONG_HOODIE_ID");
        }

        totalClaimed[msg.sender] += 1;

        // mint the hoodie
        _mint(msg.sender, hoodieId, 1, '');
        // send the sMNFST
        IERC20Contract( sMNFST ).transfer(msg.sender, 33 * 10 ** 9);
        
        emit HoodieMinted(msg.sender, hoodieId);
    }
    
    function setURI(string memory _newUri) public onlyOwner {
        _setURI(_newUri);
    }

    function setPrice(uint256 inPrice) public onlyOwner returns (uint256) {
        price = inPrice;
        return price;
    }

    function checkSaleEligiblity(address _address) public view returns (bool) {
        // check if whitelist is disabled (false by default)
        if (whitelistDisabled) {
            return true;
        }

        // check previously deployed genesis contract (if set) to re-use the whitelist there
        if (genesisV1 != address(0)) {
            if ( ManifestGenesisERC1155v1Contract( genesisV1 ).checkSaleEligiblity(_address) ) {
                return true;
            }
        }

        // check token whitelist
        for ( uint i = 0; i < tokenWhitelistInfo.length; i++ ) {
            if (tokenWhitelistInfo[i].isEnabled == false) {
                continue;
            }

            if (IERC721Contract( tokenWhitelistInfo[i].tokenAddress ).balanceOf(_address) > 0) {
                return true;
            }
        }

        // check individual address list if they don't have any balances for whitelist tokens
        return addressEligible[_address];
    }

    function totalClaimedBy(address owner) external view returns (uint256) {
        require(owner != address(0), "NULL_ADDR");

        return totalClaimed[owner];
    }

    function totalSupply(uint256 _id) public view returns (uint256) {
        uint256 treasuryNum = 0;

        if (treasuryHasMinted)
        {
            treasuryNum = 111;
        }

        if (_id == TOKEN_HOODIE_1) {
            return (222 - totalRemaining1) + treasuryNum;
        }

        if (_id == TOKEN_HOODIE_2) {
            return (222 - totalRemaining2) + treasuryNum;
        }

        if (_id == TOKEN_HOODIE_3) {
            return (222 - totalRemaining3) + treasuryNum;
        }

        return 0;
    }

    function totalHoodiesMinted() public view returns (uint256) {
        uint256 treasuryNum = 0;

        if (treasuryHasMinted)
        {
            treasuryNum = 333;
        }

        return (666 - totalRemaining1 - totalRemaining2 - totalRemaining3) + treasuryNum;
    }

    function mintToTreasury() public onlyOwner {
        require(treasuryHasMinted == false, "TREASURY_HAS_MINTED");

        uint256[] memory tokens = new uint256[](3);
        tokens[0] = TOKEN_HOODIE_1;
        tokens[1] = TOKEN_HOODIE_2;
        tokens[2] = TOKEN_HOODIE_3;

        uint256[] memory totals = new uint256[](3);
        totals[0] = 111;
        totals[1] = 111;
        totals[2] = 111;

        _mintBatch(treasury, tokens, totals, '');
        treasuryHasMinted = true;
    }

    function withdrawAllEth() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "NO_BALANCE");
        (bool success, ) = treasury.call{ value: balance }("");
        require(success, "FAILED_WITHDRAW");
    }

    function withdrawAllsMNFST() public onlyOwner {
        require(!saleIsActive, "NO_WITHDRAW_DURING_SALE");
        uint256 sMNFSTBalance = IERC20Contract( sMNFST ).balanceOf(address(this));
        require(sMNFSTBalance > 0, "NO_SMNFST_BALANCE");
        IERC20Contract( sMNFST ).transfer(treasury, sMNFSTBalance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_treasury","type":"address"},{"internalType":"address","name":"_sMNFST","type":"address"},{"internalType":"address","name":"_genesisV1","type":"address"},{"internalType":"string","name":"_uri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"}],"name":"HoodieMinted","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_HOODIE_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_HOODIE_2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_HOODIE_3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addWhitelistAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isEnabled","type":"bool"}],"name":"addWhitelistToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"checkSaleEligiblity","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisV1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"hoodieId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintToTreasury","outputs":[],"stateMutability":"nonpayable","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":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sMNFST","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_genesisV1","type":"address"}],"name":"setGenesisV1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"inPrice","type":"uint256"}],"name":"setPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasury","type":"address"}],"name":"setTreasury","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newUri","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sMNFST","type":"address"}],"name":"setsMNFST","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistIsEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenWhitelistInfo","outputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"bool","name":"isEnabled","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"totalClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalHoodiesMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRemaining1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRemaining2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRemaining3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasury","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"treasuryHasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistDisabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAllEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllsMNFST","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526011608081905270534541534f4e20303a2047454e4553495360781b60a090815262000034916005919062000304565b506040805180820190915260068082526504d4e465354360d41b602090920191825262000062918162000304565b50600360075567049f0dbc5634800060085560de60095560de600a5560de600b553480156200009057600080fd5b5060405162003ba538038062003ba583398181016040526080811015620000b657600080fd5b815160208301516040808501516060860180519251949693959194939182019284640100000000821115620000ea57600080fd5b9083019060208201858111156200010057600080fd5b82516401000000008111828201881017156200011b57600080fd5b82525081516020918201929091019080838360005b838110156200014a57818101518382015260200162000130565b50505050905090810190601f168015620001785780820380516001836020036101000a031916815260200191505b50604052508291506200019490506301ffc9a760e01b62000262565b6200019f81620002e7565b620001b1636cdb3d1360e11b62000262565b620001c36303a24d0760e21b62000262565b506000620001d062000300565b600480546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050600c80546001600160a01b039485166001600160a01b031991821617909155600d805493851693821693909317909255600e8054919093169116179055620003b0565b6001600160e01b03198082161415620002c2576040805162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b8051620002fc90600390602084019062000304565b5050565b3390565b828054600181600116156101000203166002900490600052602060002090601f0160209004810192826200033c576000855562000387565b82601f106200035757805160ff191683800117855562000387565b8280016001018555821562000387579182015b82811115620003875782518255916020019190600101906200036a565b506200039592915062000399565b5090565b5b808211156200039557600081556001016200039a565b6137e580620003c06000396000f3fe6080604052600436106102715760003560e01c80637b7f57311161014f578063b9b50111116100c1578063e985e9c51161007a578063e985e9c514610c0e578063eb8d244414610c49578063f0f4426014610c5e578063f242432a14610c91578063f2fde38b14610d67578063fddadad414610d9a57610271565b8063b9b5011114610b25578063bd85b03914610b58578063c5bd75da14610b82578063c83da7e114610b97578063cb96db4814610bac578063cbb4569514610bf957610271565b80639b9ccd2f116101135780639b9ccd2f14610a5b578063a035b1fe14610a8e578063a0712d6814610aa3578063a11d122614610ac0578063a22cb46514610ad5578063aefa5e4a14610b1057610271565b80637b7f5731146109dd57806380c8b0ef146109f25780638da5cb5b14610a0757806391b7f5ed14610a1c57806395d89b4114610a4657610271565b80632b1dd8e5116101e857806361d027b3116101ac57806361d027b3146109255780636fa435d7146109565780637108f9531461096b578063715018a61461099e57806375969b12146109b35780637976c28b146109c857610271565b80632b1dd8e5146105325780632eb2c2d6146105ad57806345b99a981461077b5780634e1273f414610790578063519af30e1461091057610271565b80630e89341c1161023a5780630e89341c1461045b5780630f2cdd6c146104855780631c33399a1461049a5780631c8e8568146104d55780631e940721146104ea578063222a6e251461051d57610271565b8062fdd58e1461027657806301ffc9a7146102c157806302fe53051461030957806306fdde03146103bc5780630d082b3714610446575b600080fd5b34801561028257600080fd5b506102af6004803603604081101561029957600080fd5b506001600160a01b038135169060200135610daf565b60408051918252519081900360200190f35b3480156102cd57600080fd5b506102f5600480360360208110156102e457600080fd5b50356001600160e01b031916610e1e565b604080519115158252519081900360200190f35b34801561031557600080fd5b506103ba6004803603602081101561032c57600080fd5b810190602081018135600160201b81111561034657600080fd5b82018360208201111561035857600080fd5b803590602001918460018302840111600160201b8311171561037957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610e41945050505050565b005b3480156103c857600080fd5b506103d1610eaf565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561040b5781810151838201526020016103f3565b50505050905090810190601f1680156104385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045257600080fd5b506102af610f3d565b34801561046757600080fd5b506103d16004803603602081101561047e57600080fd5b5035610f43565b34801561049157600080fd5b506102af610fdb565b3480156104a657600080fd5b506103ba600480360360408110156104bd57600080fd5b506001600160a01b0381351690602001351515610fe1565b3480156104e157600080fd5b506102f5611160565b3480156104f657600080fd5b506102af6004803603602081101561050d57600080fd5b50356001600160a01b0316611170565b34801561052957600080fd5b506102af6111d5565b34801561053e57600080fd5b506103ba6004803603602081101561055557600080fd5b810190602081018135600160201b81111561056f57600080fd5b82018360208201111561058157600080fd5b803590602001918460208302840111600160201b831117156105a257600080fd5b5090925090506111db565b3480156105b957600080fd5b506103ba600480360360a08110156105d057600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561060357600080fd5b82018360208201111561061557600080fd5b803590602001918460208302840111600160201b8311171561063657600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561068557600080fd5b82018360208201111561069757600080fd5b803590602001918460208302840111600160201b831117156106b857600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561070757600080fd5b82018360208201111561071957600080fd5b803590602001918460018302840111600160201b8311171561073a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611312945050505050565b34801561078757600080fd5b506102f5611610565b34801561079c57600080fd5b506108c0600480360360408110156107b357600080fd5b810190602081018135600160201b8111156107cd57600080fd5b8201836020820111156107df57600080fd5b803590602001918460208302840111600160201b8311171561080057600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561084f57600080fd5b82018360208201111561086157600080fd5b803590602001918460208302840111600160201b8311171561088257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611620945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156108fc5781810151838201526020016108e4565b505050509050019250505060405180910390f35b34801561091c57600080fd5b506103ba61170c565b34801561093157600080fd5b5061093a611848565b604080516001600160a01b039092168252519081900360200190f35b34801561096257600080fd5b506103ba611857565b34801561097757600080fd5b506102f56004803603602081101561098e57600080fd5b50356001600160a01b0316611a3d565b3480156109aa57600080fd5b506103ba611bf0565b3480156109bf57600080fd5b506102af611c9c565b3480156109d457600080fd5b506103ba611ca2565b3480156109e957600080fd5b5061093a611d25565b3480156109fe57600080fd5b506102af611d34565b348015610a1357600080fd5b5061093a611d39565b348015610a2857600080fd5b506102af60048036036020811015610a3f57600080fd5b5035611d49565b348015610a5257600080fd5b506103d1611db6565b348015610a6757600080fd5b506103ba60048036036020811015610a7e57600080fd5b50356001600160a01b0316611e11565b348015610a9a57600080fd5b506102af611e95565b6103ba60048036036020811015610ab957600080fd5b5035611e9b565b348015610acc57600080fd5b506103ba612247565b348015610ae157600080fd5b506103ba60048036036040811015610af857600080fd5b506001600160a01b03813516906020013515156123c4565b348015610b1c57600080fd5b506102af6124b3565b348015610b3157600080fd5b506103ba60048036036020811015610b4857600080fd5b50356001600160a01b03166124b8565b348015610b6457600080fd5b506102af60048036036020811015610b7b57600080fd5b503561253c565b348015610b8e57600080fd5b506102af6125a5565b348015610ba357600080fd5b506103ba6125d6565b348015610bb857600080fd5b50610bd660048036036020811015610bcf57600080fd5b50356127d9565b604080516001600160a01b03909316835290151560208301528051918290030190f35b348015610c0557600080fd5b506102af61280e565b348015610c1a57600080fd5b506102f560048036036040811015610c3157600080fd5b506001600160a01b0381358116916020013516612813565b348015610c5557600080fd5b506102f5612841565b348015610c6a57600080fd5b506103ba60048036036020811015610c8157600080fd5b50356001600160a01b0316612851565b348015610c9d57600080fd5b506103ba600480360360a0811015610cb457600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610cf357600080fd5b820183602082011115610d0557600080fd5b803590602001918460018302840111600160201b83111715610d2657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506128d5945050505050565b348015610d7357600080fd5b506103ba60048036036020811015610d8a57600080fd5b50356001600160a01b0316612aa0565b348015610da657600080fd5b5061093a612ba3565b60006001600160a01b038316610df65760405162461bcd60e51b815260040180806020018281038252602b8152602001806135fa602b913960400191505060405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b610e49612bb2565b6001600160a01b0316610e5a611d39565b6001600160a01b031614610ea3576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b610eac81612bb6565b50565b6005805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610f355780601f10610f0a57610100808354040283529160200191610f35565b820191906000526020600020905b815481529060010190602001808311610f1857829003601f168201915b505050505081565b60095481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610fcf5780601f10610fa457610100808354040283529160200191610fcf565b820191906000526020600020905b815481529060010190602001808311610fb257829003601f168201915b50505050509050919050565b60075481565b610fe9612bb2565b6001600160a01b0316610ffa611d39565b6001600160a01b031614611043576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b6001600160a01b03821661105657600080fd5b60005b600f548110156110d657826001600160a01b0316600f828154811061107a57fe5b6000918252602090912001546001600160a01b031614156110ce5781600f82815481106110a357fe5b60009182526020909120018054911515600160a01b0260ff60a01b199092169190911790555061115c565b600101611059565b50604080518082019091526001600160a01b03808416825282151560208301908152600f805460018101825560009190915292517f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802909301805491511515600160a01b0260ff60a01b19949093166001600160a01b031990921691909117929092161790555b5050565b600e54600160b01b900460ff1681565b60006001600160a01b0382166111b9576040805162461bcd60e51b8152602060048201526009602482015268272aa6262fa0a2222960b91b604482015290519081900360640190fd5b506001600160a01b031660009081526011602052604090205490565b600a5481565b6111e3612bb2565b6001600160a01b03166111f4611d39565b6001600160a01b03161461123d576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b60005b8181101561130d57600083838381811061125657fe5b905060200201356001600160a01b03166001600160a01b031614156112c2576040805162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015290519081900360640190fd5b6001601060008585858181106112d457fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611240565b505050565b81518351146113525760405162461bcd60e51b81526004018080602001828103825260288152602001806137676028913960400191505060405180910390fd5b6001600160a01b0384166113975760405162461bcd60e51b81526004018080602001828103825260258152602001806136746025913960400191505060405180910390fd5b61139f612bb2565b6001600160a01b0316856001600160a01b031614806113ca57506113ca856113c5612bb2565b612813565b6114055760405162461bcd60e51b81526004018080602001828103825260328152602001806136996032913960400191505060405180910390fd5b600061140f612bb2565b905061141f818787878787611608565b60005b845181101561152057600085828151811061143957fe5b60200260200101519050600085838151811061145157fe5b602002602001015190506114be816040518060600160405280602a81526020016136cb602a91396001600086815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002054612bc99092919063ffffffff16565b60008381526001602090815260408083206001600160a01b038e811685529252808320939093558a16815220546114f59082612c60565b60009283526001602081815260408086206001600160a01b038d168752909152909320555001611422565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156115a657818101518382015260200161158e565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156115e55781810151838201526020016115cd565b5050505090500194505050505060405180910390a4611608818787878787612cc1565b505050505050565b600e54600160a01b900460ff1681565b606081518351146116625760405162461bcd60e51b815260040180806020018281038252602981526020018061373e6029913960400191505060405180910390fd5b6060835167ffffffffffffffff8111801561167c57600080fd5b506040519080825280602002602001820160405280156116a6578160200160208202803683370190505b50905060005b8451811015611704576116e58582815181106116c457fe5b60200260200101518583815181106116d857fe5b6020026020010151610daf565b8282815181106116f157fe5b60209081029190910101526001016116ac565b509392505050565b611714612bb2565b6001600160a01b0316611725611d39565b6001600160a01b03161461176e576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b47806117ae576040805162461bcd60e51b815260206004820152600a6024820152694e4f5f42414c414e434560b01b604482015290519081900360640190fd5b600c546040516000916001600160a01b03169083908381818185875af1925050503d80600081146117fb576040519150601f19603f3d011682016040523d82523d6000602084013e611800565b606091505b505090508061115c576040805162461bcd60e51b815260206004820152600f60248201526e4641494c45445f574954484452415760881b604482015290519081900360640190fd5b600c546001600160a01b031681565b61185f612bb2565b6001600160a01b0316611870611d39565b6001600160a01b0316146118b9576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600e54600160a01b900460ff161561190e576040805162461bcd60e51b81526020600482015260136024820152721514915054d5549657d21054d7d35253951151606a1b604482015290519081900360640190fd5b6040805160038082526080820190925260609160208201838036833701905050905060018160008151811061193f57fe5b60200260200101818152505060028160018151811061195a57fe5b60200260200101818152505060038160028151811061197557fe5b602090810291909101015260408051600380825260808201909252606091816020016020820280368337019050509050606f816000815181106119b457fe5b602002602001018181525050606f816001815181106119cf57fe5b602002602001018181525050606f816002815181106119ea57fe5b602002602001018181525050611a26600c60009054906101000a90046001600160a01b0316838360405180602001604052806000815250612f40565b5050600e805460ff60a01b1916600160a01b179055565b600e54600090600160b01b900460ff1615611a5a57506001610e3c565b600e546001600160a01b031615611af157600e5460408051637108f95360e01b81526001600160a01b03858116600483015291519190921691637108f953916024808301926020929190829003018186803b158015611ab857600080fd5b505afa158015611acc573d6000803e3d6000fd5b505050506040513d6020811015611ae257600080fd5b505115611af157506001610e3c565b60005b600f54811015611bd057600f8181548110611b0b57fe5b600091825260209091200154600160a01b900460ff16611b2a57611bc8565b6000600f8281548110611b3957fe5b60009182526020918290200154604080516370a0823160e01b81526001600160a01b038881166004830152915191909216926370a082319260248082019391829003018186803b158015611b8c57600080fd5b505afa158015611ba0573d6000803e3d6000fd5b505050506040513d6020811015611bb657600080fd5b50511115611bc8576001915050610e3c565b600101611af4565b50506001600160a01b031660009081526010602052604090205460ff1690565b611bf8612bb2565b6001600160a01b0316611c09611d39565b6001600160a01b031614611c52576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b600b5481565b611caa612bb2565b6001600160a01b0316611cbb611d39565b6001600160a01b031614611d04576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600e805460ff60b01b198116600160b01b9182900460ff1615909102179055565b600e546001600160a01b031681565b600181565b6004546001600160a01b03165b90565b6000611d53612bb2565b6001600160a01b0316611d64611d39565b6001600160a01b031614611dad576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b50600881905590565b6006805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610f355780601f10610f0a57610100808354040283529160200191610f35565b611e19612bb2565b6001600160a01b0316611e2a611d39565b6001600160a01b031614611e73576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60085481565b600e54600160a81b900460ff16611eec576040805162461bcd60e51b815260206004820152601060248201526f14d0531157d393d517d4d5105495115160821b604482015290519081900360640190fd5b6008543414611f2e576040805162461bcd60e51b81526020600482015260096024820152680aea49e9c8ebe8aa8960bb1b604482015290519081900360640190fd5b6007543360009081526011602052604090205410611f8c576040805162461bcd60e51b8152602060048201526016602482015275115610d1515114d7d3505617d4115497d5d05313115560521b604482015290519081900360640190fd5b611f9533611a3d565b611fd5576040805162461bcd60e51b815260206004820152600c60248201526b4e4f545f454c494749424c4560a01b604482015290519081900360640190fd5b600181141561203f57600060095411612030576040805162461bcd60e51b8152602060048201526018602482015277414d4f554e545f455843454544535f52454d41494e494e4760401b604482015290519081900360640190fd5b60098054600019019055612152565b60028114156120a9576000600a541161209a576040805162461bcd60e51b8152602060048201526018602482015277414d4f554e545f455843454544535f52454d41494e494e4760401b604482015290519081900360640190fd5b600a8054600019019055612152565b6003811415612113576000600b5411612104576040805162461bcd60e51b8152602060048201526018602482015277414d4f554e545f455843454544535f52454d41494e494e4760401b604482015290519081900360640190fd5b600b8054600019019055612152565b6040805162461bcd60e51b815260206004820152600f60248201526e15d493d391d7d213d3d1125157d251608a1b604482015290519081900360640190fd5b33600081815260116020908152604080832080546001908101909155815192830190915291815261218592918491613195565b600d546040805163a9059cbb60e01b81523360048201526407aef40a00602482015290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b1580156121dd57600080fd5b505af11580156121f1573d6000803e3d6000fd5b505050506040513d602081101561220757600080fd5b5050604080513381526020810183905281517fb80c7d0de276008326d8582dd766c049c69460c533815497ddfe4644036af179929181900390910190a150565b61224f612bb2565b6001600160a01b0316612260611d39565b6001600160a01b0316146122a9576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600e54600160a81b900460ff166123a357600b54600a546009540101602102633b9aca0002600d60009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561233057600080fd5b505afa158015612344573d6000803e3d6000fd5b505050506040513d602081101561235a57600080fd5b505110156123a3576040805162461bcd60e51b81526020600482015260116024820152701393d517d15393d551d217d4d3539194d5607a1b604482015290519081900360640190fd5b600e805460ff60a81b198116600160a81b9182900460ff1615909102179055565b816001600160a01b03166123d6612bb2565b6001600160a01b0316141561241c5760405162461bcd60e51b81526004018080602001828103825260298152602001806137156029913960400191505060405180910390fd5b8060026000612429612bb2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561246d612bb2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600281565b6124c0612bb2565b6001600160a01b03166124d1611d39565b6001600160a01b03161461251a576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600e546000908190600160a01b900460ff16156125575750606f5b600183141561256e5760095460de03019050610e3c565b600283141561258557600a5460de03019050610e3c565b600383141561259c57600b5460de03019050610e3c565b50600092915050565b600e546000908190600160a01b900460ff16156125c1575061014d5b600b54600a5460095461029a03030301905090565b6125de612bb2565b6001600160a01b03166125ef611d39565b6001600160a01b031614612638576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600e54600160a81b900460ff1615612697576040805162461bcd60e51b815260206004820152601760248201527f4e4f5f57495448445241575f445552494e475f53414c45000000000000000000604482015290519081900360640190fd5b600d54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156126e257600080fd5b505afa1580156126f6573d6000803e3d6000fd5b505050506040513d602081101561270c57600080fd5b5051905080612756576040805162461bcd60e51b81526020600482015260116024820152704e4f5f534d4e4653545f42414c414e434560781b604482015290519081900360640190fd5b600d54600c546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051919092169163a9059cbb9160448083019260209291908290030181600087803b1580156127af57600080fd5b505af11580156127c3573d6000803e3d6000fd5b505050506040513d602081101561130d57600080fd5b600f81815481106127e957600080fd5b6000918252602090912001546001600160a01b0381169150600160a01b900460ff1682565b600381565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b600e54600160a81b900460ff1681565b612859612bb2565b6001600160a01b031661286a611d39565b6001600160a01b0316146128b3576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03841661291a5760405162461bcd60e51b81526004018080602001828103825260258152602001806136746025913960400191505060405180910390fd5b612922612bb2565b6001600160a01b0316856001600160a01b031614806129485750612948856113c5612bb2565b6129835760405162461bcd60e51b815260040180806020018281038252602981526020018061364b6029913960400191505060405180910390fd5b600061298d612bb2565b90506129ad81878761299e88613296565b6129a788613296565b87611608565b6129f4836040518060600160405280602a81526020016136cb602a913960008781526001602090815260408083206001600160a01b038d1684529091529020549190612bc9565b60008581526001602090815260408083206001600160a01b038b81168552925280832093909355871681522054612a2b9084612c60565b60008581526001602090815260408083206001600160a01b03808b168086529184529382902094909455805188815291820187905280518a8416938616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a46116088187878787876132da565b612aa8612bb2565b6001600160a01b0316612ab9611d39565b6001600160a01b031614612b02576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b6001600160a01b038116612b475760405162461bcd60e51b81526004018080602001828103825260268152602001806136256026913960400191505060405180910390fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b600d546001600160a01b031681565b3390565b805161115c906003906020840190613451565b60008184841115612c585760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c1d578181015183820152602001612c05565b50505050905090810190601f168015612c4a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015612cba576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b612cd3846001600160a01b031661344b565b1561160857836001600160a01b031663bc197c8187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612d61578181015183820152602001612d49565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612da0578181015183820152602001612d88565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612ddc578181015183820152602001612dc4565b50505050905090810190601f168015612e095780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612e2e57600080fd5b505af1925050508015612e5357506040513d6020811015612e4e57600080fd5b505160015b612ee857612e5f6134f8565b80612e6a5750612eb1565b60405162461bcd60e51b8152602060048201818152835160248401528351849391928392604401919085019080838360008315612c1d578181015183820152602001612c05565b60405162461bcd60e51b815260040180806020018281038252603481526020018061359e6034913960400191505060405180910390fd5b6001600160e01b0319811663bc197c8160e01b14612f375760405162461bcd60e51b81526004018080602001828103825260288152602001806135d26028913960400191505060405180910390fd5b50505050505050565b6001600160a01b038416612f855760405162461bcd60e51b815260040180806020018281038252602181526020018061378f6021913960400191505060405180910390fd5b8151835114612fc55760405162461bcd60e51b81526004018080602001828103825260288152602001806137676028913960400191505060405180910390fd5b6000612fcf612bb2565b9050612fe081600087878787611608565b60005b84518110156130a45761305b60016000878481518110612fff57fe5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000205485838151811061304557fe5b6020026020010151612c6090919063ffffffff16565b6001600087848151811061306b57fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038b168252909252902055600101612fe3565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561312b578181015183820152602001613113565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561316a578181015183820152602001613152565b5050505090500194505050505060405180910390a461318e81600087878787612cc1565b5050505050565b6001600160a01b0384166131da5760405162461bcd60e51b815260040180806020018281038252602181526020018061378f6021913960400191505060405180910390fd5b60006131e4612bb2565b90506131f68160008761299e88613296565b60008481526001602090815260408083206001600160a01b03891684529091529020546132239084612c60565b60008581526001602090815260408083206001600160a01b03808b16808652918452828520959095558151898152928301889052815190948616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a461318e816000878787876132da565b6040805160018082528183019092526060918291906020808301908036833701905050905082816000815181106132c957fe5b602090810291909101015292915050565b6132ec846001600160a01b031661344b565b1561160857836001600160a01b031663f23a6e6187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561337b578181015183820152602001613363565b50505050905090810190601f1680156133a85780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156133cb57600080fd5b505af19250505080156133f057506040513d60208110156133eb57600080fd5b505160015b6133fc57612e5f6134f8565b6001600160e01b0319811663f23a6e6160e01b14612f375760405162461bcd60e51b81526004018080602001828103825260288152602001806135d26028913960400191505060405180910390fd5b3b151590565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261348757600085556134cd565b82601f106134a057805160ff19168380011785556134cd565b828001600101855582156134cd579182015b828111156134cd5782518255916020019190600101906134b2565b506134d99291506134dd565b5090565b5b808211156134d957600081556001016134de565b60e01c90565b600060443d101561350857611d46565b600481823e6308c379a061351c82516134f2565b1461352657611d46565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156135565750505050611d46565b828401925082519150808211156135705750505050611d46565b503d8301602082840101111561358857505050611d46565b601f01601f191681016020016040529150509056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e736665724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a26469706673582212203137d3f29a0f7b05aa77b92675657d0c68311eb771c0fd734a1e53ce672527ae64736f6c63430007050033000000000000000000000000a963a46ef8d90cba23347def96632417beaf72a2000000000000000000000000d9ccb7bd2b66edb2998e9de53bd7883891ca665b000000000000000000000000577d406569b4041096dc8a163915d068c364f2d30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000005a68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e6f38734a537470554d555069796276456879554b677279357a3667524b3339396443717a6f466a41424a682f7b69647d2e6a736f6e000000000000

Deployed Bytecode

0x6080604052600436106102715760003560e01c80637b7f57311161014f578063b9b50111116100c1578063e985e9c51161007a578063e985e9c514610c0e578063eb8d244414610c49578063f0f4426014610c5e578063f242432a14610c91578063f2fde38b14610d67578063fddadad414610d9a57610271565b8063b9b5011114610b25578063bd85b03914610b58578063c5bd75da14610b82578063c83da7e114610b97578063cb96db4814610bac578063cbb4569514610bf957610271565b80639b9ccd2f116101135780639b9ccd2f14610a5b578063a035b1fe14610a8e578063a0712d6814610aa3578063a11d122614610ac0578063a22cb46514610ad5578063aefa5e4a14610b1057610271565b80637b7f5731146109dd57806380c8b0ef146109f25780638da5cb5b14610a0757806391b7f5ed14610a1c57806395d89b4114610a4657610271565b80632b1dd8e5116101e857806361d027b3116101ac57806361d027b3146109255780636fa435d7146109565780637108f9531461096b578063715018a61461099e57806375969b12146109b35780637976c28b146109c857610271565b80632b1dd8e5146105325780632eb2c2d6146105ad57806345b99a981461077b5780634e1273f414610790578063519af30e1461091057610271565b80630e89341c1161023a5780630e89341c1461045b5780630f2cdd6c146104855780631c33399a1461049a5780631c8e8568146104d55780631e940721146104ea578063222a6e251461051d57610271565b8062fdd58e1461027657806301ffc9a7146102c157806302fe53051461030957806306fdde03146103bc5780630d082b3714610446575b600080fd5b34801561028257600080fd5b506102af6004803603604081101561029957600080fd5b506001600160a01b038135169060200135610daf565b60408051918252519081900360200190f35b3480156102cd57600080fd5b506102f5600480360360208110156102e457600080fd5b50356001600160e01b031916610e1e565b604080519115158252519081900360200190f35b34801561031557600080fd5b506103ba6004803603602081101561032c57600080fd5b810190602081018135600160201b81111561034657600080fd5b82018360208201111561035857600080fd5b803590602001918460018302840111600160201b8311171561037957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610e41945050505050565b005b3480156103c857600080fd5b506103d1610eaf565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561040b5781810151838201526020016103f3565b50505050905090810190601f1680156104385780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045257600080fd5b506102af610f3d565b34801561046757600080fd5b506103d16004803603602081101561047e57600080fd5b5035610f43565b34801561049157600080fd5b506102af610fdb565b3480156104a657600080fd5b506103ba600480360360408110156104bd57600080fd5b506001600160a01b0381351690602001351515610fe1565b3480156104e157600080fd5b506102f5611160565b3480156104f657600080fd5b506102af6004803603602081101561050d57600080fd5b50356001600160a01b0316611170565b34801561052957600080fd5b506102af6111d5565b34801561053e57600080fd5b506103ba6004803603602081101561055557600080fd5b810190602081018135600160201b81111561056f57600080fd5b82018360208201111561058157600080fd5b803590602001918460208302840111600160201b831117156105a257600080fd5b5090925090506111db565b3480156105b957600080fd5b506103ba600480360360a08110156105d057600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561060357600080fd5b82018360208201111561061557600080fd5b803590602001918460208302840111600160201b8311171561063657600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561068557600080fd5b82018360208201111561069757600080fd5b803590602001918460208302840111600160201b831117156106b857600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561070757600080fd5b82018360208201111561071957600080fd5b803590602001918460018302840111600160201b8311171561073a57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611312945050505050565b34801561078757600080fd5b506102f5611610565b34801561079c57600080fd5b506108c0600480360360408110156107b357600080fd5b810190602081018135600160201b8111156107cd57600080fd5b8201836020820111156107df57600080fd5b803590602001918460208302840111600160201b8311171561080057600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561084f57600080fd5b82018360208201111561086157600080fd5b803590602001918460208302840111600160201b8311171561088257600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611620945050505050565b60408051602080825283518183015283519192839290830191858101910280838360005b838110156108fc5781810151838201526020016108e4565b505050509050019250505060405180910390f35b34801561091c57600080fd5b506103ba61170c565b34801561093157600080fd5b5061093a611848565b604080516001600160a01b039092168252519081900360200190f35b34801561096257600080fd5b506103ba611857565b34801561097757600080fd5b506102f56004803603602081101561098e57600080fd5b50356001600160a01b0316611a3d565b3480156109aa57600080fd5b506103ba611bf0565b3480156109bf57600080fd5b506102af611c9c565b3480156109d457600080fd5b506103ba611ca2565b3480156109e957600080fd5b5061093a611d25565b3480156109fe57600080fd5b506102af611d34565b348015610a1357600080fd5b5061093a611d39565b348015610a2857600080fd5b506102af60048036036020811015610a3f57600080fd5b5035611d49565b348015610a5257600080fd5b506103d1611db6565b348015610a6757600080fd5b506103ba60048036036020811015610a7e57600080fd5b50356001600160a01b0316611e11565b348015610a9a57600080fd5b506102af611e95565b6103ba60048036036020811015610ab957600080fd5b5035611e9b565b348015610acc57600080fd5b506103ba612247565b348015610ae157600080fd5b506103ba60048036036040811015610af857600080fd5b506001600160a01b03813516906020013515156123c4565b348015610b1c57600080fd5b506102af6124b3565b348015610b3157600080fd5b506103ba60048036036020811015610b4857600080fd5b50356001600160a01b03166124b8565b348015610b6457600080fd5b506102af60048036036020811015610b7b57600080fd5b503561253c565b348015610b8e57600080fd5b506102af6125a5565b348015610ba357600080fd5b506103ba6125d6565b348015610bb857600080fd5b50610bd660048036036020811015610bcf57600080fd5b50356127d9565b604080516001600160a01b03909316835290151560208301528051918290030190f35b348015610c0557600080fd5b506102af61280e565b348015610c1a57600080fd5b506102f560048036036040811015610c3157600080fd5b506001600160a01b0381358116916020013516612813565b348015610c5557600080fd5b506102f5612841565b348015610c6a57600080fd5b506103ba60048036036020811015610c8157600080fd5b50356001600160a01b0316612851565b348015610c9d57600080fd5b506103ba600480360360a0811015610cb457600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a081016080820135600160201b811115610cf357600080fd5b820183602082011115610d0557600080fd5b803590602001918460018302840111600160201b83111715610d2657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506128d5945050505050565b348015610d7357600080fd5b506103ba60048036036020811015610d8a57600080fd5b50356001600160a01b0316612aa0565b348015610da657600080fd5b5061093a612ba3565b60006001600160a01b038316610df65760405162461bcd60e51b815260040180806020018281038252602b8152602001806135fa602b913960400191505060405180910390fd5b5060009081526001602090815260408083206001600160a01b03949094168352929052205490565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b610e49612bb2565b6001600160a01b0316610e5a611d39565b6001600160a01b031614610ea3576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b610eac81612bb6565b50565b6005805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610f355780601f10610f0a57610100808354040283529160200191610f35565b820191906000526020600020905b815481529060010190602001808311610f1857829003601f168201915b505050505081565b60095481565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610fcf5780601f10610fa457610100808354040283529160200191610fcf565b820191906000526020600020905b815481529060010190602001808311610fb257829003601f168201915b50505050509050919050565b60075481565b610fe9612bb2565b6001600160a01b0316610ffa611d39565b6001600160a01b031614611043576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b6001600160a01b03821661105657600080fd5b60005b600f548110156110d657826001600160a01b0316600f828154811061107a57fe5b6000918252602090912001546001600160a01b031614156110ce5781600f82815481106110a357fe5b60009182526020909120018054911515600160a01b0260ff60a01b199092169190911790555061115c565b600101611059565b50604080518082019091526001600160a01b03808416825282151560208301908152600f805460018101825560009190915292517f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac802909301805491511515600160a01b0260ff60a01b19949093166001600160a01b031990921691909117929092161790555b5050565b600e54600160b01b900460ff1681565b60006001600160a01b0382166111b9576040805162461bcd60e51b8152602060048201526009602482015268272aa6262fa0a2222960b91b604482015290519081900360640190fd5b506001600160a01b031660009081526011602052604090205490565b600a5481565b6111e3612bb2565b6001600160a01b03166111f4611d39565b6001600160a01b03161461123d576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b60005b8181101561130d57600083838381811061125657fe5b905060200201356001600160a01b03166001600160a01b031614156112c2576040805162461bcd60e51b815260206004820152601760248201527f43616e6e6f7420616464206e756c6c2061646472657373000000000000000000604482015290519081900360640190fd5b6001601060008585858181106112d457fe5b602090810292909201356001600160a01b0316835250810191909152604001600020805460ff1916911515919091179055600101611240565b505050565b81518351146113525760405162461bcd60e51b81526004018080602001828103825260288152602001806137676028913960400191505060405180910390fd5b6001600160a01b0384166113975760405162461bcd60e51b81526004018080602001828103825260258152602001806136746025913960400191505060405180910390fd5b61139f612bb2565b6001600160a01b0316856001600160a01b031614806113ca57506113ca856113c5612bb2565b612813565b6114055760405162461bcd60e51b81526004018080602001828103825260328152602001806136996032913960400191505060405180910390fd5b600061140f612bb2565b905061141f818787878787611608565b60005b845181101561152057600085828151811061143957fe5b60200260200101519050600085838151811061145157fe5b602002602001015190506114be816040518060600160405280602a81526020016136cb602a91396001600086815260200190815260200160002060008d6001600160a01b03166001600160a01b0316815260200190815260200160002054612bc99092919063ffffffff16565b60008381526001602090815260408083206001600160a01b038e811685529252808320939093558a16815220546114f59082612c60565b60009283526001602081815260408086206001600160a01b038d168752909152909320555001611422565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b838110156115a657818101518382015260200161158e565b50505050905001838103825284818151815260200191508051906020019060200280838360005b838110156115e55781810151838201526020016115cd565b5050505090500194505050505060405180910390a4611608818787878787612cc1565b505050505050565b600e54600160a01b900460ff1681565b606081518351146116625760405162461bcd60e51b815260040180806020018281038252602981526020018061373e6029913960400191505060405180910390fd5b6060835167ffffffffffffffff8111801561167c57600080fd5b506040519080825280602002602001820160405280156116a6578160200160208202803683370190505b50905060005b8451811015611704576116e58582815181106116c457fe5b60200260200101518583815181106116d857fe5b6020026020010151610daf565b8282815181106116f157fe5b60209081029190910101526001016116ac565b509392505050565b611714612bb2565b6001600160a01b0316611725611d39565b6001600160a01b03161461176e576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b47806117ae576040805162461bcd60e51b815260206004820152600a6024820152694e4f5f42414c414e434560b01b604482015290519081900360640190fd5b600c546040516000916001600160a01b03169083908381818185875af1925050503d80600081146117fb576040519150601f19603f3d011682016040523d82523d6000602084013e611800565b606091505b505090508061115c576040805162461bcd60e51b815260206004820152600f60248201526e4641494c45445f574954484452415760881b604482015290519081900360640190fd5b600c546001600160a01b031681565b61185f612bb2565b6001600160a01b0316611870611d39565b6001600160a01b0316146118b9576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600e54600160a01b900460ff161561190e576040805162461bcd60e51b81526020600482015260136024820152721514915054d5549657d21054d7d35253951151606a1b604482015290519081900360640190fd5b6040805160038082526080820190925260609160208201838036833701905050905060018160008151811061193f57fe5b60200260200101818152505060028160018151811061195a57fe5b60200260200101818152505060038160028151811061197557fe5b602090810291909101015260408051600380825260808201909252606091816020016020820280368337019050509050606f816000815181106119b457fe5b602002602001018181525050606f816001815181106119cf57fe5b602002602001018181525050606f816002815181106119ea57fe5b602002602001018181525050611a26600c60009054906101000a90046001600160a01b0316838360405180602001604052806000815250612f40565b5050600e805460ff60a01b1916600160a01b179055565b600e54600090600160b01b900460ff1615611a5a57506001610e3c565b600e546001600160a01b031615611af157600e5460408051637108f95360e01b81526001600160a01b03858116600483015291519190921691637108f953916024808301926020929190829003018186803b158015611ab857600080fd5b505afa158015611acc573d6000803e3d6000fd5b505050506040513d6020811015611ae257600080fd5b505115611af157506001610e3c565b60005b600f54811015611bd057600f8181548110611b0b57fe5b600091825260209091200154600160a01b900460ff16611b2a57611bc8565b6000600f8281548110611b3957fe5b60009182526020918290200154604080516370a0823160e01b81526001600160a01b038881166004830152915191909216926370a082319260248082019391829003018186803b158015611b8c57600080fd5b505afa158015611ba0573d6000803e3d6000fd5b505050506040513d6020811015611bb657600080fd5b50511115611bc8576001915050610e3c565b600101611af4565b50506001600160a01b031660009081526010602052604090205460ff1690565b611bf8612bb2565b6001600160a01b0316611c09611d39565b6001600160a01b031614611c52576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b6004546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600480546001600160a01b0319169055565b600b5481565b611caa612bb2565b6001600160a01b0316611cbb611d39565b6001600160a01b031614611d04576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600e805460ff60b01b198116600160b01b9182900460ff1615909102179055565b600e546001600160a01b031681565b600181565b6004546001600160a01b03165b90565b6000611d53612bb2565b6001600160a01b0316611d64611d39565b6001600160a01b031614611dad576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b50600881905590565b6006805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610f355780601f10610f0a57610100808354040283529160200191610f35565b611e19612bb2565b6001600160a01b0316611e2a611d39565b6001600160a01b031614611e73576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60085481565b600e54600160a81b900460ff16611eec576040805162461bcd60e51b815260206004820152601060248201526f14d0531157d393d517d4d5105495115160821b604482015290519081900360640190fd5b6008543414611f2e576040805162461bcd60e51b81526020600482015260096024820152680aea49e9c8ebe8aa8960bb1b604482015290519081900360640190fd5b6007543360009081526011602052604090205410611f8c576040805162461bcd60e51b8152602060048201526016602482015275115610d1515114d7d3505617d4115497d5d05313115560521b604482015290519081900360640190fd5b611f9533611a3d565b611fd5576040805162461bcd60e51b815260206004820152600c60248201526b4e4f545f454c494749424c4560a01b604482015290519081900360640190fd5b600181141561203f57600060095411612030576040805162461bcd60e51b8152602060048201526018602482015277414d4f554e545f455843454544535f52454d41494e494e4760401b604482015290519081900360640190fd5b60098054600019019055612152565b60028114156120a9576000600a541161209a576040805162461bcd60e51b8152602060048201526018602482015277414d4f554e545f455843454544535f52454d41494e494e4760401b604482015290519081900360640190fd5b600a8054600019019055612152565b6003811415612113576000600b5411612104576040805162461bcd60e51b8152602060048201526018602482015277414d4f554e545f455843454544535f52454d41494e494e4760401b604482015290519081900360640190fd5b600b8054600019019055612152565b6040805162461bcd60e51b815260206004820152600f60248201526e15d493d391d7d213d3d1125157d251608a1b604482015290519081900360640190fd5b33600081815260116020908152604080832080546001908101909155815192830190915291815261218592918491613195565b600d546040805163a9059cbb60e01b81523360048201526407aef40a00602482015290516001600160a01b039092169163a9059cbb916044808201926020929091908290030181600087803b1580156121dd57600080fd5b505af11580156121f1573d6000803e3d6000fd5b505050506040513d602081101561220757600080fd5b5050604080513381526020810183905281517fb80c7d0de276008326d8582dd766c049c69460c533815497ddfe4644036af179929181900390910190a150565b61224f612bb2565b6001600160a01b0316612260611d39565b6001600160a01b0316146122a9576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600e54600160a81b900460ff166123a357600b54600a546009540101602102633b9aca0002600d60009054906101000a90046001600160a01b03166001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b15801561233057600080fd5b505afa158015612344573d6000803e3d6000fd5b505050506040513d602081101561235a57600080fd5b505110156123a3576040805162461bcd60e51b81526020600482015260116024820152701393d517d15393d551d217d4d3539194d5607a1b604482015290519081900360640190fd5b600e805460ff60a81b198116600160a81b9182900460ff1615909102179055565b816001600160a01b03166123d6612bb2565b6001600160a01b0316141561241c5760405162461bcd60e51b81526004018080602001828103825260298152602001806137156029913960400191505060405180910390fd5b8060026000612429612bb2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561246d612bb2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405180821515815260200191505060405180910390a35050565b600281565b6124c0612bb2565b6001600160a01b03166124d1611d39565b6001600160a01b03161461251a576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600e546000908190600160a01b900460ff16156125575750606f5b600183141561256e5760095460de03019050610e3c565b600283141561258557600a5460de03019050610e3c565b600383141561259c57600b5460de03019050610e3c565b50600092915050565b600e546000908190600160a01b900460ff16156125c1575061014d5b600b54600a5460095461029a03030301905090565b6125de612bb2565b6001600160a01b03166125ef611d39565b6001600160a01b031614612638576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600e54600160a81b900460ff1615612697576040805162461bcd60e51b815260206004820152601760248201527f4e4f5f57495448445241575f445552494e475f53414c45000000000000000000604482015290519081900360640190fd5b600d54604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156126e257600080fd5b505afa1580156126f6573d6000803e3d6000fd5b505050506040513d602081101561270c57600080fd5b5051905080612756576040805162461bcd60e51b81526020600482015260116024820152704e4f5f534d4e4653545f42414c414e434560781b604482015290519081900360640190fd5b600d54600c546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018590529051919092169163a9059cbb9160448083019260209291908290030181600087803b1580156127af57600080fd5b505af11580156127c3573d6000803e3d6000fd5b505050506040513d602081101561130d57600080fd5b600f81815481106127e957600080fd5b6000918252602090912001546001600160a01b0381169150600160a01b900460ff1682565b600381565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205460ff1690565b600e54600160a81b900460ff1681565b612859612bb2565b6001600160a01b031661286a611d39565b6001600160a01b0316146128b3576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03841661291a5760405162461bcd60e51b81526004018080602001828103825260258152602001806136746025913960400191505060405180910390fd5b612922612bb2565b6001600160a01b0316856001600160a01b031614806129485750612948856113c5612bb2565b6129835760405162461bcd60e51b815260040180806020018281038252602981526020018061364b6029913960400191505060405180910390fd5b600061298d612bb2565b90506129ad81878761299e88613296565b6129a788613296565b87611608565b6129f4836040518060600160405280602a81526020016136cb602a913960008781526001602090815260408083206001600160a01b038d1684529091529020549190612bc9565b60008581526001602090815260408083206001600160a01b038b81168552925280832093909355871681522054612a2b9084612c60565b60008581526001602090815260408083206001600160a01b03808b168086529184529382902094909455805188815291820187905280518a8416938616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a46116088187878787876132da565b612aa8612bb2565b6001600160a01b0316612ab9611d39565b6001600160a01b031614612b02576040805162461bcd60e51b815260206004820181905260248201526000805160206136f5833981519152604482015290519081900360640190fd5b6001600160a01b038116612b475760405162461bcd60e51b81526004018080602001828103825260268152602001806136256026913960400191505060405180910390fd5b6004546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600480546001600160a01b0319166001600160a01b0392909216919091179055565b600d546001600160a01b031681565b3390565b805161115c906003906020840190613451565b60008184841115612c585760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612c1d578181015183820152602001612c05565b50505050905090810190601f168015612c4a5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600082820183811015612cba576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b612cd3846001600160a01b031661344b565b1561160857836001600160a01b031663bc197c8187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b03168152602001806020018060200180602001848103845287818151815260200191508051906020019060200280838360005b83811015612d61578181015183820152602001612d49565b50505050905001848103835286818151815260200191508051906020019060200280838360005b83811015612da0578181015183820152602001612d88565b50505050905001848103825285818151815260200191508051906020019080838360005b83811015612ddc578181015183820152602001612dc4565b50505050905090810190601f168015612e095780820380516001836020036101000a031916815260200191505b5098505050505050505050602060405180830381600087803b158015612e2e57600080fd5b505af1925050508015612e5357506040513d6020811015612e4e57600080fd5b505160015b612ee857612e5f6134f8565b80612e6a5750612eb1565b60405162461bcd60e51b8152602060048201818152835160248401528351849391928392604401919085019080838360008315612c1d578181015183820152602001612c05565b60405162461bcd60e51b815260040180806020018281038252603481526020018061359e6034913960400191505060405180910390fd5b6001600160e01b0319811663bc197c8160e01b14612f375760405162461bcd60e51b81526004018080602001828103825260288152602001806135d26028913960400191505060405180910390fd5b50505050505050565b6001600160a01b038416612f855760405162461bcd60e51b815260040180806020018281038252602181526020018061378f6021913960400191505060405180910390fd5b8151835114612fc55760405162461bcd60e51b81526004018080602001828103825260288152602001806137676028913960400191505060405180910390fd5b6000612fcf612bb2565b9050612fe081600087878787611608565b60005b84518110156130a45761305b60016000878481518110612fff57fe5b602002602001015181526020019081526020016000206000886001600160a01b03166001600160a01b031681526020019081526020016000205485838151811061304557fe5b6020026020010151612c6090919063ffffffff16565b6001600087848151811061306b57fe5b602090810291909101810151825281810192909252604090810160009081206001600160a01b038b168252909252902055600101612fe3565b50846001600160a01b031660006001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051808060200180602001838103835285818151815260200191508051906020019060200280838360005b8381101561312b578181015183820152602001613113565b50505050905001838103825284818151815260200191508051906020019060200280838360005b8381101561316a578181015183820152602001613152565b5050505090500194505050505060405180910390a461318e81600087878787612cc1565b5050505050565b6001600160a01b0384166131da5760405162461bcd60e51b815260040180806020018281038252602181526020018061378f6021913960400191505060405180910390fd5b60006131e4612bb2565b90506131f68160008761299e88613296565b60008481526001602090815260408083206001600160a01b03891684529091529020546132239084612c60565b60008581526001602090815260408083206001600160a01b03808b16808652918452828520959095558151898152928301889052815190948616927fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6292908290030190a461318e816000878787876132da565b6040805160018082528183019092526060918291906020808301908036833701905050905082816000815181106132c957fe5b602090810291909101015292915050565b6132ec846001600160a01b031661344b565b1561160857836001600160a01b031663f23a6e6187878686866040518663ffffffff1660e01b815260040180866001600160a01b03168152602001856001600160a01b0316815260200184815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561337b578181015183820152602001613363565b50505050905090810190601f1680156133a85780820380516001836020036101000a031916815260200191505b509650505050505050602060405180830381600087803b1580156133cb57600080fd5b505af19250505080156133f057506040513d60208110156133eb57600080fd5b505160015b6133fc57612e5f6134f8565b6001600160e01b0319811663f23a6e6160e01b14612f375760405162461bcd60e51b81526004018080602001828103825260288152602001806135d26028913960400191505060405180910390fd5b3b151590565b828054600181600116156101000203166002900490600052602060002090601f01602090048101928261348757600085556134cd565b82601f106134a057805160ff19168380011785556134cd565b828001600101855582156134cd579182015b828111156134cd5782518255916020019190600101906134b2565b506134d99291506134dd565b5090565b5b808211156134d957600081556001016134de565b60e01c90565b600060443d101561350857611d46565b600481823e6308c379a061351c82516134f2565b1461352657611d46565b6040513d600319016004823e80513d67ffffffffffffffff81602484011181841117156135565750505050611d46565b828401925082519150808211156135705750505050611d46565b503d8301602082840101111561358857505050611d46565b601f01601f191681016020016040529150509056fe455243313135353a207472616e7366657220746f206e6f6e2045524331313535526563656976657220696d706c656d656e746572455243313135353a204552433131353552656365697665722072656a656374656420746f6b656e73455243313135353a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a207472616e7366657220746f20746865207a65726f2061646472657373455243313135353a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243313135353a20696e73756666696369656e742062616c616e636520666f72207472616e736665724f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572455243313135353a2073657474696e6720617070726f76616c2073746174757320666f722073656c66455243313135353a206163636f756e747320616e6420696473206c656e677468206d69736d61746368455243313135353a2069647320616e6420616d6f756e7473206c656e677468206d69736d61746368455243313135353a206d696e7420746f20746865207a65726f2061646472657373a26469706673582212203137d3f29a0f7b05aa77b92675657d0c68311eb771c0fd734a1e53ce672527ae64736f6c63430007050033

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

000000000000000000000000a963a46ef8d90cba23347def96632417beaf72a2000000000000000000000000d9ccb7bd2b66edb2998e9de53bd7883891ca665b000000000000000000000000577d406569b4041096dc8a163915d068c364f2d30000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000005a68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d4e6f38734a537470554d555069796276456879554b677279357a3667524b3339396443717a6f466a41424a682f7b69647d2e6a736f6e000000000000

-----Decoded View---------------
Arg [0] : _treasury (address): 0xa963a46eF8D90Cba23347deF96632417Beaf72A2
Arg [1] : _sMNFST (address): 0xd9Ccb7bD2b66edB2998E9De53Bd7883891CA665B
Arg [2] : _genesisV1 (address): 0x577D406569B4041096DC8a163915D068c364F2D3
Arg [3] : _uri (string): https://gateway.pinata.cloud/ipfs/QmNo8sJStpUMUPiybvEhyUKgry5z6gRK399dCqzoFjABJh/{id}.json

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 000000000000000000000000a963a46ef8d90cba23347def96632417beaf72a2
Arg [1] : 000000000000000000000000d9ccb7bd2b66edb2998e9de53bd7883891ca665b
Arg [2] : 000000000000000000000000577d406569b4041096dc8a163915d068c364f2d3
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [4] : 000000000000000000000000000000000000000000000000000000000000005a
Arg [5] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [6] : 732f516d4e6f38734a537470554d555069796276456879554b677279357a3667
Arg [7] : 524b3339396443717a6f466a41424a682f7b69647d2e6a736f6e000000000000


Deployed Bytecode Sourcemap

48353:7498:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33884:231;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;33884:231:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;14740:150;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14740:150:0;-1:-1:-1;;;;;;14740:150:0;;:::i;:::-;;;;;;;;;;;;;;;;;;52473:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52473:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;52473:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52473:91:0;;-1:-1:-1;52473:91:0;;-1:-1:-1;;;;;52473:91:0:i;:::-;;48563:40;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48886:36;;;;;;;;;;;;;:::i;33626:107::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33626:107:0;;:::i;48797:33::-;;;;;;;;;;;;;:::i;50385:638::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;50385:638:0;;;;;;;;;;:::i;49175:29::-;;;;;;;;;;;;;:::i;53721:170::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53721:170:0;-1:-1:-1;;;;;53721:170:0;;:::i;48929:36::-;;;;;;;;;;;;;:::i;51031:283::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51031:283:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;51031:283:0;;;;;;;;;;-1:-1:-1;51031:283:0;;-1:-1:-1;51031:283:0;-1:-1:-1;51031:283:0;:::i;36527:1220::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36527:1220:0;;;;;;;;-1:-1:-1;36527:1220:0;;-1:-1:-1;;;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36527:1220:0;;;;;;;;-1:-1:-1;36527:1220:0;;-1:-1:-1;;;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;36527:1220:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36527:1220:0;;-1:-1:-1;36527:1220:0;;-1:-1:-1;;;;;36527:1220:0:i;49108:29::-;;;;;;;;;;;;;:::i;34281:549::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;34281:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;34281:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34281:549:0;;;;;;;;-1:-1:-1;34281:549:0;;-1:-1:-1;;;;;34281:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;34281:549:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34281:549:0;;-1:-1:-1;34281:549:0;;-1:-1:-1;;;;;34281:549:0:i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55258:257;;;;;;;;;;;;;:::i;49017:23::-;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;49017:23:0;;;;;;;;;;;;;;54743:507;;;;;;;;;;;;;:::i;52707:1006::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52707:1006:0;-1:-1:-1;;;;;52707:1006:0;;:::i;47229:148::-;;;;;;;;;;;;;:::i;48972:36::-;;;;;;;;;;;;;:::i;50263:112::-;;;;;;;;;;;;;:::i;49075:24::-;;;;;;;;;;;;;:::i;48650:42::-;;;;;;;;;;;;;:::i;46578:87::-;;;;;;;;;;;;;:::i;52572:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52572:127:0;;:::i;48610:31::-;;;;;;;;;;;;;:::i;49792:102::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49792:102:0;-1:-1:-1;;;;;49792:102:0;;:::i;48839:34::-;;;;;;;;;;;;;:::i;51322:1139::-;;;;;;;;;;;;;;;;-1:-1:-1;51322:1139:0;;:::i;49902:353::-;;;;;;;;;;;;;:::i;34903:311::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;34903:311:0;;;;;;;;;;:::i;48699:42::-;;;;;;;;;;;;;:::i;49694:90::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49694:90:0;-1:-1:-1;;;;;49694:90:0;;:::i;53899:545::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53899:545:0;;:::i;54452:283::-;;;;;;;;;;;;;:::i;55523:325::-;;;;;;;;;;;;;:::i;49213:42::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49213:42:0;;:::i;:::-;;;;-1:-1:-1;;;;;49213:42:0;;;;;;;;;;;;;;;;;;;;;48748;;;;;;;;;;;;;:::i;35286:168::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35286:168:0;;;;;;;;;;:::i;49144:24::-;;;;;;;;;;;;;:::i;49588:98::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49588:98:0;-1:-1:-1;;;;;49588:98:0;;:::i;35526:924::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;35526:924:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;35526:924:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;35526:924:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35526:924:0;;-1:-1:-1;35526:924:0;;-1:-1:-1;;;;;35526:924:0:i;47532:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47532:244:0;-1:-1:-1;;;;;47532:244:0;;:::i;49047:21::-;;;;;;;;;;;;;:::i;33884:231::-;33970:7;-1:-1:-1;;;;;33998:21:0;;33990:77;;;;-1:-1:-1;;;33990:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34085:13:0;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;34085:22:0;;;;;;;;;;;;33884:231::o;14740:150::-;-1:-1:-1;;;;;;14849:33:0;;14825:4;14849:33;;;;;;;;;;;;;14740:150;;;;:::o;52473:91::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;52540:16:::1;52548:7;52540;:16::i;:::-;52473:91:::0;:::o;48563:40::-;;;;;;;;;;;;;;;-1:-1:-1;;48563:40:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;48886:36::-;;;;:::o;33626:107::-;33721:4;33714:11;;;;;;;;-1:-1:-1;;33714:11:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33688:13;;33714:11;;33721:4;;33714:11;;33721:4;33714:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33626:107;;;:::o;48797:33::-;;;;:::o;50385:638::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;50483:22:0;::::1;50475:31;;;::::0;::::1;;50569:9;50564:270;50588:18;:25:::0;50584:29;::::1;50564:270;;;50677:8;-1:-1:-1::0;;;;;50639:46:0::1;:18;50658:1;50639:21;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:34:::0;-1:-1:-1;;;;;50639:34:0::1;:46;50635:188;;;50772:10;50738:18;50757:1;50738:21;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:44:::0;;;::::1;;-1:-1:-1::0;;;50738:44:0::1;-1:-1:-1::0;;;;50738:44:0;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;50801:7:0::1;;50635:188;50615:3;;50564:270;;;-1:-1:-1::0;50914:100:0::1;::::0;;;;::::1;::::0;;;-1:-1:-1;;;;;50914:100:0;;::::1;::::0;;;::::1;;;::::0;::::1;::::0;;;50890:18:::1;:125:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;50890:125:0;;;;;;;;;::::1;::::0;;;;::::1;;-1:-1:-1::0;;;50890:125:0::1;-1:-1:-1::0;;;;50890:125:0;;;::::1;-1:-1:-1::0;;;;;;50890:125:0;;::::1;::::0;;;::::1;::::0;;;::::1;;::::0;;46869:1:::1;50385:638:::0;;:::o;49175:29::-;;;-1:-1:-1;;;49175:29:0;;;;;:::o;53721:170::-;53783:7;-1:-1:-1;;;;;53811:19:0;;53803:41;;;;;-1:-1:-1;;;53803:41:0;;;;;;;;;;;;-1:-1:-1;;;53803:41:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;;53864:19:0;;;;;:12;:19;;;;;;;53721:170::o;48929:36::-;;;;:::o;51031:283::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;51125:9:::1;51120:187;51140:20:::0;;::::1;51120:187;;;51214:1;51190:9:::0;;51200:1;51190:12;;::::1;;;;;;;;;;;-1:-1:-1::0;;;;;51190:12:0::1;-1:-1:-1::0;;;;;51190:26:0::1;;;51182:62;;;::::0;;-1:-1:-1;;;51182:62:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;51291:4;51259:15;:29;51275:9;;51285:1;51275:12;;;;;;;;::::0;;::::1;::::0;;;::::1;;-1:-1:-1::0;;;;;51275:12:0::1;51259:29:::0;;-1:-1:-1;51259:29:0;::::1;::::0;;;;;;-1:-1:-1;51259:29:0;:36;;-1:-1:-1;;51259:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;51162:3:0::1;51120:187;;;;51031:283:::0;;:::o;36527:1220::-;36792:7;:14;36778:3;:10;:28;36770:81;;;;-1:-1:-1;;;36770:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36870:16:0;;36862:66;;;;-1:-1:-1;;;36862:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36969:12;:10;:12::i;:::-;-1:-1:-1;;;;;36961:20:0;:4;-1:-1:-1;;;;;36961:20:0;;:60;;;;36985:36;37002:4;37008:12;:10;:12::i;:::-;36985:16;:36::i;:::-;36939:160;;;;-1:-1:-1;;;36939:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37112:16;37131:12;:10;:12::i;:::-;37112:31;;37156:60;37177:8;37187:4;37193:2;37197:3;37202:7;37211:4;37156:20;:60::i;:::-;37234:9;37229:358;37253:3;:10;37249:1;:14;37229:358;;;37285:10;37298:3;37302:1;37298:6;;;;;;;;;;;;;;37285:19;;37319:14;37336:7;37344:1;37336:10;;;;;;;;;;;;;;37319:27;;37385:126;37427:6;37385:126;;;;;;;;;;;;;;;;;:9;:13;37395:2;37385:13;;;;;;;;;;;:19;37399:4;-1:-1:-1;;;;;37385:19:0;-1:-1:-1;;;;;37385:19:0;;;;;;;;;;;;;:23;;:126;;;;;:::i;:::-;37363:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;37363:19:0;;;;;;;;;;:148;;;;37546:17;;;;;;:29;;37568:6;37546:21;:29::i;:::-;37526:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;37526:17:0;;;;;;;;;;:49;-1:-1:-1;37265:3:0;37229:358;;;;37634:2;-1:-1:-1;;;;;37604:47:0;37628:4;-1:-1:-1;;;;;37604:47:0;37618:8;-1:-1:-1;;;;;37604:47:0;;37638:3;37643:7;37604:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37664:75;37700:8;37710:4;37716:2;37720:3;37725:7;37734:4;37664:35;:75::i;:::-;36527:1220;;;;;;:::o;49108:29::-;;;-1:-1:-1;;;49108:29:0;;;;;:::o;34281:549::-;34462:16;34523:3;:10;34504:8;:15;:29;34496:83;;;;-1:-1:-1;;;34496:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34592:30;34639:8;:15;34625:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34625:30:0;;34592:63;;34673:9;34668:122;34692:8;:15;34688:1;:19;34668:122;;;34748:30;34758:8;34767:1;34758:11;;;;;;;;;;;;;;34771:3;34775:1;34771:6;;;;;;;;;;;;;;34748:9;:30::i;:::-;34729:13;34743:1;34729:16;;;;;;;;;;;;;;;;;:49;34709:3;;34668:122;;;-1:-1:-1;34809:13:0;34281:549;-1:-1:-1;;;34281:549:0:o;55258:257::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;55330:21:::1;55370:11:::0;55362:34:::1;;;::::0;;-1:-1:-1;;;55362:34:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;55362:34:0;;;;;;;;;;;;;::::1;;55426:8;::::0;:35:::1;::::0;55408:12:::1;::::0;-1:-1:-1;;;;;55426:8:0::1;::::0;55448:7;;55408:12;55426:35;55408:12;55426:35;55448:7;55426:8;:35:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55407:54;;;55480:7;55472:35;;;::::0;;-1:-1:-1;;;55472:35:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;55472:35:0;;;;;;;;;;;;;::::1;49017:23:::0;;;-1:-1:-1;;;;;49017:23:0;;:::o;54743:507::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;54805:17:::1;::::0;-1:-1:-1;;;54805:17:0;::::1;;;:26;54797:58;;;::::0;;-1:-1:-1;;;54797:58:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;54797:58:0;;;;;;;;;;;;;::::1;;54894:16;::::0;;54908:1:::1;54894:16:::0;;;;;::::1;::::0;;;54868:23:::1;::::0;54894:16:::1;::::0;::::1;54868:23:::0;;54894:16:::1;::::0;::::1;;::::0;-1:-1:-1;54894:16:0::1;54868:42;;48691:1;54921:6;54928:1;54921:9;;;;;;;;;;;;;:26;;;::::0;::::1;48740:1;54958:6;54965:1;54958:9;;;;;;;;;;;;;:26;;;::::0;::::1;48789:1;54995:6;55002:1;54995:9;;;;;;;;;::::0;;::::1;::::0;;;;;:26;55060:16:::1;::::0;;55074:1:::1;55060:16:::0;;;;;::::1;::::0;;;55034:23:::1;::::0;55060:16:::1;;;;;;;;;;;::::0;-1:-1:-1;55060:16:0::1;55034:42;;55099:3;55087:6;55094:1;55087:9;;;;;;;;;;;;;:15;;;::::0;::::1;55125:3;55113:6;55120:1;55113:9;;;;;;;;;;;;;:15;;;::::0;::::1;55151:3;55139:6;55146:1;55139:9;;;;;;;;;;;;;:15;;;::::0;::::1;55167:40;55178:8;;;;;;;;;-1:-1:-1::0;;;;;55178:8:0::1;55188:6;55196;55167:40;;;;;;;;;;;::::0;:10:::1;:40::i;:::-;-1:-1:-1::0;;55218:17:0::1;:24:::0;;-1:-1:-1;;;;55218:24:0::1;-1:-1:-1::0;;;55218:24:0::1;::::0;;54743:507::o;52707:1006::-;52858:17;;52775:4;;-1:-1:-1;;;52858:17:0;;;;52854:61;;;-1:-1:-1;52899:4:0;52892:11;;52854:61;53025:9;;-1:-1:-1;;;;;53025:9:0;:23;53021:184;;53104:9;;53070:75;;;-1:-1:-1;;;53070:75:0;;-1:-1:-1;;;;;53070:75:0;;;;;;;;;53104:9;;;;;53070:65;;:75;;;;;;;;;;;;;;53104:9;53070:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53070:75:0;53065:129;;;-1:-1:-1;53174:4:0;53167:11;;53065:129;53257:6;53251:315;53273:18;:25;53269:29;;53251:315;;;53325:18;53344:1;53325:21;;;;;;;;;;;;;;;;;:31;-1:-1:-1;;;53325:31:0;;;;53321:89;;53386:8;;53321:89;53506:1;53447:18;53466:1;53447:21;;;;;;;;;;;;;;;;;;:34;53430:73;;;-1:-1:-1;;;53430:73:0;;-1:-1:-1;;;;;53430:73:0;;;;;;;;;53447:34;;;;;53430:63;;:73;;;;;;;;;;;53447:34;53430:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53430:73:0;:77;53426:129;;;53535:4;53528:11;;;;;53426:129;53300:3;;53251:315;;;-1:-1:-1;;;;;;;53680:25:0;;;;;:15;:25;;;;;;;;;52707:1006::o;47229:148::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;47320:6:::1;::::0;47299:40:::1;::::0;47336:1:::1;::::0;-1:-1:-1;;;;;47320:6:0::1;::::0;47299:40:::1;::::0;47336:1;;47299:40:::1;47350:6;:19:::0;;-1:-1:-1;;;;;;47350:19:0::1;::::0;;47229:148::o;48972:36::-;;;;:::o;50263:112::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;50350:17:::1;::::0;;-1:-1:-1;;;;50329:38:0;::::1;-1:-1:-1::0;;;50350:17:0;;;::::1;;;50349:18;50329:38:::0;;::::1;;::::0;;50263:112::o;49075:24::-;;;-1:-1:-1;;;;;49075:24:0;;:::o;48650:42::-;48691:1;48650:42;:::o;46578:87::-;46651:6;;-1:-1:-1;;;;;46651:6:0;46578:87;;:::o;52572:127::-;52633:7;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;-1:-1:-1;52653:5:0::1;:15:::0;;;;52572:127::o;48610:31::-;;;;;;;;;;;;;;;-1:-1:-1;;48610:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49792:102;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;49864:9:::1;:22:::0;;-1:-1:-1;;;;;;49864:22:0::1;-1:-1:-1::0;;;;;49864:22:0;;;::::1;::::0;;;::::1;::::0;;49792:102::o;48839:34::-;;;;:::o;51322:1139::-;51390:12;;-1:-1:-1;;;51390:12:0;;;;51382:41;;;;;-1:-1:-1;;;51382:41:0;;;;;;;;;;;;-1:-1:-1;;;51382:41:0;;;;;;;;;;;;;;;51455:5;;51442:9;:18;51434:40;;;;;-1:-1:-1;;;51434:40:0;;;;;;;;;;;;-1:-1:-1;;;51434:40:0;;;;;;;;;;;;;;;51520:14;;51506:10;51493:24;;;;:12;:24;;;;;;:41;51485:76;;;;;-1:-1:-1;;;51485:76:0;;;;;;;;;;;;-1:-1:-1;;;51485:76:0;;;;;;;;;;;;;;;51580:31;51600:10;51580:19;:31::i;:::-;51572:56;;;;;-1:-1:-1;;;51572:56:0;;;;;;;;;;;;-1:-1:-1;;;51572:56:0;;;;;;;;;;;;;;;48691:1;51645:8;:26;51641:538;;;51714:1;51696:15;;:19;51688:56;;;;;-1:-1:-1;;;51688:56:0;;;;;;;;;;;;-1:-1:-1;;;51688:56:0;;;;;;;;;;;;;;;51759:15;:17;;-1:-1:-1;;51759:17:0;;;51641:538;;;48740:1;51807:8;:26;51803:376;;;51876:1;51858:15;;:19;51850:56;;;;;-1:-1:-1;;;51850:56:0;;;;;;;;;;;;-1:-1:-1;;;51850:56:0;;;;;;;;;;;;;;;51921:15;:17;;-1:-1:-1;;51921:17:0;;;51803:376;;;48789:1;51969:8;:26;51965:214;;;52038:1;52020:15;;:19;52012:56;;;;;-1:-1:-1;;;52012:56:0;;;;;;;;;;;;-1:-1:-1;;;52012:56:0;;;;;;;;;;;;;;;52083:15;:17;;-1:-1:-1;;52083:17:0;;;51965:214;;;52142:25;;;-1:-1:-1;;;52142:25:0;;;;;;;;;;;;-1:-1:-1;;;52142:25:0;;;;;;;;;;;;;;51965:214;52204:10;52191:24;;;;:12;:24;;;;;;;;:29;;52219:1;52191:29;;;;;;52261:34;;;;;;;;;;;;;52204:10;52279:8;;52261:5;:34::i;:::-;52350:6;;52334:59;;;-1:-1:-1;;;52334:59:0;;52368:10;52334:59;;;;52380:12;52334:59;;;;;;-1:-1:-1;;;;;52350:6:0;;;;52334:33;;:59;;;;;;;;;;;;;;;52350:6;;52334:59;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;52419:34:0;;;52432:10;52419:34;;52334:59;52419:34;;;;;;;;;;;;;;;;;;51322:1139;:::o;49902:353::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;49967:12:::1;::::0;-1:-1:-1;;;49967:12:0;::::1;;;49962:247;;50117:15;;50099;;50081;;:33;:51;50075:2;:58;50136:7;50075:68;50038:6;;;;;;;;;-1:-1:-1::0;;;;;50038:6:0::1;-1:-1:-1::0;;;;;50022:34:0::1;;50065:4;50022:49;;;;;;;;;;;;;-1:-1:-1::0;;;;;50022:49:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;50022:49:0;:121:::1;;49996:201;;;::::0;;-1:-1:-1;;;49996:201:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;49996:201:0;;;;;;;;;;;;;::::1;;50235:12;::::0;;-1:-1:-1;;;;50219:28:0;::::1;-1:-1:-1::0;;;50235:12:0;;;::::1;;;50234:13;50219:28:::0;;::::1;;::::0;;49902:353::o;34903:311::-;35022:8;-1:-1:-1;;;;;35006:24:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;35006:24:0;;;34998:78;;;;-1:-1:-1;;;34998:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35134:8;35089:18;:32;35108:12;:10;:12::i;:::-;-1:-1:-1;;;;;35089:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;35089:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;35089:53:0;;;;;;;;;;;35173:12;:10;:12::i;:::-;-1:-1:-1;;;;;35158:48:0;;35197:8;35158:48;;;;;;;;;;;;;;;;;;;;34903:311;;:::o;48699:42::-;48740:1;48699:42;:::o;49694:90::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;49760:6:::1;:16:::0;;-1:-1:-1;;;;;;49760:16:0::1;-1:-1:-1::0;;;;;49760:16:0;;;::::1;::::0;;;::::1;::::0;;49694:90::o;53899:545::-;54014:17;;53954:7;;;;-1:-1:-1;;;54014:17:0;;;;54010:76;;;-1:-1:-1;54071:3:0;54010:76;48691:1;54102:3;:21;54098:98;;;54154:15;;54148:3;:21;54147:37;;-1:-1:-1;54140:44:0;;54098:98;48740:1;54212:3;:21;54208:98;;;54264:15;;54258:3;:21;54257:37;;-1:-1:-1;54250:44:0;;54208:98;48789:1;54322:3;:21;54318:98;;;54374:15;;54368:3;:21;54367:37;;-1:-1:-1;54360:44:0;;54318:98;-1:-1:-1;54435:1:0;;53899:545;-1:-1:-1;;53899:545:0:o;54452:283::-;54563:17;;54503:7;;;;-1:-1:-1;;;54563:17:0;;;;54559:76;;;-1:-1:-1;54620:3:0;54559:76;54697:15;;54679;;54661;;54655:3;:21;:39;:57;54654:73;;-1:-1:-1;54452:283:0;:::o;55523:325::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;55589:12:::1;::::0;-1:-1:-1;;;55589:12:0;::::1;;;55588:13;55580:49;;;::::0;;-1:-1:-1;;;55580:49:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;55680:6;::::0;55664:49:::1;::::0;;-1:-1:-1;;;55664:49:0;;55707:4:::1;55664:49;::::0;::::1;::::0;;;55640:21:::1;::::0;-1:-1:-1;;;;;55680:6:0::1;::::0;55664:34:::1;::::0;:49;;;;;::::1;::::0;;;;;;;;55680:6;55664:49;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;55664:49:0;;-1:-1:-1;55732:17:0;55724:47:::1;;;::::0;;-1:-1:-1;;;55724:47:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;55724:47:0;;;;;;;;;;;;;::::1;;55798:6;::::0;55816:8:::1;::::0;55782:58:::1;::::0;;-1:-1:-1;;;55782:58:0;;-1:-1:-1;;;;;55816:8:0;;::::1;55782:58;::::0;::::1;::::0;;;;;;;;;55798:6;;;::::1;::::0;55782:33:::1;::::0;:58;;;;;::::1;::::0;;;;;;;;55798:6:::1;::::0;55782:58;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;49213:42:::0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49213:42:0;;;-1:-1:-1;;;;49213:42:0;;;;;:::o;48748:::-;48789:1;48748:42;:::o;35286:168::-;-1:-1:-1;;;;;35409:27:0;;;35385:4;35409:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;35286:168::o;49144:24::-;;;-1:-1:-1;;;49144:24:0;;;;;:::o;49588:98::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;49658:8:::1;:20:::0;;-1:-1:-1;;;;;;49658:20:0::1;-1:-1:-1::0;;;;;49658:20:0;;;::::1;::::0;;;::::1;::::0;;49588:98::o;35526:924::-;-1:-1:-1;;;;;35752:16:0;;35744:66;;;;-1:-1:-1;;;35744:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35851:12;:10;:12::i;:::-;-1:-1:-1;;;;;35843:20:0;:4;-1:-1:-1;;;;;35843:20:0;;:60;;;;35867:36;35884:4;35890:12;:10;:12::i;35867:36::-;35821:151;;;;-1:-1:-1;;;35821:151:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35985:16;36004:12;:10;:12::i;:::-;35985:31;;36029:96;36050:8;36060:4;36066:2;36070:21;36088:2;36070:17;:21::i;:::-;36093:25;36111:6;36093:17;:25::i;:::-;36120:4;36029:20;:96::i;:::-;36160:77;36184:6;36160:77;;;;;;;;;;;;;;;;;:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;36160:19:0;;;;;;;;;;;:77;:23;:77::i;:::-;36138:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;36138:19:0;;;;;;;;;;:99;;;;36268:17;;;;;;:29;;36290:6;36268:21;:29::i;:::-;36248:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;36248:17:0;;;;;;;;;;;;;:49;;;;36315:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36374:68;36405:8;36415:4;36421:2;36425;36429:6;36437:4;36374:30;:68::i;47532:244::-;46809:12;:10;:12::i;:::-;-1:-1:-1;;;;;46798:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;46798:23:0;;46790:68;;;;;-1:-1:-1;;;46790:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;46790:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;47621:22:0;::::1;47613:73;;;;-1:-1:-1::0;;;47613:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47723:6;::::0;47702:38:::1;::::0;-1:-1:-1;;;;;47702:38:0;;::::1;::::0;47723:6:::1;::::0;47702:38:::1;::::0;47723:6:::1;::::0;47702:38:::1;47751:6;:17:::0;;-1:-1:-1;;;;;;47751:17:0::1;-1:-1:-1::0;;;;;47751:17:0;;;::::1;::::0;;;::::1;::::0;;47532:244::o;49047:21::-;;;-1:-1:-1;;;;;49047:21:0;;:::o;13376:106::-;13464:10;13376:106;:::o;38591:88::-;38658:13;;;;:4;;:13;;;;;:::i;21137:166::-;21223:7;21259:12;21251:6;;;;21243:29;;;;-1:-1:-1;;;21243:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;21290:5:0;;;21137:166::o;18310:179::-;18368:7;18400:5;;;18424:6;;;;18416:46;;;;;-1:-1:-1;;;18416:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18480:1;18310:179;-1:-1:-1;;;18310:179:0:o;44447:799::-;44701:15;:2;-1:-1:-1;;;;;44701:13:0;;:15::i;:::-;44697:542;;;44754:2;-1:-1:-1;;;;;44737:43:0;;44781:8;44791:4;44797:3;44802:7;44811:4;44737:79;;;;;;;;;;;;;-1:-1:-1;;;;;44737:79:0;;;;;;-1:-1:-1;;;;;44737:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;44737:79:0;;;44733:495;;;;:::i;:::-;;;;;;;;45094:14;;-1:-1:-1;;;45094:14:0;;;;;;;;;;;;;;;;;45101:6;;45094:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44733:495;45150:62;;-1:-1:-1;;;45150:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44733:495;-1:-1:-1;;;;;;44866:64:0;;-1:-1:-1;;;44866:64:0;44862:163;;44955:50;;-1:-1:-1;;;44955:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44862:163;44817:223;44447:799;;;;;;:::o;40019:715::-;-1:-1:-1;;;;;40154:16:0;;40146:62;;;;-1:-1:-1;;;40146:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40241:7;:14;40227:3;:10;:28;40219:81;;;;-1:-1:-1;;;40219:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40313:16;40332:12;:10;:12::i;:::-;40313:31;;40357:66;40378:8;40396:1;40400:2;40404:3;40409:7;40418:4;40357:20;:66::i;:::-;40441:6;40436:126;40457:3;:10;40453:1;:14;40436:126;;;40513:37;40528:9;:17;40538:3;40542:1;40538:6;;;;;;;;;;;;;;40528:17;;;;;;;;;;;:21;40546:2;-1:-1:-1;;;;;40528:21:0;-1:-1:-1;;;;;40528:21:0;;;;;;;;;;;;;40513:7;40521:1;40513:10;;;;;;;;;;;;;;:14;;:37;;;;:::i;:::-;40489:9;:17;40499:3;40503:1;40499:6;;;;;;;;;;;;;;;;;;;40489:17;;;;;;;;;;;;;-1:-1:-1;40489:17:0;;;-1:-1:-1;;;;;40489:21:0;;;;;;;;;:61;40469:3;;40436:126;;;;40615:2;-1:-1:-1;;;;;40579:53:0;40611:1;-1:-1:-1;;;;;40579:53:0;40593:8;-1:-1:-1;;;;;40579:53:0;;40619:3;40624:7;40579:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40645:81;40681:8;40699:1;40703:2;40707:3;40712:7;40721:4;40645:35;:81::i;:::-;40019:715;;;;;:::o;39080:583::-;-1:-1:-1;;;;;39195:21:0;;39187:67;;;;-1:-1:-1;;;39187:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39267:16;39286:12;:10;:12::i;:::-;39267:31;;39311:107;39332:8;39350:1;39354:7;39363:21;39381:2;39363:17;:21::i;39311:107::-;39456:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;39456:22:0;;;;;;;;;;:34;;39483:6;39456:26;:34::i;:::-;39431:13;;;;:9;:13;;;;;;;;-1:-1:-1;;;;;39431:22:0;;;;;;;;;;;;:59;;;;39506:57;;;;;;;;;;;;;39431:22;;39506:57;;;;;;;;;;;;39576:79;39607:8;39625:1;39629:7;39638:2;39642:6;39650:4;39576:30;:79::i;45254:198::-;45374:16;;;45388:1;45374:16;;;;;;;;;45320;;;;45374;;;;;;;;;;;;-1:-1:-1;45374:16:0;45349:41;;45412:7;45401:5;45407:1;45401:8;;;;;;;;;;;;;;;;;:18;45439:5;45254:198;-1:-1:-1;;45254:198:0:o;43677:762::-;43906:15;:2;-1:-1:-1;;;;;43906:13:0;;:15::i;:::-;43902:530;;;43959:2;-1:-1:-1;;;;;43942:38:0;;43981:8;43991:4;43997:2;44001:6;44009:4;43942:72;;;;;;;;;;;;;-1:-1:-1;;;;;43942:72:0;;;;;;-1:-1:-1;;;;;43942:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43942:72:0;;;43938:483;;;;:::i;:::-;-1:-1:-1;;;;;;44064:59:0;;-1:-1:-1;;;44064:59:0;44060:158;;44148:50;;-1:-1:-1;;;44148:50:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23759:422;24126:20;24165:8;;;23759:422::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:88:1;89:3;85:15;;71:31::o;107:764::-;;188:4;170:16;167:26;164:2;;;196:5;;164:2;237:1;232:3;227;212:27;299:10;261:36;292:3;286:10;261:36;:::i;:::-;258:52;248:2;;314:5;;248:2;348;342:9;388:16;-1:-1:-1;;384:29:1;381:1;342:9;360:54;443:4;437:11;467:16;502:18;573:2;566:4;558:6;554:17;551:25;546:2;538:6;535:14;532:45;529:2;;;580:5;;;;;;529:2;617:6;611:4;607:17;596:28;;653:3;647:10;633:24;;680:2;672:6;669:14;666:2;;;686:5;;;;;;666:2;;747:16;741:4;737:27;730:4;721:6;716:3;712:16;708:27;705:60;702:2;;;768:5;;;;;702:2;833;812:15;-1:-1:-1;;808:29:1;799:39;;840:4;795:50;791:2;784:62;803:3;-1:-1:-1;;154:717:1;:::o

Swarm Source

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