ETH Price: $2,628.69 (-0.08%)
Gas: 4 Gwei

Token

Rogue Titan (TITAN)
 

Overview

Max Total Supply

0 TITAN

Holders

75

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
0 TITAN
0x37f4866ac041db47fc73848aa24288cd64c754d8
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Titan

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Titan.sol
//                        ROGUE TITANS                        
//
// MMMMMMXk;.;xXWMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMNk:':kNMMMMMM
// MMWXkl;.   .,lkKWMMMMMMMMMMMMMMMMMMMMMMMMMMWXko;.   .;oOXWMM
// 0xc'.         ..:d0NMMMMMMMMMMMMMMMMMMMMN0xc'.         .'cxK
// .                 .,lkXWMMMMMMMMMMMMWXOo;.                 .
//                      .'cx0NMMMMMMWKxc'.                     
//                          .:kNNKOo;.                         
//          ;dc'.         .,cllc'..              ..:o;         
//         .lNWXOo;.   .;clc;.                .,lkXWNl.        
//         .lNMMMMN0dlllc,.               ..:d0NMMMMWl.        
//         .lNMMMMN0d:..               .,cllld0NMMMMNl.        
//         .lNWXkl,.                .;llc;..  .;okXWNl.        
//          ;o:..              .,;cllc,.         .'cd;         
//                          .;oONWNk:.                         
//                      .'cxKWMMMMMMN0xc'.                     
// .                 .;oOXWMMMMMMMMMMMMWXkl,.                 .
// Kxc'.         .'cxKWMMMMMMMMMMMMMMMMMMMMN0d:..         .'cd0
// MMWXOo;.   .;oOXWMMMMMMMMMMMMMMMMMMMMMMMMMMWXkl,.   .,lkXWMM
// MMMMMMNk:':kXMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMMWXx;.:kXMMMMMM
//                                                                                            
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";

contract Titan is ERC721URIStorage, ReentrancyGuard, Ownable {

    event Activate();
    event Deactivate();
    event ActivatePresale();
    event DeactivatePresale();
    event Initialize();

    string public baseURI;
    bool public isSaleActive = false;

    // For epilogue usage
    uint256 constant public maxEpilogueMints = 10;
    uint256 public epiloguePointer = 0;

    // Airdrop mint parameters
    uint256 constant public maxAirdropTitans = 110;
    uint256 public numAirdroppedTitans = 0;

    // Standard mint parameters
    uint256 constant public maxTitans = 5555;
    uint256 public numMintedTitans = maxEpilogueMints;

    uint256 constant private mintPrice = 0.05 ether;
    uint16 constant private maxTitansPerMint = 5;

    // Whitelisted presale parameters
    bool public isWhitelistSaleActive = false;
    mapping (address => bool) public whitelistedWallets;

    constructor() ERC721("Rogue Titan", "TITAN") {
    }

    // Set a base URI
    function updateBaseURI(string memory baseURI_) public onlyOwner {
        baseURI = baseURI_;
    }
    
    // Get the base URI
    function _baseURI() internal view override returns (string memory) {
        return baseURI;
    }

    // To be used to originally initliaze 
    function initializeSale(string memory baseURI_) public onlyOwner {
        require(!isSaleActive, "First disable Temple Minting to re-initialize.");

        baseURI = baseURI_;
        isWhitelistSaleActive = true;
        isSaleActive = false;

        emit Initialize();
    }

    // Toggle the main sale
    function toggleSale() public onlyOwner {
        isSaleActive = !isSaleActive;

        if (isSaleActive == true) {
            emit Activate();
        } else {
            emit Deactivate();
        }
    }

    // Toggle the whitelist presale
    function togglePresale() public onlyOwner {
        isWhitelistSaleActive = !isWhitelistSaleActive;

        if (isWhitelistSaleActive == true) {
            emit ActivatePresale();
        } else {
            emit DeactivatePresale();
        }
    }

    // Withdraw balance
    function withdrawBalance() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    // Community mint for Titans
    function mintTitan(uint256 _numTitansToMint) external payable nonReentrant {
        require(isSaleActive, "Titans are not available to mint at this time.");
        require(_numTitansToMint > 0 && _numTitansToMint <= maxTitansPerMint, "You must mint between 1 and 5 Titans at a time.");
        require((numMintedTitans + _numTitansToMint) <= (maxTitans - maxAirdropTitans), "Requested value exceeds maximum value for Titans.");
       
        require(msg.value >= (_numTitansToMint * mintPrice), "Invalid amount of ETH sent.");

        if (isWhitelistSaleActive) {
            require(isAddressWhitelisted(msg.sender), "This address is not whitelisted for the presale.");
        }

        for (uint i = 0; i < _numTitansToMint; i++) {
            numMintedTitans++;
            _safeMint(msg.sender, numMintedTitans);
        }
    }

    // Owner airdrop for Titans
    function airdropTitans(address[] memory _airdropAddresses) external onlyOwner nonReentrant {
        require((numAirdroppedTitans + _airdropAddresses.length) <= maxAirdropTitans, "Requested value exceeds maximum value for Airdrop Titans.");
       
        for (uint256 i = 0; i < _airdropAddresses.length; i++) {
            numAirdroppedTitans++;
            numMintedTitans++;
            _safeMint(_airdropAddresses[i], numMintedTitans);
        }
    }

    // Add address' to the whitelist
    function addWhitelistAddresses(address[] memory _addresses) public onlyOwner { 
        for (uint256 i = 0; i < _addresses.length; i++) {
            whitelistedWallets[_addresses[i]] = true;
        }
    }

    // Internal usage to verify address against whitelist
    function isAddressWhitelisted(address _address) public view returns (bool) {
        return whitelistedWallets[_address];
    }

    // For Epilogue usage only
    function mintEpilogueTitans(uint256 _numToMint) public onlyOwner nonReentrant {
        require((epiloguePointer + _numToMint) <= (maxEpilogueMints), "Requested value exceeds maximum value for Epilogue Titans.");

        for (uint i = 0; i < _numToMint; i++) {
            epiloguePointer++;
            _safeMint(msg.sender, epiloguePointer);
        }
    }
}

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 3 of 13 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 4 of 13 : ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";

