ETH Price: $3,280.28 (+0.02%)
Gas: 4 Gwei

Token

Project Radiance by Omar Wael (RAD)
 

Overview

Max Total Supply

661 RAD

Holders

462

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
guggs.eth
Balance
1 RAD
0x7b0F8FAF7f0e035Bcb26Db62376F5a0df571D543
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:
ProjectRadiance

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : ProjectRadiance.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/* 
    :::::::::      :::     :::::::::  
    :+:    :+:   :+: :+:   :+:    :+: 
    +:+    +:+  +:+   +:+  +:+    +:+ 
    +#++:++#:  +#++:++#++: +#+    +:+ 
    +#+    +#+ +#+     +#+ +#+    +#+ 
    #+#    #+# #+#     #+# #+#    #+# 
    ###    ### ###     ### #########  

    Malus Creations
    ---------------------------------------------
    Project: Project Radiance
    Artist: Omar Wael
    ---------------------------------------------
    Developed by ATOMICON.PRO ([email protected])
*/

import "./erc721A/ERC721A_v2.2.0.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract ProjectRadiance is ERC721A, Ownable, ReentrancyGuard {
    using ECDSA for bytes32;
    using Math for uint;

    // Ensures that other contracts can't call a method 
    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    uint16 public collectionSize = 999;
    uint256 public saleTokenPrice = 0.09 ether;

    uint32 public holdersClaimStartTime = 1645632000;
    uint32 public saleStartTime = 1645718400;

    uint256 private _yetToPayToDeveloper = 2.0 ether;
    address private _creatorPayoutAddress = 0xAb8da4a15424E0A51B31317f3A69f76f1c4033c1;
    address private _developerPayoutAddress = 0x4E98bd082406e99A0405EdAAD0744CB2A1c4EeBA;

    bytes8 private _hashSalt = 0x6f7a555a58504f52;
    address private _signerAddress = 0x47C3CdBEA980199C677f8bbfa1AB3098C060CEC3;

    // Used nonces for minting signatures    
    mapping(uint64 => bool) private _usedNonces;

    constructor() ERC721A("Project Radiance by Omar Wael", "RAD") {}

    // Claim tokens for free based on a backend whitelist
    function claimMint(bytes32 hash, bytes memory signature, uint256 quantity, uint64 maxTokens, uint64 nonce)
        external
        callerIsUser
    {
        require(isHoldersClaimOn(), "Holders claim stage have not begun yet");
        require(!isSaleOn(), "Holders claim stage is already over");
        
        require(totalSupply() + quantity <= collectionSize, "Reached max supply");
        require(numberMinted(msg.sender) + quantity <= maxTokens, "Exceeding claiming limit for this account");

        require(_operationHash(msg.sender, quantity, maxTokens, nonce) == hash, "Hash comparison failed");
        require(_isTrustedSigner(hash, signature), "Direct minting is disallowed");
        require(!_usedNonces[nonce], "Hash is already used");
        
        _safeMint(msg.sender, quantity);
        _usedNonces[nonce] = true;
    }

    // Mint tokens during the sales
    function saleMint(bytes32 hash, bytes memory signature, uint256 quantity, uint64 nonce)
        external
        payable
        callerIsUser
    {
        require(isSaleOn(), "Sales have not begun yet");

        require(totalSupply() + quantity <= collectionSize, "Reached max supply");
        require(msg.value == (saleTokenPrice * quantity), "Invalid amount of ETH sent");

        require(_operationHash(msg.sender, quantity, 18446744073709551615, nonce) == hash, "Hash comparison failed");
        require(_isTrustedSigner(hash, signature), "Direct minting is disallowed");
        require(!_usedNonces[nonce], "Hash is already used");

        _safeMint(msg.sender, quantity);
        _usedNonces[nonce] = true;
    }

    // Airdrop tokens to a list of addresses with counts specified in the second argument
    function airdropMint(address[] memory addresses, uint256[] memory tokensCount)
        external 
        onlyOwner
    {
        require(addresses.length == tokensCount.length, "Addresses and tokens count arrays lengths don't match");

        uint256 totalCount = 0;
        for(uint64 i = 0; i < addresses.length; i++) {
            totalCount = totalCount + tokensCount[i];
        }

        require(totalSupply() + totalCount <= collectionSize, "Reached max supply");

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

    // Generate hash of current mint operation
    function _operationHash(address buyer, uint256 quantity, uint64 maxTokens, uint64 nonce) internal view returns (bytes32) {        
        uint8 saleStage;
        if(isSaleOn())
            saleStage = 2;
        else if(isHoldersClaimOn())        
            saleStage = 1;
        else 
            require(false, "Sales have not begun yet");

        return keccak256(abi.encodePacked(
            _hashSalt,
            buyer,
            uint64(block.chainid),
            uint64(saleStage),
            uint64(maxTokens),
            uint64(quantity),
            uint64(nonce)
        ));
    } 

    // Test whether a message was signed by a trusted address
    function _isTrustedSigner(bytes32 hash, bytes memory signature) internal view returns(bool) {
        return _signerAddress == ECDSA.recover(hash, signature);
    }

    // Withdraw money for developers and for creators (2% and 98%)
    function withdrawMoney() external onlyOwner nonReentrant {
        require(address(this).balance > 0, "No funds on the contract");

        if(_yetToPayToDeveloper > 0) {
            uint256 developerPayoutSum = Math.min(_yetToPayToDeveloper, address(this).balance);
            payable(_developerPayoutAddress).transfer(developerPayoutSum);
            _yetToPayToDeveloper = _yetToPayToDeveloper - developerPayoutSum;
        }

        if(address(this).balance > 0) {
            payable(_creatorPayoutAddress).transfer(address(this).balance);
        }
    }

    // Number of tokens minted by an address
    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    // Change public sales start time in unix time format
    function setSaleStartTime(uint32 unixTime) public onlyOwner {
        saleStartTime = unixTime;
    }

    // Check whether public sales are already started
    function isSaleOn() public view returns (bool) {
        return block.timestamp >= saleStartTime;
    }

    // Change holders claiming session start time in unix time format
    function setHoldersClaimStartTime(uint32 unixTime) public onlyOwner {
        holdersClaimStartTime = unixTime;
    }

    // Check whether whitelist sales are already started
    function isHoldersClaimOn() public view returns (bool) {
        return block.timestamp >= holdersClaimStartTime;
    }

    // Change collection size limits
    function setCollectionSize(uint16 newSize) external onlyOwner {
        require(newSize >= totalSupply(), "Can't set collection size lower then total supply");
        collectionSize = newSize;
    }

    // Change sales token price
    function setSaleTokenPrice(uint256 newPriceInWei) external onlyOwner {
        saleTokenPrice = newPriceInWei;
    }

    // Get the ownership for the specified tokenId
    function getOwnershipData(uint256 tokenId)
        external
        view
        returns (TokenOwnership memory)
    {
        return ownershipOf(tokenId);
    }

    // URI with contract metadata for opensea
    function contractURI() public pure returns (string memory) {
        return "ipfs://QmP4ZPLGxBaBBh2ELZ2g3csNqqFcp5zFC7ufx1tjU1Fctj";
    }

    // Token metadata folder/root URI
    string private _baseTokenURI;

    // Get base token URI
    function _baseURI() internal view virtual override returns (string memory) {
        return _baseTokenURI;
    }

    // Set base token URI
    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }
}

File 2 of 15 : 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 15 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

File 4 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 5 of 15 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 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 6 of 15 : ERC721A_v2.2.0.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

