ETH Price: $3,363.64 (-1.55%)
Gas: 6 Gwei

Token

Dippies (DIPPIES)
 

Overview

Max Total Supply

8,888 DIPPIES

Holders

5,059

Market

Volume (24H)

0.0094 ETH

Min Price (24H)

$31.61 @ 0.009399 ETH

Max Price (24H)

$31.61 @ 0.009399 ETH

Other Info

Balance
1 DIPPIES
0xAe072046758A5999e8B55995F463b4FfB039738b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Funk, meet web 3. A collection of 8,888 unique digital hippies that are building the new free world before our eyes.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Dippies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : Dippies.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";
import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol";

contract Dippies is ERC721A, Ownable, VRFConsumerBase {
    using Strings for uint256;

    enum Status { SALE_NOT_LIVE, PRESALE_LIVE, SALE_LIVE }

    uint256 public constant SUPPLY_MAX = 8888;
    uint256 public constant PRESALE_MAX = 4394;
    uint256 public constant RESERVE_MAX = 100;
    uint256 public constant PRICE = 0.06 ether;
    
    Status public state;
    bool public revealed;
    string public baseURI;
    string public provenance;
    uint256 public offset;

    uint256 private _reservedTeamTokens;
    address private _signer = 0xe93f0858AC8DE80197BE29af2113DddA86860091;
    address private _linkToken = 0x514910771AF9Ca656af840dff83E8264EcF986CA;
    address private _vrfAddress = 0xf0d54349aDdcf704F77AE15b96510dEA15cb7952;
    bytes32 internal _keyHash = 0xAA77729D3466CA35AE8D28B3BBAC7CC36A5031EFDC430821C02BC31A238AF445;
    uint256 private _fee = 2 ether;
    mapping(bytes32 => bool) _nonceUsed;
 
    constructor() ERC721A("Dippies", "DIPPIES") VRFConsumerBase(_vrfAddress, _linkToken) {
        _safeMint(address(this), 1);
        _burn(0);
    }

    function reserveTeamTokens(address to, uint256 quantity) external onlyOwner {
        require(_reservedTeamTokens + quantity <= RESERVE_MAX, "Dippies: Team Tokens Already Minted");
        _reservedTeamTokens += quantity;
        _safeMint(to, quantity);
    }

    function mint(uint256 quantity, bytes calldata signature, bytes32 nonce) external payable {
        require((state == Status.SALE_LIVE || state == Status.PRESALE_LIVE), "Dippies: Sale Not Live");
        require(msg.sender == tx.origin, "Dippies: Contract Interaction Not Allowed");
        require(ECDSA.recover(keccak256(abi.encodePacked(msg.sender, quantity, state, nonce)), signature) == _signer, "Dippies: Invalid Signer");
        require(totalSupply() + quantity <= SUPPLY_MAX, "Dippies: Exceed Max Supply");
        require(quantity <= 2, "Dippies: Exceeds Max Per TX");
        require(msg.value >= PRICE * quantity, "Dippies: Insufficient ETH");

        if(state == Status.PRESALE_LIVE) {
            require(_numberMinted(msg.sender) + quantity <= 2, "Dippies: Exceeds Max Per Wallet");
        } else {
            require(!_nonceUsed[nonce], "Dippies: Nonce Used");
            _nonceUsed[nonce] = true;
        }
        
        _safeMint(msg.sender, quantity);
    }

    function setSaleState(Status _state) external onlyOwner {
        state = _state;
    }

    function setProvenanceHash(string memory _provenance) external onlyOwner {
        require(bytes(provenance).length == 0);
        provenance = _provenance;
    }

    function updateBaseURI(string memory newURI, bool reveal) external onlyOwner {
        baseURI = newURI;
        if(reveal) {
            revealed = reveal;
        }
    }

    function setLinkParams(uint256 fee, bytes32 keyhash) external onlyOwner {
        _fee = fee;
        _keyHash = keyhash;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(0x1fcEFF7E5Ebeb91adf2465e703Fc3f35c3cc7dF4).transfer(balance * 157 / 400);
        payable(0x3428baB379a1D3091653938338d4BBB8b4B07547).transfer(balance * 157 / 400);
        payable(0x1E76a475d10f3CFEd086c238e12017e5565b09ce).transfer(balance * 34 / 400);
        payable(0xaAA217e121433F6482f78371910930FC1AcA226b).transfer(balance * 8 / 400);
        payable(0xEFae49Bd1D8A16F88F190B0464626030c3966126).transfer(balance * 4 / 400);
        payable(0x2795033F658E8E2a8DeB1A28C7c65d743aA3154C).transfer(balance * 20 / 400);
        payable(0x0fa34a4aAf07D86881046B49789dECe58c861729).transfer(address(this).balance);
    }

    function setSigner(address signer) external onlyOwner {
        _signer = signer;
    }

    function setOffset() external onlyOwner returns (bytes32 requestId) {
        require(offset == 0, "Dippies: Offset Already Declared");
        return requestRandomness(_keyHash, _fee);
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        if (!revealed) return _baseURI();
        uint256 shiftedTokenId = (tokenId + offset) % SUPPLY_MAX;
        return string(abi.encodePacked(_baseURI(), shiftedTokenId.toString()));
    }

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

    function fulfillRandomness(bytes32 requestId, uint256 randomness) internal override
    {
        require(!revealed);
        offset = randomness % SUPPLY_MAX;
    }
}

File 2 of 16 : VRFConsumerBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./interfaces/LinkTokenInterface.sol";

