ETH Price: $2,483.06 (-7.94%)
Gas: 0.77 Gwei

Token

The Immortals: Shadow Warriors (IMMORTALS)
 

Overview

Max Total Supply

835 IMMORTALS

Holders

453

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 IMMORTALS
0x9649a28f7fcf5b672dcc780d84a09c52378969d6
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:
Immortals

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : Immortals.sol
//SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract Immortals is ERC721, Ownable {
    using Strings for uint256;
    using ECDSA for bytes32;

    uint256 public MAX_FREE = 555;
    uint256 public maxSupply = 2222;

    uint256 public currentSupply = 0;

    uint256 public salePrice = 0.03 ether;

    uint256 public freeMinted;

    //Placeholders
    address private freeAddress = address(0xe3a8333deD33DE0C0E2D7273075C5D4fd6B51C0B);
    address private wallet = address(0x8626037878c5e1F892Db973ceb94Cc43ceAE54e5);

    string private baseURI;
    string private notRevealedUri = "ipfs://QmXiD7XzC9m99EtZPdHq4gV1Xj6eyuTooQ1o6VYTWF8h6a";

    bool public revealed = false;
    bool public baseLocked = false;
    bool public freeMintOpened = false;

    enum WorkflowStatus {
        Before,
        Sale,
        Paused,
        Reveal
    }

    WorkflowStatus public workflow;

    mapping(address => uint256) public freeMintAccess;
    mapping(address => uint256) public freeMintLog;

    constructor()
        ERC721("The Immortals: Shadow Warriors", "IMMORTALS")
    {
        transferOwnership(msg.sender);
        workflow = WorkflowStatus.Before;
    }

    function withdraw() public onlyOwner {
        uint256 _balance = address( this ).balance;
        
        payable( wallet ).transfer( _balance );
    }

    //GETTERS
    function getSaleStatus() public view returns (WorkflowStatus) {
        return workflow;
    }

    function totalSupply() public view returns (uint256) {
        return currentSupply;
    }

    function getFreeMintAmount( address _acc ) public view returns (uint256) {
        return freeMintAccess[ _acc ];
    }

    function getFreeMintLog( address _acc ) public view returns (uint256) {
        return freeMintLog[ _acc ];
    }

    function validateSignature( address _addr, bytes memory _s ) internal view returns (bool){
        bytes32 messageHash = keccak256(
            abi.encodePacked( address(this), msg.sender)
        );

        address signer = messageHash.toEthSignedMessageHash().recover(_s);

        if( _addr == signer ) {
            return true;
        } else {
            return false;
        }
    }

    //Batch minting
    function mintBatch(
        address to,
        uint256 baseId,
        uint256 number
    ) internal {

        for (uint256 i = 0; i < number; i++) {
            _safeMint(to, baseId + i);
        }

    }

    /**
        Claims tokens for free paying only gas fees
     */
    function freeMint(uint256 _amount, bytes calldata signature) external {
        //Free mint check
        require( 
            freeMintOpened, 
            "Free mint is not opened yet." 
        );

        //Check free mint signature
        require(
            validateSignature(
                freeAddress,
                signature
            ),
            "SIGNATURE_VALIDATION_FAILED"
        );

        uint256 supply = currentSupply;
        uint256 allowedAmount = 1;

        if( freeMintAccess[ msg.sender ] > 0 ) {
            allowedAmount = freeMintAccess[ msg.sender ];
        } 

        require( 
            freeMintLog[ msg.sender ] + _amount <= allowedAmount, 
            "You dont have permision to free mint that amount." 
        );

        require(
            supply + _amount <= maxSupply,
            "The Immortals: Mint too large, exceeding the maxSupply"
        );

        require(
            freeMinted + _amount <= MAX_FREE,
            "The Immortals: Mint too large, exceeding the free mint amount"
        );

        freeMintLog[ msg.sender ] += _amount;
        freeMinted += _amount;
        currentSupply += _amount;

        mintBatch(msg.sender, supply, _amount);
    }

    function publicSaleMint(uint256 amount) external payable {
        require( amount > 0, "You must mint at least one NFT.");
        
        uint256 supply = currentSupply;

        require( supply < maxSupply, "The Immortals: Sold out!" );
        require( supply + amount <= maxSupply, "The Immortals: Selected amount exceeds the max supply.");

        require(
            workflow == WorkflowStatus.Sale,
            "The Immortals: Public sale has not active."
        );

        require(
            msg.value >= salePrice * amount,
            "The Immortals: Insuficient ETH amount sent."
        );

        currentSupply += amount;

        mintBatch(msg.sender, supply, amount);
    }

    function forceMint(uint256 number, address receiver) external onlyOwner {
        uint256 supply = currentSupply;

        require(
            supply + number <= maxSupply,
            "The Immortals: You can't mint more than max supply"
        );

        currentSupply += number;

        mintBatch( receiver, supply, number);
    }

    function pullItem(
        address from,
        address to,
        uint256 tokenId
    ) external onlyOwner {
        _safeTransfer(from, to, tokenId, "");
    }

    function ownerMint(uint256 number) external onlyOwner {
        uint256 supply = currentSupply;

        require(
            supply + number <= maxSupply,
            "The Immortals: You can't mint more than max supply"
        );

        currentSupply += number;

        mintBatch(msg.sender, supply, number);
    }

    function airdrop(address[] calldata addresses) external onlyOwner {
        uint256 supply = currentSupply;
        require(
            supply + addresses.length <= maxSupply,
            "The Immortals: You can't mint more than max supply"
        );

        currentSupply += addresses.length;

        for (uint256 i = 0; i < addresses.length; i++) {
            _safeMint(addresses[i], supply + i);
        }
    }

    function setUpBefore() external onlyOwner {
        workflow = WorkflowStatus.Before;
    }

    function setUpSale() external onlyOwner {
        workflow = WorkflowStatus.Sale;
    }

    function pauseSale() external onlyOwner {
        workflow = WorkflowStatus.Paused;
    }

    function openFreeMint() public onlyOwner {
        freeMintOpened = true;
    }
    
    function stopFreeMint() public onlyOwner {
        freeMintOpened = false;
    }

    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        require( baseLocked == false, "Base URI change has been disabled permanently");

        baseURI = _newBaseURI;
    }

    function setWallet(address _newWallet) public onlyOwner {
        wallet = _newWallet;
    }

    function setSalePrice(uint256 _newPrice) public onlyOwner {
        salePrice = _newPrice;
    }

    function setFreeMintAccess(address _acc, uint256 _am ) public onlyOwner {
        freeMintAccess[ _acc ] = _am;
    }

    //Lock base security - your nfts can never be changed.
    function lockBase() public onlyOwner {
        baseLocked = true;
    }

    // FACTORY
    function tokenURI(uint256 tokenId)
        public
        view
        override(ERC721)
        returns (string memory)
    {
        if (revealed == false) {
            return notRevealedUri;
        }

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

File 2 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

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() {
        _transferOwnership(_msgSender());
    }

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

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

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

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

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

File 3 of 13 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

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 {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

File 6 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 8 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

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

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

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 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

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 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airdrop","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":"baseLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"forceMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintAccess","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintLog","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMintOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_acc","type":"address"}],"name":"getFreeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_acc","type":"address"}],"name":"getFreeMintLog","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getSaleStatus","outputs":[{"internalType":"enum Immortals.WorkflowStatus","name":"","type":"uint8"}],"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":"lockBase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pauseSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"pullItem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_acc","type":"address"},{"internalType":"uint256","name":"_am","type":"uint256"}],"name":"setFreeMintAccess","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpBefore","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setUpSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newWallet","type":"address"}],"name":"setWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"workflow","outputs":[{"internalType":"enum Immortals.WorkflowStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"}]

