ETH Price: $3,377.49 (-1.93%)
Gas: 2 Gwei

Token

PridePass (PRIDE)
 

Overview

Max Total Supply

1,000 PRIDE

Holders

654

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 PRIDE
0x41c9152a713ac2c48d650862b418a2cc767cebe2
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:
PridePass

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : PridePass.sol
// SPDX-License-Identifier: MIT
// Developed by MufasaBrownie.eth

pragma solidity >=0.4.22 <0.9.0;

// Relevant Libraries
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract PridePass is ERC721, Ownable {
    // Utils Used
    using Strings for uint256;
    using SafeMath for uint256;
    using Counters for Counters.Counter;

    // Properties
    uint256 public totalSupply = 1000;
    bool public publicSale;
    string uri;
    bytes32 public immutable root =
        0xc742f076fd5c5e3f25bcbfbdefb6434ddb4a0ca57a05c6b3619b4b613ad11dfe;

    // Mappings
    mapping(address => bool) tokenClaimed;
    mapping(address => bool) pridelist;

    //Counter
    Counters.Counter private _tokenIdTracker;

    constructor() ERC721("PridePass", "PRIDE") {}

    //Modifiers
    modifier mintConfig(bytes32[] calldata _proof) {
        if (publicSale != true) {
            bool _merkle = MerkleProof.verify(
                _proof,
                root,
                keccak256(abi.encodePacked(msg.sender))
            );

            require(
                _merkle == true || pridelist[msg.sender] == true,
                "Sorry the connected wallet is not eligible for a private pride pass."
            );
        }

        require(tokenClaimed[msg.sender] != true, "Pass already claimed.");
        require(
            _tokenIdTracker.current().add(1) <= totalSupply,
            "Total Supply Exceeded. Stay tuned for more Do Good Alpha projects!"
        );
        _;
    }

    // Mint Method
    function pridePass(bytes32[] calldata _proof) public mintConfig(_proof) {
        _tokenIdTracker.increment();
        _mint(msg.sender, _tokenIdTracker.current());
        tokenClaimed[msg.sender] = true;
    }

    // Admin Methods

    function adminPass(uint256 _amount, address _to) public onlyOwner {
        for (uint8 counter = 0; counter < _amount; counter++) {
            // Mints the NFT to the current tokenID and adds one
            _tokenIdTracker.increment();
            super._mint(_to, _tokenIdTracker.current());
        }
    }

    function addToPrideList(address _x) public onlyOwner {
        pridelist[_x] = true;
    }

    function switchToPublic() public onlyOwner {
        bool current = publicSale;
        publicSale = !current;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        return
            string(abi.encodePacked(uri, Strings.toString(tokenId), ".json"));
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return uri;
    }

    function setBaseUri(string memory _uri) public onlyOwner {
        uri = _uri;
    }

    // Donations

    function donate() public payable {}

    // Wallets

    address payable geekchief =
        payable(0x91f328DF6D5866D544fBbe98F3F0b007a234951A);
    address payable shermo =
        payable(0x0c24f3EF0dD2d7C084432339AA673dDD5Ccf64F6);
    address payable samurai =
        payable(0xac4Bc126Ea4D2a1e2bE965f0811c3c51E1817F91);
    address payable prism = payable(0xfDC66caea47B17933561619a2DD326632Eda7884);
    address payable outrightInt =
        payable(0x9D5025B327E6B863E5050141C987d988c07fd8B2);
    address payable jewls = payable(0x9a335eBC75ce2529ECa60Fac10080758eE2ee9B0);
    address payable karan = payable(0xF088e27278A8542F35e5d0A2C986a65B234224b7);
    address payable danny = payable(0x09C36F0D824f030aCd52E1dC15a583b70508bbf0);
    address payable cryptophoenix =
        payable(0xb261F055621fb3D19b86CD87d499b5aD9a561115);
    address payable nftBoho =
        payable(0xfcFC32333E8E4A97F887489B488a242dFE2AdC5E);
    address payable codyfied =
        payable(0x74e95632Cfe531bc6f3376dD7749A1c582d8c1eD);
    address payable doGood =
        payable(0xEac96AB87066822542b2F8b5837F4965E0Ef4032);
    address payable mufasa =
        payable(0xf21df340812629D44264474d478be0215Ea60eb6);
    address payable benP = payable(0x10c5D48B6b4B64d2f6c5e58dFf55AaFaBdE17709);

    function divyDonations() public onlyOwner {
        uint256 _balance = address(this).balance;
        require(_balance > 0 ether);
        uint256 _balancePoint = _balance.div(100);
        geekchief.transfer(_balancePoint);
        jewls.transfer(_balancePoint.mul(4));
        nftBoho.transfer(_balancePoint.mul(4));
        codyfied.transfer(_balancePoint.mul(4));
        benP.transfer(_balancePoint.mul(5));
        cryptophoenix.transfer(_balancePoint.mul(5));
        danny.transfer(_balancePoint.mul(6));
        shermo.transfer(_balancePoint.mul(7));
        samurai.transfer(_balancePoint.mul(7));
        karan.transfer(_balancePoint.mul(7));
        mufasa.transfer(_balancePoint.mul(7));
        doGood.transfer(_balancePoint.mul(13));
        prism.transfer(_balancePoint.mul(15));
        outrightInt.transfer(_balancePoint.mul(15));
    }
}

File 2 of 14 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 3 of 14 : 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);
}

File 4 of 14 : 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 5 of 14 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 8 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 9 of 14 : 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 10 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 14 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @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);
}

File 13 of 14 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 14 of 14 : 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);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"_x","type":"address"}],"name":"addToPrideList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"adminPass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"divyDonations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"donate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"pridePass","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseUri","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":"switchToPublic","outputs":[],"stateMutability":"nonpayable","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"}]