File 7 of 15 : 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 15 : 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 9 of 15 : 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 10 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 15 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 12 of 15 : 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 13 of 15 : 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 14 of 15 : 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 15 of 15 : 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"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"tokensCount","type":"uint256[]"}],"name":"airdropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint64","name":"maxTokens","type":"uint64"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"name":"claimMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"holdersClaimStartTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"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":"isHoldersClaimOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"hash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"uint64","name":"nonce","type":"uint64"}],"name":"saleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"saleStartTime","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleTokenPrice","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"newSize","type":"uint16"}],"name":"setCollectionSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"unixTime","type":"uint32"}],"name":"setHoldersClaimStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"unixTime","type":"uint32"}],"name":"setSaleStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPriceInWei","type":"uint256"}],"name":"setSaleTokenPrice","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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526103e7600a60006101000a81548161ffff021916908361ffff16021790555067013fbe85edc90000600b556362165a00600c60006101000a81548163ffffffff021916908363ffffffff160217905550636217ab80600c60046101000a81548163ffffffff021916908363ffffffff160217905550671bc16d674ec80000600d5573ab8da4a15424e0a51b31317f3a69f76f1c4033c1600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734e98bd082406e99a0405edaad0744cb2a1c4eeba600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550676f7a555a58504f5260c01b600f60146101000a81548167ffffffffffffffff021916908360c01c02179055507347c3cdbea980199c677f8bbfa1ab3098c060cec3601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001be57600080fd5b506040518060400160405280601d81526020017f50726f6a6563742052616469616e6365206279204f6d6172205761656c0000008152506040518060400160405280600381526020017f52414400000000000000000000000000000000000000000000000000000000008152508160029080519060200190620002439291906200035b565b5080600390805190602001906200025c9291906200035b565b5050506200027f620002736200028d60201b60201c565b6200029560201b60201c565b600160098190555062000470565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000369906200043a565b90600052602060002090601f0160209004810192826200038d5760008555620003d9565b82601f10620003a857805160ff1916838001178555620003d9565b82800160010185558215620003d9579182015b82811115620003d8578251825591602001919060010190620003bb565b5b509050620003e89190620003ec565b5090565b5b8082111562000407576000816000905550600101620003ed565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045357607f821691505b602082108114156200046a57620004696200040b565b5b50919050565b6152c380620004806000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461071e578063dc33e6811461075b578063e8a3d48514610798578063e985e9c5146107c3578063f2fde38b1461080057610204565b8063a22cb46514610699578063ac446002146106c2578063b66753c3146106d9578063b88d4fde146106f557610204565b8063779e170d116100e7578063779e170d146105b25780638da5cb5b146105dd5780639231ab2a1461060857806395d89b41146106455780639b8bf8161461067057610204565b80636352211e146104f857806370a0823114610535578063715018a614610572578063730707cb1461058957610204565b8063279a669e1161019b57806342842e0e1161016a57806342842e0e1461042557806345c0f5331461044e57806351d28a7e1461047957806355f804b3146104a457806359a01276146104cd57610204565b8063279a669e1461037f5780633a933b0c146103a857806341549502146103d157806341dbba24146103fc57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd146103005780631cbaee2d1461032b57806323b872dd1461035657610204565b8063015952661461020957806301ffc9a71461023257806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613780565b610829565b005b34801561023e57600080fd5b5061025960048036038101906102549190613805565b6108c9565b604051610266919061384d565b60405180910390f35b34801561027b57600080fd5b506102846109ab565b6040516102919190613901565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613959565b610a3d565b6040516102ce91906139c7565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613a0e565b610ab9565b005b34801561030c57600080fd5b50610315610bc4565b6040516103229190613a5d565b60405180910390f35b34801561033757600080fd5b50610340610bd2565b60405161034d9190613a87565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613aa2565b610be8565b005b34801561038b57600080fd5b506103a660048036038101906103a19190613d00565b610bf8565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190613ea3565b610dff565b005b3480156103dd57600080fd5b506103e6611121565b6040516103f39190613a87565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e9190613959565b611137565b005b34801561043157600080fd5b5061044c60048036038101906104479190613aa2565b6111bd565b005b34801561045a57600080fd5b506104636111dd565b6040516104709190613f57565b60405180910390f35b34801561048557600080fd5b5061048e6111f1565b60405161049b9190613a5d565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613fcd565b6111f7565b005b3480156104d957600080fd5b506104e2611289565b6040516104ef919061384d565b60405180910390f35b34801561050457600080fd5b5061051f600480360381019061051a9190613959565b6112ac565b60405161052c91906139c7565b60405180910390f35b34801561054157600080fd5b5061055c6004803603810190610557919061401a565b6112c2565b6040516105699190613a5d565b60405180910390f35b34801561057e57600080fd5b50610587611392565b005b34801561059557600080fd5b506105b060048036038101906105ab9190613780565b61141a565b005b3480156105be57600080fd5b506105c76114ba565b6040516105d4919061384d565b60405180910390f35b3480156105e957600080fd5b506105f26114dd565b6040516105ff91906139c7565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613959565b611507565b60405161063c91906140b6565b60405180910390f35b34801561065157600080fd5b5061065a61151f565b6040516106679190613901565b60405180910390f35b34801561067c57600080fd5b50610697600480360381019061069291906140fd565b6115b1565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190614156565b61169b565b005b3480156106ce57600080fd5b506106d7611813565b005b6106f360048036038101906106ee9190614196565b611a37565b005b34801561070157600080fd5b5061071c60048036038101906107179190614219565b611d07565b005b34801561072a57600080fd5b5061074560048036038101906107409190613959565b611d5a565b6040516107529190613901565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d919061401a565b611df9565b60405161078f9190613a5d565b60405180910390f35b3480156107a457600080fd5b506107ad611e0b565b6040516107ba9190613901565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e5919061429c565b611e2b565b6040516107f7919061384d565b60405180910390f35b34801561080c57600080fd5b506108276004803603810190610822919061401a565b611ebf565b005b610831611fb7565b73ffffffffffffffffffffffffffffffffffffffff1661084f6114dd565b73ffffffffffffffffffffffffffffffffffffffff16146108a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089c90614328565b60405180910390fd5b80600c60046101000a81548163ffffffff021916908363ffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a457506109a382611fbf565b5b9050919050565b6060600280546109ba90614377565b80601f01602080910402602001604051908101604052809291908181526020018280546109e690614377565b8015610a335780601f10610a0857610100808354040283529160200191610a33565b820191906000526020600020905b815481529060010190602001808311610a1657829003601f168201915b5050505050905090565b6000610a4882612029565b610a7e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac4826112ac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4b611fb7565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b7d5750610b7b81610b76611fb7565b611e2b565b155b15610bb4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bbf838383612063565b505050565b600060015460005403905090565b600c60049054906101000a900463ffffffff1681565b610bf3838383612115565b505050565b610c00611fb7565b73ffffffffffffffffffffffffffffffffffffffff16610c1e6114dd565b73ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90614328565b60405180910390fd5b8051825114610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf9061441b565b60405180910390fd5b6000805b83518167ffffffffffffffff161015610d1457828167ffffffffffffffff1681518110610cec57610ceb61443b565b5b602002602001015182610cff9190614499565b91508080610d0c906144ef565b915050610cbc565b50600a60009054906101000a900461ffff1661ffff1681610d33610bc4565b610d3d9190614499565b1115610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d759061456c565b60405180910390fd5b60005b83518167ffffffffffffffff161015610df957610de6848267ffffffffffffffff1681518110610db457610db361443b565b5b6020026020010151848367ffffffffffffffff1681518110610dd957610dd861443b565b5b6020026020010151612606565b8080610df1906144ef565b915050610d81565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e64906145d8565b60405180910390fd5b610e75611289565b610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab9061466a565b60405180910390fd5b610ebc6114ba565b15610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef3906146fc565b60405180910390fd5b600a60009054906101000a900461ffff1661ffff1683610f1a610bc4565b610f249190614499565b1115610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c9061456c565b60405180910390fd5b8167ffffffffffffffff1683610f7a33611df9565b610f849190614499565b1115610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061478e565b60405180910390fd5b84610fd233858585612624565b14611012576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611009906147fa565b60405180910390fd5b61101c85856126e6565b61105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290614866565b60405180910390fd5b601160008267ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c7906148d2565b60405180910390fd5b6110da3384612606565b6001601160008367ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b600c60009054906101000a900463ffffffff1681565b61113f611fb7565b73ffffffffffffffffffffffffffffffffffffffff1661115d6114dd565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90614328565b60405180910390fd5b80600b8190555050565b6111d883838360405180602001604052806000815250611d07565b505050565b600a60009054906101000a900461ffff1681565b600b5481565b6111ff611fb7565b73ffffffffffffffffffffffffffffffffffffffff1661121d6114dd565b73ffffffffffffffffffffffffffffffffffffffff1614611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90614328565b60405180910390fd5b81816012919061128492919061364a565b505050565b6000600c60009054906101000a900463ffffffff1663ffffffff16421015905090565b60006112b78261274a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61139a611fb7565b73ffffffffffffffffffffffffffffffffffffffff166113b86114dd565b73ffffffffffffffffffffffffffffffffffffffff161461140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590614328565b60405180910390fd5b61141860006129c6565b565b611422611fb7565b73ffffffffffffffffffffffffffffffffffffffff166114406114dd565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90614328565b60405180910390fd5b80600c60006101000a81548163ffffffff021916908363ffffffff16021790555050565b6000600c60049054906101000a900463ffffffff1663ffffffff16421015905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61150f6136d0565b6115188261274a565b9050919050565b60606003805461152e90614377565b80601f016020809104026020016040519081016040528092919081815260200182805461155a90614377565b80156115a75780601f1061157c576101008083540402835291602001916115a7565b820191906000526020600020905b81548152906001019060200180831161158a57829003601f168201915b5050505050905090565b6115b9611fb7565b73ffffffffffffffffffffffffffffffffffffffff166115d76114dd565b73ffffffffffffffffffffffffffffffffffffffff161461162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490614328565b60405180910390fd5b611635610bc4565b8161ffff16101561167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290614964565b60405180910390fd5b80600a60006101000a81548161ffff021916908361ffff16021790555050565b6116a3611fb7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611708576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611715611fb7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117c2611fb7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611807919061384d565b60405180910390a35050565b61181b611fb7565b73ffffffffffffffffffffffffffffffffffffffff166118396114dd565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690614328565b60405180910390fd5b600260095414156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc906149d0565b60405180910390fd5b600260098190555060004711611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790614a3c565b60405180910390fd5b6000600d5411156119ba576000611939600d5447612a8c565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156119a3573d6000803e3d6000fd5b5080600d546119b29190614a5c565b600d81905550505b6000471115611a2d57600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611a2b573d6000803e3d6000fd5b505b6001600981905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c906145d8565b60405180910390fd5b611aad6114ba565b611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390614adc565b60405180910390fd5b600a60009054906101000a900461ffff1661ffff1682611b0a610bc4565b611b149190614499565b1115611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c9061456c565b60405180910390fd5b81600b54611b639190614afc565b3414611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b90614ba2565b60405180910390fd5b83611bb9338467ffffffffffffffff85612624565b14611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf0906147fa565b60405180910390fd5b611c0384846126e6565b611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990614866565b60405180910390fd5b601160008267ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae906148d2565b60405180910390fd5b611cc13383612606565b6001601160008367ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b611d12848484612115565b611d1e84848484612aa5565b611d54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611d6582612029565b611d9b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611da5612c24565b9050600081511415611dc65760405180602001604052806000815250611df1565b80611dd084612cb6565b604051602001611de1929190614bfe565b6040516020818303038152906040525b915050919050565b6000611e0482612e17565b9050919050565b606060405180606001604052806035815260200161525960359139905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ec7611fb7565b73ffffffffffffffffffffffffffffffffffffffff16611ee56114dd565b73ffffffffffffffffffffffffffffffffffffffff1614611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290614328565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290614c94565b60405180910390fd5b611fb4816129c6565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080548210801561205c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121208261274a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612147611fb7565b73ffffffffffffffffffffffffffffffffffffffff16148061217a57506121798260000151612174611fb7565b611e2b565b5b806121bf5750612188611fb7565b73ffffffffffffffffffffffffffffffffffffffff166121a784610a3d565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121f8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612261576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122c8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122d58585856001612ee7565b6122e56000848460000151612063565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612596576000548110156125955782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125ff8585856001612eed565b5050505050565b612620828260405180602001604052806000815250612ef3565b5050565b60008061262f6114ba565b1561263d5760029050612696565b612645611289565b156126535760019050612695565b6000612694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268b90614adc565b60405180910390fd5b5b5b600f60149054906101000a900460c01b86468360ff168789886040516020016126c59796959493929190614d7f565b60405160208183030381529060405280519060200120915050949350505050565b60006126f28383612f05565b73ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6127526136d0565b600082905060005481101561298f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161298d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128715780925050506129c1565b5b60011561298c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129875780925050506129c1565b612872565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818310612a9b5781612a9d565b825b905092915050565b6000612ac68473ffffffffffffffffffffffffffffffffffffffff16612f2c565b15612c17578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aef611fb7565b8786866040518563ffffffff1660e01b8152600401612b119493929190614e55565b6020604051808303816000875af1925050508015612b4d57506040513d601f19601f82011682018060405250810190612b4a9190614eb6565b60015b612bc7573d8060008114612b7d576040519150601f19603f3d011682016040523d82523d6000602084013e612b82565b606091505b50600081511415612bbf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c1c565b600190505b949350505050565b606060128054612c3390614377565b80601f0160208091040260200160405190810160405280929190818152602001828054612c5f90614377565b8015612cac5780601f10612c8157610100808354040283529160200191612cac565b820191906000526020600020905b815481529060010190602001808311612c8f57829003601f168201915b5050505050905090565b60606000821415612cfe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e12565b600082905060005b60008214612d30578080612d1990614ee3565b915050600a82612d299190614f5b565b9150612d06565b60008167ffffffffffffffff811115612d4c57612d4b613afa565b5b6040519080825280601f01601f191660200182016040528015612d7e5781602001600182028036833780820191505090505b5090505b60008514612e0b57600182612d979190614a5c565b9150600a85612da69190614f8c565b6030612db29190614499565b60f81b818381518110612dc857612dc761443b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e049190614f5b565b9450612d82565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7f576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612f008383836001612f4f565b505050565b6000806000612f148585613286565b91509150612f2181613309565b819250505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612fbc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612ff7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130046000868387612ee7565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561326957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561321d575061321b6000888488612aa5565b155b15613254576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506131a2565b50806000819055505061327f6000868387612eed565b5050505050565b6000806041835114156132c85760008060006020860151925060408601519150606086015160001a90506132bc878285856134de565b94509450505050613302565b6040835114156132f95760008060208501519150604085015190506132ee8683836135eb565b935093505050613302565b60006002915091505b9250929050565b6000600481111561331d5761331c614fbd565b5b8160048111156133305761332f614fbd565b5b141561333b576134db565b6001600481111561334f5761334e614fbd565b5b81600481111561336257613361614fbd565b5b14156133a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339a90615038565b60405180910390fd5b600260048111156133b7576133b6614fbd565b5b8160048111156133ca576133c9614fbd565b5b141561340b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613402906150a4565b60405180910390fd5b6003600481111561341f5761341e614fbd565b5b81600481111561343257613431614fbd565b5b1415613473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346a90615136565b60405180910390fd5b60048081111561348657613485614fbd565b5b81600481111561349957613498614fbd565b5b14156134da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d1906151c8565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156135195760006003915091506135e2565b601b8560ff16141580156135315750601c8560ff1614155b156135435760006004915091506135e2565b6000600187878787604051600081526020016040526040516135689493929190615213565b6020604051602081039080840390855afa15801561358a573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156135d9576000600192509250506135e2565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61362e9190614499565b905061363c878288856134de565b935093505050935093915050565b82805461365690614377565b90600052602060002090601f01602090048101928261367857600085556136bf565b82601f1061369157803560ff19168380011785556136bf565b828001600101855582156136bf579182015b828111156136be5782358255916020019190600101906136a3565b5b5090506136cc9190613713565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561372c576000816000905550600101613714565b5090565b6000604051905090565b600080fd5b600080fd5b600063ffffffff82169050919050565b61375d81613744565b811461376857600080fd5b50565b60008135905061377a81613754565b92915050565b6000602082840312156137965761379561373a565b5b60006137a48482850161376b565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137e2816137ad565b81146137ed57600080fd5b50565b6000813590506137ff816137d9565b92915050565b60006020828403121561381b5761381a61373a565b5b6000613829848285016137f0565b91505092915050565b60008115159050919050565b61384781613832565b82525050565b6000602082019050613862600083018461383e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138a2578082015181840152602081019050613887565b838111156138b1576000848401525b50505050565b6000601f19601f8301169050919050565b60006138d382613868565b6138dd8185613873565b93506138ed818560208601613884565b6138f6816138b7565b840191505092915050565b6000602082019050818103600083015261391b81846138c8565b905092915050565b6000819050919050565b61393681613923565b811461394157600080fd5b50565b6000813590506139538161392d565b92915050565b60006020828403121561396f5761396e61373a565b5b600061397d84828501613944565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139b182613986565b9050919050565b6139c1816139a6565b82525050565b60006020820190506139dc60008301846139b8565b92915050565b6139eb816139a6565b81146139f657600080fd5b50565b600081359050613a08816139e2565b92915050565b60008060408385031215613a2557613a2461373a565b5b6000613a33858286016139f9565b9250506020613a4485828601613944565b9150509250929050565b613a5781613923565b82525050565b6000602082019050613a726000830184613a4e565b92915050565b613a8181613744565b82525050565b6000602082019050613a9c6000830184613a78565b92915050565b600080600060608486031215613abb57613aba61373a565b5b6000613ac9868287016139f9565b9350506020613ada868287016139f9565b9250506040613aeb86828701613944565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b32826138b7565b810181811067ffffffffffffffff82111715613b5157613b50613afa565b5b80604052505050565b6000613b64613730565b9050613b708282613b29565b919050565b600067ffffffffffffffff821115613b9057613b8f613afa565b5b602082029050602081019050919050565b600080fd5b6000613bb9613bb484613b75565b613b5a565b90508083825260208201905060208402830185811115613bdc57613bdb613ba1565b5b835b81811015613c055780613bf188826139f9565b845260208401935050602081019050613bde565b5050509392505050565b600082601f830112613c2457613c23613af5565b5b8135613c34848260208601613ba6565b91505092915050565b600067ffffffffffffffff821115613c5857613c57613afa565b5b602082029050602081019050919050565b6000613c7c613c7784613c3d565b613b5a565b90508083825260208201905060208402830185811115613c9f57613c9e613ba1565b5b835b81811015613cc85780613cb48882613944565b845260208401935050602081019050613ca1565b5050509392505050565b600082601f830112613ce757613ce6613af5565b5b8135613cf7848260208601613c69565b91505092915050565b60008060408385031215613d1757613d1661373a565b5b600083013567ffffffffffffffff811115613d3557613d3461373f565b5b613d4185828601613c0f565b925050602083013567ffffffffffffffff811115613d6257613d6161373f565b5b613d6e85828601613cd2565b9150509250929050565b6000819050919050565b613d8b81613d78565b8114613d9657600080fd5b50565b600081359050613da881613d82565b92915050565b600080fd5b600067ffffffffffffffff821115613dce57613dcd613afa565b5b613dd7826138b7565b9050602081019050919050565b82818337600083830152505050565b6000613e06613e0184613db3565b613b5a565b905082815260208101848484011115613e2257613e21613dae565b5b613e2d848285613de4565b509392505050565b600082601f830112613e4a57613e49613af5565b5b8135613e5a848260208601613df3565b91505092915050565b600067ffffffffffffffff82169050919050565b613e8081613e63565b8114613e8b57600080fd5b50565b600081359050613e9d81613e77565b92915050565b600080600080600060a08688031215613ebf57613ebe61373a565b5b6000613ecd88828901613d99565b955050602086013567ffffffffffffffff811115613eee57613eed61373f565b5b613efa88828901613e35565b9450506040613f0b88828901613944565b9350506060613f1c88828901613e8e565b9250506080613f2d88828901613e8e565b9150509295509295909350565b600061ffff82169050919050565b613f5181613f3a565b82525050565b6000602082019050613f6c6000830184613f48565b92915050565b600080fd5b60008083601f840112613f8d57613f8c613af5565b5b8235905067ffffffffffffffff811115613faa57613fa9613f72565b5b602083019150836001820283011115613fc657613fc5613ba1565b5b9250929050565b60008060208385031215613fe457613fe361373a565b5b600083013567ffffffffffffffff8111156140025761400161373f565b5b61400e85828601613f77565b92509250509250929050565b6000602082840312156140305761402f61373a565b5b600061403e848285016139f9565b91505092915050565b614050816139a6565b82525050565b61405f81613e63565b82525050565b61406e81613832565b82525050565b60608201600082015161408a6000850182614047565b50602082015161409d6020850182614056565b5060408201516140b06040850182614065565b50505050565b60006060820190506140cb6000830184614074565b92915050565b6140da81613f3a565b81146140e557600080fd5b50565b6000813590506140f7816140d1565b92915050565b6000602082840312156141135761411261373a565b5b6000614121848285016140e8565b91505092915050565b61413381613832565b811461413e57600080fd5b50565b6000813590506141508161412a565b92915050565b6000806040838503121561416d5761416c61373a565b5b600061417b858286016139f9565b925050602061418c85828601614141565b9150509250929050565b600080600080608085870312156141b0576141af61373a565b5b60006141be87828801613d99565b945050602085013567ffffffffffffffff8111156141df576141de61373f565b5b6141eb87828801613e35565b93505060406141fc87828801613944565b925050606061420d87828801613e8e565b91505092959194509250565b600080600080608085870312156142335761423261373a565b5b6000614241878288016139f9565b9450506020614252878288016139f9565b935050604061426387828801613944565b925050606085013567ffffffffffffffff8111156142845761428361373f565b5b61429087828801613e35565b91505092959194509250565b600080604083850312156142b3576142b261373a565b5b60006142c1858286016139f9565b92505060206142d2858286016139f9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614312602083613873565b915061431d826142dc565b602082019050919050565b6000602082019050818103600083015261434181614305565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061438f57607f821691505b602082108114156143a3576143a2614348565b5b50919050565b7f41646472657373657320616e6420746f6b656e7320636f756e7420617272617960008201527f73206c656e6774687320646f6e2774206d617463680000000000000000000000602082015250565b6000614405603583613873565b9150614410826143a9565b604082019050919050565b60006020820190508181036000830152614434816143f8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144a482613923565b91506144af83613923565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144e4576144e361446a565b5b828201905092915050565b60006144fa82613e63565b915067ffffffffffffffff8214156145155761451461446a565b5b600182019050919050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b6000614556601283613873565b915061456182614520565b602082019050919050565b6000602082019050818103600083015261458581614549565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006145c2601e83613873565b91506145cd8261458c565b602082019050919050565b600060208201905081810360008301526145f1816145b5565b9050919050565b7f486f6c6465727320636c61696d2073746167652068617665206e6f742062656760008201527f756e207965740000000000000000000000000000000000000000000000000000602082015250565b6000614654602683613873565b915061465f826145f8565b604082019050919050565b6000602082019050818103600083015261468381614647565b9050919050565b7f486f6c6465727320636c61696d20737461676520697320616c7265616479206f60008201527f7665720000000000000000000000000000000000000000000000000000000000602082015250565b60006146e6602383613873565b91506146f18261468a565b604082019050919050565b60006020820190508181036000830152614715816146d9565b9050919050565b7f457863656564696e6720636c61696d696e67206c696d697420666f722074686960008201527f73206163636f756e740000000000000000000000000000000000000000000000602082015250565b6000614778602983613873565b91506147838261471c565b604082019050919050565b600060208201905081810360008301526147a78161476b565b9050919050565b7f4861736820636f6d70617269736f6e206661696c656400000000000000000000600082015250565b60006147e4601683613873565b91506147ef826147ae565b602082019050919050565b60006020820190508181036000830152614813816147d7565b9050919050565b7f446972656374206d696e74696e6720697320646973616c6c6f77656400000000600082015250565b6000614850601c83613873565b915061485b8261481a565b602082019050919050565b6000602082019050818103600083015261487f81614843565b9050919050565b7f4861736820697320616c72656164792075736564000000000000000000000000600082015250565b60006148bc601483613873565b91506148c782614886565b602082019050919050565b600060208201905081810360008301526148eb816148af565b9050919050565b7f43616e27742073657420636f6c6c656374696f6e2073697a65206c6f7765722060008201527f7468656e20746f74616c20737570706c79000000000000000000000000000000602082015250565b600061494e603183613873565b9150614959826148f2565b604082019050919050565b6000602082019050818103600083015261497d81614941565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006149ba601f83613873565b91506149c582614984565b602082019050919050565b600060208201905081810360008301526149e9816149ad565b9050919050565b7f4e6f2066756e6473206f6e2074686520636f6e74726163740000000000000000600082015250565b6000614a26601883613873565b9150614a31826149f0565b602082019050919050565b60006020820190508181036000830152614a5581614a19565b9050919050565b6000614a6782613923565b9150614a7283613923565b925082821015614a8557614a8461446a565b5b828203905092915050565b7f53616c65732068617665206e6f7420626567756e207965740000000000000000600082015250565b6000614ac6601883613873565b9150614ad182614a90565b602082019050919050565b60006020820190508181036000830152614af581614ab9565b9050919050565b6000614b0782613923565b9150614b1283613923565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b4b57614b4a61446a565b5b828202905092915050565b7f496e76616c696420616d6f756e74206f66204554482073656e74000000000000600082015250565b6000614b8c601a83613873565b9150614b9782614b56565b602082019050919050565b60006020820190508181036000830152614bbb81614b7f565b9050919050565b600081905092915050565b6000614bd882613868565b614be28185614bc2565b9350614bf2818560208601613884565b80840191505092915050565b6000614c0a8285614bcd565b9150614c168284614bcd565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c7e602683613873565b9150614c8982614c22565b604082019050919050565b60006020820190508181036000830152614cad81614c71565b9050919050565b60007fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b614cfb614cf682614cb4565b614ce0565b82525050565b60008160601b9050919050565b6000614d1982614d01565b9050919050565b6000614d2b82614d0e565b9050919050565b614d43614d3e826139a6565b614d20565b82525050565b60008160c01b9050919050565b6000614d6182614d49565b9050919050565b614d79614d7482613e63565b614d56565b82525050565b6000614d8b828a614cea565b600882019150614d9b8289614d32565b601482019150614dab8288614d68565b600882019150614dbb8287614d68565b600882019150614dcb8286614d68565b600882019150614ddb8285614d68565b600882019150614deb8284614d68565b60088201915081905098975050505050505050565b600081519050919050565b600082825260208201905092915050565b6000614e2782614e00565b614e318185614e0b565b9350614e41818560208601613884565b614e4a816138b7565b840191505092915050565b6000608082019050614e6a60008301876139b8565b614e7760208301866139b8565b614e846040830185613a4e565b8181036060830152614e968184614e1c565b905095945050505050565b600081519050614eb0816137d9565b92915050565b600060208284031215614ecc57614ecb61373a565b5b6000614eda84828501614ea1565b91505092915050565b6000614eee82613923565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f2157614f2061446a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614f6682613923565b9150614f7183613923565b925082614f8157614f80614f2c565b5b828204905092915050565b6000614f9782613923565b9150614fa283613923565b925082614fb257614fb1614f2c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615022601883613873565b915061502d82614fec565b602082019050919050565b6000602082019050818103600083015261505181615015565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061508e601f83613873565b915061509982615058565b602082019050919050565b600060208201905081810360008301526150bd81615081565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615120602283613873565b915061512b826150c4565b604082019050919050565b6000602082019050818103600083015261514f81615113565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006151b2602283613873565b91506151bd82615156565b604082019050919050565b600060208201905081810360008301526151e1816151a5565b9050919050565b6151f181613d78565b82525050565b600060ff82169050919050565b61520d816151f7565b82525050565b600060808201905061522860008301876151e8565b6152356020830186615204565b61524260408301856151e8565b61524f60608301846151e8565b9594505050505056fe697066733a2f2f516d50345a504c4778426142426832454c5a32673363734e7171466370357a46433775667831746a55314663746aa2646970667358221220c820f0ef3e88d67fa1bac4e10989b749ac4e7fb2acb966bbdf4deb8ecc06661864736f6c634300080c0033

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063a22cb465116100a0578063c87b56dd1161006f578063c87b56dd1461071e578063dc33e6811461075b578063e8a3d48514610798578063e985e9c5146107c3578063f2fde38b1461080057610204565b8063a22cb46514610699578063ac446002146106c2578063b66753c3146106d9578063b88d4fde146106f557610204565b8063779e170d116100e7578063779e170d146105b25780638da5cb5b146105dd5780639231ab2a1461060857806395d89b41146106455780639b8bf8161461067057610204565b80636352211e146104f857806370a0823114610535578063715018a614610572578063730707cb1461058957610204565b8063279a669e1161019b57806342842e0e1161016a57806342842e0e1461042557806345c0f5331461044e57806351d28a7e1461047957806355f804b3146104a457806359a01276146104cd57610204565b8063279a669e1461037f5780633a933b0c146103a857806341549502146103d157806341dbba24146103fc57610204565b8063095ea7b3116101d7578063095ea7b3146102d757806318160ddd146103005780631cbaee2d1461032b57806323b872dd1461035657610204565b8063015952661461020957806301ffc9a71461023257806306fdde031461026f578063081812fc1461029a575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613780565b610829565b005b34801561023e57600080fd5b5061025960048036038101906102549190613805565b6108c9565b604051610266919061384d565b60405180910390f35b34801561027b57600080fd5b506102846109ab565b6040516102919190613901565b60405180910390f35b3480156102a657600080fd5b506102c160048036038101906102bc9190613959565b610a3d565b6040516102ce91906139c7565b60405180910390f35b3480156102e357600080fd5b506102fe60048036038101906102f99190613a0e565b610ab9565b005b34801561030c57600080fd5b50610315610bc4565b6040516103229190613a5d565b60405180910390f35b34801561033757600080fd5b50610340610bd2565b60405161034d9190613a87565b60405180910390f35b34801561036257600080fd5b5061037d60048036038101906103789190613aa2565b610be8565b005b34801561038b57600080fd5b506103a660048036038101906103a19190613d00565b610bf8565b005b3480156103b457600080fd5b506103cf60048036038101906103ca9190613ea3565b610dff565b005b3480156103dd57600080fd5b506103e6611121565b6040516103f39190613a87565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e9190613959565b611137565b005b34801561043157600080fd5b5061044c60048036038101906104479190613aa2565b6111bd565b005b34801561045a57600080fd5b506104636111dd565b6040516104709190613f57565b60405180910390f35b34801561048557600080fd5b5061048e6111f1565b60405161049b9190613a5d565b60405180910390f35b3480156104b057600080fd5b506104cb60048036038101906104c69190613fcd565b6111f7565b005b3480156104d957600080fd5b506104e2611289565b6040516104ef919061384d565b60405180910390f35b34801561050457600080fd5b5061051f600480360381019061051a9190613959565b6112ac565b60405161052c91906139c7565b60405180910390f35b34801561054157600080fd5b5061055c6004803603810190610557919061401a565b6112c2565b6040516105699190613a5d565b60405180910390f35b34801561057e57600080fd5b50610587611392565b005b34801561059557600080fd5b506105b060048036038101906105ab9190613780565b61141a565b005b3480156105be57600080fd5b506105c76114ba565b6040516105d4919061384d565b60405180910390f35b3480156105e957600080fd5b506105f26114dd565b6040516105ff91906139c7565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190613959565b611507565b60405161063c91906140b6565b60405180910390f35b34801561065157600080fd5b5061065a61151f565b6040516106679190613901565b60405180910390f35b34801561067c57600080fd5b50610697600480360381019061069291906140fd565b6115b1565b005b3480156106a557600080fd5b506106c060048036038101906106bb9190614156565b61169b565b005b3480156106ce57600080fd5b506106d7611813565b005b6106f360048036038101906106ee9190614196565b611a37565b005b34801561070157600080fd5b5061071c60048036038101906107179190614219565b611d07565b005b34801561072a57600080fd5b5061074560048036038101906107409190613959565b611d5a565b6040516107529190613901565b60405180910390f35b34801561076757600080fd5b50610782600480360381019061077d919061401a565b611df9565b60405161078f9190613a5d565b60405180910390f35b3480156107a457600080fd5b506107ad611e0b565b6040516107ba9190613901565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e5919061429c565b611e2b565b6040516107f7919061384d565b60405180910390f35b34801561080c57600080fd5b506108276004803603810190610822919061401a565b611ebf565b005b610831611fb7565b73ffffffffffffffffffffffffffffffffffffffff1661084f6114dd565b73ffffffffffffffffffffffffffffffffffffffff16146108a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089c90614328565b60405180910390fd5b80600c60046101000a81548163ffffffff021916908363ffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109a457506109a382611fbf565b5b9050919050565b6060600280546109ba90614377565b80601f01602080910402602001604051908101604052809291908181526020018280546109e690614377565b8015610a335780601f10610a0857610100808354040283529160200191610a33565b820191906000526020600020905b815481529060010190602001808311610a1657829003601f168201915b5050505050905090565b6000610a4882612029565b610a7e576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ac4826112ac565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b2c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b4b611fb7565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b7d5750610b7b81610b76611fb7565b611e2b565b155b15610bb4576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610bbf838383612063565b505050565b600060015460005403905090565b600c60049054906101000a900463ffffffff1681565b610bf3838383612115565b505050565b610c00611fb7565b73ffffffffffffffffffffffffffffffffffffffff16610c1e6114dd565b73ffffffffffffffffffffffffffffffffffffffff1614610c74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6b90614328565b60405180910390fd5b8051825114610cb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610caf9061441b565b60405180910390fd5b6000805b83518167ffffffffffffffff161015610d1457828167ffffffffffffffff1681518110610cec57610ceb61443b565b5b602002602001015182610cff9190614499565b91508080610d0c906144ef565b915050610cbc565b50600a60009054906101000a900461ffff1661ffff1681610d33610bc4565b610d3d9190614499565b1115610d7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d759061456c565b60405180910390fd5b60005b83518167ffffffffffffffff161015610df957610de6848267ffffffffffffffff1681518110610db457610db361443b565b5b6020026020010151848367ffffffffffffffff1681518110610dd957610dd861443b565b5b6020026020010151612606565b8080610df1906144ef565b915050610d81565b50505050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e64906145d8565b60405180910390fd5b610e75611289565b610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab9061466a565b60405180910390fd5b610ebc6114ba565b15610efc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef3906146fc565b60405180910390fd5b600a60009054906101000a900461ffff1661ffff1683610f1a610bc4565b610f249190614499565b1115610f65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5c9061456c565b60405180910390fd5b8167ffffffffffffffff1683610f7a33611df9565b610f849190614499565b1115610fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbc9061478e565b60405180910390fd5b84610fd233858585612624565b14611012576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611009906147fa565b60405180910390fd5b61101c85856126e6565b61105b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105290614866565b60405180910390fd5b601160008267ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c7906148d2565b60405180910390fd5b6110da3384612606565b6001601160008367ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050505050565b600c60009054906101000a900463ffffffff1681565b61113f611fb7565b73ffffffffffffffffffffffffffffffffffffffff1661115d6114dd565b73ffffffffffffffffffffffffffffffffffffffff16146111b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111aa90614328565b60405180910390fd5b80600b8190555050565b6111d883838360405180602001604052806000815250611d07565b505050565b600a60009054906101000a900461ffff1681565b600b5481565b6111ff611fb7565b73ffffffffffffffffffffffffffffffffffffffff1661121d6114dd565b73ffffffffffffffffffffffffffffffffffffffff1614611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90614328565b60405180910390fd5b81816012919061128492919061364a565b505050565b6000600c60009054906101000a900463ffffffff1663ffffffff16421015905090565b60006112b78261274a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561132a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61139a611fb7565b73ffffffffffffffffffffffffffffffffffffffff166113b86114dd565b73ffffffffffffffffffffffffffffffffffffffff161461140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140590614328565b60405180910390fd5b61141860006129c6565b565b611422611fb7565b73ffffffffffffffffffffffffffffffffffffffff166114406114dd565b73ffffffffffffffffffffffffffffffffffffffff1614611496576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148d90614328565b60405180910390fd5b80600c60006101000a81548163ffffffff021916908363ffffffff16021790555050565b6000600c60049054906101000a900463ffffffff1663ffffffff16421015905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61150f6136d0565b6115188261274a565b9050919050565b60606003805461152e90614377565b80601f016020809104026020016040519081016040528092919081815260200182805461155a90614377565b80156115a75780601f1061157c576101008083540402835291602001916115a7565b820191906000526020600020905b81548152906001019060200180831161158a57829003601f168201915b5050505050905090565b6115b9611fb7565b73ffffffffffffffffffffffffffffffffffffffff166115d76114dd565b73ffffffffffffffffffffffffffffffffffffffff161461162d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162490614328565b60405180910390fd5b611635610bc4565b8161ffff16101561167b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167290614964565b60405180910390fd5b80600a60006101000a81548161ffff021916908361ffff16021790555050565b6116a3611fb7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611708576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611715611fb7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166117c2611fb7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611807919061384d565b60405180910390a35050565b61181b611fb7565b73ffffffffffffffffffffffffffffffffffffffff166118396114dd565b73ffffffffffffffffffffffffffffffffffffffff161461188f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188690614328565b60405180910390fd5b600260095414156118d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cc906149d0565b60405180910390fd5b600260098190555060004711611920576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191790614a3c565b60405180910390fd5b6000600d5411156119ba576000611939600d5447612a8c565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156119a3573d6000803e3d6000fd5b5080600d546119b29190614a5c565b600d81905550505b6000471115611a2d57600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611a2b573d6000803e3d6000fd5b505b6001600981905550565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c906145d8565b60405180910390fd5b611aad6114ba565b611aec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae390614adc565b60405180910390fd5b600a60009054906101000a900461ffff1661ffff1682611b0a610bc4565b611b149190614499565b1115611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c9061456c565b60405180910390fd5b81600b54611b639190614afc565b3414611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b90614ba2565b60405180910390fd5b83611bb9338467ffffffffffffffff85612624565b14611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf0906147fa565b60405180910390fd5b611c0384846126e6565b611c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3990614866565b60405180910390fd5b601160008267ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611cb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cae906148d2565b60405180910390fd5b611cc13383612606565b6001601160008367ffffffffffffffff1667ffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b611d12848484612115565b611d1e84848484612aa5565b611d54576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060611d6582612029565b611d9b576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611da5612c24565b9050600081511415611dc65760405180602001604052806000815250611df1565b80611dd084612cb6565b604051602001611de1929190614bfe565b6040516020818303038152906040525b915050919050565b6000611e0482612e17565b9050919050565b606060405180606001604052806035815260200161525960359139905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611ec7611fb7565b73ffffffffffffffffffffffffffffffffffffffff16611ee56114dd565b73ffffffffffffffffffffffffffffffffffffffff1614611f3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3290614328565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa290614c94565b60405180910390fd5b611fb4816129c6565b50565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600080548210801561205c575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006121208261274a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612147611fb7565b73ffffffffffffffffffffffffffffffffffffffff16148061217a57506121798260000151612174611fb7565b611e2b565b5b806121bf5750612188611fb7565b73ffffffffffffffffffffffffffffffffffffffff166121a784610a3d565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806121f8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612261576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122c8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122d58585856001612ee7565b6122e56000848460000151612063565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612596576000548110156125955782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125ff8585856001612eed565b5050505050565b612620828260405180602001604052806000815250612ef3565b5050565b60008061262f6114ba565b1561263d5760029050612696565b612645611289565b156126535760019050612695565b6000612694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268b90614adc565b60405180910390fd5b5b5b600f60149054906101000a900460c01b86468360ff168789886040516020016126c59796959493929190614d7f565b60405160208183030381529060405280519060200120915050949350505050565b60006126f28383612f05565b73ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614905092915050565b6127526136d0565b600082905060005481101561298f576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161298d57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128715780925050506129c1565b5b60011561298c57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146129875780925050506129c1565b612872565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000818310612a9b5781612a9d565b825b905092915050565b6000612ac68473ffffffffffffffffffffffffffffffffffffffff16612f2c565b15612c17578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612aef611fb7565b8786866040518563ffffffff1660e01b8152600401612b119493929190614e55565b6020604051808303816000875af1925050508015612b4d57506040513d601f19601f82011682018060405250810190612b4a9190614eb6565b60015b612bc7573d8060008114612b7d576040519150601f19603f3d011682016040523d82523d6000602084013e612b82565b606091505b50600081511415612bbf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612c1c565b600190505b949350505050565b606060128054612c3390614377565b80601f0160208091040260200160405190810160405280929190818152602001828054612c5f90614377565b8015612cac5780601f10612c8157610100808354040283529160200191612cac565b820191906000526020600020905b815481529060010190602001808311612c8f57829003601f168201915b5050505050905090565b60606000821415612cfe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e12565b600082905060005b60008214612d30578080612d1990614ee3565b915050600a82612d299190614f5b565b9150612d06565b60008167ffffffffffffffff811115612d4c57612d4b613afa565b5b6040519080825280601f01601f191660200182016040528015612d7e5781602001600182028036833780820191505090505b5090505b60008514612e0b57600182612d979190614a5c565b9150600a85612da69190614f8c565b6030612db29190614499565b60f81b818381518110612dc857612dc761443b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e049190614f5b565b9450612d82565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e7f576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b612f008383836001612f4f565b505050565b6000806000612f148585613286565b91509150612f2181613309565b819250505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612fbc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612ff7576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6130046000868387612ee7565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561326957818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801561321d575061321b6000888488612aa5565b155b15613254576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818060010192505080806001019150506131a2565b50806000819055505061327f6000868387612eed565b5050505050565b6000806041835114156132c85760008060006020860151925060408601519150606086015160001a90506132bc878285856134de565b94509450505050613302565b6040835114156132f95760008060208501519150604085015190506132ee8683836135eb565b935093505050613302565b60006002915091505b9250929050565b6000600481111561331d5761331c614fbd565b5b8160048111156133305761332f614fbd565b5b141561333b576134db565b6001600481111561334f5761334e614fbd565b5b81600481111561336257613361614fbd565b5b14156133a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339a90615038565b60405180910390fd5b600260048111156133b7576133b6614fbd565b5b8160048111156133ca576133c9614fbd565b5b141561340b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613402906150a4565b60405180910390fd5b6003600481111561341f5761341e614fbd565b5b81600481111561343257613431614fbd565b5b1415613473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161346a90615136565b60405180910390fd5b60048081111561348657613485614fbd565b5b81600481111561349957613498614fbd565b5b14156134da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134d1906151c8565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156135195760006003915091506135e2565b601b8560ff16141580156135315750601c8560ff1614155b156135435760006004915091506135e2565b6000600187878787604051600081526020016040526040516135689493929190615213565b6020604051602081039080840390855afa15801561358a573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156135d9576000600192509250506135e2565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c61362e9190614499565b905061363c878288856134de565b935093505050935093915050565b82805461365690614377565b90600052602060002090601f01602090048101928261367857600085556136bf565b82601f1061369157803560ff19168380011785556136bf565b828001600101855582156136bf579182015b828111156136be5782358255916020019190600101906136a3565b5b5090506136cc9190613713565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561372c576000816000905550600101613714565b5090565b6000604051905090565b600080fd5b600080fd5b600063ffffffff82169050919050565b61375d81613744565b811461376857600080fd5b50565b60008135905061377a81613754565b92915050565b6000602082840312156137965761379561373a565b5b60006137a48482850161376b565b91505092915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137e2816137ad565b81146137ed57600080fd5b50565b6000813590506137ff816137d9565b92915050565b60006020828403121561381b5761381a61373a565b5b6000613829848285016137f0565b91505092915050565b60008115159050919050565b61384781613832565b82525050565b6000602082019050613862600083018461383e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156138a2578082015181840152602081019050613887565b838111156138b1576000848401525b50505050565b6000601f19601f8301169050919050565b60006138d382613868565b6138dd8185613873565b93506138ed818560208601613884565b6138f6816138b7565b840191505092915050565b6000602082019050818103600083015261391b81846138c8565b905092915050565b6000819050919050565b61393681613923565b811461394157600080fd5b50565b6000813590506139538161392d565b92915050565b60006020828403121561396f5761396e61373a565b5b600061397d84828501613944565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006139b182613986565b9050919050565b6139c1816139a6565b82525050565b60006020820190506139dc60008301846139b8565b92915050565b6139eb816139a6565b81146139f657600080fd5b50565b600081359050613a08816139e2565b92915050565b60008060408385031215613a2557613a2461373a565b5b6000613a33858286016139f9565b9250506020613a4485828601613944565b9150509250929050565b613a5781613923565b82525050565b6000602082019050613a726000830184613a4e565b92915050565b613a8181613744565b82525050565b6000602082019050613a9c6000830184613a78565b92915050565b600080600060608486031215613abb57613aba61373a565b5b6000613ac9868287016139f9565b9350506020613ada868287016139f9565b9250506040613aeb86828701613944565b9150509250925092565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613b32826138b7565b810181811067ffffffffffffffff82111715613b5157613b50613afa565b5b80604052505050565b6000613b64613730565b9050613b708282613b29565b919050565b600067ffffffffffffffff821115613b9057613b8f613afa565b5b602082029050602081019050919050565b600080fd5b6000613bb9613bb484613b75565b613b5a565b90508083825260208201905060208402830185811115613bdc57613bdb613ba1565b5b835b81811015613c055780613bf188826139f9565b845260208401935050602081019050613bde565b5050509392505050565b600082601f830112613c2457613c23613af5565b5b8135613c34848260208601613ba6565b91505092915050565b600067ffffffffffffffff821115613c5857613c57613afa565b5b602082029050602081019050919050565b6000613c7c613c7784613c3d565b613b5a565b90508083825260208201905060208402830185811115613c9f57613c9e613ba1565b5b835b81811015613cc85780613cb48882613944565b845260208401935050602081019050613ca1565b5050509392505050565b600082601f830112613ce757613ce6613af5565b5b8135613cf7848260208601613c69565b91505092915050565b60008060408385031215613d1757613d1661373a565b5b600083013567ffffffffffffffff811115613d3557613d3461373f565b5b613d4185828601613c0f565b925050602083013567ffffffffffffffff811115613d6257613d6161373f565b5b613d6e85828601613cd2565b9150509250929050565b6000819050919050565b613d8b81613d78565b8114613d9657600080fd5b50565b600081359050613da881613d82565b92915050565b600080fd5b600067ffffffffffffffff821115613dce57613dcd613afa565b5b613dd7826138b7565b9050602081019050919050565b82818337600083830152505050565b6000613e06613e0184613db3565b613b5a565b905082815260208101848484011115613e2257613e21613dae565b5b613e2d848285613de4565b509392505050565b600082601f830112613e4a57613e49613af5565b5b8135613e5a848260208601613df3565b91505092915050565b600067ffffffffffffffff82169050919050565b613e8081613e63565b8114613e8b57600080fd5b50565b600081359050613e9d81613e77565b92915050565b600080600080600060a08688031215613ebf57613ebe61373a565b5b6000613ecd88828901613d99565b955050602086013567ffffffffffffffff811115613eee57613eed61373f565b5b613efa88828901613e35565b9450506040613f0b88828901613944565b9350506060613f1c88828901613e8e565b9250506080613f2d88828901613e8e565b9150509295509295909350565b600061ffff82169050919050565b613f5181613f3a565b82525050565b6000602082019050613f6c6000830184613f48565b92915050565b600080fd5b60008083601f840112613f8d57613f8c613af5565b5b8235905067ffffffffffffffff811115613faa57613fa9613f72565b5b602083019150836001820283011115613fc657613fc5613ba1565b5b9250929050565b60008060208385031215613fe457613fe361373a565b5b600083013567ffffffffffffffff8111156140025761400161373f565b5b61400e85828601613f77565b92509250509250929050565b6000602082840312156140305761402f61373a565b5b600061403e848285016139f9565b91505092915050565b614050816139a6565b82525050565b61405f81613e63565b82525050565b61406e81613832565b82525050565b60608201600082015161408a6000850182614047565b50602082015161409d6020850182614056565b5060408201516140b06040850182614065565b50505050565b60006060820190506140cb6000830184614074565b92915050565b6140da81613f3a565b81146140e557600080fd5b50565b6000813590506140f7816140d1565b92915050565b6000602082840312156141135761411261373a565b5b6000614121848285016140e8565b91505092915050565b61413381613832565b811461413e57600080fd5b50565b6000813590506141508161412a565b92915050565b6000806040838503121561416d5761416c61373a565b5b600061417b858286016139f9565b925050602061418c85828601614141565b9150509250929050565b600080600080608085870312156141b0576141af61373a565b5b60006141be87828801613d99565b945050602085013567ffffffffffffffff8111156141df576141de61373f565b5b6141eb87828801613e35565b93505060406141fc87828801613944565b925050606061420d87828801613e8e565b91505092959194509250565b600080600080608085870312156142335761423261373a565b5b6000614241878288016139f9565b9450506020614252878288016139f9565b935050604061426387828801613944565b925050606085013567ffffffffffffffff8111156142845761428361373f565b5b61429087828801613e35565b91505092959194509250565b600080604083850312156142b3576142b261373a565b5b60006142c1858286016139f9565b92505060206142d2858286016139f9565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614312602083613873565b915061431d826142dc565b602082019050919050565b6000602082019050818103600083015261434181614305565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061438f57607f821691505b602082108114156143a3576143a2614348565b5b50919050565b7f41646472657373657320616e6420746f6b656e7320636f756e7420617272617960008201527f73206c656e6774687320646f6e2774206d617463680000000000000000000000602082015250565b6000614405603583613873565b9150614410826143a9565b604082019050919050565b60006020820190508181036000830152614434816143f8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144a482613923565b91506144af83613923565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144e4576144e361446a565b5b828201905092915050565b60006144fa82613e63565b915067ffffffffffffffff8214156145155761451461446a565b5b600182019050919050565b7f52656163686564206d617820737570706c790000000000000000000000000000600082015250565b6000614556601283613873565b915061456182614520565b602082019050919050565b6000602082019050818103600083015261458581614549565b9050919050565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b60006145c2601e83613873565b91506145cd8261458c565b602082019050919050565b600060208201905081810360008301526145f1816145b5565b9050919050565b7f486f6c6465727320636c61696d2073746167652068617665206e6f742062656760008201527f756e207965740000000000000000000000000000000000000000000000000000602082015250565b6000614654602683613873565b915061465f826145f8565b604082019050919050565b6000602082019050818103600083015261468381614647565b9050919050565b7f486f6c6465727320636c61696d20737461676520697320616c7265616479206f60008201527f7665720000000000000000000000000000000000000000000000000000000000602082015250565b60006146e6602383613873565b91506146f18261468a565b604082019050919050565b60006020820190508181036000830152614715816146d9565b9050919050565b7f457863656564696e6720636c61696d696e67206c696d697420666f722074686960008201527f73206163636f756e740000000000000000000000000000000000000000000000602082015250565b6000614778602983613873565b91506147838261471c565b604082019050919050565b600060208201905081810360008301526147a78161476b565b9050919050565b7f4861736820636f6d70617269736f6e206661696c656400000000000000000000600082015250565b60006147e4601683613873565b91506147ef826147ae565b602082019050919050565b60006020820190508181036000830152614813816147d7565b9050919050565b7f446972656374206d696e74696e6720697320646973616c6c6f77656400000000600082015250565b6000614850601c83613873565b915061485b8261481a565b602082019050919050565b6000602082019050818103600083015261487f81614843565b9050919050565b7f4861736820697320616c72656164792075736564000000000000000000000000600082015250565b60006148bc601483613873565b91506148c782614886565b602082019050919050565b600060208201905081810360008301526148eb816148af565b9050919050565b7f43616e27742073657420636f6c6c656374696f6e2073697a65206c6f7765722060008201527f7468656e20746f74616c20737570706c79000000000000000000000000000000602082015250565b600061494e603183613873565b9150614959826148f2565b604082019050919050565b6000602082019050818103600083015261497d81614941565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006149ba601f83613873565b91506149c582614984565b602082019050919050565b600060208201905081810360008301526149e9816149ad565b9050919050565b7f4e6f2066756e6473206f6e2074686520636f6e74726163740000000000000000600082015250565b6000614a26601883613873565b9150614a31826149f0565b602082019050919050565b60006020820190508181036000830152614a5581614a19565b9050919050565b6000614a6782613923565b9150614a7283613923565b925082821015614a8557614a8461446a565b5b828203905092915050565b7f53616c65732068617665206e6f7420626567756e207965740000000000000000600082015250565b6000614ac6601883613873565b9150614ad182614a90565b602082019050919050565b60006020820190508181036000830152614af581614ab9565b9050919050565b6000614b0782613923565b9150614b1283613923565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b4b57614b4a61446a565b5b828202905092915050565b7f496e76616c696420616d6f756e74206f66204554482073656e74000000000000600082015250565b6000614b8c601a83613873565b9150614b9782614b56565b602082019050919050565b60006020820190508181036000830152614bbb81614b7f565b9050919050565b600081905092915050565b6000614bd882613868565b614be28185614bc2565b9350614bf2818560208601613884565b80840191505092915050565b6000614c0a8285614bcd565b9150614c168284614bcd565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c7e602683613873565b9150614c8982614c22565b604082019050919050565b60006020820190508181036000830152614cad81614c71565b9050919050565b60007fffffffffffffffff00000000000000000000000000000000000000000000000082169050919050565b6000819050919050565b614cfb614cf682614cb4565b614ce0565b82525050565b60008160601b9050919050565b6000614d1982614d01565b9050919050565b6000614d2b82614d0e565b9050919050565b614d43614d3e826139a6565b614d20565b82525050565b60008160c01b9050919050565b6000614d6182614d49565b9050919050565b614d79614d7482613e63565b614d56565b82525050565b6000614d8b828a614cea565b600882019150614d9b8289614d32565b601482019150614dab8288614d68565b600882019150614dbb8287614d68565b600882019150614dcb8286614d68565b600882019150614ddb8285614d68565b600882019150614deb8284614d68565b60088201915081905098975050505050505050565b600081519050919050565b600082825260208201905092915050565b6000614e2782614e00565b614e318185614e0b565b9350614e41818560208601613884565b614e4a816138b7565b840191505092915050565b6000608082019050614e6a60008301876139b8565b614e7760208301866139b8565b614e846040830185613a4e565b8181036060830152614e968184614e1c565b905095945050505050565b600081519050614eb0816137d9565b92915050565b600060208284031215614ecc57614ecb61373a565b5b6000614eda84828501614ea1565b91505092915050565b6000614eee82613923565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f2157614f2061446a565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614f6682613923565b9150614f7183613923565b925082614f8157614f80614f2c565b5b828204905092915050565b6000614f9782613923565b9150614fa283613923565b925082614fb257614fb1614f2c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615022601883613873565b915061502d82614fec565b602082019050919050565b6000602082019050818103600083015261505181615015565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b600061508e601f83613873565b915061509982615058565b602082019050919050565b600060208201905081810360008301526150bd81615081565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615120602283613873565b915061512b826150c4565b604082019050919050565b6000602082019050818103600083015261514f81615113565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b60006151b2602283613873565b91506151bd82615156565b604082019050919050565b600060208201905081810360008301526151e1816151a5565b9050919050565b6151f181613d78565b82525050565b600060ff82169050919050565b61520d816151f7565b82525050565b600060808201905061522860008301876151e8565b6152356020830186615204565b61524260408301856151e8565b61524f60608301846151e8565b9594505050505056fe697066733a2f2f516d50345a504c4778426142426832454c5a32673363734e7171466370357a46433775667831746a55314663746aa2646970667358221220c820f0ef3e88d67fa1bac4e10989b749ac4e7fb2acb966bbdf4deb8ecc06661864736f6c634300080c0033

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.