608060405261022b6007556108ae6008556000600955666a94d74f430000600a5573e3a8333ded33de0c0e2d7273075c5d4fd6b51c0b600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738626037878c5e1f892db973ceb94cc43ceae54e5600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506040518060600160405280603581526020016200601f60359139600f9080519060200190620000fb92919062000492565b506000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055503480156200015a57600080fd5b506040518060400160405280601e81526020017f54686520496d6d6f7274616c733a20536861646f772057617272696f727300008152506040518060400160405280600981526020017f494d4d4f5254414c5300000000000000000000000000000000000000000000008152508160009080519060200190620001df92919062000492565b508060019080519060200190620001f892919062000492565b5050506200021b6200020f6200028460201b60201c565b6200028c60201b60201c565b6200022c336200035260201b60201c565b6000601060036101000a81548160ff0219169083600381111562000279577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550620006a6565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003626200028460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003886200046860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003e1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003d8906200060e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000454576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200044b90620005ec565b60405180910390fd5b62000465816200028c60201b60201c565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004a09062000641565b90600052602060002090601f016020900481019282620004c4576000855562000510565b82601f10620004df57805160ff191683800117855562000510565b8280016001018555821562000510579182015b828111156200050f578251825591602001919060010190620004f2565b5b5090506200051f919062000523565b5090565b5b808211156200053e57600081600090555060010162000524565b5090565b60006200055160268362000630565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000620005b960208362000630565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006020820190508181036000830152620006078162000542565b9050919050565b600060208201905081810360008301526200062981620005aa565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200065a57607f821691505b6020821081141562000671576200067062000677565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61596980620006b66000396000f3fe6080604052600436106102c95760003560e01c8063817415c411610175578063b88d4fde116100dc578063e985e9c511610095578063f2c4ce1e1161006f578063f2c4ce1e14610a4b578063f2fde38b14610a74578063f51f96dd14610a9d578063fb7ddd0414610ac8576102c9565b8063e985e9c5146109ba578063ed6661c2146109f7578063f19e75d414610a22576102c9565b8063b88d4fde146108be578063c87b56dd146108e7578063d10a1a2b14610924578063d5abeb011461094f578063d8a4169e1461097a578063deaa59df14610991576102c9565b806397b9bd081161012e57806397b9bd08146107cf5780639cbb5b4a1461080c578063a22cb46514610837578063a334412514610860578063a475b5dd1461088b578063b3ab66b0146108a2576102c9565b8063817415c4146106d1578063847e2101146106fa5780638c3c4b34146107115780638da5cb5b1461073c578063916d31ff1461076757806395d89b41146107a4576102c9565b80633ccfd60b116102345780636352211e116101ed578063729ad39e116101c7578063729ad39e14610629578063771282f6146106525780637b0826101461067d5780638074be98146106a8576102c9565b80636352211e1461059857806370a08231146105d5578063715018a614610612576102c9565b80633ccfd60b146104b057806342842e0e146104c75780634c709163146104f0578063518302271461052d57806355367ba91461055857806355f804b31461056f576102c9565b806318160ddd1161028657806318160ddd146103ee5780631919fed7146104195780631c03ceb5146104425780631f2898c314610459578063215a41631461047057806323b872dd14610487576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc14610336578063095ea7b3146103735780630b2af42e1461039c5780630cd3835d146103c5575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f091906140ac565b610b05565b6040516103029190614f6d565b60405180910390f35b34801561031757600080fd5b50610320610be7565b60405161032d9190614fe8565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061413f565b610c79565b60405161036a9190614f06565b60405180910390f35b34801561037f57600080fd5b5061039a6004803603810190610395919061402b565b610cfe565b005b3480156103a857600080fd5b506103c360048036038101906103be919061402b565b610e16565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190613f25565b610eda565b005b3480156103fa57600080fd5b50610403610f76565b60405161041091906153ea565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b919061413f565b610f80565b005b34801561044e57600080fd5b50610457611006565b005b34801561046557600080fd5b5061046e61109f565b005b34801561047c57600080fd5b5061048561116e565b005b34801561049357600080fd5b506104ae60048036038101906104a99190613f25565b611207565b005b3480156104bc57600080fd5b506104c5611267565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190613f25565b611354565b005b3480156104fc57600080fd5b5061051760048036038101906105129190613ec0565b611374565b60405161052491906153ea565b60405180910390f35b34801561053957600080fd5b5061054261138c565b60405161054f9190614f6d565b60405180910390f35b34801561056457600080fd5b5061056d61139f565b005b34801561057b57600080fd5b50610596600480360381019061059191906140fe565b61146e565b005b3480156105a457600080fd5b506105bf60048036038101906105ba919061413f565b61155a565b6040516105cc9190614f06565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613ec0565b61160c565b60405161060991906153ea565b60405180910390f35b34801561061e57600080fd5b506106276116c4565b005b34801561063557600080fd5b50610650600480360381019061064b9190614067565b61174c565b005b34801561065e57600080fd5b506106676118c7565b60405161067491906153ea565b60405180910390f35b34801561068957600080fd5b506106926118cd565b60405161069f9190614f6d565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190614168565b6118e0565b005b3480156106dd57600080fd5b506106f860048036038101906106f391906141a4565b6119dc565b005b34801561070657600080fd5b5061070f611d3b565b005b34801561071d57600080fd5b50610726611e0a565b6040516107339190614fcd565b60405180910390f35b34801561074857600080fd5b50610751611e21565b60405161075e9190614f06565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613ec0565b611e4b565b60405161079b91906153ea565b60405180910390f35b3480156107b057600080fd5b506107b9611e63565b6040516107c69190614fe8565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190613ec0565b611ef5565b60405161080391906153ea565b60405180910390f35b34801561081857600080fd5b50610821611f3e565b60405161082e9190614f6d565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613fef565b611f51565b005b34801561086c57600080fd5b50610875611f67565b6040516108829190614fcd565b60405180910390f35b34801561089757600080fd5b506108a0611f7a565b005b6108bc60048036038101906108b7919061413f565b612013565b005b3480156108ca57600080fd5b506108e560048036038101906108e09190613f74565b61222b565b005b3480156108f357600080fd5b5061090e6004803603810190610909919061413f565b61228d565b60405161091b9190614fe8565b60405180910390f35b34801561093057600080fd5b5061093961241e565b60405161094691906153ea565b60405180910390f35b34801561095b57600080fd5b50610964612424565b60405161097191906153ea565b60405180910390f35b34801561098657600080fd5b5061098f61242a565b005b34801561099d57600080fd5b506109b860048036038101906109b39190613ec0565b6124c3565b005b3480156109c657600080fd5b506109e160048036038101906109dc9190613ee9565b612583565b6040516109ee9190614f6d565b60405180910390f35b348015610a0357600080fd5b50610a0c612617565b604051610a1991906153ea565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a44919061413f565b61261d565b005b348015610a5757600080fd5b50610a726004803603810190610a6d91906140fe565b612718565b005b348015610a8057600080fd5b50610a9b6004803603810190610a969190613ec0565b6127ae565b005b348015610aa957600080fd5b50610ab26128a6565b604051610abf91906153ea565b60405180910390f35b348015610ad457600080fd5b50610aef6004803603810190610aea9190613ec0565b6128ac565b604051610afc91906153ea565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bd057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610be05750610bdf826128f5565b5b9050919050565b606060008054610bf6906156e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c22906156e0565b8015610c6f5780601f10610c4457610100808354040283529160200191610c6f565b820191906000526020600020905b815481529060010190602001808311610c5257829003601f168201915b5050505050905090565b6000610c848261295f565b610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906152ea565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d098261155a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d719061534a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d996129cb565b73ffffffffffffffffffffffffffffffffffffffff161480610dc85750610dc781610dc26129cb565b612583565b5b610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe9061522a565b60405180910390fd5b610e1183836129d3565b505050565b610e1e6129cb565b73ffffffffffffffffffffffffffffffffffffffff16610e3c611e21565b73ffffffffffffffffffffffffffffffffffffffff1614610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e899061530a565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b610ee26129cb565b73ffffffffffffffffffffffffffffffffffffffff16610f00611e21565b73ffffffffffffffffffffffffffffffffffffffff1614610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d9061530a565b60405180910390fd5b610f7183838360405180602001604052806000815250612a8c565b505050565b6000600954905090565b610f886129cb565b73ffffffffffffffffffffffffffffffffffffffff16610fa6611e21565b73ffffffffffffffffffffffffffffffffffffffff1614610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff39061530a565b60405180910390fd5b80600a8190555050565b61100e6129cb565b73ffffffffffffffffffffffffffffffffffffffff1661102c611e21565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110799061530a565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b6110a76129cb565b73ffffffffffffffffffffffffffffffffffffffff166110c5611e21565b73ffffffffffffffffffffffffffffffffffffffff161461111b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111129061530a565b60405180910390fd5b6001601060036101000a81548160ff02191690836003811115611167577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6111766129cb565b73ffffffffffffffffffffffffffffffffffffffff16611194611e21565b73ffffffffffffffffffffffffffffffffffffffff16146111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e19061530a565b60405180910390fd5b6001601060026101000a81548160ff021916908315150217905550565b6112186112126129cb565b82612ae8565b611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e9061538a565b60405180910390fd5b611262838383612bc6565b505050565b61126f6129cb565b73ffffffffffffffffffffffffffffffffffffffff1661128d611e21565b73ffffffffffffffffffffffffffffffffffffffff16146112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da9061530a565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611350573d6000803e3d6000fd5b5050565b61136f8383836040518060200160405280600081525061222b565b505050565b60126020528060005260406000206000915090505481565b601060009054906101000a900460ff1681565b6113a76129cb565b73ffffffffffffffffffffffffffffffffffffffff166113c5611e21565b73ffffffffffffffffffffffffffffffffffffffff161461141b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114129061530a565b60405180910390fd5b6002601060036101000a81548160ff02191690836003811115611467577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6114766129cb565b73ffffffffffffffffffffffffffffffffffffffff16611494611e21565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e19061530a565b60405180910390fd5b60001515601060019054906101000a900460ff16151514611540576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115379061504a565b60405180910390fd5b80600e9080519060200190611556929190613c50565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061526a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561167d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116749061524a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116cc6129cb565b73ffffffffffffffffffffffffffffffffffffffff166116ea611e21565b73ffffffffffffffffffffffffffffffffffffffff1614611740576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117379061530a565b60405180910390fd5b61174a6000612e22565b565b6117546129cb565b73ffffffffffffffffffffffffffffffffffffffff16611772611e21565b73ffffffffffffffffffffffffffffffffffffffff16146117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf9061530a565b60405180910390fd5b6000600954905060085483839050826117e191906154d9565b1115611822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118199061520a565b60405180910390fd5b828290506009600082825461183791906154d9565b9250508190555060005b838390508110156118c1576118ae848483818110611888577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061189d9190613ec0565b82846118a991906154d9565b612ee8565b80806118b990615712565b915050611841565b50505050565b60095481565b601060019054906101000a900460ff1681565b6118e86129cb565b73ffffffffffffffffffffffffffffffffffffffff16611906611e21565b73ffffffffffffffffffffffffffffffffffffffff161461195c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119539061530a565b60405180910390fd5b60006009549050600854838261197291906154d9565b11156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa9061520a565b60405180910390fd5b82600960008282546119c591906154d9565b925050819055506119d7828285612f06565b505050565b601060029054906101000a900460ff16611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a22906152aa565b60405180910390fd5b611a9b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612f3f565b611ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad1906151ea565b60405180910390fd5b600060095490506000600190506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b7257601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b8085601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bbe91906154d9565b1115611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf6906150ea565b60405180910390fd5b6008548583611c0e91906154d9565b1115611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c469061536a565b60405180910390fd5b60075485600b54611c6091906154d9565b1115611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c989061510a565b60405180910390fd5b84601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf091906154d9565b9250508190555084600b6000828254611d0991906154d9565b925050819055508460096000828254611d2291906154d9565b92505081905550611d34338387612f06565b5050505050565b611d436129cb565b73ffffffffffffffffffffffffffffffffffffffff16611d61611e21565b73ffffffffffffffffffffffffffffffffffffffff1614611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae9061530a565b60405180910390fd5b6000601060036101000a81548160ff02191690836003811115611e03577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6000601060039054906101000a900460ff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60116020528060005260406000206000915090505481565b606060018054611e72906156e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9e906156e0565b8015611eeb5780601f10611ec057610100808354040283529160200191611eeb565b820191906000526020600020905b815481529060010190602001808311611ece57829003601f168201915b5050505050905090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601060029054906101000a900460ff1681565b611f63611f5c6129cb565b8383612fd8565b5050565b601060039054906101000a900460ff1681565b611f826129cb565b73ffffffffffffffffffffffffffffffffffffffff16611fa0611e21565b73ffffffffffffffffffffffffffffffffffffffff1614611ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fed9061530a565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b60008111612056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204d906153aa565b60405180910390fd5b6000600954905060085481106120a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120989061508a565b60405180910390fd5b60085482826120b091906154d9565b11156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e8906153ca565b60405180910390fd5b6001600381111561212b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601060039054906101000a900460ff166003811115612173577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa9061514a565b60405180910390fd5b81600a546121c19190615560565b341015612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa9061502a565b60405180910390fd5b816009600082825461221591906154d9565b92505081905550612227338284612f06565b5050565b61223c6122366129cb565b83612ae8565b61227b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122729061538a565b60405180910390fd5b61228784848484612a8c565b50505050565b606060001515601060009054906101000a900460ff161515141561233d57600f80546122b8906156e0565b80601f01602080910402602001604051908101604052809291908181526020018280546122e4906156e0565b80156123315780601f1061230657610100808354040283529160200191612331565b820191906000526020600020905b81548152906001019060200180831161231457829003601f168201915b50505050509050612419565b6000600e805461234c906156e0565b80601f0160208091040260200160405190810160405280929190818152602001828054612378906156e0565b80156123c55780601f1061239a576101008083540402835291602001916123c5565b820191906000526020600020905b8154815290600101906020018083116123a857829003601f168201915b5050505050905060008151116123ea5760405180602001604052806000815250612415565b806123f484613145565b604051602001612405929190614eb1565b6040516020818303038152906040525b9150505b919050565b600b5481565b60085481565b6124326129cb565b73ffffffffffffffffffffffffffffffffffffffff16612450611e21565b73ffffffffffffffffffffffffffffffffffffffff16146124a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249d9061530a565b60405180910390fd5b6000601060026101000a81548160ff021916908315150217905550565b6124cb6129cb565b73ffffffffffffffffffffffffffffffffffffffff166124e9611e21565b73ffffffffffffffffffffffffffffffffffffffff161461253f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125369061530a565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60075481565b6126256129cb565b73ffffffffffffffffffffffffffffffffffffffff16612643611e21565b73ffffffffffffffffffffffffffffffffffffffff1614612699576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126909061530a565b60405180910390fd5b6000600954905060085482826126af91906154d9565b11156126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e79061520a565b60405180910390fd5b816009600082825461270291906154d9565b92505081905550612714338284612f06565b5050565b6127206129cb565b73ffffffffffffffffffffffffffffffffffffffff1661273e611e21565b73ffffffffffffffffffffffffffffffffffffffff1614612794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278b9061530a565b60405180910390fd5b80600f90805190602001906127aa929190613c50565b5050565b6127b66129cb565b73ffffffffffffffffffffffffffffffffffffffff166127d4611e21565b73ffffffffffffffffffffffffffffffffffffffff161461282a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128219061530a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561289a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612891906150ca565b60405180910390fd5b6128a381612e22565b50565b600a5481565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a468361155a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612a97848484612bc6565b612aa3848484846132f2565b612ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad9906150aa565b60405180910390fd5b50505050565b6000612af38261295f565b612b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b29906151ca565b60405180910390fd5b6000612b3d8361155a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bac57508373ffffffffffffffffffffffffffffffffffffffff16612b9484610c79565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bbd5750612bbc8185612583565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612be68261155a565b73ffffffffffffffffffffffffffffffffffffffff1614612c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c339061532a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca39061516a565b60405180910390fd5b612cb7838383613489565b612cc26000826129d3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d1291906155ba565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d6991906154d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f0282826040518060200160405280600081525061348e565b5050565b60005b81811015612f3957612f26848285612f2191906154d9565b612ee8565b8080612f3190615712565b915050612f09565b50505050565b6000803033604051602001612f55929190614e85565b6040516020818303038152906040528051906020012090506000612f8a84612f7c846134e9565b61351990919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612fcb57600192505050612fd2565b6000925050505b92915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303e9061518a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131389190614f6d565b60405180910390a3505050565b6060600082141561318d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132ed565b600082905060005b600082146131bf5780806131a890615712565b915050600a826131b8919061552f565b9150613195565b60008167ffffffffffffffff811115613201577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132335781602001600182028036833780820191505090505b5090505b600085146132e65760018261324c91906155ba565b9150600a8561325b9190615789565b603061326791906154d9565b60f81b8183815181106132a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132df919061552f565b9450613237565b8093505050505b919050565b60006133138473ffffffffffffffffffffffffffffffffffffffff16613540565b1561347c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261333c6129cb565b8786866040518563ffffffff1660e01b815260040161335e9493929190614f21565b602060405180830381600087803b15801561337857600080fd5b505af19250505080156133a957506040513d601f19601f820116820180604052508101906133a691906140d5565b60015b61342c573d80600081146133d9576040519150601f19603f3d011682016040523d82523d6000602084013e6133de565b606091505b50600081511415613424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341b906150aa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613481565b600190505b949350505050565b505050565b6134988383613553565b6134a560008484846132f2565b6134e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134db906150aa565b60405180910390fd5b505050565b6000816040516020016134fc9190614ee0565b604051602081830303815290604052805190602001209050919050565b60008060006135288585613721565b91509150613535816137a4565b819250505092915050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ba906152ca565b60405180910390fd5b6135cc8161295f565b1561360c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136039061512a565b60405180910390fd5b61361860008383613489565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461366891906154d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000806041835114156137635760008060006020860151925060408601519150606086015160001a905061375787828585613af5565b9450945050505061379d565b604083511415613794576000806020850151915060408501519050613789868383613c02565b93509350505061379d565b60006002915091505b9250929050565b600060048111156137de577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613817577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561382257613af2565b6001600481111561385c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613895577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156138d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138cd9061500a565b60405180910390fd5b60026004811115613910577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613949577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561398a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139819061506a565b60405180910390fd5b600360048111156139c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156139fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a35906151aa565b60405180910390fd5b600480811115613a77577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613ab0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae89061528a565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613b30576000600391509150613bf9565b601b8560ff1614158015613b485750601c8560ff1614155b15613b5a576000600491509150613bf9565b600060018787878760405160008152602001604052604051613b7f9493929190614f88565b6020604051602081039080840390855afa158015613ba1573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613bf057600060019250925050613bf9565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613c4287828885613af5565b935093505050935093915050565b828054613c5c906156e0565b90600052602060002090601f016020900481019282613c7e5760008555613cc5565b82601f10613c9757805160ff1916838001178555613cc5565b82800160010185558215613cc5579182015b82811115613cc4578251825591602001919060010190613ca9565b5b509050613cd29190613cd6565b5090565b5b80821115613cef576000816000905550600101613cd7565b5090565b6000613d06613d0184615436565b615405565b905082815260208101848484011115613d1e57600080fd5b613d2984828561569e565b509392505050565b6000613d44613d3f84615466565b615405565b905082815260208101848484011115613d5c57600080fd5b613d6784828561569e565b509392505050565b600081359050613d7e816158d7565b92915050565b60008083601f840112613d9657600080fd5b8235905067ffffffffffffffff811115613daf57600080fd5b602083019150836020820283011115613dc757600080fd5b9250929050565b600081359050613ddd816158ee565b92915050565b600081359050613df281615905565b92915050565b600081519050613e0781615905565b92915050565b60008083601f840112613e1f57600080fd5b8235905067ffffffffffffffff811115613e3857600080fd5b602083019150836001820283011115613e5057600080fd5b9250929050565b600082601f830112613e6857600080fd5b8135613e78848260208601613cf3565b91505092915050565b600082601f830112613e9257600080fd5b8135613ea2848260208601613d31565b91505092915050565b600081359050613eba8161591c565b92915050565b600060208284031215613ed257600080fd5b6000613ee084828501613d6f565b91505092915050565b60008060408385031215613efc57600080fd5b6000613f0a85828601613d6f565b9250506020613f1b85828601613d6f565b9150509250929050565b600080600060608486031215613f3a57600080fd5b6000613f4886828701613d6f565b9350506020613f5986828701613d6f565b9250506040613f6a86828701613eab565b9150509250925092565b60008060008060808587031215613f8a57600080fd5b6000613f9887828801613d6f565b9450506020613fa987828801613d6f565b9350506040613fba87828801613eab565b925050606085013567ffffffffffffffff811115613fd757600080fd5b613fe387828801613e57565b91505092959194509250565b6000806040838503121561400257600080fd5b600061401085828601613d6f565b925050602061402185828601613dce565b9150509250929050565b6000806040838503121561403e57600080fd5b600061404c85828601613d6f565b925050602061405d85828601613eab565b9150509250929050565b6000806020838503121561407a57600080fd5b600083013567ffffffffffffffff81111561409457600080fd5b6140a085828601613d84565b92509250509250929050565b6000602082840312156140be57600080fd5b60006140cc84828501613de3565b91505092915050565b6000602082840312156140e757600080fd5b60006140f584828501613df8565b91505092915050565b60006020828403121561411057600080fd5b600082013567ffffffffffffffff81111561412a57600080fd5b61413684828501613e81565b91505092915050565b60006020828403121561415157600080fd5b600061415f84828501613eab565b91505092915050565b6000806040838503121561417b57600080fd5b600061418985828601613eab565b925050602061419a85828601613d6f565b9150509250929050565b6000806000604084860312156141b957600080fd5b60006141c786828701613eab565b935050602084013567ffffffffffffffff8111156141e457600080fd5b6141f086828701613e0d565b92509250509250925092565b614205816155ee565b82525050565b61421c614217826155ee565b61575b565b82525050565b61422b81615600565b82525050565b61423a8161560c565b82525050565b61425161424c8261560c565b61576d565b82525050565b600061426282615496565b61426c81856154ac565b935061427c8185602086016156ad565b614285816158a5565b840191505092915050565b6142998161568c565b82525050565b60006142aa826154a1565b6142b481856154bd565b93506142c48185602086016156ad565b6142cd816158a5565b840191505092915050565b60006142e3826154a1565b6142ed81856154ce565b93506142fd8185602086016156ad565b80840191505092915050565b60006143166018836154bd565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000614356602b836154bd565b91507f54686520496d6d6f7274616c733a20496e737566696369656e7420455448206160008301527f6d6f756e742073656e742e0000000000000000000000000000000000000000006020830152604082019050919050565b60006143bc602d836154bd565b91507f4261736520555249206368616e676520686173206265656e2064697361626c6560008301527f64207065726d616e656e746c79000000000000000000000000000000000000006020830152604082019050919050565b6000614422601f836154bd565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b6000614462601c836154ce565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b60006144a26018836154bd565b91507f54686520496d6d6f7274616c733a20536f6c64206f75742100000000000000006000830152602082019050919050565b60006144e26032836154bd565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006145486026836154bd565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145ae6031836154bd565b91507f596f7520646f6e742068617665207065726d6973696f6e20746f20667265652060008301527f6d696e74207468617420616d6f756e742e0000000000000000000000000000006020830152604082019050919050565b6000614614603d836154bd565b91507f54686520496d6d6f7274616c733a204d696e7420746f6f206c617267652c206560008301527f7863656564696e67207468652066726565206d696e7420616d6f756e740000006020830152604082019050919050565b600061467a601c836154bd565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006146ba602a836154bd565b91507f54686520496d6d6f7274616c733a205075626c69632073616c6520686173206e60008301527f6f74206163746976652e000000000000000000000000000000000000000000006020830152604082019050919050565b60006147206024836154bd565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147866019836154bd565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006147c66022836154bd565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061482c602c836154bd565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614892601b836154bd565b91507f5349474e41545552455f56414c49444154494f4e5f4641494c454400000000006000830152602082019050919050565b60006148d26032836154bd565b91507f54686520496d6d6f7274616c733a20596f752063616e2774206d696e74206d6f60008301527f7265207468616e206d617820737570706c7900000000000000000000000000006020830152604082019050919050565b60006149386038836154bd565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061499e602a836154bd565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a046029836154bd565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a6a6022836154bd565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ad0601c836154bd565b91507f46726565206d696e74206973206e6f74206f70656e6564207965742e000000006000830152602082019050919050565b6000614b106020836154bd565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614b50602c836154bd565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614bb66005836154ce565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614bf66020836154bd565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614c366029836154bd565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c9c6021836154bd565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d026036836154bd565b91507f54686520496d6d6f7274616c733a204d696e7420746f6f206c617267652c206560008301527f7863656564696e6720746865206d6178537570706c79000000000000000000006020830152604082019050919050565b6000614d686031836154bd565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614dce601f836154bd565b91507f596f75206d757374206d696e74206174206c65617374206f6e65204e46542e006000830152602082019050919050565b6000614e0e6036836154bd565b91507f54686520496d6d6f7274616c733a2053656c656374656420616d6f756e74206560008301527f78636565647320746865206d617820737570706c792e000000000000000000006020830152604082019050919050565b614e7081615675565b82525050565b614e7f8161567f565b82525050565b6000614e91828561420b565b601482019150614ea1828461420b565b6014820191508190509392505050565b6000614ebd82856142d8565b9150614ec982846142d8565b9150614ed482614ba9565b91508190509392505050565b6000614eeb82614455565b9150614ef78284614240565b60208201915081905092915050565b6000602082019050614f1b60008301846141fc565b92915050565b6000608082019050614f3660008301876141fc565b614f4360208301866141fc565b614f506040830185614e67565b8181036060830152614f628184614257565b905095945050505050565b6000602082019050614f826000830184614222565b92915050565b6000608082019050614f9d6000830187614231565b614faa6020830186614e76565b614fb76040830185614231565b614fc46060830184614231565b95945050505050565b6000602082019050614fe26000830184614290565b92915050565b60006020820190508181036000830152615002818461429f565b905092915050565b6000602082019050818103600083015261502381614309565b9050919050565b6000602082019050818103600083015261504381614349565b9050919050565b60006020820190508181036000830152615063816143af565b9050919050565b6000602082019050818103600083015261508381614415565b9050919050565b600060208201905081810360008301526150a381614495565b9050919050565b600060208201905081810360008301526150c3816144d5565b9050919050565b600060208201905081810360008301526150e38161453b565b9050919050565b60006020820190508181036000830152615103816145a1565b9050919050565b6000602082019050818103600083015261512381614607565b9050919050565b600060208201905081810360008301526151438161466d565b9050919050565b60006020820190508181036000830152615163816146ad565b9050919050565b6000602082019050818103600083015261518381614713565b9050919050565b600060208201905081810360008301526151a381614779565b9050919050565b600060208201905081810360008301526151c3816147b9565b9050919050565b600060208201905081810360008301526151e38161481f565b9050919050565b6000602082019050818103600083015261520381614885565b9050919050565b60006020820190508181036000830152615223816148c5565b9050919050565b600060208201905081810360008301526152438161492b565b9050919050565b6000602082019050818103600083015261526381614991565b9050919050565b60006020820190508181036000830152615283816149f7565b9050919050565b600060208201905081810360008301526152a381614a5d565b9050919050565b600060208201905081810360008301526152c381614ac3565b9050919050565b600060208201905081810360008301526152e381614b03565b9050919050565b6000602082019050818103600083015261530381614b43565b9050919050565b6000602082019050818103600083015261532381614be9565b9050919050565b6000602082019050818103600083015261534381614c29565b9050919050565b6000602082019050818103600083015261536381614c8f565b9050919050565b6000602082019050818103600083015261538381614cf5565b9050919050565b600060208201905081810360008301526153a381614d5b565b9050919050565b600060208201905081810360008301526153c381614dc1565b9050919050565b600060208201905081810360008301526153e381614e01565b9050919050565b60006020820190506153ff6000830184614e67565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561542c5761542b615876565b5b8060405250919050565b600067ffffffffffffffff82111561545157615450615876565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561548157615480615876565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006154e482615675565b91506154ef83615675565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615524576155236157ba565b5b828201905092915050565b600061553a82615675565b915061554583615675565b925082615555576155546157e9565b5b828204905092915050565b600061556b82615675565b915061557683615675565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156155af576155ae6157ba565b5b828202905092915050565b60006155c582615675565b91506155d083615675565b9250828210156155e3576155e26157ba565b5b828203905092915050565b60006155f982615655565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050615650826158c3565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061569782615642565b9050919050565b82818337600083830152505050565b60005b838110156156cb5780820151818401526020810190506156b0565b838111156156da576000848401525b50505050565b600060028204905060018216806156f857607f821691505b6020821081141561570c5761570b615847565b5b50919050565b600061571d82615675565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157505761574f6157ba565b5b600182019050919050565b600061576682615777565b9050919050565b6000819050919050565b6000615782826158b6565b9050919050565b600061579482615675565b915061579f83615675565b9250826157af576157ae6157e9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b600481106158d4576158d3615818565b5b50565b6158e0816155ee565b81146158eb57600080fd5b50565b6158f781615600565b811461590257600080fd5b50565b61590e81615616565b811461591957600080fd5b50565b61592581615675565b811461593057600080fd5b5056fea26469706673582212206ce6313e72fadc7e2a7865aae1724b0c544f08fd1e351b52e3e5cac971571a9664736f6c63430008000033697066733a2f2f516d58694437587a43396d393945745a5064487134675631586a36657975546f6f51316f36565954574638683661