60a06040526103e86007557fc742f076fd5c5e3f25bcbfbdefb6434ddb4a0ca57a05c6b3619b4b613ad11dfe60001b6080908152507391f328df6d5866d544fbbe98f3f0b007a234951a600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730c24f3ef0dd2d7c084432339aa673ddd5ccf64f6600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073ac4bc126ea4d2a1e2be965f0811c3c51e1817f91600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fdc66caea47b17933561619a2dd326632eda7884601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739d5025b327e6b863e5050141c987d988c07fd8b2601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739a335ebc75ce2529eca60fac10080758ee2ee9b0601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f088e27278a8542f35e5d0a2c986a65b234224b7601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507309c36f0d824f030acd52e1dc15a583b70508bbf0601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b261f055621fb3d19b86cd87d499b5ad9a561115601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fcfc32333e8e4a97f887489b488a242dfe2adc5e601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507374e95632cfe531bc6f3376dd7749a1c582d8c1ed601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073eac96ab87066822542b2f8b5837f4965e0ef4032601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f21df340812629d44264474d478be0215ea60eb6601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507310c5d48b6b4b64d2f6c5e58dff55aafabde17709601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620004e757600080fd5b506040518060400160405280600981526020017f50726964655061737300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f505249444500000000000000000000000000000000000000000000000000000081525081600090805190602001906200056c9291906200067c565b508060019080519060200190620005859291906200067c565b505050620005a86200059c620005ae60201b60201c565b620005b660201b60201c565b62000791565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200068a906200075b565b90600052602060002090601f016020900481019282620006ae5760008555620006fa565b82601f10620006c957805160ff1916838001178555620006fa565b82800160010185558215620006fa579182015b82811115620006f9578251825591602001919060010190620006dc565b5b5090506200070991906200070d565b5090565b5b80821115620007285760008160009055506001016200070e565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200077457607f821691505b602082108114156200078b576200078a6200072c565b5b50919050565b6080516140c6620007b46000396000818161095c0152611a7901526140c66000f3fe6080604052600436106101815760003560e01c80638da5cb5b116100d1578063bb6bd8d51161008a578063e985e9c511610064578063e985e9c514610544578063ebf0c71714610581578063ed88c68e146105ac578063f2fde38b146105b657610181565b8063bb6bd8d5146104c7578063c87b56dd146104de578063e72d70a51461051b57610181565b80638da5cb5b146103df5780638fd0aeb21461040a57806395d89b4114610421578063a0bcfc7f1461044c578063a22cb46514610475578063b88d4fde1461049e57610181565b806323b872dd1161013e5780636352211e116101185780636352211e1461032557806370a0823114610362578063715018a61461039f57806389583e02146103b657610181565b806323b872dd146102a857806333bc1c5c146102d157806342842e0e146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd146102545780631f7589af1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612a17565b6105df565b6040516101ba9190612a5f565b60405180910390f35b3480156101cf57600080fd5b506101d86106c1565b6040516101e59190612b13565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612b6b565b610753565b6040516102229190612bd9565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612c20565b6107d8565b005b34801561026057600080fd5b506102696108f0565b6040516102769190612c6f565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612cef565b6108f6565b005b3480156102b457600080fd5b506102cf60048036038101906102ca9190612d3c565b610bbd565b005b3480156102dd57600080fd5b506102e6610c1d565b6040516102f39190612a5f565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612d3c565b610c30565b005b34801561033157600080fd5b5061034c60048036038101906103479190612b6b565b610c50565b6040516103599190612bd9565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190612d8f565b610d02565b6040516103969190612c6f565b60405180910390f35b3480156103ab57600080fd5b506103b4610dba565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190612d8f565b610e42565b005b3480156103eb57600080fd5b506103f4610f19565b6040516104019190612bd9565b60405180910390f35b34801561041657600080fd5b5061041f610f43565b005b34801561042d57600080fd5b50610436610ff1565b6040516104439190612b13565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612eec565b611083565b005b34801561048157600080fd5b5061049c60048036038101906104979190612f61565b611119565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190613042565b61112f565b005b3480156104d357600080fd5b506104dc611191565b005b3480156104ea57600080fd5b5061050560048036038101906105009190612b6b565b6118f0565b6040516105129190612b13565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d91906130c5565b611924565b005b34801561055057600080fd5b5061056b60048036038101906105669190613105565b6119e3565b6040516105789190612a5f565b60405180910390f35b34801561058d57600080fd5b50610596611a77565b6040516105a3919061315e565b60405180910390f35b6105b4611a9b565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190612d8f565b611a9d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106aa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ba57506106b982611b95565b5b9050919050565b6060600080546106d0906131a8565b80601f01602080910402602001604051908101604052809291908181526020018280546106fc906131a8565b80156107495780601f1061071e57610100808354040283529160200191610749565b820191906000526020600020905b81548152906001019060200180831161072c57829003601f168201915b5050505050905090565b600061075e82611bff565b61079d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107949061324c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107e382610c50565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906132de565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610873611c6b565b73ffffffffffffffffffffffffffffffffffffffff1614806108a257506108a18161089c611c6b565b6119e3565b5b6108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890613370565b60405180910390fd5b6108eb8383611c73565b505050565b60075481565b818160011515600860009054906101000a900460ff16151514610a4d5760006109a7838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507f00000000000000000000000000000000000000000000000000000000000000003360405160200161098c91906133d8565b60405160208183030381529060405280519060200120611d2c565b9050600115158115151480610a0c575060011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a429061348b565b60405180910390fd5b505b60011515600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad8906134f7565b60405180910390fd5b600754610b016001610af3600c611d43565b611d5190919063ffffffff16565b1115610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b39906135af565b60405180910390fd5b610b4c600c611d67565b610b5f33610b5a600c611d43565b611d7d565b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b610bce610bc8611c6b565b82611f57565b610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490613641565b60405180910390fd5b610c18838383612035565b505050565b600860009054906101000a900460ff1681565b610c4b8383836040518060200160405280600081525061112f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf0906136d3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90613765565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc2611c6b565b73ffffffffffffffffffffffffffffffffffffffff16610de0610f19565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d906137d1565b60405180910390fd5b610e40600061229c565b565b610e4a611c6b565b73ffffffffffffffffffffffffffffffffffffffff16610e68610f19565b73ffffffffffffffffffffffffffffffffffffffff1614610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb5906137d1565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f4b611c6b565b73ffffffffffffffffffffffffffffffffffffffff16610f69610f19565b73ffffffffffffffffffffffffffffffffffffffff1614610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb6906137d1565b60405180910390fd5b6000600860009054906101000a900460ff1690508015600860006101000a81548160ff02191690831515021790555050565b606060018054611000906131a8565b80601f016020809104026020016040519081016040528092919081815260200182805461102c906131a8565b80156110795780601f1061104e57610100808354040283529160200191611079565b820191906000526020600020905b81548152906001019060200180831161105c57829003601f168201915b5050505050905090565b61108b611c6b565b73ffffffffffffffffffffffffffffffffffffffff166110a9610f19565b73ffffffffffffffffffffffffffffffffffffffff16146110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906137d1565b60405180910390fd5b8060099080519060200190611115929190612908565b5050565b61112b611124611c6b565b8383612362565b5050565b61114061113a611c6b565b83611f57565b61117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690613641565b60405180910390fd5b61118b848484846124cf565b50505050565b611199611c6b565b73ffffffffffffffffffffffffffffffffffffffff166111b7610f19565b73ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611204906137d1565b60405180910390fd5b60004790506000811161121f57600080fd5b600061123560648361252b90919063ffffffff16565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561129f573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6112f060048461254190919063ffffffff16565b9081150290604051600060405180830381858888f1935050505015801561131b573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61136c60048461254190919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611397573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6113e860048461254190919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611413573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61146460058461254190919063ffffffff16565b9081150290604051600060405180830381858888f1935050505015801561148f573d6000803e3d6000fd5b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6114e060058461254190919063ffffffff16565b9081150290604051600060405180830381858888f1935050505015801561150b573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61155c60068461254190919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611587573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6115d860078461254190919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611603573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61165460078461254190919063ffffffff16565b9081150290604051600060405180830381858888f1935050505015801561167f573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6116d060078461254190919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156116fb573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61174c60078461254190919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611777573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6117c8600d8461254190919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156117f3573d6000803e3d6000fd5b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc611844600f8461254190919063ffffffff16565b9081150290604051600060405180830381858888f1935050505015801561186f573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6118c0600f8461254190919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156118eb573d6000803e3d6000fd5b505050565b606060096118fd83612557565b60405160200161190e92919061390d565b6040516020818303038152906040529050919050565b61192c611c6b565b73ffffffffffffffffffffffffffffffffffffffff1661194a610f19565b73ffffffffffffffffffffffffffffffffffffffff16146119a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611997906137d1565b60405180910390fd5b60005b828160ff1610156119de576119b8600c611d67565b6119cb826119c6600c611d43565b611d7d565b80806119d690613978565b9150506119a3565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b565b611aa5611c6b565b73ffffffffffffffffffffffffffffffffffffffff16611ac3610f19565b73ffffffffffffffffffffffffffffffffffffffff1614611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b10906137d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8090613a14565b60405180910390fd5b611b928161229c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ce683610c50565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600082611d3985846126b8565b1490509392505050565b600081600001549050919050565b60008183611d5f9190613a34565b905092915050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490613ad6565b60405180910390fd5b611df681611bff565b15611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d90613b42565b60405180910390fd5b611e426000838361272d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e929190613a34565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f5360008383612732565b5050565b6000611f6282611bff565b611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890613bd4565b60405180910390fd5b6000611fac83610c50565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fee5750611fed81856119e3565b5b8061202c57508373ffffffffffffffffffffffffffffffffffffffff1661201484610753565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205582610c50565b73ffffffffffffffffffffffffffffffffffffffff16146120ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a290613c66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561211b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211290613cf8565b60405180910390fd5b61212683838361272d565b612131600082611c73565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121819190613d18565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d89190613a34565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612297838383612732565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c890613d98565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124c29190612a5f565b60405180910390a3505050565b6124da848484612035565b6124e684848484612737565b612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90613e2a565b60405180910390fd5b50505050565b600081836125399190613e79565b905092915050565b6000818361254f9190613eaa565b905092915050565b6060600082141561259f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126b3565b600082905060005b600082146125d15780806125ba90613f04565b915050600a826125ca9190613e79565b91506125a7565b60008167ffffffffffffffff8111156125ed576125ec612dc1565b5b6040519080825280601f01601f19166020018201604052801561261f5781602001600182028036833780820191505090505b5090505b600085146126ac576001826126389190613d18565b9150600a856126479190613f4d565b60306126539190613a34565b60f81b81838151811061266957612668613f7e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126a59190613e79565b9450612623565b8093505050505b919050565b60008082905060005b84518110156127225760008582815181106126df576126de613f7e565b5b60200260200101519050808311612701576126fa83826128ce565b925061270e565b61270b81846128ce565b92505b50808061271a90613f04565b9150506126c1565b508091505092915050565b505050565b505050565b60006127588473ffffffffffffffffffffffffffffffffffffffff166128e5565b156128c1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612781611c6b565b8786866040518563ffffffff1660e01b81526004016127a39493929190614002565b602060405180830381600087803b1580156127bd57600080fd5b505af19250505080156127ee57506040513d601f19601f820116820180604052508101906127eb9190614063565b60015b612871573d806000811461281e576040519150601f19603f3d011682016040523d82523d6000602084013e612823565b606091505b50600081511415612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090613e2a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128c6565b600190505b949350505050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612914906131a8565b90600052602060002090601f016020900481019282612936576000855561297d565b82601f1061294f57805160ff191683800117855561297d565b8280016001018555821561297d579182015b8281111561297c578251825591602001919060010190612961565b5b50905061298a919061298e565b5090565b5b808211156129a757600081600090555060010161298f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129f4816129bf565b81146129ff57600080fd5b50565b600081359050612a11816129eb565b92915050565b600060208284031215612a2d57612a2c6129b5565b5b6000612a3b84828501612a02565b91505092915050565b60008115159050919050565b612a5981612a44565b82525050565b6000602082019050612a746000830184612a50565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ab4578082015181840152602081019050612a99565b83811115612ac3576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ae582612a7a565b612aef8185612a85565b9350612aff818560208601612a96565b612b0881612ac9565b840191505092915050565b60006020820190508181036000830152612b2d8184612ada565b905092915050565b6000819050919050565b612b4881612b35565b8114612b5357600080fd5b50565b600081359050612b6581612b3f565b92915050565b600060208284031215612b8157612b806129b5565b5b6000612b8f84828501612b56565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bc382612b98565b9050919050565b612bd381612bb8565b82525050565b6000602082019050612bee6000830184612bca565b92915050565b612bfd81612bb8565b8114612c0857600080fd5b50565b600081359050612c1a81612bf4565b92915050565b60008060408385031215612c3757612c366129b5565b5b6000612c4585828601612c0b565b9250506020612c5685828601612b56565b9150509250929050565b612c6981612b35565b82525050565b6000602082019050612c846000830184612c60565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612caf57612cae612c8a565b5b8235905067ffffffffffffffff811115612ccc57612ccb612c8f565b5b602083019150836020820283011115612ce857612ce7612c94565b5b9250929050565b60008060208385031215612d0657612d056129b5565b5b600083013567ffffffffffffffff811115612d2457612d236129ba565b5b612d3085828601612c99565b92509250509250929050565b600080600060608486031215612d5557612d546129b5565b5b6000612d6386828701612c0b565b9350506020612d7486828701612c0b565b9250506040612d8586828701612b56565b9150509250925092565b600060208284031215612da557612da46129b5565b5b6000612db384828501612c0b565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612df982612ac9565b810181811067ffffffffffffffff82111715612e1857612e17612dc1565b5b80604052505050565b6000612e2b6129ab565b9050612e378282612df0565b919050565b600067ffffffffffffffff821115612e5757612e56612dc1565b5b612e6082612ac9565b9050602081019050919050565b82818337600083830152505050565b6000612e8f612e8a84612e3c565b612e21565b905082815260208101848484011115612eab57612eaa612dbc565b5b612eb6848285612e6d565b509392505050565b600082601f830112612ed357612ed2612c8a565b5b8135612ee3848260208601612e7c565b91505092915050565b600060208284031215612f0257612f016129b5565b5b600082013567ffffffffffffffff811115612f2057612f1f6129ba565b5b612f2c84828501612ebe565b91505092915050565b612f3e81612a44565b8114612f4957600080fd5b50565b600081359050612f5b81612f35565b92915050565b60008060408385031215612f7857612f776129b5565b5b6000612f8685828601612c0b565b9250506020612f9785828601612f4c565b9150509250929050565b600067ffffffffffffffff821115612fbc57612fbb612dc1565b5b612fc582612ac9565b9050602081019050919050565b6000612fe5612fe084612fa1565b612e21565b90508281526020810184848401111561300157613000612dbc565b5b61300c848285612e6d565b509392505050565b600082601f83011261302957613028612c8a565b5b8135613039848260208601612fd2565b91505092915050565b6000806000806080858703121561305c5761305b6129b5565b5b600061306a87828801612c0b565b945050602061307b87828801612c0b565b935050604061308c87828801612b56565b925050606085013567ffffffffffffffff8111156130ad576130ac6129ba565b5b6130b987828801613014565b91505092959194509250565b600080604083850312156130dc576130db6129b5565b5b60006130ea85828601612b56565b92505060206130fb85828601612c0b565b9150509250929050565b6000806040838503121561311c5761311b6129b5565b5b600061312a85828601612c0b565b925050602061313b85828601612c0b565b9150509250929050565b6000819050919050565b61315881613145565b82525050565b6000602082019050613173600083018461314f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131c057607f821691505b602082108114156131d4576131d3613179565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613236602c83612a85565b9150613241826131da565b604082019050919050565b6000602082019050818103600083015261326581613229565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006132c8602183612a85565b91506132d38261326c565b604082019050919050565b600060208201905081810360008301526132f7816132bb565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061335a603883612a85565b9150613365826132fe565b604082019050919050565b600060208201905081810360008301526133898161334d565b9050919050565b60008160601b9050919050565b60006133a882613390565b9050919050565b60006133ba8261339d565b9050919050565b6133d26133cd82612bb8565b6133af565b82525050565b60006133e482846133c1565b60148201915081905092915050565b7f536f7272792074686520636f6e6e65637465642077616c6c6574206973206e6f60008201527f7420656c696769626c6520666f7220612070726976617465207072696465207060208201527f6173732e00000000000000000000000000000000000000000000000000000000604082015250565b6000613475604483612a85565b9150613480826133f3565b606082019050919050565b600060208201905081810360008301526134a481613468565b9050919050565b7f5061737320616c726561647920636c61696d65642e0000000000000000000000600082015250565b60006134e1601583612a85565b91506134ec826134ab565b602082019050919050565b60006020820190508181036000830152613510816134d4565b9050919050565b7f546f74616c20537570706c792045786365656465642e20537461792074756e6560008201527f6420666f72206d6f726520446f20476f6f6420416c7068612070726f6a65637460208201527f7321000000000000000000000000000000000000000000000000000000000000604082015250565b6000613599604283612a85565b91506135a482613517565b606082019050919050565b600060208201905081810360008301526135c88161358c565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061362b603183612a85565b9150613636826135cf565b604082019050919050565b6000602082019050818103600083015261365a8161361e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006136bd602983612a85565b91506136c882613661565b604082019050919050565b600060208201905081810360008301526136ec816136b0565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061374f602a83612a85565b915061375a826136f3565b604082019050919050565b6000602082019050818103600083015261377e81613742565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137bb602083612a85565b91506137c682613785565b602082019050919050565b600060208201905081810360008301526137ea816137ae565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461381e816131a8565b61382881866137f1565b94506001821660008114613843576001811461385457613887565b60ff19831686528186019350613887565b61385d856137fc565b60005b8381101561387f57815481890152600182019150602081019050613860565b838801955050505b50505092915050565b600061389b82612a7a565b6138a581856137f1565b93506138b5818560208601612a96565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138f76005836137f1565b9150613902826138c1565b600582019050919050565b60006139198285613811565b91506139258284613890565b9150613930826138ea565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600060ff82169050919050565b60006139838261396b565b915060ff8214156139975761399661393c565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139fe602683612a85565b9150613a09826139a2565b604082019050919050565b60006020820190508181036000830152613a2d816139f1565b9050919050565b6000613a3f82612b35565b9150613a4a83612b35565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a7f57613a7e61393c565b5b828201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ac0602083612a85565b9150613acb82613a8a565b602082019050919050565b60006020820190508181036000830152613aef81613ab3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613b2c601c83612a85565b9150613b3782613af6565b602082019050919050565b60006020820190508181036000830152613b5b81613b1f565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613bbe602c83612a85565b9150613bc982613b62565b604082019050919050565b60006020820190508181036000830152613bed81613bb1565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613c50602583612a85565b9150613c5b82613bf4565b604082019050919050565b60006020820190508181036000830152613c7f81613c43565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ce2602483612a85565b9150613ced82613c86565b604082019050919050565b60006020820190508181036000830152613d1181613cd5565b9050919050565b6000613d2382612b35565b9150613d2e83612b35565b925082821015613d4157613d4061393c565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d82601983612a85565b9150613d8d82613d4c565b602082019050919050565b60006020820190508181036000830152613db181613d75565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613e14603283612a85565b9150613e1f82613db8565b604082019050919050565b60006020820190508181036000830152613e4381613e07565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e8482612b35565b9150613e8f83612b35565b925082613e9f57613e9e613e4a565b5b828204905092915050565b6000613eb582612b35565b9150613ec083612b35565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ef957613ef861393c565b5b828202905092915050565b6000613f0f82612b35565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4257613f4161393c565b5b600182019050919050565b6000613f5882612b35565b9150613f6383612b35565b925082613f7357613f72613e4a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613fd482613fad565b613fde8185613fb8565b9350613fee818560208601612a96565b613ff781612ac9565b840191505092915050565b60006080820190506140176000830187612bca565b6140246020830186612bca565b6140316040830185612c60565b81810360608301526140438184613fc9565b905095945050505050565b60008151905061405d816129eb565b92915050565b600060208284031215614079576140786129b5565b5b60006140878482850161404e565b9150509291505056fea2646970667358221220370edc0825dfe319397a7558d96be982e650840a3797260c1ba70e6823684e3664736f6c63430008090033

