ETH Price: $2,354.31 (+1.04%)

Token

ASCII MFERs (AMFER)
 

Overview

Max Total Supply

420 AMFER

Holders

206

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AMFER
0xAdE336F3496452e5cB47a75649D14cA0823e7A11
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Collection of 420 on-chain ASCII mfers. No devs, no roadmaps, just art.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ASCIIMFers

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-06
*/

// File: contracts/ascii-mfers-interfaces.sol



pragma solidity >=0.8.13;

interface ITemplate1
{
    function templateNone() external pure returns (string memory);
    function templateKnit() external pure returns (string memory);
    function templateCowboy() external pure returns (string memory);
}

interface ITemplate2
{
    function templatePilot() external pure returns (string memory);
    function templateHoodie() external pure returns(string memory);
    function templateTophat() external pure returns (string memory);
}
// File: @openzeppelin/contracts/utils/Base64.sol


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

        uint256 size;
        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");

        (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");

        (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");

        (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");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

// File: contracts/ascii-mfers.sol



pragma solidity >=0.8.13;






contract ASCIIMFers is ERC721, Ownable
{
    uint constant MAX_MFERS = 420;    
    uint private _reserve = 42;
    uint private _reserveCounter;
    uint private _publicCounter;

    mapping(uint => uint) private _tokenSeeds;

    ITemplate1 private _template1Contract;
    ITemplate2 private _template2Contract;

    constructor(address template1, address template2) Ownable() ERC721("ASCII MFERs", "AMFER")
    {
        _template1Contract = ITemplate1(template1);
        _template2Contract = ITemplate2(template2);

        claimReserve();
    }

    function totalSupply() public view returns(uint supply)
    {
        supply = _reserveCounter + _publicCounter;
    }

    /* claim */
    function claimReserve() onlyOwner public
    {
        require(_reserveCounter < _reserve, "Nothing in reserve");

        _reserveCounter += 1;

        mint(msg.sender, _reserveCounter);
    }

    function claim() public
    {
        require(_reserve + _publicCounter < MAX_MFERS, "Everything is minted");
        
        _publicCounter += 1;

        mint(msg.sender, _reserve + _publicCounter);
    }

    function mint(address mfer, uint token) private
    {
        _mint(mfer, token);
        _tokenSeeds[token] = generateSeed(token);
    }

    function generateSeed(uint token) private view returns (uint seed)
    {
        seed = uint(keccak256(abi.encodePacked(token, block.number)));
    }

    /* show art */

    function tokenURI(uint token) public view override(ERC721) returns (string memory encoded_metadata)
    {   
        uint template_level = getLevel(uint(keccak256(abi.encodePacked("s1", _tokenSeeds[token]))) % MAX_MFERS);
        uint colorscheme_level = getLevel(uint(keccak256(abi.encodePacked("s2", _tokenSeeds[token]))) % MAX_MFERS);

        string memory bgColor;
        string memory textColor;

        (bgColor, textColor) = getColorScheme(colorscheme_level);

        string memory hat = getHatName(template_level);

        string memory name = string(abi.encodePacked("ASCII MFER #", Strings.toString(token)));
        string memory description = "ASCII MFers is a collection of 420 on-chain ASCII Mfers";

        string memory attributes = string(abi.encodePacked("[{\"trait_type\": \"Hat\",\"value\": \"",hat,"\"},{\"trait_type\": \"Background\",\"value\": \"",bgColor,"\"},{\"trait_type\": \"Text\",\"value\": \"",textColor,"\"}]"));

        string memory image = string(abi.encodePacked("data:image/svg+xml;base64,", Base64.encode(getSVG(colorscheme_level, template_level))));
        string memory json = 
            Base64.encode(
                bytes(
                    string(
                        abi.encodePacked(
                            "{\"name\": \"", name,"\", \"description\": \"",description,"\", \"attributes\":",attributes,", \"image\": \"",image,"\"}"))));

        encoded_metadata = string(abi.encodePacked("data:application/json;base64,", json));
    }

    function getLevel(uint seed) private pure returns (uint level)
    {
        if (seed < 10) return 5;
        if (seed < 35) return 4;
        if (seed < 85) return 3;
        if (seed < 160) return 2;
        if (seed < 270) return 1;
        
        return 0;
    }

    function getHatName(uint level) private pure returns(string memory)
    {
        if (level == 1) return "Knit";        
        if (level == 2) return "Cowboy";        
        if (level == 3) return "Pilot";        
        if (level == 4) return "Hoodie";
        if (level == 5) return "Tophat";

        return "None";
    }

    function getColorScheme(uint level) private pure returns(string memory background, string memory text)
    {
        if (level == 1) return ("lightsalmon", "navy");        
        if (level == 2) return ("lightcyan","coral");        
        if (level == 3) return ("mistyrose", "darkgreen");        
        if (level == 4) return ("lime", "indigo");
        if (level == 5) return ("gold", "black");

        return ("white", "black");
    }

    function getSVG(uint colorscheme_level, uint template_level) private view returns (bytes memory)
    {
        string memory bgColor;
        string memory textColor;

        (bgColor, textColor) = getColorScheme(colorscheme_level);
        
        return
            abi.encodePacked(
                "<svg xmlns=\"http://www.w3.org/2000/svg\" preserveAspectRatio=\"xMinYMin meet\" viewBox=\"0 0 432 480\">"
                "<style>\n"
                ".text { font-family: monospace, monospace; font-size: 9px; }\n"
                ".text { fill:", textColor, "}\n"
                ".rect { fill:", bgColor, "}\n"
                "</style>"
                "<rect width=\"100%\" height=\"100%\" class=\"rect\" />",
                getTemplate(template_level),
                "</svg>"
            );
    }

    function getTemplate(uint level) public view returns (string memory)
    {
        if (level == 5) return _template2Contract.templateTophat();

        if (level == 4) return _template2Contract.templateHoodie();

        if (level == 3) return _template2Contract.templatePilot();

        if (level == 2) return _template1Contract.templateCowboy();

        if (level == 1) return _template1Contract.templateKnit();

        return _template1Contract.templateNone();
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"template1","type":"address"},{"internalType":"address","name":"template2","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"level","type":"uint256"}],"name":"getTemplate","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"token","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"encoded_metadata","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"supply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052602a6007553480156200001657600080fd5b50604051620029963803806200299683398101604081905262000039916200049c565b604080518082018252600b81526a4153434949204d4645527360a81b60208083019182528351808501909452600584526420a6a322a960d91b9084015281519192916200008991600091620003d9565b5080516200009f906001906020840190620003d9565b505050620000bc620000b6620000fe60201b60201c565b62000102565b600b80546001600160a01b038085166001600160a01b031992831617909255600c805492841692909116919091179055620000f662000154565b505062000537565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b60075460085410620001fe5760405162461bcd60e51b81526020600482015260126024820152714e6f7468696e6720696e207265736572766560701b6044820152606401620001ab565b600160086000828254620002139190620004d4565b9091555050600854620002289033906200022a565b565b62000236828262000254565b62000241816200039c565b6000918252600a60205260409091205550565b6001600160a01b038216620002ac5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620001ab565b6000818152600260205260409020546001600160a01b031615620003135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620001ab565b6001600160a01b03821660009081526003602052604081208054600192906200033e908490620004d4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008143604051602001620003bb929190918252602082015260400190565b60408051601f19818403018152919052805160209091012092915050565b828054620003e790620004fb565b90600052602060002090601f0160209004810192826200040b576000855562000456565b82601f106200042657805160ff191683800117855562000456565b8280016001018555821562000456579182015b828111156200045657825182559160200191906001019062000439565b506200046492915062000468565b5090565b5b8082111562000464576000815560010162000469565b80516001600160a01b03811681146200049757600080fd5b919050565b60008060408385031215620004b057600080fd5b620004bb836200047f565b9150620004cb602084016200047f565b90509250929050565b60008219821115620004f657634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200051057607f821691505b6020821081036200053157634e487b7160e01b600052602260045260246000fd5b50919050565b61244f80620005476000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063a22cb46511610071578063a22cb46514610254578063b88d4fde14610267578063c87b56dd1461027a578063e985e9c51461028d578063f2fde38b146102c957600080fd5b80636352211e1461020d57806370a0823114610220578063715018a6146102335780638da5cb5b1461023b57806395d89b411461024c57600080fd5b806323b872dd116100f457806323b872dd146101c457806331543cf4146101d75780633fe5f054146101ea57806342842e0e146101f25780634e71d92d1461020557600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f3660046119f4565b6102dc565b60405190151581526020015b60405180910390f35b61016161032e565b6040516101509190611a70565b61018161017c366004611a83565b6103c0565b6040516001600160a01b039091168152602001610150565b6101ac6101a7366004611ab8565b61045a565b005b6101b661056f565b604051908152602001610150565b6101ac6101d2366004611ae2565b610586565b6101616101e5366004611a83565b6105b7565b6101ac6107fb565b6101ac610200366004611ae2565b610895565b6101ac6108b0565b61018161021b366004611a83565b61093a565b6101b661022e366004611b1e565b6109b1565b6101ac610a38565b6006546001600160a01b0316610181565b610161610a6c565b6101ac610262366004611b39565b610a7b565b6101ac610275366004611be4565b610a8a565b610161610288366004611a83565b610ac2565b61014461029b366004611c8f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ac6102d7366004611b1e565b610c7f565b60006001600160e01b031982166380ac58cd60e01b148061030d57506001600160e01b03198216635b5e139f60e01b145b8061032857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461033d90611cc2565b80601f016020809104026020016040519081016040528092919081815260200182805461036990611cc2565b80156103b65780601f1061038b576101008083540402835291602001916103b6565b820191906000526020600020905b81548152906001019060200180831161039957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661043e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104658261093a565b9050806001600160a01b0316836001600160a01b0316036104d25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610435565b336001600160a01b03821614806104ee57506104ee813361029b565b6105605760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610435565b61056a8383610d1a565b505050565b60006009546008546105819190611d12565b905090565b6105903382610d88565b6105ac5760405162461bcd60e51b815260040161043590611d2a565b61056a838383610e7f565b60608160050361063c57600c60009054906101000a90046001600160a01b03166001600160a01b031663a03396866040518163ffffffff1660e01b8152600401600060405180830381865afa158015610614573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103289190810190611d7b565b8160040361069757600c60009054906101000a90046001600160a01b03166001600160a01b0316630c3c05f46040518163ffffffff1660e01b8152600401600060405180830381865afa158015610614573d6000803e3d6000fd5b816003036106f257600c60009054906101000a90046001600160a01b03166001600160a01b031663a070fd2f6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610614573d6000803e3d6000fd5b8160020361074d57600b60009054906101000a90046001600160a01b03166001600160a01b0316637309df116040518163ffffffff1660e01b8152600401600060405180830381865afa158015610614573d6000803e3d6000fd5b816001036107a857600b60009054906101000a90046001600160a01b03166001600160a01b031663bf4ecb616040518163ffffffff1660e01b8152600401600060405180830381865afa158015610614573d6000803e3d6000fd5b600b60009054906101000a90046001600160a01b03166001600160a01b0316637f05af316040518163ffffffff1660e01b8152600401600060405180830381865afa158015610614573d6000803e3d6000fd5b6006546001600160a01b031633146108255760405162461bcd60e51b815260040161043590611df2565b6007546008541061086d5760405162461bcd60e51b81526020600482015260126024820152714e6f7468696e6720696e207265736572766560701b6044820152606401610435565b6001600860008282546108809190611d12565b925050819055506108933360085461101f565b565b61056a83838360405180602001604052806000815250610a8a565b6101a46009546007546108c39190611d12565b106109075760405162461bcd60e51b8152602060048201526014602482015273115d995c9e5d1a1a5b99c81a5cc81b5a5b9d195960621b6044820152606401610435565b60016009600082825461091a9190611d12565b92505081905550610893336009546007546109359190611d12565b61101f565b6000818152600260205260408120546001600160a01b0316806103285760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610435565b60006001600160a01b038216610a1c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610435565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a625760405162461bcd60e51b815260040161043590611df2565b6108936000611045565b60606001805461033d90611cc2565b610a86338383611097565b5050565b610a943383610d88565b610ab05760405162461bcd60e51b815260040161043590611d2a565b610abc84848484611165565b50505050565b6000818152600a6020908152604080832054905161733160f01b92810192909252602282015260609190610b20906101a4906042015b6040516020818303038152906040528051906020012060001c610b1b9190611e3d565b611198565b6000848152600a6020908152604080832054905161399960f11b92810192909252602282015291925090610b5a906101a490604201610af8565b9050606080610b68836111f8565b90925090506000610b78856113d1565b90506000610b85886114c2565b604051602001610b959190611e6d565b60408051601f19818403018152606083019091526037808352909250600091906123e3602083013990506000838686604051602001610bd693929190611ea1565b60405160208183030381529060405290506000610bfb610bf6898b6115c3565b61160c565b604051602001610c0b9190611f90565b60405160208183030381529060405290506000610c4c85858585604051602001610c389493929190611fd5565b60405160208183030381529060405261160c565b905080604051602001610c5f91906120a9565b6040516020818303038152906040529a5050505050505050505050919050565b6006546001600160a01b03163314610ca95760405162461bcd60e51b815260040161043590611df2565b6001600160a01b038116610d0e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610435565b610d1781611045565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d4f8261093a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610e015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610435565b6000610e0c8361093a565b9050806001600160a01b0316846001600160a01b03161480610e475750836001600160a01b0316610e3c846103c0565b6001600160a01b0316145b80610e7757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e928261093a565b6001600160a01b031614610efa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610435565b6001600160a01b038216610f5c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610435565b610f67600082610d1a565b6001600160a01b0383166000908152600360205260408120805460019290610f909084906120ee565b90915550506001600160a01b0382166000908152600360205260408120805460019290610fbe908490611d12565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611029828261175f565b611032816118a1565b6000918252600a60205260409091205550565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036110f85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610435565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611170848484610e7f565b61117c848484846118dd565b610abc5760405162461bcd60e51b815260040161043590612105565b6000600a8210156111ab57506005919050565b60238210156111bc57506004919050565b60558210156111cd57506003919050565b60a08210156111de57506002919050565b61010e8210156111f057506001919050565b506000919050565b6060808260010361124d576040518060400160405280600b81526020016a3634b3b43a39b0b636b7b760a91b815250604051806040016040528060048152602001636e61767960e01b81525091509150915091565b8260020361129e57604051806040016040528060098152602001683634b3b43a31bcb0b760b91b8152506040518060400160405280600581526020016418dbdc985b60da1b81525091509150915091565b826003036112f357604051806040016040528060098152602001686d69737479726f736560b81b815250604051806040016040528060098152602001683230b935b3b932b2b760b91b81525091509150915091565b8260040361134057604051806040016040528060048152602001636c696d6560e01b81525060405180604001604052806006815260200165696e6469676f60d01b81525091509150915091565b8260050361138c576040518060400160405280600481526020016319dbdb1960e21b81525060405180604001604052806005815260200164626c61636b60d81b81525091509150915091565b60405180604001604052806005815260200164776869746560d81b81525060405180604001604052806005815260200164626c61636b60d81b81525091509150915091565b6060816001036113fb57505060408051808201909152600481526312db9a5d60e21b602082015290565b81600203611425575050604080518082019091526006815265436f77626f7960d01b602082015290565b8160030361144e575050604080518082019091526005815264141a5b1bdd60da1b602082015290565b81600403611478575050604080518082019091526006815265486f6f64696560d01b602082015290565b816005036114a2575050604080518082019091526006815265151bdc1a185d60d21b602082015290565b50506040805180820190915260048152634e6f6e6560e01b602082015290565b6060816000036114e95750506040805180820190915260018152600360fc1b602082015290565b8160005b811561151357806114fd81612157565b915061150c9050600a83612170565b91506114ed565b60008167ffffffffffffffff81111561152e5761152e611b75565b6040519080825280601f01601f191660200182016040528015611558576020820181803683370190505b5090505b8415610e775761156d6001836120ee565b915061157a600a86611e3d565b611585906030611d12565b60f81b81838151811061159a5761159a612184565b60200101906001600160f81b031916908160001a9053506115bc600a86612170565b945061155c565b60608060606115d1856111f8565b909250905080826115e1866105b7565b6040516020016115f39392919061219a565b6040516020818303038152906040529250505092915050565b6060815160000361162b57505060408051602081019091526000815290565b60006040518060600160405280604081526020016123a3604091399050600060038451600261165a9190611d12565b6116649190612170565b61166f906004612333565b67ffffffffffffffff81111561168757611687611b75565b6040519080825280601f01601f1916602001820160405280156116b1576020820181803683370190505b509050600182016020820185865187015b8082101561171d576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506116c2565b5050600386510660018114611739576002811461174c57611754565b603d6001830353603d6002830353611754565b603d60018303535b509195945050505050565b6001600160a01b0382166117b55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610435565b6000818152600260205260409020546001600160a01b03161561181a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610435565b6001600160a01b0382166000908152600360205260408120805460019290611843908490611d12565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081436040516020016118bf929190918252602082015260400190565b60408051601f19818403018152919052805160209091012092915050565b60006001600160a01b0384163b156119d357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611921903390899088908890600401612352565b6020604051808303816000875af192505050801561195c575060408051601f3d908101601f1916820190925261195991810190612385565b60015b6119b9573d80801561198a576040519150601f19603f3d011682016040523d82523d6000602084013e61198f565b606091505b5080516000036119b15760405162461bcd60e51b815260040161043590612105565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e77565b506001949350505050565b6001600160e01b031981168114610d1757600080fd5b600060208284031215611a0657600080fd5b8135611a11816119de565b9392505050565b60005b83811015611a33578181015183820152602001611a1b565b83811115610abc5750506000910152565b60008151808452611a5c816020860160208601611a18565b601f01601f19169290920160200192915050565b602081526000611a116020830184611a44565b600060208284031215611a9557600080fd5b5035919050565b80356001600160a01b0381168114611ab357600080fd5b919050565b60008060408385031215611acb57600080fd5b611ad483611a9c565b946020939093013593505050565b600080600060608486031215611af757600080fd5b611b0084611a9c565b9250611b0e60208501611a9c565b9150604084013590509250925092565b600060208284031215611b3057600080fd5b611a1182611a9c565b60008060408385031215611b4c57600080fd5b611b5583611a9c565b915060208301358015158114611b6a57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611bb457611bb4611b75565b604052919050565b600067ffffffffffffffff821115611bd657611bd6611b75565b50601f01601f191660200190565b60008060008060808587031215611bfa57600080fd5b611c0385611a9c565b9350611c1160208601611a9c565b925060408501359150606085013567ffffffffffffffff811115611c3457600080fd5b8501601f81018713611c4557600080fd5b8035611c58611c5382611bbc565b611b8b565b818152886020838501011115611c6d57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060408385031215611ca257600080fd5b611cab83611a9c565b9150611cb960208401611a9c565b90509250929050565b600181811c90821680611cd657607f821691505b602082108103611cf657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d2557611d25611cfc565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600060208284031215611d8d57600080fd5b815167ffffffffffffffff811115611da457600080fd5b8201601f81018413611db557600080fd5b8051611dc3611c5382611bbc565b818152856020838501011115611dd857600080fd5b611de9826020830160208601611a18565b95945050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b600082611e4c57611e4c611e27565b500690565b60008151611e63818560208601611a18565b9290920192915050565b6b4153434949204d464552202360a01b815260008251611e9481600c850160208701611a18565b91909101600c0192915050565b7f5b7b2274726169745f74797065223a2022486174222c2276616c7565223a2022815260008451611ed9816020850160208901611a18565b80830190507f227d2c7b2274726169745f74797065223a20224261636b67726f756e64222c226020820152683b30b63ab2911d101160b91b60408201528451611f29816049840160208901611a18565b7f227d2c7b2274726169745f74797065223a202254657874222c2276616c75652260499290910191820152621d101160e91b60698201528351611f7381606c840160208801611a18565b62227d5d60e81b606c9290910191820152606f0195945050505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000815260008251611fc881601a850160208701611a18565b91909101601a0192915050565b693d913730b6b2911d101160b11b81528451600090611ffb81600a850160208a01611a18565b72111610113232b9b1b934b83a34b7b7111d101160691b600a91840191820152855161202e81601d840160208a01611a18565b6f1116101130ba3a3934b13aba32b9911d60811b601d9290910191820152845161205f81602d840160208901611a18565b6b16101134b6b0b3b2911d101160a11b602d9290910191820152835161208c816039840160208801611a18565b61227d60f01b60399290910191820152603b019695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516120e181601d850160208701611a18565b91909101601d0192915050565b60008282101561210057612100611cfc565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006001820161216957612169611cfc565b5060010190565b60008261217f5761217f611e27565b500490565b634e487b7160e01b600052603260045260246000fd5b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f73766722207072657365727665417370656374526174696f3d22784d6960208201527f6e594d696e206d656574222076696577426f783d22302030203433322034383060408201527f223e3c7374796c653e0a2e74657874207b20666f6e742d66616d696c793a206d60608201527f6f6e6f73706163652c206d6f6e6f73706163653b20666f6e742d73697a653a206080820152731cb83c1d903e85173a32bc3a103d903334b6361d60611b60a0820152600084516122878160b4850160208901611a18565b6e3e85173932b1ba103d903334b6361d60891b60b49184019182015284516122b68160c3840160208901611a18565b7f7d0a3c2f7374796c653e3c726563742077696474683d2231303025222068656960c392909101918201527f6768743d22313030252220636c6173733d227265637422202f3e00000000000060e382015261232961231760fd830186611e51565b651e17b9bb339f60d11b815260060190565b9695505050505050565b600081600019048311821515161561234d5761234d611cfc565b500290565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061232990830184611a44565b60006020828403121561239757600080fd5b8151611a11816119de56fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f4153434949204d46657273206973206120636f6c6c656374696f6e206f6620343230206f6e2d636861696e204153434949204d66657273a26469706673582212206f27b5a1675cc5a12e60726f8cf0c5983b0b6ea33a0f6e60424bf5ee5ccec31964736f6c634300080d0033000000000000000000000000361f8328c929ec9460abcf8ccb55e7ac5e89923f000000000000000000000000b48671265b9777596068769dc9aa6d3a40478d90

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80636352211e116100ad578063a22cb46511610071578063a22cb46514610254578063b88d4fde14610267578063c87b56dd1461027a578063e985e9c51461028d578063f2fde38b146102c957600080fd5b80636352211e1461020d57806370a0823114610220578063715018a6146102335780638da5cb5b1461023b57806395d89b411461024c57600080fd5b806323b872dd116100f457806323b872dd146101c457806331543cf4146101d75780633fe5f054146101ea57806342842e0e146101f25780634e71d92d1461020557600080fd5b806301ffc9a71461013157806306fdde0314610159578063081812fc1461016e578063095ea7b31461019957806318160ddd146101ae575b600080fd5b61014461013f3660046119f4565b6102dc565b60405190151581526020015b60405180910390f35b61016161032e565b6040516101509190611a70565b61018161017c366004611a83565b6103c0565b6040516001600160a01b039091168152602001610150565b6101ac6101a7366004611ab8565b61045a565b005b6101b661056f565b604051908152602001610150565b6101ac6101d2366004611ae2565b610586565b6101616101e5366004611a83565b6105b7565b6101ac6107fb565b6101ac610200366004611ae2565b610895565b6101ac6108b0565b61018161021b366004611a83565b61093a565b6101b661022e366004611b1e565b6109b1565b6101ac610a38565b6006546001600160a01b0316610181565b610161610a6c565b6101ac610262366004611b39565b610a7b565b6101ac610275366004611be4565b610a8a565b610161610288366004611a83565b610ac2565b61014461029b366004611c8f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101ac6102d7366004611b1e565b610c7f565b60006001600160e01b031982166380ac58cd60e01b148061030d57506001600160e01b03198216635b5e139f60e01b145b8061032857506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461033d90611cc2565b80601f016020809104026020016040519081016040528092919081815260200182805461036990611cc2565b80156103b65780601f1061038b576101008083540402835291602001916103b6565b820191906000526020600020905b81548152906001019060200180831161039957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661043e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006104658261093a565b9050806001600160a01b0316836001600160a01b0316036104d25760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610435565b336001600160a01b03821614806104ee57506104ee813361029b565b6105605760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610435565b61056a8383610d1a565b505050565b60006009546008546105819190611d12565b905090565b6105903382610d88565b6105ac5760405162461bcd60e51b815260040161043590611d2a565b61056a838383610e7f565b60608160050361063c57600c60009054906101000a90046001600160a01b03166001600160a01b031663a03396866040518163ffffffff1660e01b8152600401600060405180830381865afa158015610614573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526103289190810190611d7b565b8160040361069757600c60009054906101000a90046001600160a01b03166001600160a01b0316630c3c05f46040518163ffffffff1660e01b8152600401600060405180830381865afa158015610614573d6000803e3d6000fd5b816003036106f257600c60009054906101000a90046001600160a01b03166001600160a01b031663a070fd2f6040518163ffffffff1660e01b8152600401600060405180830381865afa158015610614573d6000803e3d6000fd5b8160020361074d57600b60009054906101000a90046001600160a01b03166001600160a01b0316637309df116040518163ffffffff1660e01b8152600401600060405180830381865afa158015610614573d6000803e3d6000fd5b816001036107a857600b60009054906101000a90046001600160a01b03166001600160a01b031663bf4ecb616040518163ffffffff1660e01b8152600401600060405180830381865afa158015610614573d6000803e3d6000fd5b600b60009054906101000a90046001600160a01b03166001600160a01b0316637f05af316040518163ffffffff1660e01b8152600401600060405180830381865afa158015610614573d6000803e3d6000fd5b6006546001600160a01b031633146108255760405162461bcd60e51b815260040161043590611df2565b6007546008541061086d5760405162461bcd60e51b81526020600482015260126024820152714e6f7468696e6720696e207265736572766560701b6044820152606401610435565b6001600860008282546108809190611d12565b925050819055506108933360085461101f565b565b61056a83838360405180602001604052806000815250610a8a565b6101a46009546007546108c39190611d12565b106109075760405162461bcd60e51b8152602060048201526014602482015273115d995c9e5d1a1a5b99c81a5cc81b5a5b9d195960621b6044820152606401610435565b60016009600082825461091a9190611d12565b92505081905550610893336009546007546109359190611d12565b61101f565b6000818152600260205260408120546001600160a01b0316806103285760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610435565b60006001600160a01b038216610a1c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610435565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610a625760405162461bcd60e51b815260040161043590611df2565b6108936000611045565b60606001805461033d90611cc2565b610a86338383611097565b5050565b610a943383610d88565b610ab05760405162461bcd60e51b815260040161043590611d2a565b610abc84848484611165565b50505050565b6000818152600a6020908152604080832054905161733160f01b92810192909252602282015260609190610b20906101a4906042015b6040516020818303038152906040528051906020012060001c610b1b9190611e3d565b611198565b6000848152600a6020908152604080832054905161399960f11b92810192909252602282015291925090610b5a906101a490604201610af8565b9050606080610b68836111f8565b90925090506000610b78856113d1565b90506000610b85886114c2565b604051602001610b959190611e6d565b60408051601f19818403018152606083019091526037808352909250600091906123e3602083013990506000838686604051602001610bd693929190611ea1565b60405160208183030381529060405290506000610bfb610bf6898b6115c3565b61160c565b604051602001610c0b9190611f90565b60405160208183030381529060405290506000610c4c85858585604051602001610c389493929190611fd5565b60405160208183030381529060405261160c565b905080604051602001610c5f91906120a9565b6040516020818303038152906040529a5050505050505050505050919050565b6006546001600160a01b03163314610ca95760405162461bcd60e51b815260040161043590611df2565b6001600160a01b038116610d0e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610435565b610d1781611045565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610d4f8261093a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610e015760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610435565b6000610e0c8361093a565b9050806001600160a01b0316846001600160a01b03161480610e475750836001600160a01b0316610e3c846103c0565b6001600160a01b0316145b80610e7757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610e928261093a565b6001600160a01b031614610efa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610435565b6001600160a01b038216610f5c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610435565b610f67600082610d1a565b6001600160a01b0383166000908152600360205260408120805460019290610f909084906120ee565b90915550506001600160a01b0382166000908152600360205260408120805460019290610fbe908490611d12565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611029828261175f565b611032816118a1565b6000918252600a60205260409091205550565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b0316036110f85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610435565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611170848484610e7f565b61117c848484846118dd565b610abc5760405162461bcd60e51b815260040161043590612105565b6000600a8210156111ab57506005919050565b60238210156111bc57506004919050565b60558210156111cd57506003919050565b60a08210156111de57506002919050565b61010e8210156111f057506001919050565b506000919050565b6060808260010361124d576040518060400160405280600b81526020016a3634b3b43a39b0b636b7b760a91b815250604051806040016040528060048152602001636e61767960e01b81525091509150915091565b8260020361129e57604051806040016040528060098152602001683634b3b43a31bcb0b760b91b8152506040518060400160405280600581526020016418dbdc985b60da1b81525091509150915091565b826003036112f357604051806040016040528060098152602001686d69737479726f736560b81b815250604051806040016040528060098152602001683230b935b3b932b2b760b91b81525091509150915091565b8260040361134057604051806040016040528060048152602001636c696d6560e01b81525060405180604001604052806006815260200165696e6469676f60d01b81525091509150915091565b8260050361138c576040518060400160405280600481526020016319dbdb1960e21b81525060405180604001604052806005815260200164626c61636b60d81b81525091509150915091565b60405180604001604052806005815260200164776869746560d81b81525060405180604001604052806005815260200164626c61636b60d81b81525091509150915091565b6060816001036113fb57505060408051808201909152600481526312db9a5d60e21b602082015290565b81600203611425575050604080518082019091526006815265436f77626f7960d01b602082015290565b8160030361144e575050604080518082019091526005815264141a5b1bdd60da1b602082015290565b81600403611478575050604080518082019091526006815265486f6f64696560d01b602082015290565b816005036114a2575050604080518082019091526006815265151bdc1a185d60d21b602082015290565b50506040805180820190915260048152634e6f6e6560e01b602082015290565b6060816000036114e95750506040805180820190915260018152600360fc1b602082015290565b8160005b811561151357806114fd81612157565b915061150c9050600a83612170565b91506114ed565b60008167ffffffffffffffff81111561152e5761152e611b75565b6040519080825280601f01601f191660200182016040528015611558576020820181803683370190505b5090505b8415610e775761156d6001836120ee565b915061157a600a86611e3d565b611585906030611d12565b60f81b81838151811061159a5761159a612184565b60200101906001600160f81b031916908160001a9053506115bc600a86612170565b945061155c565b60608060606115d1856111f8565b909250905080826115e1866105b7565b6040516020016115f39392919061219a565b6040516020818303038152906040529250505092915050565b6060815160000361162b57505060408051602081019091526000815290565b60006040518060600160405280604081526020016123a3604091399050600060038451600261165a9190611d12565b6116649190612170565b61166f906004612333565b67ffffffffffffffff81111561168757611687611b75565b6040519080825280601f01601f1916602001820160405280156116b1576020820181803683370190505b509050600182016020820185865187015b8082101561171d576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453506001830192506116c2565b5050600386510660018114611739576002811461174c57611754565b603d6001830353603d6002830353611754565b603d60018303535b509195945050505050565b6001600160a01b0382166117b55760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610435565b6000818152600260205260409020546001600160a01b03161561181a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610435565b6001600160a01b0382166000908152600360205260408120805460019290611843908490611d12565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600081436040516020016118bf929190918252602082015260400190565b60408051601f19818403018152919052805160209091012092915050565b60006001600160a01b0384163b156119d357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611921903390899088908890600401612352565b6020604051808303816000875af192505050801561195c575060408051601f3d908101601f1916820190925261195991810190612385565b60015b6119b9573d80801561198a576040519150601f19603f3d011682016040523d82523d6000602084013e61198f565b606091505b5080516000036119b15760405162461bcd60e51b815260040161043590612105565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610e77565b506001949350505050565b6001600160e01b031981168114610d1757600080fd5b600060208284031215611a0657600080fd5b8135611a11816119de565b9392505050565b60005b83811015611a33578181015183820152602001611a1b565b83811115610abc5750506000910152565b60008151808452611a5c816020860160208601611a18565b601f01601f19169290920160200192915050565b602081526000611a116020830184611a44565b600060208284031215611a9557600080fd5b5035919050565b80356001600160a01b0381168114611ab357600080fd5b919050565b60008060408385031215611acb57600080fd5b611ad483611a9c565b946020939093013593505050565b600080600060608486031215611af757600080fd5b611b0084611a9c565b9250611b0e60208501611a9c565b9150604084013590509250925092565b600060208284031215611b3057600080fd5b611a1182611a9c565b60008060408385031215611b4c57600080fd5b611b5583611a9c565b915060208301358015158114611b6a57600080fd5b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715611bb457611bb4611b75565b604052919050565b600067ffffffffffffffff821115611bd657611bd6611b75565b50601f01601f191660200190565b60008060008060808587031215611bfa57600080fd5b611c0385611a9c565b9350611c1160208601611a9c565b925060408501359150606085013567ffffffffffffffff811115611c3457600080fd5b8501601f81018713611c4557600080fd5b8035611c58611c5382611bbc565b611b8b565b818152886020838501011115611c6d57600080fd5b8160208401602083013760006020838301015280935050505092959194509250565b60008060408385031215611ca257600080fd5b611cab83611a9c565b9150611cb960208401611a9c565b90509250929050565b600181811c90821680611cd657607f821691505b602082108103611cf657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115611d2557611d25611cfc565b500190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600060208284031215611d8d57600080fd5b815167ffffffffffffffff811115611da457600080fd5b8201601f81018413611db557600080fd5b8051611dc3611c5382611bbc565b818152856020838501011115611dd857600080fd5b611de9826020830160208601611a18565b95945050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b600082611e4c57611e4c611e27565b500690565b60008151611e63818560208601611a18565b9290920192915050565b6b4153434949204d464552202360a01b815260008251611e9481600c850160208701611a18565b91909101600c0192915050565b7f5b7b2274726169745f74797065223a2022486174222c2276616c7565223a2022815260008451611ed9816020850160208901611a18565b80830190507f227d2c7b2274726169745f74797065223a20224261636b67726f756e64222c226020820152683b30b63ab2911d101160b91b60408201528451611f29816049840160208901611a18565b7f227d2c7b2274726169745f74797065223a202254657874222c2276616c75652260499290910191820152621d101160e91b60698201528351611f7381606c840160208801611a18565b62227d5d60e81b606c9290910191820152606f0195945050505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c000000000000815260008251611fc881601a850160208701611a18565b91909101601a0192915050565b693d913730b6b2911d101160b11b81528451600090611ffb81600a850160208a01611a18565b72111610113232b9b1b934b83a34b7b7111d101160691b600a91840191820152855161202e81601d840160208a01611a18565b6f1116101130ba3a3934b13aba32b9911d60811b601d9290910191820152845161205f81602d840160208901611a18565b6b16101134b6b0b3b2911d101160a11b602d9290910191820152835161208c816039840160208801611a18565b61227d60f01b60399290910191820152603b019695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c0000008152600082516120e181601d850160208701611a18565b91909101601d0192915050565b60008282101561210057612100611cfc565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60006001820161216957612169611cfc565b5060010190565b60008261217f5761217f611e27565b500490565b634e487b7160e01b600052603260045260246000fd5b7f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323081527f30302f73766722207072657365727665417370656374526174696f3d22784d6960208201527f6e594d696e206d656574222076696577426f783d22302030203433322034383060408201527f223e3c7374796c653e0a2e74657874207b20666f6e742d66616d696c793a206d60608201527f6f6e6f73706163652c206d6f6e6f73706163653b20666f6e742d73697a653a206080820152731cb83c1d903e85173a32bc3a103d903334b6361d60611b60a0820152600084516122878160b4850160208901611a18565b6e3e85173932b1ba103d903334b6361d60891b60b49184019182015284516122b68160c3840160208901611a18565b7f7d0a3c2f7374796c653e3c726563742077696474683d2231303025222068656960c392909101918201527f6768743d22313030252220636c6173733d227265637422202f3e00000000000060e382015261232961231760fd830186611e51565b651e17b9bb339f60d11b815260060190565b9695505050505050565b600081600019048311821515161561234d5761234d611cfc565b500290565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061232990830184611a44565b60006020828403121561239757600080fd5b8151611a11816119de56fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f4153434949204d46657273206973206120636f6c6c656374696f6e206f6620343230206f6e2d636861696e204153434949204d66657273a26469706673582212206f27b5a1675cc5a12e60726f8cf0c5983b0b6ea33a0f6e60424bf5ee5ccec31964736f6c634300080d0033

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

000000000000000000000000361f8328c929ec9460abcf8ccb55e7ac5e89923f000000000000000000000000b48671265b9777596068769dc9aa6d3a40478d90

-----Decoded View---------------
Arg [0] : template1 (address): 0x361f8328c929ec9460AbCf8Ccb55E7aC5e89923f
Arg [1] : template2 (address): 0xB48671265B9777596068769Dc9aa6d3a40478d90

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000361f8328c929ec9460abcf8ccb55e7ac5e89923f
Arg [1] : 000000000000000000000000b48671265b9777596068769dc9aa6d3a40478d90


Deployed Bytecode Sourcemap

40423:5436:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27902:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;27902:305:0;;;;;;;;28847:100;;;:::i;:::-;;;;;;;:::i;30406:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;30406:221:0;1550:203:1;29929:411:0;;;;;;:::i;:::-;;:::i;:::-;;40999:121;;;:::i;:::-;;;2341:25:1;;;2329:2;2314:18;40999:121:0;2195:177:1;31156:339:0;;;;;;:::i;:::-;;:::i;45369:485::-;;;;;;:::i;:::-;;:::i;41145:201::-;;;:::i;31566:185::-;;;;;;:::i;:::-;;:::i;41354:214::-;;;:::i;28541:239::-;;;;;;:::i;:::-;;:::i;28271:208::-;;;;;;:::i;:::-;;:::i;8890:103::-;;;:::i;8239:87::-;8312:6;;-1:-1:-1;;;;;8312:6:0;8239:87;;29016:104;;;:::i;30699:155::-;;;;;;:::i;:::-;;:::i;31822:328::-;;;;;;:::i;:::-;;:::i;41907:1526::-;;;;;;:::i;:::-;;:::i;30925:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;31046:25:0;;;31022:4;31046:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30925:164;9148:201;;;;;;:::i;:::-;;:::i;27902:305::-;28004:4;-1:-1:-1;;;;;;28041:40:0;;-1:-1:-1;;;28041:40:0;;:105;;-1:-1:-1;;;;;;;28098:48:0;;-1:-1:-1;;;28098:48:0;28041:105;:158;;;-1:-1:-1;;;;;;;;;;20780:40:0;;;28163:36;28021:178;27902:305;-1:-1:-1;;27902:305:0:o;28847:100::-;28901:13;28934:5;28927:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28847:100;:::o;30406:221::-;30482:7;33749:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33749:16:0;30502:73;;;;-1:-1:-1;;;30502:73:0;;5601:2:1;30502:73:0;;;5583:21:1;5640:2;5620:18;;;5613:30;5679:34;5659:18;;;5652:62;-1:-1:-1;;;5730:18:1;;;5723:42;5782:19;;30502:73:0;;;;;;;;;-1:-1:-1;30595:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30595:24:0;;30406:221::o;29929:411::-;30010:13;30026:23;30041:7;30026:14;:23::i;:::-;30010:39;;30074:5;-1:-1:-1;;;;;30068:11:0;:2;-1:-1:-1;;;;;30068:11:0;;30060:57;;;;-1:-1:-1;;;30060:57:0;;6014:2:1;30060:57:0;;;5996:21:1;6053:2;6033:18;;;6026:30;6092:34;6072:18;;;6065:62;-1:-1:-1;;;6143:18:1;;;6136:31;6184:19;;30060:57:0;5812:397:1;30060:57:0;7043:10;-1:-1:-1;;;;;30152:21:0;;;;:62;;-1:-1:-1;30177:37:0;30194:5;7043:10;30925:164;:::i;30177:37::-;30130:168;;;;-1:-1:-1;;;30130:168:0;;6416:2:1;30130:168:0;;;6398:21:1;6455:2;6435:18;;;6428:30;6494:34;6474:18;;;6467:62;6565:26;6545:18;;;6538:54;6609:19;;30130:168:0;6214:420:1;30130:168:0;30311:21;30320:2;30324:7;30311:8;:21::i;:::-;29999:341;29929:411;;:::o;40999:121::-;41042:11;41098:14;;41080:15;;:32;;;;:::i;:::-;41071:41;;40999:121;:::o;31156:339::-;31351:41;7043:10;31384:7;31351:18;:41::i;:::-;31343:103;;;;-1:-1:-1;;;31343:103:0;;;;;;;:::i;:::-;31459:28;31469:4;31475:2;31479:7;31459:9;:28::i;45369:485::-;45423:13;45458:5;45467:1;45458:10;45454:58;;45477:18;;;;;;;;;-1:-1:-1;;;;;45477:18:0;-1:-1:-1;;;;;45477:33:0;;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45477:35:0;;;;;;;;;;;;:::i;45454:58::-;45529:5;45538:1;45529:10;45525:58;;45548:18;;;;;;;;;-1:-1:-1;;;;;45548:18:0;-1:-1:-1;;;;;45548:33:0;;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45525:58;45600:5;45609:1;45600:10;45596:57;;45619:18;;;;;;;;;-1:-1:-1;;;;;45619:18:0;-1:-1:-1;;;;;45619:32:0;;:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45596:57;45670:5;45679:1;45670:10;45666:58;;45689:18;;;;;;;;;-1:-1:-1;;;;;45689:18:0;-1:-1:-1;;;;;45689:33:0;;:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45666:58;45741:5;45750:1;45741:10;45737:56;;45760:18;;;;;;;;;-1:-1:-1;;;;;45760:18:0;-1:-1:-1;;;;;45760:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45737:56;45813:18;;;;;;;;;-1:-1:-1;;;;;45813:18:0;-1:-1:-1;;;;;45813:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41145:201;8312:6;;-1:-1:-1;;;;;8312:6:0;7043:10;8459:23;8451:68;;;;-1:-1:-1;;;8451:68:0;;;;;;;:::i;:::-;41228:8:::1;;41210:15;;:26;41202:57;;;::::0;-1:-1:-1;;;41202:57:0;;8525:2:1;41202:57:0::1;::::0;::::1;8507:21:1::0;8564:2;8544:18;;;8537:30;-1:-1:-1;;;8583:18:1;;;8576:48;8641:18;;41202:57:0::1;8323:342:1::0;41202:57:0::1;41291:1;41272:15;;:20;;;;;;;:::i;:::-;;;;;;;;41305:33;41310:10;41322:15;;41305:4;:33::i;:::-;41145:201::o:0;31566:185::-;31704:39;31721:4;31727:2;31731:7;31704:39;;;;;;;;;;;;:16;:39::i;41354:214::-;40496:3;41413:14;;41402:8;;:25;;;;:::i;:::-;:37;41394:70;;;;-1:-1:-1;;;41394:70:0;;8872:2:1;41394:70:0;;;8854:21:1;8911:2;8891:18;;;8884:30;-1:-1:-1;;;8930:18:1;;;8923:50;8990:18;;41394:70:0;8670:344:1;41394:70:0;41503:1;41485:14;;:19;;;;;;;:::i;:::-;;;;;;;;41517:43;41522:10;41545:14;;41534:8;;:25;;;;:::i;:::-;41517:4;:43::i;28541:239::-;28613:7;28649:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28649:16:0;;28676:73;;;;-1:-1:-1;;;28676:73:0;;9221:2:1;28676:73:0;;;9203:21:1;9260:2;9240:18;;;9233:30;9299:34;9279:18;;;9272:62;-1:-1:-1;;;9350:18:1;;;9343:39;9399:19;;28676:73:0;9019:405:1;28271:208:0;28343:7;-1:-1:-1;;;;;28371:19:0;;28363:74;;;;-1:-1:-1;;;28363:74:0;;9631:2:1;28363:74:0;;;9613:21:1;9670:2;9650:18;;;9643:30;9709:34;9689:18;;;9682:62;-1:-1:-1;;;9760:18:1;;;9753:40;9810:19;;28363:74:0;9429:406:1;28363:74:0;-1:-1:-1;;;;;;28455:16:0;;;;;:9;:16;;;;;;;28271:208::o;8890:103::-;8312:6;;-1:-1:-1;;;;;8312:6:0;7043:10;8459:23;8451:68;;;;-1:-1:-1;;;8451:68:0;;;;;;;:::i;:::-;8955:30:::1;8982:1;8955:18;:30::i;29016:104::-:0;29072:13;29105:7;29098:14;;;;;:::i;30699:155::-;30794:52;7043:10;30827:8;30837;30794:18;:52::i;:::-;30699:155;;:::o;31822:328::-;31997:41;7043:10;32030:7;31997:18;:41::i;:::-;31989:103;;;;-1:-1:-1;;;31989:103:0;;;;;;;:::i;:::-;32103:39;32117:4;32123:2;32127:7;32136:5;32103:13;:39::i;:::-;31822:328;;;;:::o;41907:1526::-;42026:19;42095:18;;;:11;:18;;;;;;;;;42072:42;;-1:-1:-1;;;42072:42:0;;;10070:17:1;;;;10103:11;;;10096:27;41975:30:0;;42026:19;42048:81;;40496:3;;10139:12:1;;42072:42:0;;;;;;;;;;;;;42062:53;;;;;;42057:59;;:71;;;;:::i;:::-;42048:8;:81::i;:::-;42140:22;42212:18;;;:11;:18;;;;;;;;;42189:42;;-1:-1:-1;;;42189:42:0;;;10641:17:1;;;;10674:11;;;10667:27;42026:103:0;;-1:-1:-1;42140:22:0;42165:81;;40496:3;;10710:12:1;;42189:42:0;10411:317:1;42165:81:0;42140:106;;42259:21;42291:23;42350:33;42365:17;42350:14;:33::i;:::-;42327:56;;-1:-1:-1;42327:56:0;-1:-1:-1;42396:17:0;42416:26;42427:14;42416:10;:26::i;:::-;42396:46;;42455:18;42516:23;42533:5;42516:16;:23::i;:::-;42483:57;;;;;;;;:::i;:::-;;;;-1:-1:-1;;42483:57:0;;;;;;42552:85;;;;;;;;;;42483:57;;-1:-1:-1;42552:25:0;;42483:57;42552:85;42483:57;42552:85;;;;;42650:24;42743:3;42799:7;42853:9;42684:186;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42650:221;;42884:19;42960:56;42974:41;42981:17;43000:14;42974:6;:41::i;:::-;42960:13;:56::i;:::-;42913:104;;;;;;;;:::i;:::-;;;;;;;;;;;;;42884:134;;43029:18;43064:266;43221:4;43252:11;43286:10;43315:5;43157:170;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43064:13;:266::i;:::-;43029:301;;43419:4;43369:55;;;;;;;;:::i;:::-;;;;;;;;;;;;;43343:82;;42012:1421;;;;;;;;;;41907:1526;;;:::o;9148:201::-;8312:6;;-1:-1:-1;;;;;8312:6:0;7043:10;8459:23;8451:68;;;;-1:-1:-1;;;8451:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9237:22:0;::::1;9229:73;;;::::0;-1:-1:-1;;;9229:73:0;;15733:2:1;9229:73:0::1;::::0;::::1;15715:21:1::0;15772:2;15752:18;;;15745:30;15811:34;15791:18;;;15784:62;-1:-1:-1;;;15862:18:1;;;15855:36;15908:19;;9229:73:0::1;15531:402:1::0;9229:73:0::1;9313:28;9332:8;9313:18;:28::i;:::-;9148:201:::0;:::o;37642:174::-;37717:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37717:29:0;-1:-1:-1;;;;;37717:29:0;;;;;;;;:24;;37771:23;37717:24;37771:14;:23::i;:::-;-1:-1:-1;;;;;37762:46:0;;;;;;;;;;;37642:174;;:::o;33954:348::-;34047:4;33749:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33749:16:0;34064:73;;;;-1:-1:-1;;;34064:73:0;;16140:2:1;34064:73:0;;;16122:21:1;16179:2;16159:18;;;16152:30;16218:34;16198:18;;;16191:62;-1:-1:-1;;;16269:18:1;;;16262:42;16321:19;;34064:73:0;15938:408:1;34064:73:0;34148:13;34164:23;34179:7;34164:14;:23::i;:::-;34148:39;;34217:5;-1:-1:-1;;;;;34206:16:0;:7;-1:-1:-1;;;;;34206:16:0;;:51;;;;34250:7;-1:-1:-1;;;;;34226:31:0;:20;34238:7;34226:11;:20::i;:::-;-1:-1:-1;;;;;34226:31:0;;34206:51;:87;;;-1:-1:-1;;;;;;31046:25:0;;;31022:4;31046:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34261:32;34198:96;33954:348;-1:-1:-1;;;;33954:348:0:o;36946:578::-;37105:4;-1:-1:-1;;;;;37078:31:0;:23;37093:7;37078:14;:23::i;:::-;-1:-1:-1;;;;;37078:31:0;;37070:85;;;;-1:-1:-1;;;37070:85:0;;16553:2:1;37070:85:0;;;16535:21:1;16592:2;16572:18;;;16565:30;16631:34;16611:18;;;16604:62;-1:-1:-1;;;16682:18:1;;;16675:39;16731:19;;37070:85:0;16351:405:1;37070:85:0;-1:-1:-1;;;;;37174:16:0;;37166:65;;;;-1:-1:-1;;;37166:65:0;;16963:2:1;37166:65:0;;;16945:21:1;17002:2;16982:18;;;16975:30;17041:34;17021:18;;;17014:62;-1:-1:-1;;;17092:18:1;;;17085:34;17136:19;;37166:65:0;16761:400:1;37166:65:0;37348:29;37365:1;37369:7;37348:8;:29::i;:::-;-1:-1:-1;;;;;37390:15:0;;;;;;:9;:15;;;;;:20;;37409:1;;37390:15;:20;;37409:1;;37390:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37421:13:0;;;;;;:9;:13;;;;;:18;;37438:1;;37421:13;:18;;37438:1;;37421:18;:::i;:::-;;;;-1:-1:-1;;37450:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37450:21:0;-1:-1:-1;;;;;37450:21:0;;;;;;;;;37489:27;;37450:16;;37489:27;;;;;;;36946:578;;;:::o;41576:141::-;41640:18;41646:4;41652:5;41640;:18::i;:::-;41690:19;41703:5;41690:12;:19::i;:::-;41669:18;;;;:11;:18;;;;;;:40;-1:-1:-1;41576:141:0:o;9509:191::-;9602:6;;;-1:-1:-1;;;;;9619:17:0;;;-1:-1:-1;;;;;;9619:17:0;;;;;;;9652:40;;9602:6;;;9619:17;9602:6;;9652:40;;9583:16;;9652:40;9572:128;9509:191;:::o;37958:315::-;38113:8;-1:-1:-1;;;;;38104:17:0;:5;-1:-1:-1;;;;;38104:17:0;;38096:55;;;;-1:-1:-1;;;38096:55:0;;17498:2:1;38096:55:0;;;17480:21:1;17537:2;17517:18;;;17510:30;17576:27;17556:18;;;17549:55;17621:18;;38096:55:0;17296:349:1;38096:55:0;-1:-1:-1;;;;;38162:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38162:46:0;;;;;;;;;;38224:41;;540::1;;;38224::0;;513:18:1;38224:41:0;;;;;;;37958:315;;;:::o;33032:::-;33189:28;33199:4;33205:2;33209:7;33189:9;:28::i;:::-;33236:48;33259:4;33265:2;33269:7;33278:5;33236:22;:48::i;:::-;33228:111;;;;-1:-1:-1;;;33228:111:0;;;;;;;:::i;43441:277::-;43492:10;43531:2;43524:4;:9;43520:23;;;-1:-1:-1;43542:1:0;;43441:277;-1:-1:-1;43441:277:0:o;43520:23::-;43565:2;43558:4;:9;43554:23;;;-1:-1:-1;43576:1:0;;43441:277;-1:-1:-1;43441:277:0:o;43554:23::-;43599:2;43592:4;:9;43588:23;;;-1:-1:-1;43610:1:0;;43441:277;-1:-1:-1;43441:277:0:o;43588:23::-;43633:3;43626:4;:10;43622:24;;;-1:-1:-1;43645:1:0;;43441:277;-1:-1:-1;43441:277:0:o;43622:24::-;43668:3;43661:4;:10;43657:24;;;-1:-1:-1;43680:1:0;;43441:277;-1:-1:-1;43441:277:0:o;43657:24::-;-1:-1:-1;43709:1:0;;43441:277;-1:-1:-1;43441:277:0:o;44072:453::-;44129:24;44155:18;44195:5;44204:1;44195:10;44191:46;;44207:30;;;;;;;;;;;;;-1:-1:-1;;;44207:30:0;;;;;;;;;;;;;;;;-1:-1:-1;;;44207:30:0;;;;;;;44072:453;;;:::o;44191:46::-;44260:5;44269:1;44260:10;44256:44;;44272:28;;;;;;;;;;;;;-1:-1:-1;;;44272:28:0;;;;;;;;;;;;;;;;-1:-1:-1;;;44272:28:0;;;;;;;44072:453;;;:::o;44256:44::-;44323:5;44332:1;44323:10;44319:49;;44335:33;;;;;;;;;;;;;-1:-1:-1;;;44335:33:0;;;;;;;;;;;;;;;;-1:-1:-1;;;44335:33:0;;;;;;;44072:453;;;:::o;44319:49::-;44391:5;44400:1;44391:10;44387:41;;44403:25;;;;;;;;;;;;;-1:-1:-1;;;44403:25:0;;;;;;;;;;;;;;;;-1:-1:-1;;;44403:25:0;;;;;;;44072:453;;;:::o;44387:41::-;44443:5;44452:1;44443:10;44439:40;;44455:24;;;;;;;;;;;;;-1:-1:-1;;;44455:24:0;;;;;;;;;;;;;;;;-1:-1:-1;;;44455:24:0;;;;;;;44072:453;;;:::o;44439:40::-;44492:25;;;;;;;;;;;;;-1:-1:-1;;;44492:25:0;;;;;;;;;;;;;;;;-1:-1:-1;;;44492:25:0;;;;;;;44072:453;;;:::o;43726:338::-;43779:13;43814:5;43823:1;43814:10;43810:29;;-1:-1:-1;;43826:13:0;;;;;;;;;;;;-1:-1:-1;;;43826:13:0;;;;;43726:338::o;43810:29::-;43862:5;43871:1;43862:10;43858:31;;-1:-1:-1;;43874:15:0;;;;;;;;;;;;-1:-1:-1;;;43874:15:0;;;;;43726:338::o;43858:31::-;43912:5;43921:1;43912:10;43908:30;;-1:-1:-1;;43924:14:0;;;;;;;;;;;;-1:-1:-1;;;43924:14:0;;;;;43726:338::o;43908:30::-;43961:5;43970:1;43961:10;43957:31;;-1:-1:-1;;43973:15:0;;;;;;;;;;;;-1:-1:-1;;;43973:15:0;;;;;43726:338::o;43957:31::-;44003:5;44012:1;44003:10;43999:31;;-1:-1:-1;;44015:15:0;;;;;;;;;;;;-1:-1:-1;;;44015:15:0;;;;;43726:338::o;43999:31::-;-1:-1:-1;;44043:13:0;;;;;;;;;;;;-1:-1:-1;;;44043:13:0;;;;;43726:338::o;4525:723::-;4581:13;4802:5;4811:1;4802:10;4798:53;;-1:-1:-1;;4829:10:0;;;;;;;;;;;;-1:-1:-1;;;4829:10:0;;;;;4525:723::o;4798:53::-;4876:5;4861:12;4917:78;4924:9;;4917:78;;4950:8;;;;:::i;:::-;;-1:-1:-1;4973:10:0;;-1:-1:-1;4981:2:0;4973:10;;:::i;:::-;;;4917:78;;;5005:19;5037:6;5027:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5027:17:0;;5005:39;;5055:154;5062:10;;5055:154;;5089:11;5099:1;5089:11;;:::i;:::-;;-1:-1:-1;5158:10:0;5166:2;5158:5;:10;:::i;:::-;5145:24;;:2;:24;:::i;:::-;5132:39;;5115:6;5122;5115:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5115:56:0;;;;;;;;-1:-1:-1;5186:11:0;5195:2;5186:11;;:::i;:::-;;;5055:154;;44533:828;44616:12;44646:21;44678:23;44737:33;44752:17;44737:14;:33::i;:::-;44714:56;;-1:-1:-1;44714:56:0;-1:-1:-1;44714:56:0;;45284:27;45296:14;45284:11;:27::i;:::-;44811:542;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44791:562;;;;44533:828;;;;:::o;1100:3053::-;1158:13;1395:4;:11;1410:1;1395:16;1391:31;;-1:-1:-1;;1413:9:0;;;;;;;;;-1:-1:-1;1413:9:0;;;1100:3053::o;1391:31::-;1475:19;1497:6;;;;;;;;;;;;;;;;;1475:28;;1914:20;1973:1;1954:4;:11;1968:1;1954:15;;;;:::i;:::-;1953:21;;;;:::i;:::-;1948:27;;:1;:27;:::i;:::-;1937:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1937:39:0;;1914:62;;2112:1;2105:5;2101:13;2216:2;2208:6;2204:15;2327:4;2379;2373:11;2367:4;2363:22;2289:1432;2413:6;2404:7;2401:19;2289:1432;;;2519:1;2510:7;2506:15;2495:26;;2558:7;2552:14;3211:4;3203:5;3199:2;3195:14;3191:25;3181:8;3177:40;3171:47;3160:9;3152:67;3265:1;3254:9;3250:17;3237:30;;3357:4;3349:5;3345:2;3341:14;3337:25;3327:8;3323:40;3317:47;3306:9;3298:67;3411:1;3400:9;3396:17;3383:30;;3502:4;3494:5;3491:1;3487:13;3483:24;3473:8;3469:39;3463:46;3452:9;3444:66;3556:1;3545:9;3541:17;3528:30;;3639:4;3632:5;3628:16;3618:8;3614:31;3608:38;3597:9;3589:58;;3693:1;3682:9;3678:17;3665:30;;2289:1432;;;2293:107;;3883:1;3876:4;3870:11;3866:19;3904:1;3899:123;;;;4041:1;4036:73;;;;3859:250;;3899:123;3952:4;3948:1;3937:9;3933:17;3925:32;4002:4;3998:1;3987:9;3983:17;3975:32;3899:123;;4036:73;4089:4;4085:1;4074:9;4070:17;4062:32;3859:250;-1:-1:-1;4139:6:0;;1100:3053;-1:-1:-1;;;;;1100:3053:0:o;35638:382::-;-1:-1:-1;;;;;35718:16:0;;35710:61;;;;-1:-1:-1;;;35710:61:0;;20783:2:1;35710:61:0;;;20765:21:1;;;20802:18;;;20795:30;20861:34;20841:18;;;20834:62;20913:18;;35710:61:0;20581:356:1;35710:61:0;33725:4;33749:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33749:16:0;:30;35782:58;;;;-1:-1:-1;;;35782:58:0;;21144:2:1;35782:58:0;;;21126:21:1;21183:2;21163:18;;;21156:30;21222;21202:18;;;21195:58;21270:18;;35782:58:0;20942:352:1;35782:58:0;-1:-1:-1;;;;;35911:13:0;;;;;;:9;:13;;;;;:18;;35928:1;;35911:13;:18;;35928:1;;35911:18;:::i;:::-;;;;-1:-1:-1;;35940:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35940:21:0;-1:-1:-1;;;;;35940:21:0;;;;;;;;35979:33;;35940:16;;;35979:33;;35940:16;;35979:33;35638:382;;:::o;41725:152::-;41781:9;41847:5;41854:12;41830:37;;;;;;;;21456:19:1;;;21500:2;21491:12;;21484:28;21537:2;21528:12;;21299:247;41830:37:0;;;;-1:-1:-1;;41830:37:0;;;;;;;;;41820:48;;41830:37;41820:48;;;;;41725:152;-1:-1:-1;;41725:152:0:o;38838:799::-;38993:4;-1:-1:-1;;;;;39014:13:0;;10850:20;10898:8;39010:620;;39050:72;;-1:-1:-1;;;39050:72:0;;-1:-1:-1;;;;;39050:36:0;;;;;:72;;7043:10;;39101:4;;39107:7;;39116:5;;39050:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39050:72:0;;;;;;;;-1:-1:-1;;39050:72:0;;;;;;;;;;;;:::i;:::-;;;39046:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39292:6;:13;39309:1;39292:18;39288:272;;39335:60;;-1:-1:-1;;;39335:60:0;;;;;;;:::i;39288:272::-;39510:6;39504:13;39495:6;39491:2;39487:15;39480:38;39046:529;-1:-1:-1;;;;;;39173:51:0;-1:-1:-1;;;39173:51:0;;-1:-1:-1;39166:58:0;;39010:620;-1:-1:-1;39614:4:0;38838:799;;;;;;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1855:70;1758:173;;;:::o;1936:254::-;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2377:328::-;2454:6;2462;2470;2523:2;2511:9;2502:7;2498:23;2494:32;2491:52;;;2539:1;2536;2529:12;2491:52;2562:29;2581:9;2562:29;:::i;:::-;2552:39;;2610:38;2644:2;2633:9;2629:18;2610:38;:::i;:::-;2600:48;;2695:2;2684:9;2680:18;2667:32;2657:42;;2377:328;;;;;:::o;2710:186::-;2769:6;2822:2;2810:9;2801:7;2797:23;2793:32;2790:52;;;2838:1;2835;2828:12;2790:52;2861:29;2880:9;2861:29;:::i;2901:347::-;2966:6;2974;3027:2;3015:9;3006:7;3002:23;2998:32;2995:52;;;3043:1;3040;3033:12;2995:52;3066:29;3085:9;3066:29;:::i;:::-;3056:39;;3145:2;3134:9;3130:18;3117:32;3192:5;3185:13;3178:21;3171:5;3168:32;3158:60;;3214:1;3211;3204:12;3158:60;3237:5;3227:15;;;2901:347;;;;;:::o;3253:127::-;3314:10;3309:3;3305:20;3302:1;3295:31;3345:4;3342:1;3335:15;3369:4;3366:1;3359:15;3385:275;3456:2;3450:9;3521:2;3502:13;;-1:-1:-1;;3498:27:1;3486:40;;3556:18;3541:34;;3577:22;;;3538:62;3535:88;;;3603:18;;:::i;:::-;3639:2;3632:22;3385:275;;-1:-1:-1;3385:275:1:o;3665:186::-;3713:4;3746:18;3738:6;3735:30;3732:56;;;3768:18;;:::i;:::-;-1:-1:-1;3834:2:1;3813:15;-1:-1:-1;;3809:29:1;3840:4;3805:40;;3665:186::o;3856:888::-;3951:6;3959;3967;3975;4028:3;4016:9;4007:7;4003:23;3999:33;3996:53;;;4045:1;4042;4035:12;3996:53;4068:29;4087:9;4068:29;:::i;:::-;4058:39;;4116:38;4150:2;4139:9;4135:18;4116:38;:::i;:::-;4106:48;;4201:2;4190:9;4186:18;4173:32;4163:42;;4256:2;4245:9;4241:18;4228:32;4283:18;4275:6;4272:30;4269:50;;;4315:1;4312;4305:12;4269:50;4338:22;;4391:4;4383:13;;4379:27;-1:-1:-1;4369:55:1;;4420:1;4417;4410:12;4369:55;4456:2;4443:16;4481:48;4497:31;4525:2;4497:31;:::i;:::-;4481:48;:::i;:::-;4552:2;4545:5;4538:17;4592:7;4587:2;4582;4578;4574:11;4570:20;4567:33;4564:53;;;4613:1;4610;4603:12;4564:53;4668:2;4663;4659;4655:11;4650:2;4643:5;4639:14;4626:45;4712:1;4707:2;4702;4695:5;4691:14;4687:23;4680:34;4733:5;4723:15;;;;;3856:888;;;;;;;:::o;4749:260::-;4817:6;4825;4878:2;4866:9;4857:7;4853:23;4849:32;4846:52;;;4894:1;4891;4884:12;4846:52;4917:29;4936:9;4917:29;:::i;:::-;4907:39;;4965:38;4999:2;4988:9;4984:18;4965:38;:::i;:::-;4955:48;;4749:260;;;;;:::o;5014:380::-;5093:1;5089:12;;;;5136;;;5157:61;;5211:4;5203:6;5199:17;5189:27;;5157:61;5264:2;5256:6;5253:14;5233:18;5230:38;5227:161;;5310:10;5305:3;5301:20;5298:1;5291:31;5345:4;5342:1;5335:15;5373:4;5370:1;5363:15;5227:161;;5014:380;;;:::o;6639:127::-;6700:10;6695:3;6691:20;6688:1;6681:31;6731:4;6728:1;6721:15;6755:4;6752:1;6745:15;6771:128;6811:3;6842:1;6838:6;6835:1;6832:13;6829:39;;;6848:18;;:::i;:::-;-1:-1:-1;6884:9:1;;6771:128::o;6904:413::-;7106:2;7088:21;;;7145:2;7125:18;;;7118:30;7184:34;7179:2;7164:18;;7157:62;-1:-1:-1;;;7250:2:1;7235:18;;7228:47;7307:3;7292:19;;6904:413::o;7322:635::-;7402:6;7455:2;7443:9;7434:7;7430:23;7426:32;7423:52;;;7471:1;7468;7461:12;7423:52;7504:9;7498:16;7537:18;7529:6;7526:30;7523:50;;;7569:1;7566;7559:12;7523:50;7592:22;;7645:4;7637:13;;7633:27;-1:-1:-1;7623:55:1;;7674:1;7671;7664:12;7623:55;7703:2;7697:9;7728:48;7744:31;7772:2;7744:31;:::i;7728:48::-;7799:2;7792:5;7785:17;7839:7;7834:2;7829;7825;7821:11;7817:20;7814:33;7811:53;;;7860:1;7857;7850:12;7811:53;7873:54;7924:2;7919;7912:5;7908:14;7903:2;7899;7895:11;7873:54;:::i;:::-;7946:5;7322:635;-1:-1:-1;;;;;7322:635:1:o;7962:356::-;8164:2;8146:21;;;8183:18;;;8176:30;8242:34;8237:2;8222:18;;8215:62;8309:2;8294:18;;7962:356::o;10162:127::-;10223:10;10218:3;10214:20;10211:1;10204:31;10254:4;10251:1;10244:15;10278:4;10275:1;10268:15;10294:112;10326:1;10352;10342:35;;10357:18;;:::i;:::-;-1:-1:-1;10391:9:1;;10294:112::o;10733:185::-;10775:3;10813:5;10807:12;10828:52;10873:6;10868:3;10861:4;10854:5;10850:16;10828:52;:::i;:::-;10896:16;;;;;10733:185;-1:-1:-1;;10733:185:1:o;10923:431::-;-1:-1:-1;;;11180:3:1;11173:27;11155:3;11229:6;11223:13;11245:62;11300:6;11295:2;11290:3;11286:12;11279:4;11271:6;11267:17;11245:62;:::i;:::-;11327:16;;;;11345:2;11323:25;;10923:431;-1:-1:-1;;10923:431:1:o;11359:1539::-;12020:66;12015:3;12008:79;11990:3;12116:6;12110:13;12132:60;12185:6;12180:2;12175:3;12171:12;12166:2;12158:6;12154:15;12132:60;:::i;:::-;12220:6;12215:3;12211:16;12201:26;;12256:66;12251:2;12247;12243:11;12236:87;12361:20;12356:3;12352:30;12347:2;12343;12339:11;12332:51;12414:6;12408:13;12430:61;12482:8;12477:2;12473;12469:11;12464:2;12456:6;12452:15;12430:61;:::i;:::-;12556:66;12551:2;12510:17;;;;12543:11;;;12536:87;-1:-1:-1;;;12647:3:1;12639:12;;12632:39;12696:13;;12718:62;12696:13;12765:3;12757:12;;12752:2;12740:15;;12718:62;:::i;:::-;-1:-1:-1;;;12840:3:1;12799:17;;;;12832:12;;;12825:39;12888:3;12880:12;;11359:1539;-1:-1:-1;;;;;11359:1539:1:o;12903:445::-;13165:28;13160:3;13153:41;13135:3;13223:6;13217:13;13239:62;13294:6;13289:2;13284:3;13280:12;13273:4;13265:6;13261:17;13239:62;:::i;:::-;13321:16;;;;13339:2;13317:25;;12903:445;-1:-1:-1;;12903:445:1:o;13353:1720::-;-1:-1:-1;;;14151:45:1;;14219:13;;14133:3;;14241:62;14219:13;14291:2;14282:12;;14275:4;14263:17;;14241:62;:::i;:::-;-1:-1:-1;;;14362:2:1;14322:16;;;14354:11;;;14347:71;14443:13;;14465:63;14443:13;14514:2;14506:11;;14499:4;14487:17;;14465:63;:::i;:::-;-1:-1:-1;;;14588:2:1;14547:17;;;;14580:11;;;14573:65;14663:13;;14685:63;14663:13;14734:2;14726:11;;14719:4;14707:17;;14685:63;:::i;:::-;-1:-1:-1;;;14808:2:1;14767:17;;;;14800:11;;;14793:57;14875:13;;14897:63;14875:13;14946:2;14938:11;;14931:4;14919:17;;14897:63;:::i;:::-;-1:-1:-1;;;15020:2:1;14979:17;;;;15012:11;;;15005:35;15064:2;15056:11;;13353:1720;-1:-1:-1;;;;;;13353:1720:1:o;15078:448::-;15340:31;15335:3;15328:44;15310:3;15401:6;15395:13;15417:62;15472:6;15467:2;15462:3;15458:12;15451:4;15443:6;15439:17;15417:62;:::i;:::-;15499:16;;;;15517:2;15495:25;;15078:448;-1:-1:-1;;15078:448:1:o;17166:125::-;17206:4;17234:1;17231;17228:8;17225:34;;;17239:18;;:::i;:::-;-1:-1:-1;17276:9:1;;17166:125::o;17650:414::-;17852:2;17834:21;;;17891:2;17871:18;;;17864:30;17930:34;17925:2;17910:18;;17903:62;-1:-1:-1;;;17996:2:1;17981:18;;17974:48;18054:3;18039:19;;17650:414::o;18069:135::-;18108:3;18129:17;;;18126:43;;18149:18;;:::i;:::-;-1:-1:-1;18196:1:1;18185:13;;18069:135::o;18209:120::-;18249:1;18275;18265:35;;18280:18;;:::i;:::-;-1:-1:-1;18314:9:1;;18209:120::o;18334:127::-;18395:10;18390:3;18386:20;18383:1;18376:31;18426:4;18423:1;18416:15;18450:4;18447:1;18440:15;18590:1813;19251:66;19246:3;19239:79;19348:66;19343:2;19338:3;19334:12;19327:88;19445:66;19440:2;19435:3;19431:12;19424:88;19542:66;19537:2;19532:3;19528:12;19521:88;19640:34;19634:3;19629;19625:13;19618:57;19714:42;19710:2;19706:51;19700:3;19695;19691:13;19684:74;19221:3;19787:6;19781:13;19803:61;19857:6;19851:3;19846;19842:13;19837:2;19829:6;19825:15;19803:61;:::i;:::-;-1:-1:-1;;;19923:3:1;19883:16;;;19915:12;;;19908:64;19997:13;;20019:62;19997:13;20066:3;20058:12;;20053:2;20041:15;;20019:62;:::i;:::-;20147:66;20141:3;20100:17;;;;20133:12;;;20126:88;20244:66;20238:3;20230:12;;20223:88;20327:70;20357:39;20391:3;20383:12;;20375:6;20357:39;:::i;:::-;-1:-1:-1;;;18531:21:1;;18577:1;18568:11;;18466:119;20327:70;20320:77;18590:1813;-1:-1:-1;;;;;;18590:1813:1:o;20408:168::-;20448:7;20514:1;20510;20506:6;20502:14;20499:1;20496:21;20491:1;20484:9;20477:17;20473:45;20470:71;;;20521:18;;:::i;:::-;-1:-1:-1;20561:9:1;;20408:168::o;21551:500::-;-1:-1:-1;;;;;21820:15:1;;;21802:34;;21872:15;;21867:2;21852:18;;21845:43;21919:2;21904:18;;21897:34;;;21967:3;21962:2;21947:18;;21940:31;;;21745:4;;21988:57;;22025:19;;22017:6;21988:57;:::i;22056:249::-;22125:6;22178:2;22166:9;22157:7;22153:23;22149:32;22146:52;;;22194:1;22191;22184:12;22146:52;22226:9;22220:16;22245:30;22269:5;22245:30;:::i

Swarm Source

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