Deployed Bytecode

0x6080604052600436106102c95760003560e01c8063817415c411610175578063b88d4fde116100dc578063e985e9c511610095578063f2c4ce1e1161006f578063f2c4ce1e14610a4b578063f2fde38b14610a74578063f51f96dd14610a9d578063fb7ddd0414610ac8576102c9565b8063e985e9c5146109ba578063ed6661c2146109f7578063f19e75d414610a22576102c9565b8063b88d4fde146108be578063c87b56dd146108e7578063d10a1a2b14610924578063d5abeb011461094f578063d8a4169e1461097a578063deaa59df14610991576102c9565b806397b9bd081161012e57806397b9bd08146107cf5780639cbb5b4a1461080c578063a22cb46514610837578063a334412514610860578063a475b5dd1461088b578063b3ab66b0146108a2576102c9565b8063817415c4146106d1578063847e2101146106fa5780638c3c4b34146107115780638da5cb5b1461073c578063916d31ff1461076757806395d89b41146107a4576102c9565b80633ccfd60b116102345780636352211e116101ed578063729ad39e116101c7578063729ad39e14610629578063771282f6146106525780637b0826101461067d5780638074be98146106a8576102c9565b80636352211e1461059857806370a08231146105d5578063715018a614610612576102c9565b80633ccfd60b146104b057806342842e0e146104c75780634c709163146104f0578063518302271461052d57806355367ba91461055857806355f804b31461056f576102c9565b806318160ddd1161028657806318160ddd146103ee5780631919fed7146104195780631c03ceb5146104425780631f2898c314610459578063215a41631461047057806323b872dd14610487576102c9565b806301ffc9a7146102ce57806306fdde031461030b578063081812fc14610336578063095ea7b3146103735780630b2af42e1461039c5780630cd3835d146103c5575b600080fd5b3480156102da57600080fd5b506102f560048036038101906102f091906140ac565b610b05565b6040516103029190614f6d565b60405180910390f35b34801561031757600080fd5b50610320610be7565b60405161032d9190614fe8565b60405180910390f35b34801561034257600080fd5b5061035d6004803603810190610358919061413f565b610c79565b60405161036a9190614f06565b60405180910390f35b34801561037f57600080fd5b5061039a6004803603810190610395919061402b565b610cfe565b005b3480156103a857600080fd5b506103c360048036038101906103be919061402b565b610e16565b005b3480156103d157600080fd5b506103ec60048036038101906103e79190613f25565b610eda565b005b3480156103fa57600080fd5b50610403610f76565b60405161041091906153ea565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b919061413f565b610f80565b005b34801561044e57600080fd5b50610457611006565b005b34801561046557600080fd5b5061046e61109f565b005b34801561047c57600080fd5b5061048561116e565b005b34801561049357600080fd5b506104ae60048036038101906104a99190613f25565b611207565b005b3480156104bc57600080fd5b506104c5611267565b005b3480156104d357600080fd5b506104ee60048036038101906104e99190613f25565b611354565b005b3480156104fc57600080fd5b5061051760048036038101906105129190613ec0565b611374565b60405161052491906153ea565b60405180910390f35b34801561053957600080fd5b5061054261138c565b60405161054f9190614f6d565b60405180910390f35b34801561056457600080fd5b5061056d61139f565b005b34801561057b57600080fd5b50610596600480360381019061059191906140fe565b61146e565b005b3480156105a457600080fd5b506105bf60048036038101906105ba919061413f565b61155a565b6040516105cc9190614f06565b60405180910390f35b3480156105e157600080fd5b506105fc60048036038101906105f79190613ec0565b61160c565b60405161060991906153ea565b60405180910390f35b34801561061e57600080fd5b506106276116c4565b005b34801561063557600080fd5b50610650600480360381019061064b9190614067565b61174c565b005b34801561065e57600080fd5b506106676118c7565b60405161067491906153ea565b60405180910390f35b34801561068957600080fd5b506106926118cd565b60405161069f9190614f6d565b60405180910390f35b3480156106b457600080fd5b506106cf60048036038101906106ca9190614168565b6118e0565b005b3480156106dd57600080fd5b506106f860048036038101906106f391906141a4565b6119dc565b005b34801561070657600080fd5b5061070f611d3b565b005b34801561071d57600080fd5b50610726611e0a565b6040516107339190614fcd565b60405180910390f35b34801561074857600080fd5b50610751611e21565b60405161075e9190614f06565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613ec0565b611e4b565b60405161079b91906153ea565b60405180910390f35b3480156107b057600080fd5b506107b9611e63565b6040516107c69190614fe8565b60405180910390f35b3480156107db57600080fd5b506107f660048036038101906107f19190613ec0565b611ef5565b60405161080391906153ea565b60405180910390f35b34801561081857600080fd5b50610821611f3e565b60405161082e9190614f6d565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613fef565b611f51565b005b34801561086c57600080fd5b50610875611f67565b6040516108829190614fcd565b60405180910390f35b34801561089757600080fd5b506108a0611f7a565b005b6108bc60048036038101906108b7919061413f565b612013565b005b3480156108ca57600080fd5b506108e560048036038101906108e09190613f74565b61222b565b005b3480156108f357600080fd5b5061090e6004803603810190610909919061413f565b61228d565b60405161091b9190614fe8565b60405180910390f35b34801561093057600080fd5b5061093961241e565b60405161094691906153ea565b60405180910390f35b34801561095b57600080fd5b50610964612424565b60405161097191906153ea565b60405180910390f35b34801561098657600080fd5b5061098f61242a565b005b34801561099d57600080fd5b506109b860048036038101906109b39190613ec0565b6124c3565b005b3480156109c657600080fd5b506109e160048036038101906109dc9190613ee9565b612583565b6040516109ee9190614f6d565b60405180910390f35b348015610a0357600080fd5b50610a0c612617565b604051610a1991906153ea565b60405180910390f35b348015610a2e57600080fd5b50610a496004803603810190610a44919061413f565b61261d565b005b348015610a5757600080fd5b50610a726004803603810190610a6d91906140fe565b612718565b005b348015610a8057600080fd5b50610a9b6004803603810190610a969190613ec0565b6127ae565b005b348015610aa957600080fd5b50610ab26128a6565b604051610abf91906153ea565b60405180910390f35b348015610ad457600080fd5b50610aef6004803603810190610aea9190613ec0565b6128ac565b604051610afc91906153ea565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bd057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610be05750610bdf826128f5565b5b9050919050565b606060008054610bf6906156e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610c22906156e0565b8015610c6f5780601f10610c4457610100808354040283529160200191610c6f565b820191906000526020600020905b815481529060010190602001808311610c5257829003601f168201915b5050505050905090565b6000610c848261295f565b610cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cba906152ea565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d098261155a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d719061534a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d996129cb565b73ffffffffffffffffffffffffffffffffffffffff161480610dc85750610dc781610dc26129cb565b612583565b5b610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe9061522a565b60405180910390fd5b610e1183836129d3565b505050565b610e1e6129cb565b73ffffffffffffffffffffffffffffffffffffffff16610e3c611e21565b73ffffffffffffffffffffffffffffffffffffffff1614610e92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e899061530a565b60405180910390fd5b80601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050565b610ee26129cb565b73ffffffffffffffffffffffffffffffffffffffff16610f00611e21565b73ffffffffffffffffffffffffffffffffffffffff1614610f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4d9061530a565b60405180910390fd5b610f7183838360405180602001604052806000815250612a8c565b505050565b6000600954905090565b610f886129cb565b73ffffffffffffffffffffffffffffffffffffffff16610fa6611e21565b73ffffffffffffffffffffffffffffffffffffffff1614610ffc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff39061530a565b60405180910390fd5b80600a8190555050565b61100e6129cb565b73ffffffffffffffffffffffffffffffffffffffff1661102c611e21565b73ffffffffffffffffffffffffffffffffffffffff1614611082576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110799061530a565b60405180910390fd5b6001601060016101000a81548160ff021916908315150217905550565b6110a76129cb565b73ffffffffffffffffffffffffffffffffffffffff166110c5611e21565b73ffffffffffffffffffffffffffffffffffffffff161461111b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111129061530a565b60405180910390fd5b6001601060036101000a81548160ff02191690836003811115611167577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6111766129cb565b73ffffffffffffffffffffffffffffffffffffffff16611194611e21565b73ffffffffffffffffffffffffffffffffffffffff16146111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e19061530a565b60405180910390fd5b6001601060026101000a81548160ff021916908315150217905550565b6112186112126129cb565b82612ae8565b611257576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124e9061538a565b60405180910390fd5b611262838383612bc6565b505050565b61126f6129cb565b73ffffffffffffffffffffffffffffffffffffffff1661128d611e21565b73ffffffffffffffffffffffffffffffffffffffff16146112e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112da9061530a565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611350573d6000803e3d6000fd5b5050565b61136f8383836040518060200160405280600081525061222b565b505050565b60126020528060005260406000206000915090505481565b601060009054906101000a900460ff1681565b6113a76129cb565b73ffffffffffffffffffffffffffffffffffffffff166113c5611e21565b73ffffffffffffffffffffffffffffffffffffffff161461141b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114129061530a565b60405180910390fd5b6002601060036101000a81548160ff02191690836003811115611467577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6114766129cb565b73ffffffffffffffffffffffffffffffffffffffff16611494611e21565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e19061530a565b60405180910390fd5b60001515601060019054906101000a900460ff16151514611540576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115379061504a565b60405180910390fd5b80600e9080519060200190611556929190613c50565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611603576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fa9061526a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561167d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116749061524a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116cc6129cb565b73ffffffffffffffffffffffffffffffffffffffff166116ea611e21565b73ffffffffffffffffffffffffffffffffffffffff1614611740576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117379061530a565b60405180910390fd5b61174a6000612e22565b565b6117546129cb565b73ffffffffffffffffffffffffffffffffffffffff16611772611e21565b73ffffffffffffffffffffffffffffffffffffffff16146117c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bf9061530a565b60405180910390fd5b6000600954905060085483839050826117e191906154d9565b1115611822576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118199061520a565b60405180910390fd5b828290506009600082825461183791906154d9565b9250508190555060005b838390508110156118c1576118ae848483818110611888577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061189d9190613ec0565b82846118a991906154d9565b612ee8565b80806118b990615712565b915050611841565b50505050565b60095481565b601060019054906101000a900460ff1681565b6118e86129cb565b73ffffffffffffffffffffffffffffffffffffffff16611906611e21565b73ffffffffffffffffffffffffffffffffffffffff161461195c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119539061530a565b60405180910390fd5b60006009549050600854838261197291906154d9565b11156119b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119aa9061520a565b60405180910390fd5b82600960008282546119c591906154d9565b925050819055506119d7828285612f06565b505050565b601060029054906101000a900460ff16611a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a22906152aa565b60405180910390fd5b611a9b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683838080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612f3f565b611ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad1906151ea565b60405180910390fd5b600060095490506000600190506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541115611b7257601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490505b8085601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611bbe91906154d9565b1115611bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf6906150ea565b60405180910390fd5b6008548583611c0e91906154d9565b1115611c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c469061536a565b60405180910390fd5b60075485600b54611c6091906154d9565b1115611ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c989061510a565b60405180910390fd5b84601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611cf091906154d9565b9250508190555084600b6000828254611d0991906154d9565b925050819055508460096000828254611d2291906154d9565b92505081905550611d34338387612f06565b5050505050565b611d436129cb565b73ffffffffffffffffffffffffffffffffffffffff16611d61611e21565b73ffffffffffffffffffffffffffffffffffffffff1614611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae9061530a565b60405180910390fd5b6000601060036101000a81548160ff02191690836003811115611e03577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b0217905550565b6000601060039054906101000a900460ff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60116020528060005260406000206000915090505481565b606060018054611e72906156e0565b80601f0160208091040260200160405190810160405280929190818152602001828054611e9e906156e0565b8015611eeb5780601f10611ec057610100808354040283529160200191611eeb565b820191906000526020600020905b815481529060010190602001808311611ece57829003601f168201915b5050505050905090565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601060029054906101000a900460ff1681565b611f63611f5c6129cb565b8383612fd8565b5050565b601060039054906101000a900460ff1681565b611f826129cb565b73ffffffffffffffffffffffffffffffffffffffff16611fa0611e21565b73ffffffffffffffffffffffffffffffffffffffff1614611ff6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fed9061530a565b60405180910390fd5b6001601060006101000a81548160ff021916908315150217905550565b60008111612056576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204d906153aa565b60405180910390fd5b6000600954905060085481106120a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120989061508a565b60405180910390fd5b60085482826120b091906154d9565b11156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e8906153ca565b60405180910390fd5b6001600381111561212b577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b601060039054906101000a900460ff166003811115612173577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b146121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa9061514a565b60405180910390fd5b81600a546121c19190615560565b341015612203576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fa9061502a565b60405180910390fd5b816009600082825461221591906154d9565b92505081905550612227338284612f06565b5050565b61223c6122366129cb565b83612ae8565b61227b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122729061538a565b60405180910390fd5b61228784848484612a8c565b50505050565b606060001515601060009054906101000a900460ff161515141561233d57600f80546122b8906156e0565b80601f01602080910402602001604051908101604052809291908181526020018280546122e4906156e0565b80156123315780601f1061230657610100808354040283529160200191612331565b820191906000526020600020905b81548152906001019060200180831161231457829003601f168201915b50505050509050612419565b6000600e805461234c906156e0565b80601f0160208091040260200160405190810160405280929190818152602001828054612378906156e0565b80156123c55780601f1061239a576101008083540402835291602001916123c5565b820191906000526020600020905b8154815290600101906020018083116123a857829003601f168201915b5050505050905060008151116123ea5760405180602001604052806000815250612415565b806123f484613145565b604051602001612405929190614eb1565b6040516020818303038152906040525b9150505b919050565b600b5481565b60085481565b6124326129cb565b73ffffffffffffffffffffffffffffffffffffffff16612450611e21565b73ffffffffffffffffffffffffffffffffffffffff16146124a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249d9061530a565b60405180910390fd5b6000601060026101000a81548160ff021916908315150217905550565b6124cb6129cb565b73ffffffffffffffffffffffffffffffffffffffff166124e9611e21565b73ffffffffffffffffffffffffffffffffffffffff161461253f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125369061530a565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60075481565b6126256129cb565b73ffffffffffffffffffffffffffffffffffffffff16612643611e21565b73ffffffffffffffffffffffffffffffffffffffff1614612699576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126909061530a565b60405180910390fd5b6000600954905060085482826126af91906154d9565b11156126f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e79061520a565b60405180910390fd5b816009600082825461270291906154d9565b92505081905550612714338284612f06565b5050565b6127206129cb565b73ffffffffffffffffffffffffffffffffffffffff1661273e611e21565b73ffffffffffffffffffffffffffffffffffffffff1614612794576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278b9061530a565b60405180910390fd5b80600f90805190602001906127aa929190613c50565b5050565b6127b66129cb565b73ffffffffffffffffffffffffffffffffffffffff166127d4611e21565b73ffffffffffffffffffffffffffffffffffffffff161461282a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128219061530a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561289a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612891906150ca565b60405180910390fd5b6128a381612e22565b50565b600a5481565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612a468361155a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b612a97848484612bc6565b612aa3848484846132f2565b612ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad9906150aa565b60405180910390fd5b50505050565b6000612af38261295f565b612b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b29906151ca565b60405180910390fd5b6000612b3d8361155a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612bac57508373ffffffffffffffffffffffffffffffffffffffff16612b9484610c79565b73ffffffffffffffffffffffffffffffffffffffff16145b80612bbd5750612bbc8185612583565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612be68261155a565b73ffffffffffffffffffffffffffffffffffffffff1614612c3c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c339061532a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca39061516a565b60405180910390fd5b612cb7838383613489565b612cc26000826129d3565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d1291906155ba565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d6991906154d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612f0282826040518060200160405280600081525061348e565b5050565b60005b81811015612f3957612f26848285612f2191906154d9565b612ee8565b8080612f3190615712565b915050612f09565b50505050565b6000803033604051602001612f55929190614e85565b6040516020818303038152906040528051906020012090506000612f8a84612f7c846134e9565b61351990919063ffffffff16565b90508073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612fcb57600192505050612fd2565b6000925050505b92915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161303e9061518a565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516131389190614f6d565b60405180910390a3505050565b6060600082141561318d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506132ed565b600082905060005b600082146131bf5780806131a890615712565b915050600a826131b8919061552f565b9150613195565b60008167ffffffffffffffff811115613201577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156132335781602001600182028036833780820191505090505b5090505b600085146132e65760018261324c91906155ba565b9150600a8561325b9190615789565b603061326791906154d9565b60f81b8183815181106132a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856132df919061552f565b9450613237565b8093505050505b919050565b60006133138473ffffffffffffffffffffffffffffffffffffffff16613540565b1561347c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261333c6129cb565b8786866040518563ffffffff1660e01b815260040161335e9493929190614f21565b602060405180830381600087803b15801561337857600080fd5b505af19250505080156133a957506040513d601f19601f820116820180604052508101906133a691906140d5565b60015b61342c573d80600081146133d9576040519150601f19603f3d011682016040523d82523d6000602084013e6133de565b606091505b50600081511415613424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161341b906150aa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613481565b600190505b949350505050565b505050565b6134988383613553565b6134a560008484846132f2565b6134e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134db906150aa565b60405180910390fd5b505050565b6000816040516020016134fc9190614ee0565b604051602081830303815290604052805190602001209050919050565b60008060006135288585613721565b91509150613535816137a4565b819250505092915050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156135c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ba906152ca565b60405180910390fd5b6135cc8161295f565b1561360c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136039061512a565b60405180910390fd5b61361860008383613489565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461366891906154d9565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000806041835114156137635760008060006020860151925060408601519150606086015160001a905061375787828585613af5565b9450945050505061379d565b604083511415613794576000806020850151915060408501519050613789868383613c02565b93509350505061379d565b60006002915091505b9250929050565b600060048111156137de577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613817577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561382257613af2565b6001600481111561385c577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613895577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b14156138d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138cd9061500a565b60405180910390fd5b60026004811115613910577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613949577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b141561398a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139819061506a565b60405180910390fd5b600360048111156139c4577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b8160048111156139fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613a3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a35906151aa565b60405180910390fd5b600480811115613a77577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b816004811115613ab0577f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b1415613af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ae89061528a565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613b30576000600391509150613bf9565b601b8560ff1614158015613b485750601c8560ff1614155b15613b5a576000600491509150613bf9565b600060018787878760405160008152602001604052604051613b7f9493929190614f88565b6020604051602081039080840390855afa158015613ba1573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613bf057600060019250925050613bf9565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613c4287828885613af5565b935093505050935093915050565b828054613c5c906156e0565b90600052602060002090601f016020900481019282613c7e5760008555613cc5565b82601f10613c9757805160ff1916838001178555613cc5565b82800160010185558215613cc5579182015b82811115613cc4578251825591602001919060010190613ca9565b5b509050613cd29190613cd6565b5090565b5b80821115613cef576000816000905550600101613cd7565b5090565b6000613d06613d0184615436565b615405565b905082815260208101848484011115613d1e57600080fd5b613d2984828561569e565b509392505050565b6000613d44613d3f84615466565b615405565b905082815260208101848484011115613d5c57600080fd5b613d6784828561569e565b509392505050565b600081359050613d7e816158d7565b92915050565b60008083601f840112613d9657600080fd5b8235905067ffffffffffffffff811115613daf57600080fd5b602083019150836020820283011115613dc757600080fd5b9250929050565b600081359050613ddd816158ee565b92915050565b600081359050613df281615905565b92915050565b600081519050613e0781615905565b92915050565b60008083601f840112613e1f57600080fd5b8235905067ffffffffffffffff811115613e3857600080fd5b602083019150836001820283011115613e5057600080fd5b9250929050565b600082601f830112613e6857600080fd5b8135613e78848260208601613cf3565b91505092915050565b600082601f830112613e9257600080fd5b8135613ea2848260208601613d31565b91505092915050565b600081359050613eba8161591c565b92915050565b600060208284031215613ed257600080fd5b6000613ee084828501613d6f565b91505092915050565b60008060408385031215613efc57600080fd5b6000613f0a85828601613d6f565b9250506020613f1b85828601613d6f565b9150509250929050565b600080600060608486031215613f3a57600080fd5b6000613f4886828701613d6f565b9350506020613f5986828701613d6f565b9250506040613f6a86828701613eab565b9150509250925092565b60008060008060808587031215613f8a57600080fd5b6000613f9887828801613d6f565b9450506020613fa987828801613d6f565b9350506040613fba87828801613eab565b925050606085013567ffffffffffffffff811115613fd757600080fd5b613fe387828801613e57565b91505092959194509250565b6000806040838503121561400257600080fd5b600061401085828601613d6f565b925050602061402185828601613dce565b9150509250929050565b6000806040838503121561403e57600080fd5b600061404c85828601613d6f565b925050602061405d85828601613eab565b9150509250929050565b6000806020838503121561407a57600080fd5b600083013567ffffffffffffffff81111561409457600080fd5b6140a085828601613d84565b92509250509250929050565b6000602082840312156140be57600080fd5b60006140cc84828501613de3565b91505092915050565b6000602082840312156140e757600080fd5b60006140f584828501613df8565b91505092915050565b60006020828403121561411057600080fd5b600082013567ffffffffffffffff81111561412a57600080fd5b61413684828501613e81565b91505092915050565b60006020828403121561415157600080fd5b600061415f84828501613eab565b91505092915050565b6000806040838503121561417b57600080fd5b600061418985828601613eab565b925050602061419a85828601613d6f565b9150509250929050565b6000806000604084860312156141b957600080fd5b60006141c786828701613eab565b935050602084013567ffffffffffffffff8111156141e457600080fd5b6141f086828701613e0d565b92509250509250925092565b614205816155ee565b82525050565b61421c614217826155ee565b61575b565b82525050565b61422b81615600565b82525050565b61423a8161560c565b82525050565b61425161424c8261560c565b61576d565b82525050565b600061426282615496565b61426c81856154ac565b935061427c8185602086016156ad565b614285816158a5565b840191505092915050565b6142998161568c565b82525050565b60006142aa826154a1565b6142b481856154bd565b93506142c48185602086016156ad565b6142cd816158a5565b840191505092915050565b60006142e3826154a1565b6142ed81856154ce565b93506142fd8185602086016156ad565b80840191505092915050565b60006143166018836154bd565b91507f45434453413a20696e76616c6964207369676e617475726500000000000000006000830152602082019050919050565b6000614356602b836154bd565b91507f54686520496d6d6f7274616c733a20496e737566696369656e7420455448206160008301527f6d6f756e742073656e742e0000000000000000000000000000000000000000006020830152604082019050919050565b60006143bc602d836154bd565b91507f4261736520555249206368616e676520686173206265656e2064697361626c6560008301527f64207065726d616e656e746c79000000000000000000000000000000000000006020830152604082019050919050565b6000614422601f836154bd565b91507f45434453413a20696e76616c6964207369676e6174757265206c656e677468006000830152602082019050919050565b6000614462601c836154ce565b91507f19457468657265756d205369676e6564204d6573736167653a0a3332000000006000830152601c82019050919050565b60006144a26018836154bd565b91507f54686520496d6d6f7274616c733a20536f6c64206f75742100000000000000006000830152602082019050919050565b60006144e26032836154bd565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006145486026836154bd565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145ae6031836154bd565b91507f596f7520646f6e742068617665207065726d6973696f6e20746f20667265652060008301527f6d696e74207468617420616d6f756e742e0000000000000000000000000000006020830152604082019050919050565b6000614614603d836154bd565b91507f54686520496d6d6f7274616c733a204d696e7420746f6f206c617267652c206560008301527f7863656564696e67207468652066726565206d696e7420616d6f756e740000006020830152604082019050919050565b600061467a601c836154bd565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006146ba602a836154bd565b91507f54686520496d6d6f7274616c733a205075626c69632073616c6520686173206e60008301527f6f74206163746976652e000000000000000000000000000000000000000000006020830152604082019050919050565b60006147206024836154bd565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147866019836154bd565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006147c66022836154bd565b91507f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061482c602c836154bd565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614892601b836154bd565b91507f5349474e41545552455f56414c49444154494f4e5f4641494c454400000000006000830152602082019050919050565b60006148d26032836154bd565b91507f54686520496d6d6f7274616c733a20596f752063616e2774206d696e74206d6f60008301527f7265207468616e206d617820737570706c7900000000000000000000000000006020830152604082019050919050565b60006149386038836154bd565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061499e602a836154bd565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a046029836154bd565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a6a6022836154bd565b91507f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008301527f75650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ad0601c836154bd565b91507f46726565206d696e74206973206e6f74206f70656e6564207965742e000000006000830152602082019050919050565b6000614b106020836154bd565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614b50602c836154bd565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614bb66005836154ce565b91507f2e6a736f6e0000000000000000000000000000000000000000000000000000006000830152600582019050919050565b6000614bf66020836154bd565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614c366029836154bd565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c9c6021836154bd565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d026036836154bd565b91507f54686520496d6d6f7274616c733a204d696e7420746f6f206c617267652c206560008301527f7863656564696e6720746865206d6178537570706c79000000000000000000006020830152604082019050919050565b6000614d686031836154bd565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614dce601f836154bd565b91507f596f75206d757374206d696e74206174206c65617374206f6e65204e46542e006000830152602082019050919050565b6000614e0e6036836154bd565b91507f54686520496d6d6f7274616c733a2053656c656374656420616d6f756e74206560008301527f78636565647320746865206d617820737570706c792e000000000000000000006020830152604082019050919050565b614e7081615675565b82525050565b614e7f8161567f565b82525050565b6000614e91828561420b565b601482019150614ea1828461420b565b6014820191508190509392505050565b6000614ebd82856142d8565b9150614ec982846142d8565b9150614ed482614ba9565b91508190509392505050565b6000614eeb82614455565b9150614ef78284614240565b60208201915081905092915050565b6000602082019050614f1b60008301846141fc565b92915050565b6000608082019050614f3660008301876141fc565b614f4360208301866141fc565b614f506040830185614e67565b8181036060830152614f628184614257565b905095945050505050565b6000602082019050614f826000830184614222565b92915050565b6000608082019050614f9d6000830187614231565b614faa6020830186614e76565b614fb76040830185614231565b614fc46060830184614231565b95945050505050565b6000602082019050614fe26000830184614290565b92915050565b60006020820190508181036000830152615002818461429f565b905092915050565b6000602082019050818103600083015261502381614309565b9050919050565b6000602082019050818103600083015261504381614349565b9050919050565b60006020820190508181036000830152615063816143af565b9050919050565b6000602082019050818103600083015261508381614415565b9050919050565b600060208201905081810360008301526150a381614495565b9050919050565b600060208201905081810360008301526150c3816144d5565b9050919050565b600060208201905081810360008301526150e38161453b565b9050919050565b60006020820190508181036000830152615103816145a1565b9050919050565b6000602082019050818103600083015261512381614607565b9050919050565b600060208201905081810360008301526151438161466d565b9050919050565b60006020820190508181036000830152615163816146ad565b9050919050565b6000602082019050818103600083015261518381614713565b9050919050565b600060208201905081810360008301526151a381614779565b9050919050565b600060208201905081810360008301526151c3816147b9565b9050919050565b600060208201905081810360008301526151e38161481f565b9050919050565b6000602082019050818103600083015261520381614885565b9050919050565b60006020820190508181036000830152615223816148c5565b9050919050565b600060208201905081810360008301526152438161492b565b9050919050565b6000602082019050818103600083015261526381614991565b9050919050565b60006020820190508181036000830152615283816149f7565b9050919050565b600060208201905081810360008301526152a381614a5d565b9050919050565b600060208201905081810360008301526152c381614ac3565b9050919050565b600060208201905081810360008301526152e381614b03565b9050919050565b6000602082019050818103600083015261530381614b43565b9050919050565b6000602082019050818103600083015261532381614be9565b9050919050565b6000602082019050818103600083015261534381614c29565b9050919050565b6000602082019050818103600083015261536381614c8f565b9050919050565b6000602082019050818103600083015261538381614cf5565b9050919050565b600060208201905081810360008301526153a381614d5b565b9050919050565b600060208201905081810360008301526153c381614dc1565b9050919050565b600060208201905081810360008301526153e381614e01565b9050919050565b60006020820190506153ff6000830184614e67565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561542c5761542b615876565b5b8060405250919050565b600067ffffffffffffffff82111561545157615450615876565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff82111561548157615480615876565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006154e482615675565b91506154ef83615675565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615524576155236157ba565b5b828201905092915050565b600061553a82615675565b915061554583615675565b925082615555576155546157e9565b5b828204905092915050565b600061556b82615675565b915061557683615675565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156155af576155ae6157ba565b5b828202905092915050565b60006155c582615675565b91506155d083615675565b9250828210156155e3576155e26157ba565b5b828203905092915050565b60006155f982615655565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050615650826158c3565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061569782615642565b9050919050565b82818337600083830152505050565b60005b838110156156cb5780820151818401526020810190506156b0565b838111156156da576000848401525b50505050565b600060028204905060018216806156f857607f821691505b6020821081141561570c5761570b615847565b5b50919050565b600061571d82615675565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156157505761574f6157ba565b5b600182019050919050565b600061576682615777565b9050919050565b6000819050919050565b6000615782826158b6565b9050919050565b600061579482615675565b915061579f83615675565b9250826157af576157ae6157e9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b600481106158d4576158d3615818565b5b50565b6158e0816155ee565b81146158eb57600080fd5b50565b6158f781615600565b811461590257600080fd5b50565b61590e81615616565b811461591957600080fd5b50565b61592581615675565b811461593057600080fd5b5056fea26469706673582212206ce6313e72fadc7e2a7865aae1724b0c544f08fd1e351b52e3e5cac971571a9664736f6c63430008000033

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.