Deployed Bytecode

0x6080604052600436106101815760003560e01c80638da5cb5b116100d1578063bb6bd8d51161008a578063e985e9c511610064578063e985e9c514610544578063ebf0c71714610581578063ed88c68e146105ac578063f2fde38b146105b657610181565b8063bb6bd8d5146104c7578063c87b56dd146104de578063e72d70a51461051b57610181565b80638da5cb5b146103df5780638fd0aeb21461040a57806395d89b4114610421578063a0bcfc7f1461044c578063a22cb46514610475578063b88d4fde1461049e57610181565b806323b872dd1161013e5780636352211e116101185780636352211e1461032557806370a0823114610362578063715018a61461039f57806389583e02146103b657610181565b806323b872dd146102a857806333bc1c5c146102d157806342842e0e146102fc57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd146102545780631f7589af1461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612a17565b6105df565b6040516101ba9190612a5f565b60405180910390f35b3480156101cf57600080fd5b506101d86106c1565b6040516101e59190612b13565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612b6b565b610753565b6040516102229190612bd9565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612c20565b6107d8565b005b34801561026057600080fd5b506102696108f0565b6040516102769190612c6f565b60405180910390f35b34801561028b57600080fd5b506102a660048036038101906102a19190612cef565b6108f6565b005b3480156102b457600080fd5b506102cf60048036038101906102ca9190612d3c565b610bbd565b005b3480156102dd57600080fd5b506102e6610c1d565b6040516102f39190612a5f565b60405180910390f35b34801561030857600080fd5b50610323600480360381019061031e9190612d3c565b610c30565b005b34801561033157600080fd5b5061034c60048036038101906103479190612b6b565b610c50565b6040516103599190612bd9565b60405180910390f35b34801561036e57600080fd5b5061038960048036038101906103849190612d8f565b610d02565b6040516103969190612c6f565b60405180910390f35b3480156103ab57600080fd5b506103b4610dba565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190612d8f565b610e42565b005b3480156103eb57600080fd5b506103f4610f19565b6040516104019190612bd9565b60405180910390f35b34801561041657600080fd5b5061041f610f43565b005b34801561042d57600080fd5b50610436610ff1565b6040516104439190612b13565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e9190612eec565b611083565b005b34801561048157600080fd5b5061049c60048036038101906104979190612f61565b611119565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190613042565b61112f565b005b3480156104d357600080fd5b506104dc611191565b005b3480156104ea57600080fd5b5061050560048036038101906105009190612b6b565b6118f0565b6040516105129190612b13565b60405180910390f35b34801561052757600080fd5b50610542600480360381019061053d91906130c5565b611924565b005b34801561055057600080fd5b5061056b60048036038101906105669190613105565b6119e3565b6040516105789190612a5f565b60405180910390f35b34801561058d57600080fd5b50610596611a77565b6040516105a3919061315e565b60405180910390f35b6105b4611a9b565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190612d8f565b611a9d565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106aa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106ba57506106b982611b95565b5b9050919050565b6060600080546106d0906131a8565b80601f01602080910402602001604051908101604052809291908181526020018280546106fc906131a8565b80156107495780601f1061071e57610100808354040283529160200191610749565b820191906000526020600020905b81548152906001019060200180831161072c57829003601f168201915b5050505050905090565b600061075e82611bff565b61079d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107949061324c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006107e382610c50565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610854576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084b906132de565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610873611c6b565b73ffffffffffffffffffffffffffffffffffffffff1614806108a257506108a18161089c611c6b565b6119e3565b5b6108e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108d890613370565b60405180910390fd5b6108eb8383611c73565b505050565b60075481565b818160011515600860009054906101000a900460ff16151514610a4d5760006109a7838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050507fc742f076fd5c5e3f25bcbfbdefb6434ddb4a0ca57a05c6b3619b4b613ad11dfe3360405160200161098c91906133d8565b60405160208183030381529060405280519060200120611d2c565b9050600115158115151480610a0c575060011515600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b610a4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a429061348b565b60405180910390fd5b505b60011515600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615151415610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad8906134f7565b60405180910390fd5b600754610b016001610af3600c611d43565b611d5190919063ffffffff16565b1115610b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b39906135af565b60405180910390fd5b610b4c600c611d67565b610b5f33610b5a600c611d43565b611d7d565b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050505050565b610bce610bc8611c6b565b82611f57565b610c0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0490613641565b60405180910390fd5b610c18838383612035565b505050565b600860009054906101000a900460ff1681565b610c4b8383836040518060200160405280600081525061112f565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610cf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf0906136d3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6a90613765565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610dc2611c6b565b73ffffffffffffffffffffffffffffffffffffffff16610de0610f19565b73ffffffffffffffffffffffffffffffffffffffff1614610e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2d906137d1565b60405180910390fd5b610e40600061229c565b565b610e4a611c6b565b73ffffffffffffffffffffffffffffffffffffffff16610e68610f19565b73ffffffffffffffffffffffffffffffffffffffff1614610ebe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb5906137d1565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f4b611c6b565b73ffffffffffffffffffffffffffffffffffffffff16610f69610f19565b73ffffffffffffffffffffffffffffffffffffffff1614610fbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb6906137d1565b60405180910390fd5b6000600860009054906101000a900460ff1690508015600860006101000a81548160ff02191690831515021790555050565b606060018054611000906131a8565b80601f016020809104026020016040519081016040528092919081815260200182805461102c906131a8565b80156110795780601f1061104e57610100808354040283529160200191611079565b820191906000526020600020905b81548152906001019060200180831161105c57829003601f168201915b5050505050905090565b61108b611c6b565b73ffffffffffffffffffffffffffffffffffffffff166110a9610f19565b73ffffffffffffffffffffffffffffffffffffffff16146110ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f6906137d1565b60405180910390fd5b8060099080519060200190611115929190612908565b5050565b61112b611124611c6b565b8383612362565b5050565b61114061113a611c6b565b83611f57565b61117f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117690613641565b60405180910390fd5b61118b848484846124cf565b50505050565b611199611c6b565b73ffffffffffffffffffffffffffffffffffffffff166111b7610f19565b73ffffffffffffffffffffffffffffffffffffffff161461120d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611204906137d1565b60405180910390fd5b60004790506000811161121f57600080fd5b600061123560648361252b90919063ffffffff16565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561129f573d6000803e3d6000fd5b50601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6112f060048461254190919063ffffffff16565b9081150290604051600060405180830381858888f1935050505015801561131b573d6000803e3d6000fd5b50601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61136c60048461254190919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611397573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6113e860048461254190919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611413573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61146460058461254190919063ffffffff16565b9081150290604051600060405180830381858888f1935050505015801561148f573d6000803e3d6000fd5b50601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6114e060058461254190919063ffffffff16565b9081150290604051600060405180830381858888f1935050505015801561150b573d6000803e3d6000fd5b50601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61155c60068461254190919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611587573d6000803e3d6000fd5b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6115d860078461254190919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611603573d6000803e3d6000fd5b50600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61165460078461254190919063ffffffff16565b9081150290604051600060405180830381858888f1935050505015801561167f573d6000803e3d6000fd5b50601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6116d060078461254190919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156116fb573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61174c60078461254190919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611777573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6117c8600d8461254190919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156117f3573d6000803e3d6000fd5b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc611844600f8461254190919063ffffffff16565b9081150290604051600060405180830381858888f1935050505015801561186f573d6000803e3d6000fd5b50601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6118c0600f8461254190919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156118eb573d6000803e3d6000fd5b505050565b606060096118fd83612557565b60405160200161190e92919061390d565b6040516020818303038152906040529050919050565b61192c611c6b565b73ffffffffffffffffffffffffffffffffffffffff1661194a610f19565b73ffffffffffffffffffffffffffffffffffffffff16146119a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611997906137d1565b60405180910390fd5b60005b828160ff1610156119de576119b8600c611d67565b6119cb826119c6600c611d43565b611d7d565b80806119d690613978565b9150506119a3565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b7fc742f076fd5c5e3f25bcbfbdefb6434ddb4a0ca57a05c6b3619b4b613ad11dfe81565b565b611aa5611c6b565b73ffffffffffffffffffffffffffffffffffffffff16611ac3610f19565b73ffffffffffffffffffffffffffffffffffffffff1614611b19576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b10906137d1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8090613a14565b60405180910390fd5b611b928161229c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ce683610c50565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600082611d3985846126b8565b1490509392505050565b600081600001549050919050565b60008183611d5f9190613a34565b905092915050565b6001816000016000828254019250508190555050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490613ad6565b60405180910390fd5b611df681611bff565b15611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d90613b42565b60405180910390fd5b611e426000838361272d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e929190613a34565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f5360008383612732565b5050565b6000611f6282611bff565b611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9890613bd4565b60405180910390fd5b6000611fac83610c50565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fee5750611fed81856119e3565b5b8061202c57508373ffffffffffffffffffffffffffffffffffffffff1661201484610753565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661205582610c50565b73ffffffffffffffffffffffffffffffffffffffff16146120ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a290613c66565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561211b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211290613cf8565b60405180910390fd5b61212683838361272d565b612131600082611c73565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121819190613d18565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121d89190613a34565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612297838383612732565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c890613d98565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124c29190612a5f565b60405180910390a3505050565b6124da848484612035565b6124e684848484612737565b612525576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251c90613e2a565b60405180910390fd5b50505050565b600081836125399190613e79565b905092915050565b6000818361254f9190613eaa565b905092915050565b6060600082141561259f576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126b3565b600082905060005b600082146125d15780806125ba90613f04565b915050600a826125ca9190613e79565b91506125a7565b60008167ffffffffffffffff8111156125ed576125ec612dc1565b5b6040519080825280601f01601f19166020018201604052801561261f5781602001600182028036833780820191505090505b5090505b600085146126ac576001826126389190613d18565b9150600a856126479190613f4d565b60306126539190613a34565b60f81b81838151811061266957612668613f7e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126a59190613e79565b9450612623565b8093505050505b919050565b60008082905060005b84518110156127225760008582815181106126df576126de613f7e565b5b60200260200101519050808311612701576126fa83826128ce565b925061270e565b61270b81846128ce565b92505b50808061271a90613f04565b9150506126c1565b508091505092915050565b505050565b505050565b60006127588473ffffffffffffffffffffffffffffffffffffffff166128e5565b156128c1578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612781611c6b565b8786866040518563ffffffff1660e01b81526004016127a39493929190614002565b602060405180830381600087803b1580156127bd57600080fd5b505af19250505080156127ee57506040513d601f19601f820116820180604052508101906127eb9190614063565b60015b612871573d806000811461281e576040519150601f19603f3d011682016040523d82523d6000602084013e612823565b606091505b50600081511415612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090613e2a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506128c6565b600190505b949350505050565b600082600052816020526040600020905092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612914906131a8565b90600052602060002090601f016020900481019282612936576000855561297d565b82601f1061294f57805160ff191683800117855561297d565b8280016001018555821561297d579182015b8281111561297c578251825591602001919060010190612961565b5b50905061298a919061298e565b5090565b5b808211156129a757600081600090555060010161298f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6129f4816129bf565b81146129ff57600080fd5b50565b600081359050612a11816129eb565b92915050565b600060208284031215612a2d57612a2c6129b5565b5b6000612a3b84828501612a02565b91505092915050565b60008115159050919050565b612a5981612a44565b82525050565b6000602082019050612a746000830184612a50565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612ab4578082015181840152602081019050612a99565b83811115612ac3576000848401525b50505050565b6000601f19601f8301169050919050565b6000612ae582612a7a565b612aef8185612a85565b9350612aff818560208601612a96565b612b0881612ac9565b840191505092915050565b60006020820190508181036000830152612b2d8184612ada565b905092915050565b6000819050919050565b612b4881612b35565b8114612b5357600080fd5b50565b600081359050612b6581612b3f565b92915050565b600060208284031215612b8157612b806129b5565b5b6000612b8f84828501612b56565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612bc382612b98565b9050919050565b612bd381612bb8565b82525050565b6000602082019050612bee6000830184612bca565b92915050565b612bfd81612bb8565b8114612c0857600080fd5b50565b600081359050612c1a81612bf4565b92915050565b60008060408385031215612c3757612c366129b5565b5b6000612c4585828601612c0b565b9250506020612c5685828601612b56565b9150509250929050565b612c6981612b35565b82525050565b6000602082019050612c846000830184612c60565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612caf57612cae612c8a565b5b8235905067ffffffffffffffff811115612ccc57612ccb612c8f565b5b602083019150836020820283011115612ce857612ce7612c94565b5b9250929050565b60008060208385031215612d0657612d056129b5565b5b600083013567ffffffffffffffff811115612d2457612d236129ba565b5b612d3085828601612c99565b92509250509250929050565b600080600060608486031215612d5557612d546129b5565b5b6000612d6386828701612c0b565b9350506020612d7486828701612c0b565b9250506040612d8586828701612b56565b9150509250925092565b600060208284031215612da557612da46129b5565b5b6000612db384828501612c0b565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612df982612ac9565b810181811067ffffffffffffffff82111715612e1857612e17612dc1565b5b80604052505050565b6000612e2b6129ab565b9050612e378282612df0565b919050565b600067ffffffffffffffff821115612e5757612e56612dc1565b5b612e6082612ac9565b9050602081019050919050565b82818337600083830152505050565b6000612e8f612e8a84612e3c565b612e21565b905082815260208101848484011115612eab57612eaa612dbc565b5b612eb6848285612e6d565b509392505050565b600082601f830112612ed357612ed2612c8a565b5b8135612ee3848260208601612e7c565b91505092915050565b600060208284031215612f0257612f016129b5565b5b600082013567ffffffffffffffff811115612f2057612f1f6129ba565b5b612f2c84828501612ebe565b91505092915050565b612f3e81612a44565b8114612f4957600080fd5b50565b600081359050612f5b81612f35565b92915050565b60008060408385031215612f7857612f776129b5565b5b6000612f8685828601612c0b565b9250506020612f9785828601612f4c565b9150509250929050565b600067ffffffffffffffff821115612fbc57612fbb612dc1565b5b612fc582612ac9565b9050602081019050919050565b6000612fe5612fe084612fa1565b612e21565b90508281526020810184848401111561300157613000612dbc565b5b61300c848285612e6d565b509392505050565b600082601f83011261302957613028612c8a565b5b8135613039848260208601612fd2565b91505092915050565b6000806000806080858703121561305c5761305b6129b5565b5b600061306a87828801612c0b565b945050602061307b87828801612c0b565b935050604061308c87828801612b56565b925050606085013567ffffffffffffffff8111156130ad576130ac6129ba565b5b6130b987828801613014565b91505092959194509250565b600080604083850312156130dc576130db6129b5565b5b60006130ea85828601612b56565b92505060206130fb85828601612c0b565b9150509250929050565b6000806040838503121561311c5761311b6129b5565b5b600061312a85828601612c0b565b925050602061313b85828601612c0b565b9150509250929050565b6000819050919050565b61315881613145565b82525050565b6000602082019050613173600083018461314f565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806131c057607f821691505b602082108114156131d4576131d3613179565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613236602c83612a85565b9150613241826131da565b604082019050919050565b6000602082019050818103600083015261326581613229565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006132c8602183612a85565b91506132d38261326c565b604082019050919050565b600060208201905081810360008301526132f7816132bb565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061335a603883612a85565b9150613365826132fe565b604082019050919050565b600060208201905081810360008301526133898161334d565b9050919050565b60008160601b9050919050565b60006133a882613390565b9050919050565b60006133ba8261339d565b9050919050565b6133d26133cd82612bb8565b6133af565b82525050565b60006133e482846133c1565b60148201915081905092915050565b7f536f7272792074686520636f6e6e65637465642077616c6c6574206973206e6f60008201527f7420656c696769626c6520666f7220612070726976617465207072696465207060208201527f6173732e00000000000000000000000000000000000000000000000000000000604082015250565b6000613475604483612a85565b9150613480826133f3565b606082019050919050565b600060208201905081810360008301526134a481613468565b9050919050565b7f5061737320616c726561647920636c61696d65642e0000000000000000000000600082015250565b60006134e1601583612a85565b91506134ec826134ab565b602082019050919050565b60006020820190508181036000830152613510816134d4565b9050919050565b7f546f74616c20537570706c792045786365656465642e20537461792074756e6560008201527f6420666f72206d6f726520446f20476f6f6420416c7068612070726f6a65637460208201527f7321000000000000000000000000000000000000000000000000000000000000604082015250565b6000613599604283612a85565b91506135a482613517565b606082019050919050565b600060208201905081810360008301526135c88161358c565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061362b603183612a85565b9150613636826135cf565b604082019050919050565b6000602082019050818103600083015261365a8161361e565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006136bd602983612a85565b91506136c882613661565b604082019050919050565b600060208201905081810360008301526136ec816136b0565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b600061374f602a83612a85565b915061375a826136f3565b604082019050919050565b6000602082019050818103600083015261377e81613742565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006137bb602083612a85565b91506137c682613785565b602082019050919050565b600060208201905081810360008301526137ea816137ae565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461381e816131a8565b61382881866137f1565b94506001821660008114613843576001811461385457613887565b60ff19831686528186019350613887565b61385d856137fc565b60005b8381101561387f57815481890152600182019150602081019050613860565b838801955050505b50505092915050565b600061389b82612a7a565b6138a581856137f1565b93506138b5818560208601612a96565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006138f76005836137f1565b9150613902826138c1565b600582019050919050565b60006139198285613811565b91506139258284613890565b9150613930826138ea565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600060ff82169050919050565b60006139838261396b565b915060ff8214156139975761399661393c565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006139fe602683612a85565b9150613a09826139a2565b604082019050919050565b60006020820190508181036000830152613a2d816139f1565b9050919050565b6000613a3f82612b35565b9150613a4a83612b35565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a7f57613a7e61393c565b5b828201905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000613ac0602083612a85565b9150613acb82613a8a565b602082019050919050565b60006020820190508181036000830152613aef81613ab3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613b2c601c83612a85565b9150613b3782613af6565b602082019050919050565b60006020820190508181036000830152613b5b81613b1f565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613bbe602c83612a85565b9150613bc982613b62565b604082019050919050565b60006020820190508181036000830152613bed81613bb1565b9050919050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000613c50602583612a85565b9150613c5b82613bf4565b604082019050919050565b60006020820190508181036000830152613c7f81613c43565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000613ce2602483612a85565b9150613ced82613c86565b604082019050919050565b60006020820190508181036000830152613d1181613cd5565b9050919050565b6000613d2382612b35565b9150613d2e83612b35565b925082821015613d4157613d4061393c565b5b828203905092915050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000613d82601983612a85565b9150613d8d82613d4c565b602082019050919050565b60006020820190508181036000830152613db181613d75565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000613e14603283612a85565b9150613e1f82613db8565b604082019050919050565b60006020820190508181036000830152613e4381613e07565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613e8482612b35565b9150613e8f83612b35565b925082613e9f57613e9e613e4a565b5b828204905092915050565b6000613eb582612b35565b9150613ec083612b35565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613ef957613ef861393c565b5b828202905092915050565b6000613f0f82612b35565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f4257613f4161393c565b5b600182019050919050565b6000613f5882612b35565b9150613f6383612b35565b925082613f7357613f72613e4a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000613fd482613fad565b613fde8185613fb8565b9350613fee818560208601612a96565b613ff781612ac9565b840191505092915050565b60006080820190506140176000830187612bca565b6140246020830186612bca565b6140316040830185612c60565b81810360608301526140438184613fc9565b905095945050505050565b60008151905061405d816129eb565b92915050565b600060208284031215614079576140786129b5565b5b60006140878482850161404e565b9150509291505056fea2646970667358221220370edc0825dfe319397a7558d96be982e650840a3797260c1ba70e6823684e3664736f6c63430008090033

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.