/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 5 of 13 : Context.sol
// SPDX-License-Identifier: MIT

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 6 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.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 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

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 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT

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 11 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

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 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Activate","type":"event"},{"anonymous":false,"inputs":[],"name":"ActivatePresale","type":"event"},{"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":[],"name":"Deactivate","type":"event"},{"anonymous":false,"inputs":[],"name":"DeactivatePresale","type":"event"},{"anonymous":false,"inputs":[],"name":"Initialize","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":"_addresses","type":"address[]"}],"name":"addWhitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_airdropAddresses","type":"address[]"}],"name":"airdropTitans","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"epiloguePointer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"initializeSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isAddressWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAirdropTitans","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxEpilogueMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTitans","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numToMint","type":"uint256"}],"name":"mintEpilogueTitans","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numTitansToMint","type":"uint256"}],"name":"mintTitan","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numAirdroppedTitans","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numMintedTitans","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistedWallets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a60006101000a81548160ff0219169083151502179055506000600b556000600c55600a600d556000600e60006101000a81548160ff0219169083151502179055503480156200005657600080fd5b506040518060400160405280600b81526020017f526f67756520546974616e0000000000000000000000000000000000000000008152506040518060400160405280600581526020017f544954414e0000000000000000000000000000000000000000000000000000008152508160009080519060200190620000db929190620001f3565b508060019080519060200190620000f4929190620001f3565b50505060016007819055506200011f620001136200012560201b60201c565b6200012d60201b60201c565b62000308565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200020190620002d2565b90600052602060002090601f01602090048101928262000225576000855562000271565b82601f106200024057805160ff191683800117855562000271565b8280016001018555821562000271579182015b828111156200027057825182559160200191906001019062000253565b5b50905062000280919062000284565b5090565b5b808211156200029f57600081600090555060010162000285565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002eb57607f821691505b60208210811415620003025762000301620002a3565b5b50919050565b6146a580620003186000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063a80dcfee116100a0578063bbb82f391161006f578063bbb82f3914610744578063c87b56dd1461076d578063e985e9c5146107aa578063f2fde38b146107e7578063fc5023a3146108105761020f565b8063a80dcfee1461068a578063a92059e9146106c7578063b88d4fde146106f0578063b98451cf146107195761020f565b80638da5cb5b116100e75780638da5cb5b146105b7578063915bc02d146105e2578063931688cb1461060d57806395d89b4114610636578063a22cb465146106615761020f565b806370a0823114610530578063715018a61461056d5780637485f135146105845780637d8966e4146105a05761020f565b8063355052551161019b57806342842e0e1161016a57806342842e0e1461045d578063564566a8146104865780635fd8c710146104b15780636352211e146104c85780636c0360eb146105055761020f565b806335505255146103b357806337b4962f146103dc5780633a64c4d4146104075780633eff4989146104325761020f565b80630e256a5e116101e25780630e256a5e146102e257806313f44d101461030b5780631d53059e1461034857806323b872dd14610373578063343937431461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d6d565b61083b565b6040516102489190612db5565b60405180910390f35b34801561025d57600080fd5b5061026661091d565b6040516102739190612e69565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612ec1565b6109af565b6040516102b09190612f2f565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612f76565b610a34565b005b3480156102ee57600080fd5b50610309600480360381019061030491906130fe565b610b4c565b005b34801561031757600080fd5b50610332600480360381019061032d9190613147565b610c5d565b60405161033f9190612db5565b60405180910390f35b34801561035457600080fd5b5061035d610cb3565b60405161036a9190613183565b60405180910390f35b34801561037f57600080fd5b5061039a6004803603810190610395919061319e565b610cb9565b005b3480156103a857600080fd5b506103b1610d19565b005b3480156103bf57600080fd5b506103da60048036038101906103d591906130fe565b610e3b565b005b3480156103e857600080fd5b506103f1610fd8565b6040516103fe9190613183565b60405180910390f35b34801561041357600080fd5b5061041c610fdd565b6040516104299190613183565b60405180910390f35b34801561043e57600080fd5b50610447610fe3565b6040516104549190613183565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f919061319e565b610fe9565b005b34801561049257600080fd5b5061049b611009565b6040516104a89190612db5565b60405180910390f35b3480156104bd57600080fd5b506104c661101c565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190612ec1565b6110e7565b6040516104fc9190612f2f565b60405180910390f35b34801561051157600080fd5b5061051a611199565b6040516105279190612e69565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190613147565b611227565b6040516105649190613183565b60405180910390f35b34801561057957600080fd5b506105826112df565b005b61059e60048036038101906105999190612ec1565b611367565b005b3480156105ac57600080fd5b506105b56115b7565b005b3480156105c357600080fd5b506105cc6116d9565b6040516105d99190612f2f565b60405180910390f35b3480156105ee57600080fd5b506105f7611703565b6040516106049190613183565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f91906132a6565b611709565b005b34801561064257600080fd5b5061064b61179f565b6040516106589190612e69565b60405180910390f35b34801561066d57600080fd5b506106886004803603810190610683919061331b565b611831565b005b34801561069657600080fd5b506106b160048036038101906106ac9190613147565b6119b2565b6040516106be9190612db5565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e99190612ec1565b6119d2565b005b3480156106fc57600080fd5b50610717600480360381019061071291906133fc565b611b3b565b005b34801561072557600080fd5b5061072e611b9d565b60405161073b9190612db5565b60405180910390f35b34801561075057600080fd5b5061076b600480360381019061076691906132a6565b611bb0565b005b34801561077957600080fd5b50610794600480360381019061078f9190612ec1565b611cf8565b6040516107a19190612e69565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061347f565b611e4a565b6040516107de9190612db5565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190613147565b611ede565b005b34801561081c57600080fd5b50610825611fd6565b6040516108329190613183565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610916575061091582611fdb565b5b9050919050565b60606000805461092c906134ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610958906134ee565b80156109a55780601f1061097a576101008083540402835291602001916109a5565b820191906000526020600020905b81548152906001019060200180831161098857829003601f168201915b5050505050905090565b60006109ba82612045565b6109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f090613592565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3f826110e7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa790613624565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610acf6120b1565b73ffffffffffffffffffffffffffffffffffffffff161480610afe5750610afd81610af86120b1565b611e4a565b5b610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b34906136b6565b60405180910390fd5b610b4783836120b9565b505050565b610b546120b1565b73ffffffffffffffffffffffffffffffffffffffff16610b726116d9565b73ffffffffffffffffffffffffffffffffffffffff1614610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90613722565b60405180910390fd5b60005b8151811015610c59576001600f6000848481518110610bed57610bec613742565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c51906137a0565b915050610bcb565b5050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481565b610cca610cc46120b1565b82612172565b610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d009061385b565b60405180910390fd5b610d14838383612250565b505050565b610d216120b1565b73ffffffffffffffffffffffffffffffffffffffff16610d3f6116d9565b73ffffffffffffffffffffffffffffffffffffffff1614610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90613722565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff02191690831515021790555060011515600e60009054906101000a900460ff1615151415610e0c577f9905b2a8827744add26587e1fedc4293ff0d12730cdc60cce4588e5a2a6b3b6260405160405180910390a1610e39565b7f824b9793c8ac7d56c1770c09ee7517f9318e27df0b86c928d8c373cf3c8b61a260405160405180910390a15b565b610e436120b1565b73ffffffffffffffffffffffffffffffffffffffff16610e616116d9565b73ffffffffffffffffffffffffffffffffffffffff1614610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90613722565b60405180910390fd5b60026007541415610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906138c7565b60405180910390fd5b6002600781905550606e8151600c54610f1691906138e7565b1115610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e906139af565b60405180910390fd5b60005b8151811015610fcc57600c6000815480929190610f76906137a0565b9190505550600d6000815480929190610f8e906137a0565b9190505550610fb9828281518110610fa957610fa8613742565b5b6020026020010151600d546124ac565b8080610fc4906137a0565b915050610f5a565b50600160078190555050565b600a81565b600d5481565b600c5481565b61100483838360405180602001604052806000815250611b3b565b505050565b600a60009054906101000a900460ff1681565b6110246120b1565b73ffffffffffffffffffffffffffffffffffffffff166110426116d9565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90613722565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110e3573d6000803e3d6000fd5b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790613a41565b60405180910390fd5b80915050919050565b600980546111a6906134ee565b80601f01602080910402602001604051908101604052809291908181526020018280546111d2906134ee565b801561121f5780601f106111f45761010080835404028352916020019161121f565b820191906000526020600020905b81548152906001019060200180831161120257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90613ad3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112e76120b1565b73ffffffffffffffffffffffffffffffffffffffff166113056116d9565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290613722565b60405180910390fd5b61136560006124ca565b565b600260075414156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a4906138c7565b60405180910390fd5b6002600781905550600a60009054906101000a900460ff16611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90613b65565b60405180910390fd5b6000811180156114195750600561ffff168111155b611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613bf7565b60405180910390fd5b606e6115b36114679190613c17565b81600d5461147591906138e7565b11156114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613cbd565b60405180910390fd5b66b1a2bc2ec50000816114c99190613cdd565b34101561150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290613d83565b60405180910390fd5b600e60009054906101000a900460ff16156115695761152933610c5d565b611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90613e15565b60405180910390fd5b5b60005b818110156115ab57600d6000815480929190611587906137a0565b919050555061159833600d546124ac565b80806115a3906137a0565b91505061156c565b50600160078190555050565b6115bf6120b1565b73ffffffffffffffffffffffffffffffffffffffff166115dd6116d9565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90613722565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff02191690831515021790555060011515600a60009054906101000a900460ff16151514156116aa577f59d3ce47d6ad6c6003cef97d136155b29d88653eb355c8bed6e03fbf694570ca60405160405180910390a16116d7565b7fc2a8834045efeaf0b37df1cf2e5979bff82a0c7f93c99b649a004940ef3cda4560405160405180910390a15b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115b381565b6117116120b1565b73ffffffffffffffffffffffffffffffffffffffff1661172f6116d9565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613722565b60405180910390fd5b806009908051906020019061179b929190612c5e565b5050565b6060600180546117ae906134ee565b80601f01602080910402602001604051908101604052809291908181526020018280546117da906134ee565b80156118275780601f106117fc57610100808354040283529160200191611827565b820191906000526020600020905b81548152906001019060200180831161180a57829003601f168201915b5050505050905090565b6118396120b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90613e81565b60405180910390fd5b80600560006118b46120b1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119616120b1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a69190612db5565b60405180910390a35050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6119da6120b1565b73ffffffffffffffffffffffffffffffffffffffff166119f86116d9565b73ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4590613722565b60405180910390fd5b60026007541415611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b906138c7565b60405180910390fd5b6002600781905550600a81600b54611aac91906138e7565b1115611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae490613f13565b60405180910390fd5b60005b81811015611b2f57600b6000815480929190611b0b906137a0565b9190505550611b1c33600b546124ac565b8080611b27906137a0565b915050611af0565b50600160078190555050565b611b4c611b466120b1565b83612172565b611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b829061385b565b60405180910390fd5b611b9784848484612590565b50505050565b600e60009054906101000a900460ff1681565b611bb86120b1565b73ffffffffffffffffffffffffffffffffffffffff16611bd66116d9565b73ffffffffffffffffffffffffffffffffffffffff1614611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390613722565b60405180910390fd5b600a60009054906101000a900460ff1615611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7390613fa5565b60405180910390fd5b8060099080519060200190611c92929190612c5e565b506001600e60006101000a81548160ff0219169083151502179055506000600a60006101000a81548160ff0219169083151502179055507f80f860092ed8101278311dd6b10dda4920a40ea5dfcbacfe724e2accfaf63efc60405160405180910390a150565b6060611d0382612045565b611d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3990614037565b60405180910390fd5b6000600660008481526020019081526020016000208054611d62906134ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8e906134ee565b8015611ddb5780601f10611db057610100808354040283529160200191611ddb565b820191906000526020600020905b815481529060010190602001808311611dbe57829003601f168201915b505050505090506000611dec6125ec565b9050600081511415611e02578192505050611e45565b600082511115611e37578082604051602001611e1f929190614093565b60405160208183030381529060405292505050611e45565b611e408461267e565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ee66120b1565b73ffffffffffffffffffffffffffffffffffffffff16611f046116d9565b73ffffffffffffffffffffffffffffffffffffffff1614611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190613722565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc190614129565b60405180910390fd5b611fd3816124ca565b50565b606e81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661212c836110e7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061217d82612045565b6121bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b3906141bb565b60405180910390fd5b60006121c7836110e7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061223657508373ffffffffffffffffffffffffffffffffffffffff1661221e846109af565b73ffffffffffffffffffffffffffffffffffffffff16145b8061224757506122468185611e4a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612270826110e7565b73ffffffffffffffffffffffffffffffffffffffff16146122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd9061424d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d906142df565b60405180910390fd5b612341838383612725565b61234c6000826120b9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239c9190613c17565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f391906138e7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6124c682826040518060200160405280600081525061272a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61259b848484612250565b6125a784848484612785565b6125e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dd90614371565b60405180910390fd5b50505050565b6060600980546125fb906134ee565b80601f0160208091040260200160405190810160405280929190818152602001828054612627906134ee565b80156126745780601f1061264957610100808354040283529160200191612674565b820191906000526020600020905b81548152906001019060200180831161265757829003601f168201915b5050505050905090565b606061268982612045565b6126c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bf90614403565b60405180910390fd5b60006126d26125ec565b905060008151116126f2576040518060200160405280600081525061271d565b806126fc8461291c565b60405160200161270d929190614093565b6040516020818303038152906040525b915050919050565b505050565b6127348383612a7d565b6127416000848484612785565b612780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277790614371565b60405180910390fd5b505050565b60006127a68473ffffffffffffffffffffffffffffffffffffffff16612c4b565b1561290f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127cf6120b1565b8786866040518563ffffffff1660e01b81526004016127f19493929190614478565b602060405180830381600087803b15801561280b57600080fd5b505af192505050801561283c57506040513d601f19601f8201168201806040525081019061283991906144d9565b60015b6128bf573d806000811461286c576040519150601f19603f3d011682016040523d82523d6000602084013e612871565b606091505b506000815114156128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae90614371565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612914565b600190505b949350505050565b60606000821415612964576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a78565b600082905060005b6000821461299657808061297f906137a0565b915050600a8261298f9190614535565b915061296c565b60008167ffffffffffffffff8111156129b2576129b1612fbb565b5b6040519080825280601f01601f1916602001820160405280156129e45781602001600182028036833780820191505090505b5090505b60008514612a71576001826129fd9190613c17565b9150600a85612a0c9190614566565b6030612a1891906138e7565b60f81b818381518110612a2e57612a2d613742565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a6a9190614535565b94506129e8565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae4906145e3565b60405180910390fd5b612af681612045565b15612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d9061464f565b60405180910390fd5b612b4260008383612725565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9291906138e7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c6a906134ee565b90600052602060002090601f016020900481019282612c8c5760008555612cd3565b82601f10612ca557805160ff1916838001178555612cd3565b82800160010185558215612cd3579182015b82811115612cd2578251825591602001919060010190612cb7565b5b509050612ce09190612ce4565b5090565b5b80821115612cfd576000816000905550600101612ce5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d4a81612d15565b8114612d5557600080fd5b50565b600081359050612d6781612d41565b92915050565b600060208284031215612d8357612d82612d0b565b5b6000612d9184828501612d58565b91505092915050565b60008115159050919050565b612daf81612d9a565b82525050565b6000602082019050612dca6000830184612da6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e0a578082015181840152602081019050612def565b83811115612e19576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e3b82612dd0565b612e458185612ddb565b9350612e55818560208601612dec565b612e5e81612e1f565b840191505092915050565b60006020820190508181036000830152612e838184612e30565b905092915050565b6000819050919050565b612e9e81612e8b565b8114612ea957600080fd5b50565b600081359050612ebb81612e95565b92915050565b600060208284031215612ed757612ed6612d0b565b5b6000612ee584828501612eac565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f1982612eee565b9050919050565b612f2981612f0e565b82525050565b6000602082019050612f446000830184612f20565b92915050565b612f5381612f0e565b8114612f5e57600080fd5b50565b600081359050612f7081612f4a565b92915050565b60008060408385031215612f8d57612f8c612d0b565b5b6000612f9b85828601612f61565b9250506020612fac85828601612eac565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ff382612e1f565b810181811067ffffffffffffffff8211171561301257613011612fbb565b5b80604052505050565b6000613025612d01565b90506130318282612fea565b919050565b600067ffffffffffffffff82111561305157613050612fbb565b5b602082029050602081019050919050565b600080fd5b600061307a61307584613036565b61301b565b9050808382526020820190506020840283018581111561309d5761309c613062565b5b835b818110156130c657806130b28882612f61565b84526020840193505060208101905061309f565b5050509392505050565b600082601f8301126130e5576130e4612fb6565b5b81356130f5848260208601613067565b91505092915050565b60006020828403121561311457613113612d0b565b5b600082013567ffffffffffffffff81111561313257613131612d10565b5b61313e848285016130d0565b91505092915050565b60006020828403121561315d5761315c612d0b565b5b600061316b84828501612f61565b91505092915050565b61317d81612e8b565b82525050565b60006020820190506131986000830184613174565b92915050565b6000806000606084860312156131b7576131b6612d0b565b5b60006131c586828701612f61565b93505060206131d686828701612f61565b92505060406131e786828701612eac565b9150509250925092565b600080fd5b600067ffffffffffffffff82111561321157613210612fbb565b5b61321a82612e1f565b9050602081019050919050565b82818337600083830152505050565b6000613249613244846131f6565b61301b565b905082815260208101848484011115613265576132646131f1565b5b613270848285613227565b509392505050565b600082601f83011261328d5761328c612fb6565b5b813561329d848260208601613236565b91505092915050565b6000602082840312156132bc576132bb612d0b565b5b600082013567ffffffffffffffff8111156132da576132d9612d10565b5b6132e684828501613278565b91505092915050565b6132f881612d9a565b811461330357600080fd5b50565b600081359050613315816132ef565b92915050565b6000806040838503121561333257613331612d0b565b5b600061334085828601612f61565b925050602061335185828601613306565b9150509250929050565b600067ffffffffffffffff82111561337657613375612fbb565b5b61337f82612e1f565b9050602081019050919050565b600061339f61339a8461335b565b61301b565b9050828152602081018484840111156133bb576133ba6131f1565b5b6133c6848285613227565b509392505050565b600082601f8301126133e3576133e2612fb6565b5b81356133f384826020860161338c565b91505092915050565b6000806000806080858703121561341657613415612d0b565b5b600061342487828801612f61565b945050602061343587828801612f61565b935050604061344687828801612eac565b925050606085013567ffffffffffffffff81111561346757613466612d10565b5b613473878288016133ce565b91505092959194509250565b6000806040838503121561349657613495612d0b565b5b60006134a485828601612f61565b92505060206134b585828601612f61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061350657607f821691505b6020821081141561351a576135196134bf565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061357c602c83612ddb565b915061358782613520565b604082019050919050565b600060208201905081810360008301526135ab8161356f565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061360e602183612ddb565b9150613619826135b2565b604082019050919050565b6000602082019050818103600083015261363d81613601565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006136a0603883612ddb565b91506136ab82613644565b604082019050919050565b600060208201905081810360008301526136cf81613693565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061370c602083612ddb565b9150613717826136d6565b602082019050919050565b6000602082019050818103600083015261373b816136ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137ab82612e8b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137de576137dd613771565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613845603183612ddb565b9150613850826137e9565b604082019050919050565b6000602082019050818103600083015261387481613838565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006138b1601f83612ddb565b91506138bc8261387b565b602082019050919050565b600060208201905081810360008301526138e0816138a4565b9050919050565b60006138f282612e8b565b91506138fd83612e8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561393257613931613771565b5b828201905092915050565b7f5265717565737465642076616c75652065786365656473206d6178696d756d2060008201527f76616c756520666f722041697264726f7020546974616e732e00000000000000602082015250565b6000613999603983612ddb565b91506139a48261393d565b604082019050919050565b600060208201905081810360008301526139c88161398c565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613a2b602983612ddb565b9150613a36826139cf565b604082019050919050565b60006020820190508181036000830152613a5a81613a1e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613abd602a83612ddb565b9150613ac882613a61565b604082019050919050565b60006020820190508181036000830152613aec81613ab0565b9050919050565b7f546974616e7320617265206e6f7420617661696c61626c6520746f206d696e7460008201527f20617420746869732074696d652e000000000000000000000000000000000000602082015250565b6000613b4f602e83612ddb565b9150613b5a82613af3565b604082019050919050565b60006020820190508181036000830152613b7e81613b42565b9050919050565b7f596f75206d757374206d696e74206265747765656e203120616e64203520546960008201527f74616e7320617420612074696d652e0000000000000000000000000000000000602082015250565b6000613be1602f83612ddb565b9150613bec82613b85565b604082019050919050565b60006020820190508181036000830152613c1081613bd4565b9050919050565b6000613c2282612e8b565b9150613c2d83612e8b565b925082821015613c4057613c3f613771565b5b828203905092915050565b7f5265717565737465642076616c75652065786365656473206d6178696d756d2060008201527f76616c756520666f7220546974616e732e000000000000000000000000000000602082015250565b6000613ca7603183612ddb565b9150613cb282613c4b565b604082019050919050565b60006020820190508181036000830152613cd681613c9a565b9050919050565b6000613ce882612e8b565b9150613cf383612e8b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2c57613d2b613771565b5b828202905092915050565b7f496e76616c696420616d6f756e74206f66204554482073656e742e0000000000600082015250565b6000613d6d601b83612ddb565b9150613d7882613d37565b602082019050919050565b60006020820190508181036000830152613d9c81613d60565b9050919050565b7f546869732061646472657373206973206e6f742077686974656c69737465642060008201527f666f72207468652070726573616c652e00000000000000000000000000000000602082015250565b6000613dff603083612ddb565b9150613e0a82613da3565b604082019050919050565b60006020820190508181036000830152613e2e81613df2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e6b601983612ddb565b9150613e7682613e35565b602082019050919050565b60006020820190508181036000830152613e9a81613e5e565b9050919050565b7f5265717565737465642076616c75652065786365656473206d6178696d756d2060008201527f76616c756520666f72204570696c6f67756520546974616e732e000000000000602082015250565b6000613efd603a83612ddb565b9150613f0882613ea1565b604082019050919050565b60006020820190508181036000830152613f2c81613ef0565b9050919050565b7f46697273742064697361626c652054656d706c65204d696e74696e6720746f2060008201527f72652d696e697469616c697a652e000000000000000000000000000000000000602082015250565b6000613f8f602e83612ddb565b9150613f9a82613f33565b604082019050919050565b60006020820190508181036000830152613fbe81613f82565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000614021603183612ddb565b915061402c82613fc5565b604082019050919050565b6000602082019050818103600083015261405081614014565b9050919050565b600081905092915050565b600061406d82612dd0565b6140778185614057565b9350614087818560208601612dec565b80840191505092915050565b600061409f8285614062565b91506140ab8284614062565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614113602683612ddb565b915061411e826140b7565b604082019050919050565b6000602082019050818103600083015261414281614106565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141a5602c83612ddb565b91506141b082614149565b604082019050919050565b600060208201905081810360008301526141d481614198565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614237602983612ddb565b9150614242826141db565b604082019050919050565b600060208201905081810360008301526142668161422a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006142c9602483612ddb565b91506142d48261426d565b604082019050919050565b600060208201905081810360008301526142f8816142bc565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061435b603283612ddb565b9150614366826142ff565b604082019050919050565b6000602082019050818103600083015261438a8161434e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006143ed602f83612ddb565b91506143f882614391565b604082019050919050565b6000602082019050818103600083015261441c816143e0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061444a82614423565b614454818561442e565b9350614464818560208601612dec565b61446d81612e1f565b840191505092915050565b600060808201905061448d6000830187612f20565b61449a6020830186612f20565b6144a76040830185613174565b81810360608301526144b9818461443f565b905095945050505050565b6000815190506144d381612d41565b92915050565b6000602082840312156144ef576144ee612d0b565b5b60006144fd848285016144c4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061454082612e8b565b915061454b83612e8b565b92508261455b5761455a614506565b5b828204905092915050565b600061457182612e8b565b915061457c83612e8b565b92508261458c5761458b614506565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006145cd602083612ddb565b91506145d882614597565b602082019050919050565b600060208201905081810360008301526145fc816145c0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614639601c83612ddb565b915061464482614603565b602082019050919050565b600060208201905081810360008301526146688161462c565b905091905056fea264697066735822122064aa62763b89b3a2d6e267dd3d8d05f307717ae482907aa15610fa5f4766c5f964736f6c63430008090033

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063a80dcfee116100a0578063bbb82f391161006f578063bbb82f3914610744578063c87b56dd1461076d578063e985e9c5146107aa578063f2fde38b146107e7578063fc5023a3146108105761020f565b8063a80dcfee1461068a578063a92059e9146106c7578063b88d4fde146106f0578063b98451cf146107195761020f565b80638da5cb5b116100e75780638da5cb5b146105b7578063915bc02d146105e2578063931688cb1461060d57806395d89b4114610636578063a22cb465146106615761020f565b806370a0823114610530578063715018a61461056d5780637485f135146105845780637d8966e4146105a05761020f565b8063355052551161019b57806342842e0e1161016a57806342842e0e1461045d578063564566a8146104865780635fd8c710146104b15780636352211e146104c85780636c0360eb146105055761020f565b806335505255146103b357806337b4962f146103dc5780633a64c4d4146104075780633eff4989146104325761020f565b80630e256a5e116101e25780630e256a5e146102e257806313f44d101461030b5780631d53059e1461034857806323b872dd14610373578063343937431461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612d6d565b61083b565b6040516102489190612db5565b60405180910390f35b34801561025d57600080fd5b5061026661091d565b6040516102739190612e69565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612ec1565b6109af565b6040516102b09190612f2f565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612f76565b610a34565b005b3480156102ee57600080fd5b50610309600480360381019061030491906130fe565b610b4c565b005b34801561031757600080fd5b50610332600480360381019061032d9190613147565b610c5d565b60405161033f9190612db5565b60405180910390f35b34801561035457600080fd5b5061035d610cb3565b60405161036a9190613183565b60405180910390f35b34801561037f57600080fd5b5061039a6004803603810190610395919061319e565b610cb9565b005b3480156103a857600080fd5b506103b1610d19565b005b3480156103bf57600080fd5b506103da60048036038101906103d591906130fe565b610e3b565b005b3480156103e857600080fd5b506103f1610fd8565b6040516103fe9190613183565b60405180910390f35b34801561041357600080fd5b5061041c610fdd565b6040516104299190613183565b60405180910390f35b34801561043e57600080fd5b50610447610fe3565b6040516104549190613183565b60405180910390f35b34801561046957600080fd5b50610484600480360381019061047f919061319e565b610fe9565b005b34801561049257600080fd5b5061049b611009565b6040516104a89190612db5565b60405180910390f35b3480156104bd57600080fd5b506104c661101c565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190612ec1565b6110e7565b6040516104fc9190612f2f565b60405180910390f35b34801561051157600080fd5b5061051a611199565b6040516105279190612e69565b60405180910390f35b34801561053c57600080fd5b5061055760048036038101906105529190613147565b611227565b6040516105649190613183565b60405180910390f35b34801561057957600080fd5b506105826112df565b005b61059e60048036038101906105999190612ec1565b611367565b005b3480156105ac57600080fd5b506105b56115b7565b005b3480156105c357600080fd5b506105cc6116d9565b6040516105d99190612f2f565b60405180910390f35b3480156105ee57600080fd5b506105f7611703565b6040516106049190613183565b60405180910390f35b34801561061957600080fd5b50610634600480360381019061062f91906132a6565b611709565b005b34801561064257600080fd5b5061064b61179f565b6040516106589190612e69565b60405180910390f35b34801561066d57600080fd5b506106886004803603810190610683919061331b565b611831565b005b34801561069657600080fd5b506106b160048036038101906106ac9190613147565b6119b2565b6040516106be9190612db5565b60405180910390f35b3480156106d357600080fd5b506106ee60048036038101906106e99190612ec1565b6119d2565b005b3480156106fc57600080fd5b50610717600480360381019061071291906133fc565b611b3b565b005b34801561072557600080fd5b5061072e611b9d565b60405161073b9190612db5565b60405180910390f35b34801561075057600080fd5b5061076b600480360381019061076691906132a6565b611bb0565b005b34801561077957600080fd5b50610794600480360381019061078f9190612ec1565b611cf8565b6040516107a19190612e69565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc919061347f565b611e4a565b6040516107de9190612db5565b60405180910390f35b3480156107f357600080fd5b5061080e60048036038101906108099190613147565b611ede565b005b34801561081c57600080fd5b50610825611fd6565b6040516108329190613183565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610916575061091582611fdb565b5b9050919050565b60606000805461092c906134ee565b80601f0160208091040260200160405190810160405280929190818152602001828054610958906134ee565b80156109a55780601f1061097a576101008083540402835291602001916109a5565b820191906000526020600020905b81548152906001019060200180831161098857829003601f168201915b5050505050905090565b60006109ba82612045565b6109f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f090613592565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a3f826110e7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ab0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa790613624565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610acf6120b1565b73ffffffffffffffffffffffffffffffffffffffff161480610afe5750610afd81610af86120b1565b611e4a565b5b610b3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b34906136b6565b60405180910390fd5b610b4783836120b9565b505050565b610b546120b1565b73ffffffffffffffffffffffffffffffffffffffff16610b726116d9565b73ffffffffffffffffffffffffffffffffffffffff1614610bc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbf90613722565b60405180910390fd5b60005b8151811015610c59576001600f6000848481518110610bed57610bec613742565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610c51906137a0565b915050610bcb565b5050565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b5481565b610cca610cc46120b1565b82612172565b610d09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d009061385b565b60405180910390fd5b610d14838383612250565b505050565b610d216120b1565b73ffffffffffffffffffffffffffffffffffffffff16610d3f6116d9565b73ffffffffffffffffffffffffffffffffffffffff1614610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c90613722565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff02191690831515021790555060011515600e60009054906101000a900460ff1615151415610e0c577f9905b2a8827744add26587e1fedc4293ff0d12730cdc60cce4588e5a2a6b3b6260405160405180910390a1610e39565b7f824b9793c8ac7d56c1770c09ee7517f9318e27df0b86c928d8c373cf3c8b61a260405160405180910390a15b565b610e436120b1565b73ffffffffffffffffffffffffffffffffffffffff16610e616116d9565b73ffffffffffffffffffffffffffffffffffffffff1614610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae90613722565b60405180910390fd5b60026007541415610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef4906138c7565b60405180910390fd5b6002600781905550606e8151600c54610f1691906138e7565b1115610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e906139af565b60405180910390fd5b60005b8151811015610fcc57600c6000815480929190610f76906137a0565b9190505550600d6000815480929190610f8e906137a0565b9190505550610fb9828281518110610fa957610fa8613742565b5b6020026020010151600d546124ac565b8080610fc4906137a0565b915050610f5a565b50600160078190555050565b600a81565b600d5481565b600c5481565b61100483838360405180602001604052806000815250611b3b565b505050565b600a60009054906101000a900460ff1681565b6110246120b1565b73ffffffffffffffffffffffffffffffffffffffff166110426116d9565b73ffffffffffffffffffffffffffffffffffffffff1614611098576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108f90613722565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156110e3573d6000803e3d6000fd5b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790613a41565b60405180910390fd5b80915050919050565b600980546111a6906134ee565b80601f01602080910402602001604051908101604052809291908181526020018280546111d2906134ee565b801561121f5780601f106111f45761010080835404028352916020019161121f565b820191906000526020600020905b81548152906001019060200180831161120257829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611298576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128f90613ad3565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112e76120b1565b73ffffffffffffffffffffffffffffffffffffffff166113056116d9565b73ffffffffffffffffffffffffffffffffffffffff161461135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290613722565b60405180910390fd5b61136560006124ca565b565b600260075414156113ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a4906138c7565b60405180910390fd5b6002600781905550600a60009054906101000a900460ff16611404576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fb90613b65565b60405180910390fd5b6000811180156114195750600561ffff168111155b611458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144f90613bf7565b60405180910390fd5b606e6115b36114679190613c17565b81600d5461147591906138e7565b11156114b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ad90613cbd565b60405180910390fd5b66b1a2bc2ec50000816114c99190613cdd565b34101561150b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150290613d83565b60405180910390fd5b600e60009054906101000a900460ff16156115695761152933610c5d565b611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90613e15565b60405180910390fd5b5b60005b818110156115ab57600d6000815480929190611587906137a0565b919050555061159833600d546124ac565b80806115a3906137a0565b91505061156c565b50600160078190555050565b6115bf6120b1565b73ffffffffffffffffffffffffffffffffffffffff166115dd6116d9565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a90613722565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff02191690831515021790555060011515600a60009054906101000a900460ff16151514156116aa577f59d3ce47d6ad6c6003cef97d136155b29d88653eb355c8bed6e03fbf694570ca60405160405180910390a16116d7565b7fc2a8834045efeaf0b37df1cf2e5979bff82a0c7f93c99b649a004940ef3cda4560405160405180910390a15b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115b381565b6117116120b1565b73ffffffffffffffffffffffffffffffffffffffff1661172f6116d9565b73ffffffffffffffffffffffffffffffffffffffff1614611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613722565b60405180910390fd5b806009908051906020019061179b929190612c5e565b5050565b6060600180546117ae906134ee565b80601f01602080910402602001604051908101604052809291908181526020018280546117da906134ee565b80156118275780601f106117fc57610100808354040283529160200191611827565b820191906000526020600020905b81548152906001019060200180831161180a57829003601f168201915b5050505050905090565b6118396120b1565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90613e81565b60405180910390fd5b80600560006118b46120b1565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119616120b1565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119a69190612db5565b60405180910390a35050565b600f6020528060005260406000206000915054906101000a900460ff1681565b6119da6120b1565b73ffffffffffffffffffffffffffffffffffffffff166119f86116d9565b73ffffffffffffffffffffffffffffffffffffffff1614611a4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4590613722565b60405180910390fd5b60026007541415611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b906138c7565b60405180910390fd5b6002600781905550600a81600b54611aac91906138e7565b1115611aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae490613f13565b60405180910390fd5b60005b81811015611b2f57600b6000815480929190611b0b906137a0565b9190505550611b1c33600b546124ac565b8080611b27906137a0565b915050611af0565b50600160078190555050565b611b4c611b466120b1565b83612172565b611b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b829061385b565b60405180910390fd5b611b9784848484612590565b50505050565b600e60009054906101000a900460ff1681565b611bb86120b1565b73ffffffffffffffffffffffffffffffffffffffff16611bd66116d9565b73ffffffffffffffffffffffffffffffffffffffff1614611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390613722565b60405180910390fd5b600a60009054906101000a900460ff1615611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7390613fa5565b60405180910390fd5b8060099080519060200190611c92929190612c5e565b506001600e60006101000a81548160ff0219169083151502179055506000600a60006101000a81548160ff0219169083151502179055507f80f860092ed8101278311dd6b10dda4920a40ea5dfcbacfe724e2accfaf63efc60405160405180910390a150565b6060611d0382612045565b611d42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3990614037565b60405180910390fd5b6000600660008481526020019081526020016000208054611d62906134ee565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8e906134ee565b8015611ddb5780601f10611db057610100808354040283529160200191611ddb565b820191906000526020600020905b815481529060010190602001808311611dbe57829003601f168201915b505050505090506000611dec6125ec565b9050600081511415611e02578192505050611e45565b600082511115611e37578082604051602001611e1f929190614093565b60405160208183030381529060405292505050611e45565b611e408461267e565b925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ee66120b1565b73ffffffffffffffffffffffffffffffffffffffff16611f046116d9565b73ffffffffffffffffffffffffffffffffffffffff1614611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190613722565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc190614129565b60405180910390fd5b611fd3816124ca565b50565b606e81565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661212c836110e7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061217d82612045565b6121bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b3906141bb565b60405180910390fd5b60006121c7836110e7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061223657508373ffffffffffffffffffffffffffffffffffffffff1661221e846109af565b73ffffffffffffffffffffffffffffffffffffffff16145b8061224757506122468185611e4a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612270826110e7565b73ffffffffffffffffffffffffffffffffffffffff16146122c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122bd9061424d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232d906142df565b60405180910390fd5b612341838383612725565b61234c6000826120b9565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461239c9190613c17565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f391906138e7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6124c682826040518060200160405280600081525061272a565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61259b848484612250565b6125a784848484612785565b6125e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125dd90614371565b60405180910390fd5b50505050565b6060600980546125fb906134ee565b80601f0160208091040260200160405190810160405280929190818152602001828054612627906134ee565b80156126745780601f1061264957610100808354040283529160200191612674565b820191906000526020600020905b81548152906001019060200180831161265757829003601f168201915b5050505050905090565b606061268982612045565b6126c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126bf90614403565b60405180910390fd5b60006126d26125ec565b905060008151116126f2576040518060200160405280600081525061271d565b806126fc8461291c565b60405160200161270d929190614093565b6040516020818303038152906040525b915050919050565b505050565b6127348383612a7d565b6127416000848484612785565b612780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277790614371565b60405180910390fd5b505050565b60006127a68473ffffffffffffffffffffffffffffffffffffffff16612c4b565b1561290f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127cf6120b1565b8786866040518563ffffffff1660e01b81526004016127f19493929190614478565b602060405180830381600087803b15801561280b57600080fd5b505af192505050801561283c57506040513d601f19601f8201168201806040525081019061283991906144d9565b60015b6128bf573d806000811461286c576040519150601f19603f3d011682016040523d82523d6000602084013e612871565b606091505b506000815114156128b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ae90614371565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612914565b600190505b949350505050565b60606000821415612964576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a78565b600082905060005b6000821461299657808061297f906137a0565b915050600a8261298f9190614535565b915061296c565b60008167ffffffffffffffff8111156129b2576129b1612fbb565b5b6040519080825280601f01601f1916602001820160405280156129e45781602001600182028036833780820191505090505b5090505b60008514612a71576001826129fd9190613c17565b9150600a85612a0c9190614566565b6030612a1891906138e7565b60f81b818381518110612a2e57612a2d613742565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a6a9190614535565b94506129e8565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae4906145e3565b60405180910390fd5b612af681612045565b15612b36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2d9061464f565b60405180910390fd5b612b4260008383612725565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b9291906138e7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054612c6a906134ee565b90600052602060002090601f016020900481019282612c8c5760008555612cd3565b82601f10612ca557805160ff1916838001178555612cd3565b82800160010185558215612cd3579182015b82811115612cd2578251825591602001919060010190612cb7565b5b509050612ce09190612ce4565b5090565b5b80821115612cfd576000816000905550600101612ce5565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d4a81612d15565b8114612d5557600080fd5b50565b600081359050612d6781612d41565b92915050565b600060208284031215612d8357612d82612d0b565b5b6000612d9184828501612d58565b91505092915050565b60008115159050919050565b612daf81612d9a565b82525050565b6000602082019050612dca6000830184612da6565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612e0a578082015181840152602081019050612def565b83811115612e19576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e3b82612dd0565b612e458185612ddb565b9350612e55818560208601612dec565b612e5e81612e1f565b840191505092915050565b60006020820190508181036000830152612e838184612e30565b905092915050565b6000819050919050565b612e9e81612e8b565b8114612ea957600080fd5b50565b600081359050612ebb81612e95565b92915050565b600060208284031215612ed757612ed6612d0b565b5b6000612ee584828501612eac565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f1982612eee565b9050919050565b612f2981612f0e565b82525050565b6000602082019050612f446000830184612f20565b92915050565b612f5381612f0e565b8114612f5e57600080fd5b50565b600081359050612f7081612f4a565b92915050565b60008060408385031215612f8d57612f8c612d0b565b5b6000612f9b85828601612f61565b9250506020612fac85828601612eac565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612ff382612e1f565b810181811067ffffffffffffffff8211171561301257613011612fbb565b5b80604052505050565b6000613025612d01565b90506130318282612fea565b919050565b600067ffffffffffffffff82111561305157613050612fbb565b5b602082029050602081019050919050565b600080fd5b600061307a61307584613036565b61301b565b9050808382526020820190506020840283018581111561309d5761309c613062565b5b835b818110156130c657806130b28882612f61565b84526020840193505060208101905061309f565b5050509392505050565b600082601f8301126130e5576130e4612fb6565b5b81356130f5848260208601613067565b91505092915050565b60006020828403121561311457613113612d0b565b5b600082013567ffffffffffffffff81111561313257613131612d10565b5b61313e848285016130d0565b91505092915050565b60006020828403121561315d5761315c612d0b565b5b600061316b84828501612f61565b91505092915050565b61317d81612e8b565b82525050565b60006020820190506131986000830184613174565b92915050565b6000806000606084860312156131b7576131b6612d0b565b5b60006131c586828701612f61565b93505060206131d686828701612f61565b92505060406131e786828701612eac565b9150509250925092565b600080fd5b600067ffffffffffffffff82111561321157613210612fbb565b5b61321a82612e1f565b9050602081019050919050565b82818337600083830152505050565b6000613249613244846131f6565b61301b565b905082815260208101848484011115613265576132646131f1565b5b613270848285613227565b509392505050565b600082601f83011261328d5761328c612fb6565b5b813561329d848260208601613236565b91505092915050565b6000602082840312156132bc576132bb612d0b565b5b600082013567ffffffffffffffff8111156132da576132d9612d10565b5b6132e684828501613278565b91505092915050565b6132f881612d9a565b811461330357600080fd5b50565b600081359050613315816132ef565b92915050565b6000806040838503121561333257613331612d0b565b5b600061334085828601612f61565b925050602061335185828601613306565b9150509250929050565b600067ffffffffffffffff82111561337657613375612fbb565b5b61337f82612e1f565b9050602081019050919050565b600061339f61339a8461335b565b61301b565b9050828152602081018484840111156133bb576133ba6131f1565b5b6133c6848285613227565b509392505050565b600082601f8301126133e3576133e2612fb6565b5b81356133f384826020860161338c565b91505092915050565b6000806000806080858703121561341657613415612d0b565b5b600061342487828801612f61565b945050602061343587828801612f61565b935050604061344687828801612eac565b925050606085013567ffffffffffffffff81111561346757613466612d10565b5b613473878288016133ce565b91505092959194509250565b6000806040838503121561349657613495612d0b565b5b60006134a485828601612f61565b92505060206134b585828601612f61565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061350657607f821691505b6020821081141561351a576135196134bf565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061357c602c83612ddb565b915061358782613520565b604082019050919050565b600060208201905081810360008301526135ab8161356f565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b600061360e602183612ddb565b9150613619826135b2565b604082019050919050565b6000602082019050818103600083015261363d81613601565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b60006136a0603883612ddb565b91506136ab82613644565b604082019050919050565b600060208201905081810360008301526136cf81613693565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061370c602083612ddb565b9150613717826136d6565b602082019050919050565b6000602082019050818103600083015261373b816136ff565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006137ab82612e8b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137de576137dd613771565b5b600182019050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613845603183612ddb565b9150613850826137e9565b604082019050919050565b6000602082019050818103600083015261387481613838565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006138b1601f83612ddb565b91506138bc8261387b565b602082019050919050565b600060208201905081810360008301526138e0816138a4565b9050919050565b60006138f282612e8b565b91506138fd83612e8b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561393257613931613771565b5b828201905092915050565b7f5265717565737465642076616c75652065786365656473206d6178696d756d2060008201527f76616c756520666f722041697264726f7020546974616e732e00000000000000602082015250565b6000613999603983612ddb565b91506139a48261393d565b604082019050919050565b600060208201905081810360008301526139c88161398c565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000613a2b602983612ddb565b9150613a36826139cf565b604082019050919050565b60006020820190508181036000830152613a5a81613a1e565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000613abd602a83612ddb565b9150613ac882613a61565b604082019050919050565b60006020820190508181036000830152613aec81613ab0565b9050919050565b7f546974616e7320617265206e6f7420617661696c61626c6520746f206d696e7460008201527f20617420746869732074696d652e000000000000000000000000000000000000602082015250565b6000613b4f602e83612ddb565b9150613b5a82613af3565b604082019050919050565b60006020820190508181036000830152613b7e81613b42565b9050919050565b7f596f75206d757374206d696e74206265747765656e203120616e64203520546960008201527f74616e7320617420612074696d652e0000000000000000000000000000000000602082015250565b6000613be1602f83612ddb565b9150613bec82613b85565b604082019050919050565b60006020820190508181036000830152613c1081613bd4565b9050919050565b6000613c2282612e8b565b9150613c2d83612e8b565b925082821015613c4057613c3f613771565b5b828203905092915050565b7f5265717565737465642076616c75652065786365656473206d6178696d756d2060008201527f76616c756520666f7220546974616e732e000000000000000000000000000000602082015250565b6000613ca7603183612ddb565b9150613cb282613c4b565b604082019050919050565b60006020820190508181036000830152613cd681613c9a565b9050919050565b6000613ce882612e8b565b9150613cf383612e8b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d2c57613d2b613771565b5b828202905092915050565b7f496e76616c696420616d6f756e74206f66204554482073656e742e0000000000600082015250565b6000613d6d601b83612ddb565b9150613d7882613d37565b602082019050919050565b60006020820190508181036000830152613d9c81613d60565b9050919050565b7f546869732061646472657373206973206e6f742077686974656c69737465642060008201527f666f72207468652070726573616c652e00000000000000000000000000000000602082015250565b6000613dff603083612ddb565b9150613e0a82613da3565b604082019050919050565b60006020820190508181036000830152613e2e81613df2565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613e6b601983612ddb565b9150613e7682613e35565b602082019050919050565b60006020820190508181036000830152613e9a81613e5e565b9050919050565b7f5265717565737465642076616c75652065786365656473206d6178696d756d2060008201527f76616c756520666f72204570696c6f67756520546974616e732e000000000000602082015250565b6000613efd603a83612ddb565b9150613f0882613ea1565b604082019050919050565b60006020820190508181036000830152613f2c81613ef0565b9050919050565b7f46697273742064697361626c652054656d706c65204d696e74696e6720746f2060008201527f72652d696e697469616c697a652e000000000000000000000000000000000000602082015250565b6000613f8f602e83612ddb565b9150613f9a82613f33565b604082019050919050565b60006020820190508181036000830152613fbe81613f82565b9050919050565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b6000614021603183612ddb565b915061402c82613fc5565b604082019050919050565b6000602082019050818103600083015261405081614014565b9050919050565b600081905092915050565b600061406d82612dd0565b6140778185614057565b9350614087818560208601612dec565b80840191505092915050565b600061409f8285614062565b91506140ab8284614062565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614113602683612ddb565b915061411e826140b7565b604082019050919050565b6000602082019050818103600083015261414281614106565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b60006141a5602c83612ddb565b91506141b082614149565b604082019050919050565b600060208201905081810360008301526141d481614198565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614237602983612ddb565b9150614242826141db565b604082019050919050565b600060208201905081810360008301526142668161422a565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006142c9602483612ddb565b91506142d48261426d565b604082019050919050565b600060208201905081810360008301526142f8816142bc565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061435b603283612ddb565b9150614366826142ff565b604082019050919050565b6000602082019050818103600083015261438a8161434e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006143ed602f83612ddb565b91506143f882614391565b604082019050919050565b6000602082019050818103600083015261441c816143e0565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061444a82614423565b614454818561442e565b9350614464818560208601612dec565b61446d81612e1f565b840191505092915050565b600060808201905061448d6000830187612f20565b61449a6020830186612f20565b6144a76040830185613174565b81810360608301526144b9818461443f565b905095945050505050565b6000815190506144d381612d41565b92915050565b6000602082840312156144ef576144ee612d0b565b5b60006144fd848285016144c4565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061454082612e8b565b915061454b83612e8b565b92508261455b5761455a614506565b5b828204905092915050565b600061457182612e8b565b915061457c83612e8b565b92508261458c5761458b614506565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006145cd602083612ddb565b91506145d882614597565b602082019050919050565b600060208201905081810360008301526145fc816145c0565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614639601c83612ddb565b915061464482614603565b602082019050919050565b600060208201905081810360008301526146688161462c565b905091905056fea264697066735822122064aa62763b89b3a2d6e267dd3d8d05f307717ae482907aa15610fa5f4766c5f964736f6c63430008090033

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.