import "./VRFRequestIDBase.sol";

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constructor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.)
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request.
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {
  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBase expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
  function fulfillRandomness(bytes32 requestId, uint256 randomness) internal virtual;

  /**
   * @dev In order to keep backwards compatibility we have kept the user
   * seed field around. We remove the use of it because given that the blockhash
   * enters later, it overrides whatever randomness the used seed provides.
   * Given that it adds no security, and can easily lead to misunderstandings,
   * we have removed it from usage and can now provide a simpler API.
   */
  uint256 private constant USER_SEED_PLACEHOLDER = 0;

  /**
   * @notice requestRandomness initiates a request for VRF output given _seed
   *
   * @dev The fulfillRandomness method receives the output, once it's provided
   * @dev by the Oracle, and verified by the vrfCoordinator.
   *
   * @dev The _keyHash must already be registered with the VRFCoordinator, and
   * @dev the _fee must exceed the fee specified during registration of the
   * @dev _keyHash.
   *
   * @dev The _seed parameter is vestigial, and is kept only for API
   * @dev compatibility with older versions. It can't *hurt* to mix in some of
   * @dev your own randomness, here, but it's not necessary because the VRF
   * @dev oracle will mix the hash of the block containing your request into the
   * @dev VRF seed it ultimately uses.
   *
   * @param _keyHash ID of public key against which randomness is generated
   * @param _fee The amount of LINK to send with the request
   *
   * @return requestId unique ID for this request
   *
   * @dev The returned requestId can be used to distinguish responses to
   * @dev concurrent requests. It is passed as the first argument to
   * @dev fulfillRandomness.
   */
  function requestRandomness(bytes32 _keyHash, uint256 _fee) internal returns (bytes32 requestId) {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
    // This is the seed passed to VRFCoordinator. The oracle will mix this with
    // the hash of the block containing this request to obtain the seed/input
    // which is finally passed to the VRF cryptographic machinery.
    uint256 vRFSeed = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
    // nonces[_keyHash] must stay in sync with
    // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
    // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
    // This provides protection against the user repeating their input seed,
    // which would result in a predictable/duplicate output, if multiple such
    // requests appeared in the same block.
    nonces[_keyHash] = nonces[_keyHash] + 1;
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface internal immutable LINK;
  address private immutable vrfCoordinator;

  // Nonces for each VRF key from which randomness has been requested.
  //
  // Must stay in sync with VRFCoordinator[_keyHash][this]
  mapping(bytes32 => uint256) /* keyHash */ /* nonce */
    private nonces;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   * @param _link address of LINK token contract
   *
   * @dev https://docs.chain.link/docs/link-token-contracts
   */
  constructor(address _vrfCoordinator, address _link) {
    vrfCoordinator = _vrfCoordinator;
    LINK = LinkTokenInterface(_link);
  }

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomness(bytes32 requestId, uint256 randomness) external {
    require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
    fulfillRandomness(requestId, randomness);
  }
}

File 3 of 16 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

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

File 4 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

File 5 of 16 : ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

            uint256 updatedIndex = startTokenId;

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 7 of 16 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 8 of 16 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 9 of 16 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 16 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 16 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 12 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 14 of 16 : VRFRequestIDBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract VRFRequestIDBase {
  /**
   * @notice returns the seed which is actually input to the VRF coordinator
   *
   * @dev To prevent repetition of VRF output due to repetition of the
   * @dev user-supplied seed, that seed is combined in a hash with the
   * @dev user-specific nonce, and the address of the consuming contract. The
   * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
   * @dev the final seed, but the nonce does protect against repetition in
   * @dev requests which are included in a single block.
   *
   * @param _userSeed VRF seed input provided by user
   * @param _requester Address of the requesting contract
   * @param _nonce User-specific nonce at the time of the request
   */
  function makeVRFInputSeed(
    bytes32 _keyHash,
    uint256 _userSeed,
    address _requester,
    uint256 _nonce
  ) internal pure returns (uint256) {
    return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
  }

  /**
   * @notice Returns the id for this request
   * @param _keyHash The serviceAgreement ID to be used for this request
   * @param _vRFInputSeed The seed to be passed directly to the VRF
   * @return The id for this request
   *
   * @dev Note that _vRFInputSeed is not the seed passed by the consuming
   * @dev contract, but the one generated by makeVRFInputSeed
   */
  function makeRequestId(bytes32 _keyHash, uint256 _vRFInputSeed) internal pure returns (bytes32) {
    return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
  }
}

File 15 of 16 : LinkTokenInterface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface LinkTokenInterface {
  function allowance(address owner, address spender) external view returns (uint256 remaining);

  function approve(address spender, uint256 value) external returns (bool success);

  function balanceOf(address owner) external view returns (uint256 balance);

  function decimals() external view returns (uint8 decimalPlaces);

  function decreaseApproval(address spender, uint256 addedValue) external returns (bool success);

  function increaseApproval(address spender, uint256 subtractedValue) external;

  function name() external view returns (string memory tokenName);

  function symbol() external view returns (string memory tokenSymbol);

  function totalSupply() external view returns (uint256 totalTokensIssued);

  function transfer(address to, uint256 value) external returns (bool success);

  function transferAndCall(
    address to,
    uint256 value,
    bytes calldata data
  ) external returns (bool success);

  function transferFrom(
    address from,
    address to,
    uint256 value
  ) external returns (bool success);
}

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"MintedQueryForZeroAddress","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PRESALE_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"bytes32","name":"nonce","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"offset","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"reserveTeamTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"bytes32","name":"keyhash","type":"bytes32"}],"name":"setLinkParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setOffset","outputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Dippies.Status","name":"_state","type":"uint8"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"state","outputs":[{"internalType":"enum Dippies.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"},{"internalType":"bool","name":"reveal","type":"bool"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c060405273e93f0858ac8de80197be29af2113ddda86860091600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073514910771af9ca656af840dff83e8264ecf986ca600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f0d54349addcf704f77ae15b96510dea15cb7952601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af44560001b601155671bc16d674ec800006012553480156200014357600080fd5b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518060400160405280600781526020017f44697070696573000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f444950504945530000000000000000000000000000000000000000000000000081525081600190805190602001906200020e92919062001118565b5080600290805190602001906200022792919062001118565b5050506200024a6200023e620002e560201b60201c565b620002ed60201b60201c565b8173ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250505050620002cd306001620003b360201b60201c565b620002df6000620003d960201b60201c565b6200145c565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003d58282604051806020016040528060008152506200081860201b60201c565b5050565b6000620003ec826200083260201b60201c565b9050620004088160000151600084600162000ae460201b60201c565b62000420600083836000015162000aea60201b60201c565b600160046000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160046000836000015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555080600001516003600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600084815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600160036000848152602001908152602001600020600001601c6101000a81548160ff0219169083151502179055506000600183019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156200073a5760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015620007395781600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5081600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4620007b58160000151600084600162000b9c60201b60201c565b6000601081819054906101000a90046fffffffffffffffffffffffffffffffff168092919060010191906101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550505050565b6200082d838383600162000ba260201b60201c565b505050565b6200083c620011a9565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101562000aad576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015162000aab57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146200098b57809250505062000adf565b5b60011562000aaa57818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161462000aa457809250505062000adf565b6200098c565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b50505050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b50505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141562000c3e576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141562000c7a576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b62000c8f600086838762000ae460201b60201c565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101562000f0057818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a483801562000eb2575062000eb0600088848862000f5660201b60201c565b155b1562000eea576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8180600101925050808060010191505062000e2d565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055505062000f4f600086838762000b9c60201b60201c565b5050505050565b600062000f848473ffffffffffffffffffffffffffffffffffffffff166200110560201b620025921760201c565b15620010f8578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000fb6620002e560201b60201c565b8786866040518563ffffffff1660e01b815260040162000fda9493929190620012b7565b602060405180830381600087803b15801562000ff557600080fd5b505af19250505080156200102957506040513d601f19601f8201168201806040525081019062001026919062001222565b60015b620010a7573d80600081146200105c576040519150601f19603f3d011682016040523d82523d6000602084013e62001061565b606091505b506000815114156200109f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050620010fd565b600190505b949350505050565b600080823b905060008111915050919050565b8280546200112690620013c7565b90600052602060002090601f0160209004810192826200114a576000855562001196565b82601f106200116557805160ff191683800117855562001196565b8280016001018555821562001196579182015b828111156200119557825182559160200191906001019062001178565b5b509050620011a59190620011ec565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111562001207576000816000905550600101620011ed565b5090565b6000815190506200121c8162001442565b92915050565b6000602082840312156200123b576200123a6200142c565b5b60006200124b848285016200120b565b91505092915050565b6200125f8162001327565b82525050565b600062001272826200130b565b6200127e818562001316565b93506200129081856020860162001391565b6200129b8162001431565b840191505092915050565b620012b18162001387565b82525050565b6000608082019050620012ce600083018762001254565b620012dd602083018662001254565b620012ec6040830185620012a6565b818103606083015262001300818462001265565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b6000620013348262001367565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015620013b157808201518184015260208101905062001394565b83811115620013c1576000848401525b50505050565b60006002820490506001821680620013e057607f821691505b60208210811415620013f757620013f6620013fd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b6200144d816200133b565b81146200145957600080fd5b50565b60805160601c60a05160601c61574f6200148f60003960008181611e78015261277101526000612735015261574f6000f3fe6080604052600436106102255760003560e01c80636c19e78311610123578063a22cb465116100ab578063d55565441161006f578063d5556544146107e6578063d598135e14610811578063e71433d61461083c578063e985e9c514610865578063f2fde38b146108a257610225565b8063a22cb46514610703578063b88d4fde1461072c578063c19d93fb14610755578063c87b56dd14610780578063cc436038146107bd57610225565b80638d859f3e116100f25780638d859f3e1461062e5780638da5cb5b1461065957806394985ddd14610684578063958f6ed6146106ad57806395d89b41146106d857610225565b80636c19e7831461058857806370a08231146105b1578063715018a6146105ee5780638389ee751461060557610225565b806323b872dd116101b15780634f6ccce7116101755780634f6ccce71461048f57806351830227146104cc5780635a67de07146104f75780636352211e146105205780636c0360eb1461055d57610225565b806323b872dd146103be5780632f745c59146103e75780633ccfd60b14610424578063414fb7601461043b57806342842e0e1461046657610225565b80630a5a6b75116101f85780630a5a6b75146102f85780630adc91c4146103235780630f7309e81461033f578063109695231461036a57806318160ddd1461039357610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906142c1565b6108cb565b60405161025e91906149e0565b60405180910390f35b34801561027357600080fd5b5061027c610a15565b6040516102899190614ae4565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906143ed565b610aa7565b6040516102c6919061493b565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190614214565b610b23565b005b34801561030457600080fd5b5061030d610c2e565b60405161031a91906149fb565b60405180910390f35b61033d6004803603810190610338919061445a565b610d04565b005b34801561034b57600080fd5b50610354611163565b6040516103619190614ae4565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190614348565b6111f1565b005b34801561039f57600080fd5b506103a86112a2565b6040516103b59190614d46565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e091906140fe565b6112f7565b005b3480156103f357600080fd5b5061040e60048036038101906104099190614214565b611307565b60405161041b9190614d46565b60405180910390f35b34801561043057600080fd5b5061043961150e565b005b34801561044757600080fd5b506104506118a5565b60405161045d9190614d46565b60405180910390f35b34801561047257600080fd5b5061048d600480360381019061048891906140fe565b6118aa565b005b34801561049b57600080fd5b506104b660048036038101906104b191906143ed565b6118ca565b6040516104c39190614d46565b60405180910390f35b3480156104d857600080fd5b506104e1611a3b565b6040516104ee91906149e0565b60405180910390f35b34801561050357600080fd5b5061051e6004803603810190610519919061431b565b611a4e565b005b34801561052c57600080fd5b50610547600480360381019061054291906143ed565b611af7565b604051610554919061493b565b60405180910390f35b34801561056957600080fd5b50610572611b0d565b60405161057f9190614ae4565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190614091565b611b9b565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190614091565b611c5b565b6040516105e59190614d46565b60405180910390f35b3480156105fa57600080fd5b50610603611d2b565b005b34801561061157600080fd5b5061062c6004803603810190610627919061441a565b611db3565b005b34801561063a57600080fd5b50610643611e41565b6040516106509190614d46565b60405180910390f35b34801561066557600080fd5b5061066e611e4c565b60405161067b919061493b565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190614281565b611e76565b005b3480156106b957600080fd5b506106c2611f12565b6040516106cf9190614d46565b60405180910390f35b3480156106e457600080fd5b506106ed611f18565b6040516106fa9190614ae4565b60405180910390f35b34801561070f57600080fd5b5061072a600480360381019061072591906141d4565b611faa565b005b34801561073857600080fd5b50610753600480360381019061074e9190614151565b612122565b005b34801561076157600080fd5b5061076a612175565b6040516107779190614ac9565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a291906143ed565b612188565b6040516107b49190614ae4565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190614391565b61224e565b005b3480156107f257600080fd5b506107fb612306565b6040516108089190614d46565b60405180910390f35b34801561081d57600080fd5b5061082661230c565b6040516108339190614d46565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e9190614214565b612312565b005b34801561087157600080fd5b5061088c600480360381019061088791906140be565b612406565b60405161089991906149e0565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c49190614091565b61249a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fe57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e5750610a0d826125a5565b5b9050919050565b606060018054610a2490615032565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090615032565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b6000610ab28261260f565b610ae8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2e82611af7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb5612677565b73ffffffffffffffffffffffffffffffffffffffff1614158015610be75750610be581610be0612677565b612406565b155b15610c1e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c2983838361267f565b505050565b6000610c38612677565b73ffffffffffffffffffffffffffffffffffffffff16610c56611e4c565b73ffffffffffffffffffffffffffffffffffffffff1614610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390614c46565b60405180910390fd5b6000600c5414610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890614c86565b60405180910390fd5b610cff601154601254612731565b905090565b600280811115610d1757610d166151b7565b5b600960009054906101000a900460ff166002811115610d3957610d386151b7565b5b1480610d78575060016002811115610d5457610d536151b7565b5b600960009054906101000a900460ff166002811115610d7657610d756151b7565b5b145b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90614d06565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90614ba6565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ee73386600960009054906101000a900460ff1685604051602001610e87949392919061489d565b6040516020818303038152906040528051906020012085858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612893565b73ffffffffffffffffffffffffffffffffffffffff1614610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490614ce6565b60405180910390fd5b6122b884610f496112a2565b610f539190614e2b565b1115610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b90614d26565b60405180910390fd5b6002841115610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90614b86565b60405180910390fd5b8366d529ae9e860000610feb9190614eb2565b34101561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490614b66565b60405180910390fd5b60016002811115611041576110406151b7565b5b600960009054906101000a900460ff166002811115611063576110626151b7565b5b14156110c557600284611075336128ba565b61107f9190614e2b565b11156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790614cc6565b60405180910390fd5b611153565b6013600082815260200190815260200160002060009054906101000a900460ff1615611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90614c06565b60405180910390fd5b60016013600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505b61115d338561298a565b50505050565b600b805461117090615032565b80601f016020809104026020016040519081016040528092919081815260200182805461119c90615032565b80156111e95780601f106111be576101008083540402835291602001916111e9565b820191906000526020600020905b8154815290600101906020018083116111cc57829003601f168201915b505050505081565b6111f9612677565b73ffffffffffffffffffffffffffffffffffffffff16611217611e4c565b73ffffffffffffffffffffffffffffffffffffffff161461126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490614c46565b60405180910390fd5b6000600b805461127c90615032565b90501461128857600080fd5b80600b908051906020019061129e929190613dcd565b5050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b6113028383836129a8565b505050565b600061131283611c5b565b821061134a576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015611502576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561146157506114f5565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146114a157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114f357868414156114ea578195505050505050611508565b83806001019450505b505b8080600101915050611384565b50600080fd5b92915050565b611516612677565b73ffffffffffffffffffffffffffffffffffffffff16611534611e4c565b73ffffffffffffffffffffffffffffffffffffffff161461158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190614c46565b60405180910390fd5b6000479050731fceff7e5ebeb91adf2465e703fc3f35c3cc7df473ffffffffffffffffffffffffffffffffffffffff166108fc610190609d846115cd9190614eb2565b6115d79190614e81565b9081150290604051600060405180830381858888f19350505050158015611602573d6000803e3d6000fd5b50733428bab379a1d3091653938338d4bbb8b4b0754773ffffffffffffffffffffffffffffffffffffffff166108fc610190609d846116419190614eb2565b61164b9190614e81565b9081150290604051600060405180830381858888f19350505050158015611676573d6000803e3d6000fd5b50731e76a475d10f3cfed086c238e12017e5565b09ce73ffffffffffffffffffffffffffffffffffffffff166108fc6101906022846116b59190614eb2565b6116bf9190614e81565b9081150290604051600060405180830381858888f193505050501580156116ea573d6000803e3d6000fd5b5073aaa217e121433f6482f78371910930fc1aca226b73ffffffffffffffffffffffffffffffffffffffff166108fc6101906008846117299190614eb2565b6117339190614e81565b9081150290604051600060405180830381858888f1935050505015801561175e573d6000803e3d6000fd5b5073efae49bd1d8a16f88f190b0464626030c396612673ffffffffffffffffffffffffffffffffffffffff166108fc61019060048461179d9190614eb2565b6117a79190614e81565b9081150290604051600060405180830381858888f193505050501580156117d2573d6000803e3d6000fd5b50732795033f658e8e2a8deb1a28c7c65d743aa3154c73ffffffffffffffffffffffffffffffffffffffff166108fc6101906014846118119190614eb2565b61181b9190614e81565b9081150290604051600060405180830381858888f19350505050158015611846573d6000803e3d6000fd5b50730fa34a4aaf07d86881046b49789dece58c86172973ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156118a1573d6000803e3d6000fd5b5050565b606481565b6118c583838360405180602001604052806000815250612122565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611a03576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516119f557858314156119ec5781945050505050611a36565b82806001019350505b508080600101915050611902565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600960019054906101000a900460ff1681565b611a56612677565b73ffffffffffffffffffffffffffffffffffffffff16611a74611e4c565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190614c46565b60405180910390fd5b80600960006101000a81548160ff02191690836002811115611aef57611aee6151b7565b5b021790555050565b6000611b0282612ec5565b600001519050919050565b600a8054611b1a90615032565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4690615032565b8015611b935780601f10611b6857610100808354040283529160200191611b93565b820191906000526020600020905b815481529060010190602001808311611b7657829003601f168201915b505050505081565b611ba3612677565b73ffffffffffffffffffffffffffffffffffffffff16611bc1611e4c565b73ffffffffffffffffffffffffffffffffffffffff1614611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e90614c46565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611d33612677565b73ffffffffffffffffffffffffffffffffffffffff16611d51611e4c565b73ffffffffffffffffffffffffffffffffffffffff1614611da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9e90614c46565b60405180910390fd5b611db1600061316d565b565b611dbb612677565b73ffffffffffffffffffffffffffffffffffffffff16611dd9611e4c565b73ffffffffffffffffffffffffffffffffffffffff1614611e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2690614c46565b60405180910390fd5b81601281905550806011819055505050565b66d529ae9e86000081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90614ca6565b60405180910390fd5b611f0e8282613233565b5050565b6122b881565b606060028054611f2790615032565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5390615032565b8015611fa05780601f10611f7557610100808354040283529160200191611fa0565b820191906000526020600020905b815481529060010190602001808311611f8357829003601f168201915b5050505050905090565b611fb2612677565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612017576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000612024612677565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120d1612677565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161211691906149e0565b60405180910390a35050565b61212d8484846129a8565b61213984848484613265565b61216f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600960009054906101000a900460ff1681565b60606121938261260f565b6121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c990614c66565b60405180910390fd5b600960019054906101000a900460ff166121f5576121ee6133f3565b9050612249565b60006122b8600c54846122089190614e2b565b6122129190615128565b905061221c6133f3565b61222582613485565b604051602001612236929190614917565b6040516020818303038152906040529150505b919050565b612256612677565b73ffffffffffffffffffffffffffffffffffffffff16612274611e4c565b73ffffffffffffffffffffffffffffffffffffffff16146122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c190614c46565b60405180910390fd5b81600a90805190602001906122e0929190613dcd565b5080156123025780600960016101000a81548160ff0219169083151502179055505b5050565b600c5481565b61112a81565b61231a612677565b73ffffffffffffffffffffffffffffffffffffffff16612338611e4c565b73ffffffffffffffffffffffffffffffffffffffff161461238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590614c46565b60405180910390fd5b606481600d5461239e9190614e2b565b11156123df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d690614be6565b60405180910390fd5b80600d60008282546123f19190614e2b565b92505081905550612402828261298a565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124a2612677565b73ffffffffffffffffffffffffffffffffffffffff166124c0611e4c565b73ffffffffffffffffffffffffffffffffffffffff1614612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d90614c46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d90614b46565b60405180910390fd5b61258f8161316d565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612670575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16634000aea07f0000000000000000000000000000000000000000000000000000000000000000848660006040516020016127a5929190614a16565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016127d2939291906149a2565b602060405180830381600087803b1580156127ec57600080fd5b505af1158015612800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128249190614254565b5060006128478460003060086000898152602001908152602001600020546135e6565b9050600160086000868152602001908152602001600020546128699190614e2b565b600860008681526020019081526020016000208190555061288a8482613622565b91505092915050565b60008060006128a28585613655565b915091506128af816136d8565b819250505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612922576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6129a48282604051806020016040528060008152506138ad565b5050565b60006129b382612ec5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166129da612677565b73ffffffffffffffffffffffffffffffffffffffff161480612a0d5750612a0c8260000151612a07612677565b612406565b5b80612a525750612a1b612677565b73ffffffffffffffffffffffffffffffffffffffff16612a3a84610aa7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a8b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612af4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b5b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b6885858560016138bf565b612b78600084846000015161267f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e555760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612e545782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ebe85858560016138c5565b5050505050565b612ecd613e53565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015613136576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161313457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613018578092505050613168565b5b60011561313357818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461312e578092505050613168565b613019565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600960019054906101000a900460ff161561324d57600080fd5b6122b88161325b9190615128565b600c819055505050565b60006132868473ffffffffffffffffffffffffffffffffffffffff16612592565b156133e6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132af612677565b8786866040518563ffffffff1660e01b81526004016132d19493929190614956565b602060405180830381600087803b1580156132eb57600080fd5b505af192505050801561331c57506040513d601f19601f8201168201806040525081019061331991906142ee565b60015b613396573d806000811461334c576040519150601f19603f3d011682016040523d82523d6000602084013e613351565b606091505b5060008151141561338e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133eb565b600190505b949350505050565b6060600a805461340290615032565b80601f016020809104026020016040519081016040528092919081815260200182805461342e90615032565b801561347b5780601f106134505761010080835404028352916020019161347b565b820191906000526020600020905b81548152906001019060200180831161345e57829003601f168201915b5050505050905090565b606060008214156134cd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135e1565b600082905060005b600082146134ff5780806134e890615095565b915050600a826134f89190614e81565b91506134d5565b60008167ffffffffffffffff81111561351b5761351a615244565b5b6040519080825280601f01601f19166020018201604052801561354d5781602001600182028036833780820191505090505b5090505b600085146135da576001826135669190614f0c565b9150600a856135759190615128565b60306135819190614e2b565b60f81b81838151811061359757613596615215565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135d39190614e81565b9450613551565b8093505050505b919050565b6000848484846040516020016135ff9493929190614a3f565b6040516020818303038152906040528051906020012060001c9050949350505050565b600082826040516020016136379291906148eb565b60405160208183030381529060405280519060200120905092915050565b6000806041835114156136975760008060006020860151925060408601519150606086015160001a905061368b878285856138cb565b945094505050506136d1565b6040835114156136c85760008060208501519150604085015190506136bd8683836139d8565b9350935050506136d1565b60006002915091505b9250929050565b600060048111156136ec576136eb6151b7565b5b8160048111156136ff576136fe6151b7565b5b141561370a576138aa565b6001600481111561371e5761371d6151b7565b5b816004811115613731576137306151b7565b5b1415613772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376990614b06565b60405180910390fd5b60026004811115613786576137856151b7565b5b816004811115613799576137986151b7565b5b14156137da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d190614b26565b60405180910390fd5b600360048111156137ee576137ed6151b7565b5b816004811115613801576138006151b7565b5b1415613842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383990614bc6565b60405180910390fd5b600480811115613855576138546151b7565b5b816004811115613868576138676151b7565b5b14156138a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a090614c26565b60405180910390fd5b5b50565b6138ba8383836001613a37565b505050565b50505050565b50505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156139065760006003915091506139cf565b601b8560ff161415801561391e5750601c8560ff1614155b156139305760006004915091506139cf565b6000600187878787604051600081526020016040526040516139559493929190614a84565b6020604051602081039080840390855afa158015613977573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156139c6576000600192509250506139cf565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613a1b9190614e2b565b9050613a29878288856138cb565b935093505050935093915050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613ad2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613b0d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b1a60008683876138bf565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613d7f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015613d335750613d316000888488613265565b155b15613d6a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613cb8565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613dc660008683876138c5565b5050505050565b828054613dd990615032565b90600052602060002090601f016020900481019282613dfb5760008555613e42565b82601f10613e1457805160ff1916838001178555613e42565b82800160010185558215613e42579182015b82811115613e41578251825591602001919060010190613e26565b5b509050613e4f9190613e96565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613eaf576000816000905550600101613e97565b5090565b6000613ec6613ec184614d86565b614d61565b905082815260208101848484011115613ee257613ee1615282565b5b613eed848285614ff0565b509392505050565b6000613f08613f0384614db7565b614d61565b905082815260208101848484011115613f2457613f23615282565b5b613f2f848285614ff0565b509392505050565b600081359050613f4681615696565b92915050565b600081359050613f5b816156ad565b92915050565b600081519050613f70816156ad565b92915050565b600081359050613f85816156c4565b92915050565b600081359050613f9a816156db565b92915050565b600081519050613faf816156db565b92915050565b60008083601f840112613fcb57613fca615278565b5b8235905067ffffffffffffffff811115613fe857613fe7615273565b5b6020830191508360018202830111156140045761400361527d565b5b9250929050565b600082601f8301126140205761401f615278565b5b8135614030848260208601613eb3565b91505092915050565b600081359050614048816156f2565b92915050565b600082601f83011261406357614062615278565b5b8135614073848260208601613ef5565b91505092915050565b60008135905061408b81615702565b92915050565b6000602082840312156140a7576140a661528c565b5b60006140b584828501613f37565b91505092915050565b600080604083850312156140d5576140d461528c565b5b60006140e385828601613f37565b92505060206140f485828601613f37565b9150509250929050565b6000806000606084860312156141175761411661528c565b5b600061412586828701613f37565b935050602061413686828701613f37565b92505060406141478682870161407c565b9150509250925092565b6000806000806080858703121561416b5761416a61528c565b5b600061417987828801613f37565b945050602061418a87828801613f37565b935050604061419b8782880161407c565b925050606085013567ffffffffffffffff8111156141bc576141bb615287565b5b6141c88782880161400b565b91505092959194509250565b600080604083850312156141eb576141ea61528c565b5b60006141f985828601613f37565b925050602061420a85828601613f4c565b9150509250929050565b6000806040838503121561422b5761422a61528c565b5b600061423985828601613f37565b925050602061424a8582860161407c565b9150509250929050565b60006020828403121561426a5761426961528c565b5b600061427884828501613f61565b91505092915050565b600080604083850312156142985761429761528c565b5b60006142a685828601613f76565b92505060206142b78582860161407c565b9150509250929050565b6000602082840312156142d7576142d661528c565b5b60006142e584828501613f8b565b91505092915050565b6000602082840312156143045761430361528c565b5b600061431284828501613fa0565b91505092915050565b6000602082840312156143315761433061528c565b5b600061433f84828501614039565b91505092915050565b60006020828403121561435e5761435d61528c565b5b600082013567ffffffffffffffff81111561437c5761437b615287565b5b6143888482850161404e565b91505092915050565b600080604083850312156143a8576143a761528c565b5b600083013567ffffffffffffffff8111156143c6576143c5615287565b5b6143d28582860161404e565b92505060206143e385828601613f4c565b9150509250929050565b6000602082840312156144035761440261528c565b5b60006144118482850161407c565b91505092915050565b600080604083850312156144315761443061528c565b5b600061443f8582860161407c565b925050602061445085828601613f76565b9150509250929050565b600080600080606085870312156144745761447361528c565b5b60006144828782880161407c565b945050602085013567ffffffffffffffff8111156144a3576144a2615287565b5b6144af87828801613fb5565b935093505060406144c287828801613f76565b91505092959194509250565b6144d781614f40565b82525050565b6144ee6144e982614f40565b6150de565b82525050565b6144fd81614f52565b82525050565b61450c81614f5e565b82525050565b61452361451e82614f5e565b6150f0565b82525050565b600061453482614de8565b61453e8185614dfe565b935061454e818560208601614fff565b61455781615291565b840191505092915050565b61456b81614fde565b82525050565b61458261457d82614fde565b615116565b82525050565b600061459382614df3565b61459d8185614e0f565b93506145ad818560208601614fff565b6145b681615291565b840191505092915050565b60006145cc82614df3565b6145d68185614e20565b93506145e6818560208601614fff565b80840191505092915050565b60006145ff601883614e0f565b915061460a826152bc565b602082019050919050565b6000614622601f83614e0f565b915061462d826152e5565b602082019050919050565b6000614645602683614e0f565b91506146508261530e565b604082019050919050565b6000614668601983614e0f565b91506146738261535d565b602082019050919050565b600061468b601b83614e0f565b915061469682615386565b602082019050919050565b60006146ae602983614e0f565b91506146b9826153af565b604082019050919050565b60006146d1602283614e0f565b91506146dc826153fe565b604082019050919050565b60006146f4602383614e0f565b91506146ff8261544d565b604082019050919050565b6000614717601383614e0f565b91506147228261549c565b602082019050919050565b600061473a602283614e0f565b9150614745826154c5565b604082019050919050565b600061475d602083614e0f565b915061476882615514565b602082019050919050565b6000614780602f83614e0f565b915061478b8261553d565b604082019050919050565b60006147a3602083614e0f565b91506147ae8261558c565b602082019050919050565b60006147c6601f83614e0f565b91506147d1826155b5565b602082019050919050565b60006147e9601f83614e0f565b91506147f4826155de565b602082019050919050565b600061480c601783614e0f565b915061481782615607565b602082019050919050565b600061482f601683614e0f565b915061483a82615630565b602082019050919050565b6000614852601a83614e0f565b915061485d82615659565b602082019050919050565b61487181614fc7565b82525050565b61488861488382614fc7565b61510c565b82525050565b61489781614fd1565b82525050565b60006148a982876144dd565b6014820191506148b98286614877565b6020820191506148c98285614571565b6001820191506148d98284614512565b60208201915081905095945050505050565b60006148f78285614512565b6020820191506149078284614877565b6020820191508190509392505050565b600061492382856145c1565b915061492f82846145c1565b91508190509392505050565b600060208201905061495060008301846144ce565b92915050565b600060808201905061496b60008301876144ce565b61497860208301866144ce565b6149856040830185614868565b81810360608301526149978184614529565b905095945050505050565b60006060820190506149b760008301866144ce565b6149c46020830185614868565b81810360408301526149d68184614529565b9050949350505050565b60006020820190506149f560008301846144f4565b92915050565b6000602082019050614a106000830184614503565b92915050565b6000604082019050614a2b6000830185614503565b614a386020830184614868565b9392505050565b6000608082019050614a546000830187614503565b614a616020830186614868565b614a6e60408301856144ce565b614a7b6060830184614868565b95945050505050565b6000608082019050614a996000830187614503565b614aa6602083018661488e565b614ab36040830185614503565b614ac06060830184614503565b95945050505050565b6000602082019050614ade6000830184614562565b92915050565b60006020820190508181036000830152614afe8184614588565b905092915050565b60006020820190508181036000830152614b1f816145f2565b9050919050565b60006020820190508181036000830152614b3f81614615565b9050919050565b60006020820190508181036000830152614b5f81614638565b9050919050565b60006020820190508181036000830152614b7f8161465b565b9050919050565b60006020820190508181036000830152614b9f8161467e565b9050919050565b60006020820190508181036000830152614bbf816146a1565b9050919050565b60006020820190508181036000830152614bdf816146c4565b9050919050565b60006020820190508181036000830152614bff816146e7565b9050919050565b60006020820190508181036000830152614c1f8161470a565b9050919050565b60006020820190508181036000830152614c3f8161472d565b9050919050565b60006020820190508181036000830152614c5f81614750565b9050919050565b60006020820190508181036000830152614c7f81614773565b9050919050565b60006020820190508181036000830152614c9f81614796565b9050919050565b60006020820190508181036000830152614cbf816147b9565b9050919050565b60006020820190508181036000830152614cdf816147dc565b9050919050565b60006020820190508181036000830152614cff816147ff565b9050919050565b60006020820190508181036000830152614d1f81614822565b9050919050565b60006020820190508181036000830152614d3f81614845565b9050919050565b6000602082019050614d5b6000830184614868565b92915050565b6000614d6b614d7c565b9050614d778282615064565b919050565b6000604051905090565b600067ffffffffffffffff821115614da157614da0615244565b5b614daa82615291565b9050602081019050919050565b600067ffffffffffffffff821115614dd257614dd1615244565b5b614ddb82615291565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e3682614fc7565b9150614e4183614fc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e7657614e75615159565b5b828201905092915050565b6000614e8c82614fc7565b9150614e9783614fc7565b925082614ea757614ea6615188565b5b828204905092915050565b6000614ebd82614fc7565b9150614ec883614fc7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f0157614f00615159565b5b828202905092915050565b6000614f1782614fc7565b9150614f2283614fc7565b925082821015614f3557614f34615159565b5b828203905092915050565b6000614f4b82614fa7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614fa282615682565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614fe982614f94565b9050919050565b82818337600083830152505050565b60005b8381101561501d578082015181840152602081019050615002565b8381111561502c576000848401525b50505050565b6000600282049050600182168061504a57607f821691505b6020821081141561505e5761505d6151e6565b5b50919050565b61506d82615291565b810181811067ffffffffffffffff8211171561508c5761508b615244565b5b80604052505050565b60006150a082614fc7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150d3576150d2615159565b5b600182019050919050565b60006150e9826150fa565b9050919050565b6000819050919050565b6000615105826152af565b9050919050565b6000819050919050565b6000615121826152a2565b9050919050565b600061513382614fc7565b915061513e83614fc7565b92508261514e5761514d615188565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f81b9050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f446970706965733a20496e73756666696369656e742045544800000000000000600082015250565b7f446970706965733a2045786365656473204d6178205065722054580000000000600082015250565b7f446970706965733a20436f6e747261637420496e746572616374696f6e204e6f60008201527f7420416c6c6f7765640000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f446970706965733a205465616d20546f6b656e7320416c7265616479204d696e60008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b7f446970706965733a204e6f6e6365205573656400000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f446970706965733a204f666673657420416c7265616479204465636c61726564600082015250565b7f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c00600082015250565b7f446970706965733a2045786365656473204d6178205065722057616c6c657400600082015250565b7f446970706965733a20496e76616c6964205369676e6572000000000000000000600082015250565b7f446970706965733a2053616c65204e6f74204c69766500000000000000000000600082015250565b7f446970706965733a20457863656564204d617820537570706c79000000000000600082015250565b60038110615693576156926151b7565b5b50565b61569f81614f40565b81146156aa57600080fd5b50565b6156b681614f52565b81146156c157600080fd5b50565b6156cd81614f5e565b81146156d857600080fd5b50565b6156e481614f68565b81146156ef57600080fd5b50565b600381106156ff57600080fd5b50565b61570b81614fc7565b811461571657600080fd5b5056fea264697066735822122060648e77b361d23b3ab99cdea7d373cbd8983bb4ff6dddb1e47545df35701be364736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102255760003560e01c80636c19e78311610123578063a22cb465116100ab578063d55565441161006f578063d5556544146107e6578063d598135e14610811578063e71433d61461083c578063e985e9c514610865578063f2fde38b146108a257610225565b8063a22cb46514610703578063b88d4fde1461072c578063c19d93fb14610755578063c87b56dd14610780578063cc436038146107bd57610225565b80638d859f3e116100f25780638d859f3e1461062e5780638da5cb5b1461065957806394985ddd14610684578063958f6ed6146106ad57806395d89b41146106d857610225565b80636c19e7831461058857806370a08231146105b1578063715018a6146105ee5780638389ee751461060557610225565b806323b872dd116101b15780634f6ccce7116101755780634f6ccce71461048f57806351830227146104cc5780635a67de07146104f75780636352211e146105205780636c0360eb1461055d57610225565b806323b872dd146103be5780632f745c59146103e75780633ccfd60b14610424578063414fb7601461043b57806342842e0e1461046657610225565b80630a5a6b75116101f85780630a5a6b75146102f85780630adc91c4146103235780630f7309e81461033f578063109695231461036a57806318160ddd1461039357610225565b806301ffc9a71461022a57806306fdde0314610267578063081812fc14610292578063095ea7b3146102cf575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c91906142c1565b6108cb565b60405161025e91906149e0565b60405180910390f35b34801561027357600080fd5b5061027c610a15565b6040516102899190614ae4565b60405180910390f35b34801561029e57600080fd5b506102b960048036038101906102b491906143ed565b610aa7565b6040516102c6919061493b565b60405180910390f35b3480156102db57600080fd5b506102f660048036038101906102f19190614214565b610b23565b005b34801561030457600080fd5b5061030d610c2e565b60405161031a91906149fb565b60405180910390f35b61033d6004803603810190610338919061445a565b610d04565b005b34801561034b57600080fd5b50610354611163565b6040516103619190614ae4565b60405180910390f35b34801561037657600080fd5b50610391600480360381019061038c9190614348565b6111f1565b005b34801561039f57600080fd5b506103a86112a2565b6040516103b59190614d46565b60405180910390f35b3480156103ca57600080fd5b506103e560048036038101906103e091906140fe565b6112f7565b005b3480156103f357600080fd5b5061040e60048036038101906104099190614214565b611307565b60405161041b9190614d46565b60405180910390f35b34801561043057600080fd5b5061043961150e565b005b34801561044757600080fd5b506104506118a5565b60405161045d9190614d46565b60405180910390f35b34801561047257600080fd5b5061048d600480360381019061048891906140fe565b6118aa565b005b34801561049b57600080fd5b506104b660048036038101906104b191906143ed565b6118ca565b6040516104c39190614d46565b60405180910390f35b3480156104d857600080fd5b506104e1611a3b565b6040516104ee91906149e0565b60405180910390f35b34801561050357600080fd5b5061051e6004803603810190610519919061431b565b611a4e565b005b34801561052c57600080fd5b50610547600480360381019061054291906143ed565b611af7565b604051610554919061493b565b60405180910390f35b34801561056957600080fd5b50610572611b0d565b60405161057f9190614ae4565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190614091565b611b9b565b005b3480156105bd57600080fd5b506105d860048036038101906105d39190614091565b611c5b565b6040516105e59190614d46565b60405180910390f35b3480156105fa57600080fd5b50610603611d2b565b005b34801561061157600080fd5b5061062c6004803603810190610627919061441a565b611db3565b005b34801561063a57600080fd5b50610643611e41565b6040516106509190614d46565b60405180910390f35b34801561066557600080fd5b5061066e611e4c565b60405161067b919061493b565b60405180910390f35b34801561069057600080fd5b506106ab60048036038101906106a69190614281565b611e76565b005b3480156106b957600080fd5b506106c2611f12565b6040516106cf9190614d46565b60405180910390f35b3480156106e457600080fd5b506106ed611f18565b6040516106fa9190614ae4565b60405180910390f35b34801561070f57600080fd5b5061072a600480360381019061072591906141d4565b611faa565b005b34801561073857600080fd5b50610753600480360381019061074e9190614151565b612122565b005b34801561076157600080fd5b5061076a612175565b6040516107779190614ac9565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a291906143ed565b612188565b6040516107b49190614ae4565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190614391565b61224e565b005b3480156107f257600080fd5b506107fb612306565b6040516108089190614d46565b60405180910390f35b34801561081d57600080fd5b5061082661230c565b6040516108339190614d46565b60405180910390f35b34801561084857600080fd5b50610863600480360381019061085e9190614214565b612312565b005b34801561087157600080fd5b5061088c600480360381019061088791906140be565b612406565b60405161089991906149e0565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c49190614091565b61249a565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061099657507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109fe57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a0e5750610a0d826125a5565b5b9050919050565b606060018054610a2490615032565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5090615032565b8015610a9d5780601f10610a7257610100808354040283529160200191610a9d565b820191906000526020600020905b815481529060010190602001808311610a8057829003601f168201915b5050505050905090565b6000610ab28261260f565b610ae8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2e82611af7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b96576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bb5612677565b73ffffffffffffffffffffffffffffffffffffffff1614158015610be75750610be581610be0612677565b612406565b155b15610c1e576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c2983838361267f565b505050565b6000610c38612677565b73ffffffffffffffffffffffffffffffffffffffff16610c56611e4c565b73ffffffffffffffffffffffffffffffffffffffff1614610cac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca390614c46565b60405180910390fd5b6000600c5414610cf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ce890614c86565b60405180910390fd5b610cff601154601254612731565b905090565b600280811115610d1757610d166151b7565b5b600960009054906101000a900460ff166002811115610d3957610d386151b7565b5b1480610d78575060016002811115610d5457610d536151b7565b5b600960009054906101000a900460ff166002811115610d7657610d756151b7565b5b145b610db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dae90614d06565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90614ba6565b60405180910390fd5b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ee73386600960009054906101000a900460ff1685604051602001610e87949392919061489d565b6040516020818303038152906040528051906020012085858080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050612893565b73ffffffffffffffffffffffffffffffffffffffff1614610f3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3490614ce6565b60405180910390fd5b6122b884610f496112a2565b610f539190614e2b565b1115610f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8b90614d26565b60405180910390fd5b6002841115610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90614b86565b60405180910390fd5b8366d529ae9e860000610feb9190614eb2565b34101561102d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102490614b66565b60405180910390fd5b60016002811115611041576110406151b7565b5b600960009054906101000a900460ff166002811115611063576110626151b7565b5b14156110c557600284611075336128ba565b61107f9190614e2b565b11156110c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b790614cc6565b60405180910390fd5b611153565b6013600082815260200190815260200160002060009054906101000a900460ff1615611126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111d90614c06565b60405180910390fd5b60016013600083815260200190815260200160002060006101000a81548160ff0219169083151502179055505b61115d338561298a565b50505050565b600b805461117090615032565b80601f016020809104026020016040519081016040528092919081815260200182805461119c90615032565b80156111e95780601f106111be576101008083540402835291602001916111e9565b820191906000526020600020905b8154815290600101906020018083116111cc57829003601f168201915b505050505081565b6111f9612677565b73ffffffffffffffffffffffffffffffffffffffff16611217611e4c565b73ffffffffffffffffffffffffffffffffffffffff161461126d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126490614c46565b60405180910390fd5b6000600b805461127c90615032565b90501461128857600080fd5b80600b908051906020019061129e929190613dcd565b5050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b6113028383836129a8565b505050565b600061131283611c5b565b821061134a576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015611502576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001511561146157506114f5565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146114a157806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156114f357868414156114ea578195505050505050611508565b83806001019450505b505b8080600101915050611384565b50600080fd5b92915050565b611516612677565b73ffffffffffffffffffffffffffffffffffffffff16611534611e4c565b73ffffffffffffffffffffffffffffffffffffffff161461158a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158190614c46565b60405180910390fd5b6000479050731fceff7e5ebeb91adf2465e703fc3f35c3cc7df473ffffffffffffffffffffffffffffffffffffffff166108fc610190609d846115cd9190614eb2565b6115d79190614e81565b9081150290604051600060405180830381858888f19350505050158015611602573d6000803e3d6000fd5b50733428bab379a1d3091653938338d4bbb8b4b0754773ffffffffffffffffffffffffffffffffffffffff166108fc610190609d846116419190614eb2565b61164b9190614e81565b9081150290604051600060405180830381858888f19350505050158015611676573d6000803e3d6000fd5b50731e76a475d10f3cfed086c238e12017e5565b09ce73ffffffffffffffffffffffffffffffffffffffff166108fc6101906022846116b59190614eb2565b6116bf9190614e81565b9081150290604051600060405180830381858888f193505050501580156116ea573d6000803e3d6000fd5b5073aaa217e121433f6482f78371910930fc1aca226b73ffffffffffffffffffffffffffffffffffffffff166108fc6101906008846117299190614eb2565b6117339190614e81565b9081150290604051600060405180830381858888f1935050505015801561175e573d6000803e3d6000fd5b5073efae49bd1d8a16f88f190b0464626030c396612673ffffffffffffffffffffffffffffffffffffffff166108fc61019060048461179d9190614eb2565b6117a79190614e81565b9081150290604051600060405180830381858888f193505050501580156117d2573d6000803e3d6000fd5b50732795033f658e8e2a8deb1a28c7c65d743aa3154c73ffffffffffffffffffffffffffffffffffffffff166108fc6101906014846118119190614eb2565b61181b9190614e81565b9081150290604051600060405180830381858888f19350505050158015611846573d6000803e3d6000fd5b50730fa34a4aaf07d86881046b49789dece58c86172973ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156118a1573d6000803e3d6000fd5b5050565b606481565b6118c583838360405180602001604052806000815250612122565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015611a03576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516119f557858314156119ec5781945050505050611a36565b82806001019350505b508080600101915050611902565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600960019054906101000a900460ff1681565b611a56612677565b73ffffffffffffffffffffffffffffffffffffffff16611a74611e4c565b73ffffffffffffffffffffffffffffffffffffffff1614611aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac190614c46565b60405180910390fd5b80600960006101000a81548160ff02191690836002811115611aef57611aee6151b7565b5b021790555050565b6000611b0282612ec5565b600001519050919050565b600a8054611b1a90615032565b80601f0160208091040260200160405190810160405280929190818152602001828054611b4690615032565b8015611b935780601f10611b6857610100808354040283529160200191611b93565b820191906000526020600020905b815481529060010190602001808311611b7657829003601f168201915b505050505081565b611ba3612677565b73ffffffffffffffffffffffffffffffffffffffff16611bc1611e4c565b73ffffffffffffffffffffffffffffffffffffffff1614611c17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0e90614c46565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc3576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611d33612677565b73ffffffffffffffffffffffffffffffffffffffff16611d51611e4c565b73ffffffffffffffffffffffffffffffffffffffff1614611da7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9e90614c46565b60405180910390fd5b611db1600061316d565b565b611dbb612677565b73ffffffffffffffffffffffffffffffffffffffff16611dd9611e4c565b73ffffffffffffffffffffffffffffffffffffffff1614611e2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2690614c46565b60405180910390fd5b81601281905550806011819055505050565b66d529ae9e86000081565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb795273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb90614ca6565b60405180910390fd5b611f0e8282613233565b5050565b6122b881565b606060028054611f2790615032565b80601f0160208091040260200160405190810160405280929190818152602001828054611f5390615032565b8015611fa05780601f10611f7557610100808354040283529160200191611fa0565b820191906000526020600020905b815481529060010190602001808311611f8357829003601f168201915b5050505050905090565b611fb2612677565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612017576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000612024612677565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120d1612677565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161211691906149e0565b60405180910390a35050565b61212d8484846129a8565b61213984848484613265565b61216f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600960009054906101000a900460ff1681565b60606121938261260f565b6121d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121c990614c66565b60405180910390fd5b600960019054906101000a900460ff166121f5576121ee6133f3565b9050612249565b60006122b8600c54846122089190614e2b565b6122129190615128565b905061221c6133f3565b61222582613485565b604051602001612236929190614917565b6040516020818303038152906040529150505b919050565b612256612677565b73ffffffffffffffffffffffffffffffffffffffff16612274611e4c565b73ffffffffffffffffffffffffffffffffffffffff16146122ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c190614c46565b60405180910390fd5b81600a90805190602001906122e0929190613dcd565b5080156123025780600960016101000a81548160ff0219169083151502179055505b5050565b600c5481565b61112a81565b61231a612677565b73ffffffffffffffffffffffffffffffffffffffff16612338611e4c565b73ffffffffffffffffffffffffffffffffffffffff161461238e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238590614c46565b60405180910390fd5b606481600d5461239e9190614e2b565b11156123df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d690614be6565b60405180910390fd5b80600d60008282546123f19190614e2b565b92505081905550612402828261298a565b5050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124a2612677565b73ffffffffffffffffffffffffffffffffffffffff166124c0611e4c565b73ffffffffffffffffffffffffffffffffffffffff1614612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d90614c46565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257d90614b46565b60405180910390fd5b61258f8161316d565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015612670575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca73ffffffffffffffffffffffffffffffffffffffff16634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952848660006040516020016127a5929190614a16565b6040516020818303038152906040526040518463ffffffff1660e01b81526004016127d2939291906149a2565b602060405180830381600087803b1580156127ec57600080fd5b505af1158015612800573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128249190614254565b5060006128478460003060086000898152602001908152602001600020546135e6565b9050600160086000868152602001908152602001600020546128699190614e2b565b600860008681526020019081526020016000208190555061288a8482613622565b91505092915050565b60008060006128a28585613655565b915091506128af816136d8565b819250505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612922576040517f35ebb31900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6129a48282604051806020016040528060008152506138ad565b5050565b60006129b382612ec5565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166129da612677565b73ffffffffffffffffffffffffffffffffffffffff161480612a0d5750612a0c8260000151612a07612677565b612406565b5b80612a525750612a1b612677565b73ffffffffffffffffffffffffffffffffffffffff16612a3a84610aa7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612a8b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612af4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612b5b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612b6885858560016138bf565b612b78600084846000015161267f565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612e555760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015612e545782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ebe85858560016138c5565b5050505050565b612ecd613e53565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16811015613136576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161313457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613018578092505050613168565b5b60011561313357818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461312e578092505050613168565b613019565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600960019054906101000a900460ff161561324d57600080fd5b6122b88161325b9190615128565b600c819055505050565b60006132868473ffffffffffffffffffffffffffffffffffffffff16612592565b156133e6578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132af612677565b8786866040518563ffffffff1660e01b81526004016132d19493929190614956565b602060405180830381600087803b1580156132eb57600080fd5b505af192505050801561331c57506040513d601f19601f8201168201806040525081019061331991906142ee565b60015b613396573d806000811461334c576040519150601f19603f3d011682016040523d82523d6000602084013e613351565b606091505b5060008151141561338e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133eb565b600190505b949350505050565b6060600a805461340290615032565b80601f016020809104026020016040519081016040528092919081815260200182805461342e90615032565b801561347b5780601f106134505761010080835404028352916020019161347b565b820191906000526020600020905b81548152906001019060200180831161345e57829003601f168201915b5050505050905090565b606060008214156134cd576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135e1565b600082905060005b600082146134ff5780806134e890615095565b915050600a826134f89190614e81565b91506134d5565b60008167ffffffffffffffff81111561351b5761351a615244565b5b6040519080825280601f01601f19166020018201604052801561354d5781602001600182028036833780820191505090505b5090505b600085146135da576001826135669190614f0c565b9150600a856135759190615128565b60306135819190614e2b565b60f81b81838151811061359757613596615215565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135d39190614e81565b9450613551565b8093505050505b919050565b6000848484846040516020016135ff9493929190614a3f565b6040516020818303038152906040528051906020012060001c9050949350505050565b600082826040516020016136379291906148eb565b60405160208183030381529060405280519060200120905092915050565b6000806041835114156136975760008060006020860151925060408601519150606086015160001a905061368b878285856138cb565b945094505050506136d1565b6040835114156136c85760008060208501519150604085015190506136bd8683836139d8565b9350935050506136d1565b60006002915091505b9250929050565b600060048111156136ec576136eb6151b7565b5b8160048111156136ff576136fe6151b7565b5b141561370a576138aa565b6001600481111561371e5761371d6151b7565b5b816004811115613731576137306151b7565b5b1415613772576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376990614b06565b60405180910390fd5b60026004811115613786576137856151b7565b5b816004811115613799576137986151b7565b5b14156137da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137d190614b26565b60405180910390fd5b600360048111156137ee576137ed6151b7565b5b816004811115613801576138006151b7565b5b1415613842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383990614bc6565b60405180910390fd5b600480811115613855576138546151b7565b5b816004811115613868576138676151b7565b5b14156138a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138a090614c26565b60405180910390fd5b5b50565b6138ba8383836001613a37565b505050565b50505050565b50505050565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c11156139065760006003915091506139cf565b601b8560ff161415801561391e5750601c8560ff1614155b156139305760006004915091506139cf565b6000600187878787604051600081526020016040526040516139559493929190614a84565b6020604051602081039080840390855afa158015613977573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156139c6576000600192509250506139cf565b80600092509250505b94509492505050565b60008060007f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60001b841690506000601b60ff8660001c901c613a1b9190614e2b565b9050613a29878288856138cb565b935093505050935093915050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613ad2576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415613b0d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b1a60008683876138bf565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015613d7f57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015613d335750613d316000888488613265565b155b15613d6a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050613cb8565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050613dc660008683876138c5565b5050505050565b828054613dd990615032565b90600052602060002090601f016020900481019282613dfb5760008555613e42565b82601f10613e1457805160ff1916838001178555613e42565b82800160010185558215613e42579182015b82811115613e41578251825591602001919060010190613e26565b5b509050613e4f9190613e96565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613eaf576000816000905550600101613e97565b5090565b6000613ec6613ec184614d86565b614d61565b905082815260208101848484011115613ee257613ee1615282565b5b613eed848285614ff0565b509392505050565b6000613f08613f0384614db7565b614d61565b905082815260208101848484011115613f2457613f23615282565b5b613f2f848285614ff0565b509392505050565b600081359050613f4681615696565b92915050565b600081359050613f5b816156ad565b92915050565b600081519050613f70816156ad565b92915050565b600081359050613f85816156c4565b92915050565b600081359050613f9a816156db565b92915050565b600081519050613faf816156db565b92915050565b60008083601f840112613fcb57613fca615278565b5b8235905067ffffffffffffffff811115613fe857613fe7615273565b5b6020830191508360018202830111156140045761400361527d565b5b9250929050565b600082601f8301126140205761401f615278565b5b8135614030848260208601613eb3565b91505092915050565b600081359050614048816156f2565b92915050565b600082601f83011261406357614062615278565b5b8135614073848260208601613ef5565b91505092915050565b60008135905061408b81615702565b92915050565b6000602082840312156140a7576140a661528c565b5b60006140b584828501613f37565b91505092915050565b600080604083850312156140d5576140d461528c565b5b60006140e385828601613f37565b92505060206140f485828601613f37565b9150509250929050565b6000806000606084860312156141175761411661528c565b5b600061412586828701613f37565b935050602061413686828701613f37565b92505060406141478682870161407c565b9150509250925092565b6000806000806080858703121561416b5761416a61528c565b5b600061417987828801613f37565b945050602061418a87828801613f37565b935050604061419b8782880161407c565b925050606085013567ffffffffffffffff8111156141bc576141bb615287565b5b6141c88782880161400b565b91505092959194509250565b600080604083850312156141eb576141ea61528c565b5b60006141f985828601613f37565b925050602061420a85828601613f4c565b9150509250929050565b6000806040838503121561422b5761422a61528c565b5b600061423985828601613f37565b925050602061424a8582860161407c565b9150509250929050565b60006020828403121561426a5761426961528c565b5b600061427884828501613f61565b91505092915050565b600080604083850312156142985761429761528c565b5b60006142a685828601613f76565b92505060206142b78582860161407c565b9150509250929050565b6000602082840312156142d7576142d661528c565b5b60006142e584828501613f8b565b91505092915050565b6000602082840312156143045761430361528c565b5b600061431284828501613fa0565b91505092915050565b6000602082840312156143315761433061528c565b5b600061433f84828501614039565b91505092915050565b60006020828403121561435e5761435d61528c565b5b600082013567ffffffffffffffff81111561437c5761437b615287565b5b6143888482850161404e565b91505092915050565b600080604083850312156143a8576143a761528c565b5b600083013567ffffffffffffffff8111156143c6576143c5615287565b5b6143d28582860161404e565b92505060206143e385828601613f4c565b9150509250929050565b6000602082840312156144035761440261528c565b5b60006144118482850161407c565b91505092915050565b600080604083850312156144315761443061528c565b5b600061443f8582860161407c565b925050602061445085828601613f76565b9150509250929050565b600080600080606085870312156144745761447361528c565b5b60006144828782880161407c565b945050602085013567ffffffffffffffff8111156144a3576144a2615287565b5b6144af87828801613fb5565b935093505060406144c287828801613f76565b91505092959194509250565b6144d781614f40565b82525050565b6144ee6144e982614f40565b6150de565b82525050565b6144fd81614f52565b82525050565b61450c81614f5e565b82525050565b61452361451e82614f5e565b6150f0565b82525050565b600061453482614de8565b61453e8185614dfe565b935061454e818560208601614fff565b61455781615291565b840191505092915050565b61456b81614fde565b82525050565b61458261457d82614fde565b615116565b82525050565b600061459382614df3565b61459d8185614e0f565b93506145ad818560208601614fff565b6145b681615291565b840191505092915050565b60006145cc82614df3565b6145d68185614e20565b93506145e6818560208601614fff565b80840191505092915050565b60006145ff601883614e0f565b915061460a826152bc565b602082019050919050565b6000614622601f83614e0f565b915061462d826152e5565b602082019050919050565b6000614645602683614e0f565b91506146508261530e565b604082019050919050565b6000614668601983614e0f565b91506146738261535d565b602082019050919050565b600061468b601b83614e0f565b915061469682615386565b602082019050919050565b60006146ae602983614e0f565b91506146b9826153af565b604082019050919050565b60006146d1602283614e0f565b91506146dc826153fe565b604082019050919050565b60006146f4602383614e0f565b91506146ff8261544d565b604082019050919050565b6000614717601383614e0f565b91506147228261549c565b602082019050919050565b600061473a602283614e0f565b9150614745826154c5565b604082019050919050565b600061475d602083614e0f565b915061476882615514565b602082019050919050565b6000614780602f83614e0f565b915061478b8261553d565b604082019050919050565b60006147a3602083614e0f565b91506147ae8261558c565b602082019050919050565b60006147c6601f83614e0f565b91506147d1826155b5565b602082019050919050565b60006147e9601f83614e0f565b91506147f4826155de565b602082019050919050565b600061480c601783614e0f565b915061481782615607565b602082019050919050565b600061482f601683614e0f565b915061483a82615630565b602082019050919050565b6000614852601a83614e0f565b915061485d82615659565b602082019050919050565b61487181614fc7565b82525050565b61488861488382614fc7565b61510c565b82525050565b61489781614fd1565b82525050565b60006148a982876144dd565b6014820191506148b98286614877565b6020820191506148c98285614571565b6001820191506148d98284614512565b60208201915081905095945050505050565b60006148f78285614512565b6020820191506149078284614877565b6020820191508190509392505050565b600061492382856145c1565b915061492f82846145c1565b91508190509392505050565b600060208201905061495060008301846144ce565b92915050565b600060808201905061496b60008301876144ce565b61497860208301866144ce565b6149856040830185614868565b81810360608301526149978184614529565b905095945050505050565b60006060820190506149b760008301866144ce565b6149c46020830185614868565b81810360408301526149d68184614529565b9050949350505050565b60006020820190506149f560008301846144f4565b92915050565b6000602082019050614a106000830184614503565b92915050565b6000604082019050614a2b6000830185614503565b614a386020830184614868565b9392505050565b6000608082019050614a546000830187614503565b614a616020830186614868565b614a6e60408301856144ce565b614a7b6060830184614868565b95945050505050565b6000608082019050614a996000830187614503565b614aa6602083018661488e565b614ab36040830185614503565b614ac06060830184614503565b95945050505050565b6000602082019050614ade6000830184614562565b92915050565b60006020820190508181036000830152614afe8184614588565b905092915050565b60006020820190508181036000830152614b1f816145f2565b9050919050565b60006020820190508181036000830152614b3f81614615565b9050919050565b60006020820190508181036000830152614b5f81614638565b9050919050565b60006020820190508181036000830152614b7f8161465b565b9050919050565b60006020820190508181036000830152614b9f8161467e565b9050919050565b60006020820190508181036000830152614bbf816146a1565b9050919050565b60006020820190508181036000830152614bdf816146c4565b9050919050565b60006020820190508181036000830152614bff816146e7565b9050919050565b60006020820190508181036000830152614c1f8161470a565b9050919050565b60006020820190508181036000830152614c3f8161472d565b9050919050565b60006020820190508181036000830152614c5f81614750565b9050919050565b60006020820190508181036000830152614c7f81614773565b9050919050565b60006020820190508181036000830152614c9f81614796565b9050919050565b60006020820190508181036000830152614cbf816147b9565b9050919050565b60006020820190508181036000830152614cdf816147dc565b9050919050565b60006020820190508181036000830152614cff816147ff565b9050919050565b60006020820190508181036000830152614d1f81614822565b9050919050565b60006020820190508181036000830152614d3f81614845565b9050919050565b6000602082019050614d5b6000830184614868565b92915050565b6000614d6b614d7c565b9050614d778282615064565b919050565b6000604051905090565b600067ffffffffffffffff821115614da157614da0615244565b5b614daa82615291565b9050602081019050919050565b600067ffffffffffffffff821115614dd257614dd1615244565b5b614ddb82615291565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e3682614fc7565b9150614e4183614fc7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e7657614e75615159565b5b828201905092915050565b6000614e8c82614fc7565b9150614e9783614fc7565b925082614ea757614ea6615188565b5b828204905092915050565b6000614ebd82614fc7565b9150614ec883614fc7565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614f0157614f00615159565b5b828202905092915050565b6000614f1782614fc7565b9150614f2283614fc7565b925082821015614f3557614f34615159565b5b828203905092915050565b6000614f4b82614fa7565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6000819050614fa282615682565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000614fe982614f94565b9050919050565b82818337600083830152505050565b60005b8381101561501d578082015181840152602081019050615002565b8381111561502c576000848401525b50505050565b6000600282049050600182168061504a57607f821691505b6020821081141561505e5761505d6151e6565b5b50919050565b61506d82615291565b810181811067ffffffffffffffff8211171561508c5761508b615244565b5b80604052505050565b60006150a082614fc7565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150d3576150d2615159565b5b600182019050919050565b60006150e9826150fa565b9050919050565b6000819050919050565b6000615105826152af565b9050919050565b6000819050919050565b6000615121826152a2565b9050919050565b600061513382614fc7565b915061513e83614fc7565b92508261514e5761514d615188565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160f81b9050919050565b60008160601b9050919050565b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f446970706965733a20496e73756666696369656e742045544800000000000000600082015250565b7f446970706965733a2045786365656473204d6178205065722054580000000000600082015250565b7f446970706965733a20436f6e747261637420496e746572616374696f6e204e6f60008201527f7420416c6c6f7765640000000000000000000000000000000000000000000000602082015250565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f446970706965733a205465616d20546f6b656e7320416c7265616479204d696e60008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b7f446970706965733a204e6f6e6365205573656400000000000000000000000000600082015250565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f446970706965733a204f666673657420416c7265616479204465636c61726564600082015250565b7f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c00600082015250565b7f446970706965733a2045786365656473204d6178205065722057616c6c657400600082015250565b7f446970706965733a20496e76616c6964205369676e6572000000000000000000600082015250565b7f446970706965733a2053616c65204e6f74204c69766500000000000000000000600082015250565b7f446970706965733a20457863656564204d617820537570706c79000000000000600082015250565b60038110615693576156926151b7565b5b50565b61569f81614f40565b81146156aa57600080fd5b50565b6156b681614f52565b81146156c157600080fd5b50565b6156cd81614f5e565b81146156d857600080fd5b50565b6156e481614f68565b81146156ef57600080fd5b50565b600381106156ff57600080fd5b50565b61570b81614fc7565b811461571657600080fd5b5056fea264697066735822122060648e77b361d23b3ab99cdea7d373cbd8983bb4ff6dddb1e47545df35701be364736f6c63430008070033

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.