ETH Price: $2,890.92 (-10.80%)
Gas: 42 Gwei

Token

The Pepecoin Pepeverse (Pepecoin)
 

Overview

Max Total Supply

1,689 Pepecoin

Holders

1,360

Market

Volume (24H)

0.5341 ETH

Min Price (24H)

$356.74 @ 0.123400 ETH

Max Price (24H)

$414.54 @ 0.143395 ETH
0xe587a118e3c3ae19c571363df5e488859916893f
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ClaimClaim

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Crackers.sol
//   __  __                         _____ _          _     _                       
//  |  \/  |                       / ____| |        (_)   | |                      
//  | \  / | ___ _ __ _ __ _   _  | |    | |__  _ __ _ ___| |_ _ __ ___   __ _ ___ 
//  | |\/| |/ _ \ '__| '__| | | | | |    | '_ \| '__| / __| __| '_ ` _ \ / _` / __|
//  | |  | |  __/ |  | |  | |_| | | |____| | | | |  | \__ \ |_| | | | | | (_| \__ \
//  |_|  |_|\___|_|  |_|   \__, |  \_____|_| |_|_|  |_|___/\__|_| |_| |_|\__,_|___/
//   ______                 __/ |____                 _____      _                 
//  |  ____|               |___/  __ \               / ____|    (_)                
//  | |__ _ __ ___  _ __ ___   | |__) |__ _ __   ___| |     ___  _ _ __            
//  |  __| '__/ _ \| '_ ` _ \  |  ___/ _ \ '_ \ / _ \ |    / _ \| | '_ \           
//  | |  | | | (_) | | | | | | | |  |  __/ |_) |  __/ |___| (_) | | | | |          
//  |_|  |_|  \___/|_| |_| |_| |_|   \___| .__/ \___|\_____\___/|_|_| |_|          
//                                       | |                                       
//                                       |_|                                       

// Ultra rare Christmas Crackers celebrating Christmas 2023 and ushering in a new era for PepeCoin

// SPDX-License-Identifier: Frensware

pragma solidity ^0.8.20;

 import {ERC1155} from "@rari-capital/solmate/src/tokens/ERC1155.sol";
  import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";
   import {Pausable} from "@openzeppelin/contracts/security/Pausable.sol";
    import {MerkleProof} from "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
     import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";

contract ClaimClaim is ERC1155, Ownable, Pausable {
    
    string private contractMetadataURI;
    string private _name;
     string private _symbol;
      string private baseURI;
       uint256 public constant tokenID = 1;
        uint256 public constant TOTAL_SUPPLY = 2000;
         uint256 public constant INITIAL_MINT_AMOUNT = 69;
          bytes32 public merkleRoot;

    mapping(uint256 => string) private tokenURIs;
    mapping(uint256 => uint256) public maxSupply;
    mapping(uint256 => uint256) public totalSupply;
    mapping(address => bool) private _hasClaimed;

    event CrackerClaimed(address indexed account, uint256 indexed id, uint256 amount);
    event CrackerBurned(address indexed account, uint256 indexed id, uint256 amount);


    constructor(string memory name_, string memory symbol_, address initialOwner)
        ERC1155()
        Ownable()
    {
        _name = name_;
        _symbol = symbol_;
        _mint(msg.sender, tokenID, INITIAL_MINT_AMOUNT, "");
        totalSupply[tokenID] += INITIAL_MINT_AMOUNT;
            transferOwnership(initialOwner); 
    }


    function claim(bytes32[] calldata merkleProof)
         external {
        require(!_hasClaimed[msg.sender], "NFT already claimed by this address");
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(merkleProof, merkleRoot, leaf), "Invalid proof");

        _hasClaimed[msg.sender] = true;
        _mint(msg.sender, tokenID, 1, "");
    }


    function setBaseURI(string memory newBaseURI)
        public onlyOwner {
    baseURI = newBaseURI;
    }


   function uri(uint256 id)
    public view virtual override returns (string memory) {
    require(id == tokenID, "Token ID does not exist");
    return string(abi.encodePacked(baseURI, Strings.toString(id), ".json"));
}

    function contractURI() public view returns (string memory) {
        return contractMetadataURI;
    }

    function setContractURI(string memory newContractURI) public onlyOwner {
        contractMetadataURI = newContractURI;
    }

    function isEligibleForClaim(address user, bytes32[] calldata merkleProof)
         external view returns (bool) {
        if (_hasClaimed[user]) {
            return false; //has already claimed
        }

        //compute leaf node and verify the proof
        bytes32 leaf = keccak256(abi.encodePacked(user));
        return MerkleProof.verify(merkleProof, merkleRoot, leaf);
    }


    function setApprovalForAll(address operator, bool approved)
       public virtual override {
    isApprovedForAll[msg.sender][operator] = approved;

    emit ApprovalForAll(msg.sender, operator, approved);
    }
 

    function supportsInterface(bytes4 interfaceId)
         override public view virtual returns (bool) {
        return
            interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165
            interfaceId == 0xd9b67a26 || // ERC165 Interface ID for ERC1155
            interfaceId == 0x0e89341c; // ERC165 Interface ID for ERC1155MetadataURI
    }


    function burn(address account, uint256 id, uint256 amount)
          public {
        require(account == msg.sender || isApprovedForAll[account][msg.sender], "Caller is not owner nor approved");
        require(balanceOf[account][id] >= amount, "Burn amount exceeds balance");

        balanceOf[account][id] -= amount;
        totalSupply[id] -= amount;

        emit TransferSingle(msg.sender, account, address(0), id, amount);
    }
   
    function setMerkleRoot(bytes32 _merkleRoot)
         external onlyOwner {
    merkleRoot = _merkleRoot;
    }

    function circuitBreaker()
        public onlyOwner {
        _pause();
    }

    function name()
        public view returns (string memory) {
        return _name;
    }

    function symbol()
        public view returns (string memory) {
        return _symbol;
    }

}

File 2 of 9 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;

import {Math} from "./math/Math.sol";
import {SignedMath} from "./math/SignedMath.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        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_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

File 3 of 9 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.20;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The tree and the proofs can be generated using our
 * https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
 * You will find a quickstart guide in the readme.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the Merkle tree could be reinterpreted as a leaf value.
 * OpenZeppelin's JavaScript library generates Merkle trees that are safe
 * against this attack out of the box.
 */
library MerkleProof {
    /**
     *@dev The multiproof provided is not valid.
     */
    error MerkleProofInvalidMultiproof();

    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(bytes32[] memory proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Calldata version of {verify}
     */
    function verifyCalldata(bytes32[] calldata proof, bytes32 root, bytes32 leaf) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

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

    /**
     * @dev Calldata version of {processProof}
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be simultaneously proven to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
     * proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
     * leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
     * respectively.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
     * is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
     * tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}.
     *
     * CAUTION: Not all Merkle trees admit multiproofs. See {processMultiProof} for details.
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuilds the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the Merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 proofLen = proof.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        if (leavesLen + proofLen != totalHashes + 1) {
            revert MerkleProofInvalidMultiproof();
        }

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value from the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i]
                ? (leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++])
                : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            if (proofPos != proofLen) {
                revert MerkleProofInvalidMultiproof();
            }
            unchecked {
                return hashes[totalHashes - 1];
            }
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Sorts the pair (a, b) and hashes the result.
     */
    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    /**
     * @dev Implementation of keccak256(abi.encode(a, b)) that doesn't allocate or expand memory.
     */
    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 4 of 9 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 6 of 9 : ERC1155.sol
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity >=0.8.0;

/// @notice Minimalist and gas efficient standard ERC1155 implementation.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC1155.sol)
abstract contract ERC1155 {
    /*//////////////////////////////////////////////////////////////
                                 EVENTS
    //////////////////////////////////////////////////////////////*/

    event TransferSingle(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256 id,
        uint256 amount
    );

    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] amounts
    );

    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    event URI(string value, uint256 indexed id);

    /*//////////////////////////////////////////////////////////////
                             ERC1155 STORAGE
    //////////////////////////////////////////////////////////////*/

    mapping(address => mapping(uint256 => uint256)) public balanceOf;

    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /*//////////////////////////////////////////////////////////////
                             METADATA LOGIC
    //////////////////////////////////////////////////////////////*/

    function uri(uint256 id) public view virtual returns (string memory);

    /*//////////////////////////////////////////////////////////////
                              ERC1155 LOGIC
    //////////////////////////////////////////////////////////////*/

    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) public virtual {
        require(msg.sender == from || isApprovedForAll[from][msg.sender], "NOT_AUTHORIZED");

        balanceOf[from][id] -= amount;
        balanceOf[to][id] += amount;

        emit TransferSingle(msg.sender, from, to, id, amount);

        require(
            to.code.length == 0
                ? to != address(0)
                : ERC1155TokenReceiver(to).onERC1155Received(msg.sender, from, id, amount, data) ==
                    ERC1155TokenReceiver.onERC1155Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) public virtual {
        require(ids.length == amounts.length, "LENGTH_MISMATCH");

        require(msg.sender == from || isApprovedForAll[from][msg.sender], "NOT_AUTHORIZED");

        // Storing these outside the loop saves ~15 gas per iteration.
        uint256 id;
        uint256 amount;

        for (uint256 i = 0; i < ids.length; ) {
            id = ids[i];
            amount = amounts[i];

            balanceOf[from][id] -= amount;
            balanceOf[to][id] += amount;

            // An array can't have a total length
            // larger than the max uint256 value.
            unchecked {
                ++i;
            }
        }

        emit TransferBatch(msg.sender, from, to, ids, amounts);

        require(
            to.code.length == 0
                ? to != address(0)
                : ERC1155TokenReceiver(to).onERC1155BatchReceived(msg.sender, from, ids, amounts, data) ==
                    ERC1155TokenReceiver.onERC1155BatchReceived.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function balanceOfBatch(address[] calldata owners, uint256[] calldata ids)
        public
        view
        virtual
        returns (uint256[] memory balances)
    {
        require(owners.length == ids.length, "LENGTH_MISMATCH");

        balances = new uint256[](owners.length);

        // Unchecked because the only math done is incrementing
        // the array index counter which cannot possibly overflow.
        unchecked {
            for (uint256 i = 0; i < owners.length; ++i) {
                balances[i] = balanceOf[owners[i]][ids[i]];
            }
        }
    }

    /*//////////////////////////////////////////////////////////////
                              ERC165 LOGIC
    //////////////////////////////////////////////////////////////*/

    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) {
        return
            interfaceId == 0x01ffc9a7 || // ERC165 Interface ID for ERC165
            interfaceId == 0xd9b67a26 || // ERC165 Interface ID for ERC1155
            interfaceId == 0x0e89341c; // ERC165 Interface ID for ERC1155MetadataURI
    }

    /*//////////////////////////////////////////////////////////////
                        INTERNAL MINT/BURN LOGIC
    //////////////////////////////////////////////////////////////*/

    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        balanceOf[to][id] += amount;

        emit TransferSingle(msg.sender, address(0), to, id, amount);

        require(
            to.code.length == 0
                ? to != address(0)
                : ERC1155TokenReceiver(to).onERC1155Received(msg.sender, address(0), id, amount, data) ==
                    ERC1155TokenReceiver.onERC1155Received.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function _batchMint(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        uint256 idsLength = ids.length; // Saves MLOADs.

        require(idsLength == amounts.length, "LENGTH_MISMATCH");

        for (uint256 i = 0; i < idsLength; ) {
            balanceOf[to][ids[i]] += amounts[i];

            // An array can't have a total length
            // larger than the max uint256 value.
            unchecked {
                ++i;
            }
        }

        emit TransferBatch(msg.sender, address(0), to, ids, amounts);

        require(
            to.code.length == 0
                ? to != address(0)
                : ERC1155TokenReceiver(to).onERC1155BatchReceived(msg.sender, address(0), ids, amounts, data) ==
                    ERC1155TokenReceiver.onERC1155BatchReceived.selector,
            "UNSAFE_RECIPIENT"
        );
    }

    function _batchBurn(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        uint256 idsLength = ids.length; // Saves MLOADs.

        require(idsLength == amounts.length, "LENGTH_MISMATCH");

        for (uint256 i = 0; i < idsLength; ) {
            balanceOf[from][ids[i]] -= amounts[i];

            // An array can't have a total length
            // larger than the max uint256 value.
            unchecked {
                ++i;
            }
        }

        emit TransferBatch(msg.sender, from, address(0), ids, amounts);
    }

    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        balanceOf[from][id] -= amount;

        emit TransferSingle(msg.sender, from, address(0), id, amount);
    }
}

/// @notice A generic interface for a contract which properly accepts ERC1155 tokens.
/// @author Solmate (https://github.com/Rari-Capital/solmate/blob/main/src/tokens/ERC1155.sol)
abstract contract ERC1155TokenReceiver {
    function onERC1155Received(
        address,
        address,
        uint256,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC1155TokenReceiver.onERC1155Received.selector;
    }

    function onERC1155BatchReceived(
        address,
        address,
        uint256[] calldata,
        uint256[] calldata,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC1155TokenReceiver.onERC1155BatchReceived.selector;
    }
}

File 7 of 9 : SignedMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

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

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

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

File 8 of 9 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

File 9 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CrackerBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"CrackerClaimed","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"INITIAL_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"owners","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"balances","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"circuitBreaker","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"isEligibleForClaim","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

608060405234801562000010575f80fd5b506040516200462138038062004621833981810160405281019062000036919062000749565b620000566200004a620000fd60201b60201c565b6200010460201b60201c565b5f600260146101000a81548160ff021916908315150217905550826004908162000081919062000a17565b50816005908162000093919062000a17565b50620000b8336001604560405180602001604052805f815250620001c760201b60201c565b6045600a5f600181526020019081526020015f205f828254620000dc919062000b28565b92505081905550620000f4816200041560201b60201c565b50505062000e75565b5f33905090565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b815f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8581526020019081526020015f205f82825462000223919062000b28565b925050819055508373ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051620002a292919062000b73565b60405180910390a45f8473ffffffffffffffffffffffffffffffffffffffff163b146200039c5763f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663f23a6e61335f8787876040518663ffffffff1660e01b81526004016200033395949392919062000c09565b6020604051808303815f875af115801562000350573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019062000376919062000cc5565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614620003cd565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b6200040f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004069062000d53565b60405180910390fd5b50505050565b62000425620004aa60201b60201c565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160362000496576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200048d9062000de7565b60405180910390fd5b620004a7816200010460201b60201c565b50565b620004ba620000fd60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620004e06200053b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005309062000e55565b60405180910390fd5b565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f604051905090565b5f80fd5b5f80fd5b5f80fd5b5f80fd5b5f601f19601f8301169050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b620005c4826200057c565b810181811067ffffffffffffffff82111715620005e657620005e56200058c565b5b80604052505050565b5f620005fa62000563565b9050620006088282620005b9565b919050565b5f67ffffffffffffffff8211156200062a57620006296200058c565b5b62000635826200057c565b9050602081019050919050565b5f5b838110156200066157808201518184015260208101905062000644565b5f8484015250505050565b5f620006826200067c846200060d565b620005ef565b905082815260208101848484011115620006a157620006a062000578565b5b620006ae84828562000642565b509392505050565b5f82601f830112620006cd57620006cc62000574565b5b8151620006df8482602086016200066c565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200071382620006e8565b9050919050565b620007258162000707565b811462000730575f80fd5b50565b5f8151905062000743816200071a565b92915050565b5f805f606084860312156200076357620007626200056c565b5b5f84015167ffffffffffffffff81111562000783576200078262000570565b5b6200079186828701620006b6565b935050602084015167ffffffffffffffff811115620007b557620007b462000570565b5b620007c386828701620006b6565b9250506040620007d68682870162000733565b9150509250925092565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200082f57607f821691505b602082108103620008455762000844620007ea565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620008a97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200086c565b620008b586836200086c565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620008ff620008f9620008f384620008cd565b620008d6565b620008cd565b9050919050565b5f819050919050565b6200091a83620008df565b62000932620009298262000906565b84845462000878565b825550505050565b5f90565b620009486200093a565b620009558184846200090f565b505050565b5b818110156200097c57620009705f826200093e565b6001810190506200095b565b5050565b601f821115620009cb5762000995816200084b565b620009a0846200085d565b81016020851015620009b0578190505b620009c8620009bf856200085d565b8301826200095a565b50505b505050565b5f82821c905092915050565b5f620009ed5f1984600802620009d0565b1980831691505092915050565b5f62000a078383620009dc565b9150826002028217905092915050565b62000a2282620007e0565b67ffffffffffffffff81111562000a3e5762000a3d6200058c565b5b62000a4a825462000817565b62000a5782828562000980565b5f60209050601f83116001811462000a8d575f841562000a78578287015190505b62000a848582620009fa565b86555062000af3565b601f19841662000a9d866200084b565b5f5b8281101562000ac65784890151825560018201915060208501945060208101905062000a9f565b8683101562000ae6578489015162000ae2601f891682620009dc565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000b3482620008cd565b915062000b4183620008cd565b925082820190508082111562000b5c5762000b5b62000afb565b5b92915050565b62000b6d81620008cd565b82525050565b5f60408201905062000b885f83018562000b62565b62000b97602083018462000b62565b9392505050565b62000ba98162000707565b82525050565b5f81519050919050565b5f82825260208201905092915050565b5f62000bd58262000baf565b62000be1818562000bb9565b935062000bf381856020860162000642565b62000bfe816200057c565b840191505092915050565b5f60a08201905062000c1e5f83018862000b9e565b62000c2d602083018762000b9e565b62000c3c604083018662000b62565b62000c4b606083018562000b62565b818103608083015262000c5f818462000bc9565b90509695505050505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000ca18162000c6b565b811462000cac575f80fd5b50565b5f8151905062000cbf8162000c96565b92915050565b5f6020828403121562000cdd5762000cdc6200056c565b5b5f62000cec8482850162000caf565b91505092915050565b5f82825260208201905092915050565b7f554e534146455f524543495049454e54000000000000000000000000000000005f82015250565b5f62000d3b60108362000cf5565b915062000d488262000d05565b602082019050919050565b5f6020820190508181035f83015262000d6c8162000d2d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f62000dcf60268362000cf5565b915062000ddc8262000d73565b604082019050919050565b5f6020820190508181035f83015262000e008162000dc1565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f62000e3d60208362000cf5565b915062000e4a8262000e07565b602082019050919050565b5f6020820190508181035f83015262000e6e8162000e2f565b9050919050565b61379e8062000e835f395ff3fe608060405234801561000f575f80fd5b50600436106101c1575f3560e01c8063869f7594116100f7578063b391c50811610095578063e985e9c51161006f578063e985e9c5146104df578063f242432a1461050f578063f2fde38b1461052b578063f5298aca14610547576101c1565b8063b391c50814610475578063bd85b03914610491578063e8a3d485146104c1576101c1565b8063938e3d7b116100d1578063938e3d7b1461040157806395d89b411461041d578063a22cb4651461043b578063a5c42ef114610457576101c1565b8063869f7594146103955780638da5cb5b146103c5578063902d55a5146103e3576101c1565b80632eb4a7ab1161016457806355f804b31161013e57806355f804b3146103355780635c975abb14610351578063715018a61461036f5780637cb6475914610379576101c1565b80632eb4a7ab146102b75780634cb616a0146102d55780634e1273f414610305576101c1565b80630e89341c116101a05780630e89341c1461024357806316efd94114610273578063211d93751461027d5780632eb2c2d61461029b576101c1565b8062fdd58e146101c557806301ffc9a7146101f557806306fdde0314610225575b5f80fd5b6101df60048036038101906101da91906120c4565b610563565b6040516101ec9190612111565b60405180910390f35b61020f600480360381019061020a919061217f565b610582565b60405161021c91906121c4565b60405180910390f35b61022d610613565b60405161023a9190612267565b60405180910390f35b61025d60048036038101906102589190612287565b6106a3565b60405161026a9190612267565b60405180910390f35b61027b61071a565b005b61028561072c565b6040516102929190612111565b60405180910390f35b6102b560048036038101906102b09190612368565b610731565b005b6102bf610b77565b6040516102cc9190612457565b60405180910390f35b6102ef60048036038101906102ea91906124c5565b610b7d565b6040516102fc91906121c4565b60405180910390f35b61031f600480360381019061031a9190612577565b610c57565b60405161032c91906126ac565b60405180910390f35b61034f600480360381019061034a91906127f4565b610dbb565b005b610359610dd6565b60405161036691906121c4565b60405180910390f35b610377610dec565b005b610393600480360381019061038e9190612865565b610dff565b005b6103af60048036038101906103aa9190612287565b610e11565b6040516103bc9190612111565b60405180910390f35b6103cd610e26565b6040516103da919061289f565b60405180910390f35b6103eb610e4e565b6040516103f89190612111565b60405180910390f35b61041b600480360381019061041691906127f4565b610e54565b005b610425610e6f565b6040516104329190612267565b60405180910390f35b610455600480360381019061045091906128e2565b610eff565b005b61045f610ff7565b60405161046c9190612111565b60405180910390f35b61048f600480360381019061048a9190612920565b610ffc565b005b6104ab60048036038101906104a69190612287565b6111b1565b6040516104b89190612111565b60405180910390f35b6104c96111c6565b6040516104d69190612267565b60405180910390f35b6104f960048036038101906104f4919061296b565b611256565b60405161050691906121c4565b60405180910390f35b610529600480360381019061052491906129a9565b611280565b005b61054560048036038101906105409190612a3f565b61161f565b005b610561600480360381019061055c9190612a6a565b6116a1565b005b5f602052815f5260405f20602052805f5260405f205f91509150505481565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105dc575063d9b67a2660e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060c5750630e89341c60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606004805461062290612ae7565b80601f016020809104026020016040519081016040528092919081815260200182805461064e90612ae7565b80156106995780601f1061067057610100808354040283529160200191610699565b820191905f5260205f20905b81548152906001019060200180831161067c57829003601f168201915b5050505050905090565b6060600182146106e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106df90612b61565b60405180910390fd5b60066106f383611934565b604051602001610704929190612c95565b6040516020818303038152906040529050919050565b6107226119fe565b61072a611a7c565b565b604581565b838390508686905014610779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077090612d0d565b60405180910390fd5b8773ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610834575060015f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90612d75565b60405180910390fd5b5f805f5b888890508110156109875788888281811061089557610894612d93565b5b9050602002013592508686828181106108b1576108b0612d93565b5b905060200201359150815f808d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8581526020019081526020015f205f8282546109149190612ded565b92505081905550815f808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8581526020019081526020015f205f8282546109759190612e20565b92505081905550806001019050610877565b508873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8b8b8b8b604051610a029493929190612ebb565b60405180910390a45f8973ffffffffffffffffffffffffffffffffffffffff163b14610afb5763bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168973ffffffffffffffffffffffffffffffffffffffff1663bc197c81338d8c8c8c8c8c8c6040518963ffffffff1660e01b8152600401610a96989796959493929190612f30565b6020604051808303815f875af1158015610ab2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad69190612fb0565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614610b2c565b5f73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290613025565b60405180910390fd5b50505050505050505050565b60075481565b5f600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610bd5575f9050610c50565b5f84604051602001610be79190613088565b604051602081830303815290604052805190602001209050610c4c8484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060075483611adf565b9150505b9392505050565b6060828290508585905014610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890612d0d565b60405180910390fd5b8484905067ffffffffffffffff811115610cbe57610cbd6126d0565b5b604051908082528060200260200182016040528015610cec5781602001602082028036833780820191505090505b5090505f5b85859050811015610db2575f80878784818110610d1157610d10612d93565b5b9050602002016020810190610d269190612a3f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f858584818110610d7357610d72612d93565b5b9050602002013581526020019081526020015f2054828281518110610d9b57610d9a612d93565b5b602002602001018181525050806001019050610cf1565b50949350505050565b610dc36119fe565b8060069081610dd2919061322d565b5050565b5f600260149054906101000a900460ff16905090565b610df46119fe565b610dfd5f611af5565b565b610e076119fe565b8060078190555050565b6009602052805f5260405f205f915090505481565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107d081565b610e5c6119fe565b8060039081610e6b919061322d565b5050565b606060058054610e7e90612ae7565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaa90612ae7565b8015610ef55780601f10610ecc57610100808354040283529160200191610ef5565b820191905f5260205f20905b815481529060010190602001808311610ed857829003601f168201915b5050505050905090565b8060015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610feb91906121c4565b60405180910390a35050565b600181565b600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d9061336c565b60405180910390fd5b5f336040516020016110989190613088565b6040516020818303038152906040528051906020012090506110fd8383808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060075483611adf565b61113c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611133906133d4565b60405180910390fd5b6001600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506111ac3360018060405180602001604052805f815250611bb8565b505050565b600a602052805f5260405f205f915090505481565b6060600380546111d590612ae7565b80601f016020809104026020016040519081016040528092919081815260200182805461120190612ae7565b801561124c5780601f106112235761010080835404028352916020019161124c565b820191905f5260205f20905b81548152906001019060200180831161122f57829003601f168201915b5050505050905090565b6001602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b8573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061133b575060015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61137a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137190612d75565b60405180910390fd5b825f808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8681526020019081526020015f205f8282546113d49190612ded565b92505081905550825f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8681526020019081526020015f205f8282546114359190612e20565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516114b29291906133f2565b60405180910390a45f8573ffffffffffffffffffffffffffffffffffffffff163b146115a75763f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168573ffffffffffffffffffffffffffffffffffffffff1663f23a6e613389888888886040518763ffffffff1660e01b815260040161154296959493929190613419565b6020604051808303815f875af115801561155e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115829190612fb0565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146115d8565b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613025565b60405180910390fd5b505050505050565b6116276119fe565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c906134e3565b60405180910390fd5b61169e81611af5565b50565b3373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061175c575060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61179b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117929061354b565b60405180910390fd5b805f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20541015611829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611820906135b3565b60405180910390fd5b805f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205f8282546118839190612ded565b9250508190555080600a5f8481526020019081526020015f205f8282546118aa9190612ded565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6285856040516119279291906133f2565b60405180910390a4505050565b60605f600161194284611df8565b0190505f8167ffffffffffffffff8111156119605761195f6126d0565b5b6040519080825280601f01601f1916602001820160405280156119925781602001600182028036833780820191505090505b5090505f82602001820190505b6001156119f3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816119e8576119e76135d1565b5b0494505f850361199f575b819350505050919050565b611a06611f49565b73ffffffffffffffffffffffffffffffffffffffff16611a24610e26565b73ffffffffffffffffffffffffffffffffffffffff1614611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190613648565b60405180910390fd5b565b611a84611f50565b6001600260146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ac8611f49565b604051611ad5919061289f565b60405180910390a1565b5f82611aeb8584611f9a565b1490509392505050565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b815f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8581526020019081526020015f205f828254611c129190612e20565b925050819055508373ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051611c8f9291906133f2565b60405180910390a45f8473ffffffffffffffffffffffffffffffffffffffff163b14611d825763f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663f23a6e61335f8787876040518663ffffffff1660e01b8152600401611d1d9594939291906136a8565b6020604051808303815f875af1158015611d39573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d5d9190612fb0565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611db3565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990613025565b60405180910390fd5b50505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611e54577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611e4a57611e496135d1565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611e91576d04ee2d6d415b85acef81000000008381611e8757611e866135d1565b5b0492506020810190505b662386f26fc100008310611ec057662386f26fc100008381611eb657611eb56135d1565b5b0492506010810190505b6305f5e1008310611ee9576305f5e1008381611edf57611ede6135d1565b5b0492506008810190505b6127108310611f0e576127108381611f0457611f036135d1565b5b0492506004810190505b60648310611f315760648381611f2757611f266135d1565b5b0492506002810190505b600a8310611f40576001810190505b80915050919050565b5f33905090565b611f58610dd6565b15611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f9061374a565b60405180910390fd5b565b5f808290505f5b8451811015611fdd57611fce82868381518110611fc157611fc0612d93565b5b6020026020010151611fe8565b91508080600101915050611fa1565b508091505092915050565b5f818310611fff57611ffa8284612012565b61200a565b6120098383612012565b5b905092915050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61206082612037565b9050919050565b61207081612056565b811461207a575f80fd5b50565b5f8135905061208b81612067565b92915050565b5f819050919050565b6120a381612091565b81146120ad575f80fd5b50565b5f813590506120be8161209a565b92915050565b5f80604083850312156120da576120d961202f565b5b5f6120e78582860161207d565b92505060206120f8858286016120b0565b9150509250929050565b61210b81612091565b82525050565b5f6020820190506121245f830184612102565b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61215e8161212a565b8114612168575f80fd5b50565b5f8135905061217981612155565b92915050565b5f602082840312156121945761219361202f565b5b5f6121a18482850161216b565b91505092915050565b5f8115159050919050565b6121be816121aa565b82525050565b5f6020820190506121d75f8301846121b5565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156122145780820151818401526020810190506121f9565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612239826121dd565b61224381856121e7565b93506122538185602086016121f7565b61225c8161221f565b840191505092915050565b5f6020820190508181035f83015261227f818461222f565b905092915050565b5f6020828403121561229c5761229b61202f565b5b5f6122a9848285016120b0565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126122d3576122d26122b2565b5b8235905067ffffffffffffffff8111156122f0576122ef6122b6565b5b60208301915083602082028301111561230c5761230b6122ba565b5b9250929050565b5f8083601f840112612328576123276122b2565b5b8235905067ffffffffffffffff811115612345576123446122b6565b5b602083019150836001820283011115612361576123606122ba565b5b9250929050565b5f805f805f805f8060a0898b0312156123845761238361202f565b5b5f6123918b828c0161207d565b98505060206123a28b828c0161207d565b975050604089013567ffffffffffffffff8111156123c3576123c2612033565b5b6123cf8b828c016122be565b9650965050606089013567ffffffffffffffff8111156123f2576123f1612033565b5b6123fe8b828c016122be565b9450945050608089013567ffffffffffffffff81111561242157612420612033565b5b61242d8b828c01612313565b92509250509295985092959890939650565b5f819050919050565b6124518161243f565b82525050565b5f60208201905061246a5f830184612448565b92915050565b5f8083601f840112612485576124846122b2565b5b8235905067ffffffffffffffff8111156124a2576124a16122b6565b5b6020830191508360208202830111156124be576124bd6122ba565b5b9250929050565b5f805f604084860312156124dc576124db61202f565b5b5f6124e98682870161207d565b935050602084013567ffffffffffffffff81111561250a57612509612033565b5b61251686828701612470565b92509250509250925092565b5f8083601f840112612537576125366122b2565b5b8235905067ffffffffffffffff811115612554576125536122b6565b5b6020830191508360208202830111156125705761256f6122ba565b5b9250929050565b5f805f806040858703121561258f5761258e61202f565b5b5f85013567ffffffffffffffff8111156125ac576125ab612033565b5b6125b887828801612522565b9450945050602085013567ffffffffffffffff8111156125db576125da612033565b5b6125e7878288016122be565b925092505092959194509250565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61262781612091565b82525050565b5f612638838361261e565b60208301905092915050565b5f602082019050919050565b5f61265a826125f5565b61266481856125ff565b935061266f8361260f565b805f5b8381101561269f578151612686888261262d565b975061269183612644565b925050600181019050612672565b5085935050505092915050565b5f6020820190508181035f8301526126c48184612650565b905092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6127068261221f565b810181811067ffffffffffffffff82111715612725576127246126d0565b5b80604052505050565b5f612737612026565b905061274382826126fd565b919050565b5f67ffffffffffffffff821115612762576127616126d0565b5b61276b8261221f565b9050602081019050919050565b828183375f83830152505050565b5f61279861279384612748565b61272e565b9050828152602081018484840111156127b4576127b36126cc565b5b6127bf848285612778565b509392505050565b5f82601f8301126127db576127da6122b2565b5b81356127eb848260208601612786565b91505092915050565b5f602082840312156128095761280861202f565b5b5f82013567ffffffffffffffff81111561282657612825612033565b5b612832848285016127c7565b91505092915050565b6128448161243f565b811461284e575f80fd5b50565b5f8135905061285f8161283b565b92915050565b5f6020828403121561287a5761287961202f565b5b5f61288784828501612851565b91505092915050565b61289981612056565b82525050565b5f6020820190506128b25f830184612890565b92915050565b6128c1816121aa565b81146128cb575f80fd5b50565b5f813590506128dc816128b8565b92915050565b5f80604083850312156128f8576128f761202f565b5b5f6129058582860161207d565b9250506020612916858286016128ce565b9150509250929050565b5f80602083850312156129365761293561202f565b5b5f83013567ffffffffffffffff81111561295357612952612033565b5b61295f85828601612470565b92509250509250929050565b5f80604083850312156129815761298061202f565b5b5f61298e8582860161207d565b925050602061299f8582860161207d565b9150509250929050565b5f805f805f8060a087890312156129c3576129c261202f565b5b5f6129d089828a0161207d565b96505060206129e189828a0161207d565b95505060406129f289828a016120b0565b9450506060612a0389828a016120b0565b935050608087013567ffffffffffffffff811115612a2457612a23612033565b5b612a3089828a01612313565b92509250509295509295509295565b5f60208284031215612a5457612a5361202f565b5b5f612a618482850161207d565b91505092915050565b5f805f60608486031215612a8157612a8061202f565b5b5f612a8e8682870161207d565b9350506020612a9f868287016120b0565b9250506040612ab0868287016120b0565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612afe57607f821691505b602082108103612b1157612b10612aba565b5b50919050565b7f546f6b656e20494420646f6573206e6f742065786973740000000000000000005f82015250565b5f612b4b6017836121e7565b9150612b5682612b17565b602082019050919050565b5f6020820190508181035f830152612b7881612b3f565b9050919050565b5f81905092915050565b5f819050815f5260205f209050919050565b5f8154612ba781612ae7565b612bb18186612b7f565b9450600182165f8114612bcb5760018114612be057612c12565b60ff1983168652811515820286019350612c12565b612be985612b89565b5f5b83811015612c0a57815481890152600182019150602081019050612beb565b838801955050505b50505092915050565b5f612c25826121dd565b612c2f8185612b7f565b9350612c3f8185602086016121f7565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612c7f600583612b7f565b9150612c8a82612c4b565b600582019050919050565b5f612ca08285612b9b565b9150612cac8284612c1b565b9150612cb782612c73565b91508190509392505050565b7f4c454e4754485f4d49534d4154434800000000000000000000000000000000005f82015250565b5f612cf7600f836121e7565b9150612d0282612cc3565b602082019050919050565b5f6020820190508181035f830152612d2481612ceb565b9050919050565b7f4e4f545f415554484f52495a45440000000000000000000000000000000000005f82015250565b5f612d5f600e836121e7565b9150612d6a82612d2b565b602082019050919050565b5f6020820190508181035f830152612d8c81612d53565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612df782612091565b9150612e0283612091565b9250828203905081811115612e1a57612e19612dc0565b5b92915050565b5f612e2a82612091565b9150612e3583612091565b9250828201905080821115612e4d57612e4c612dc0565b5b92915050565b5f80fd5b82818337505050565b5f612e6b83856125ff565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115612e9e57612e9d612e53565b5b602083029250612eaf838584612e57565b82840190509392505050565b5f6040820190508181035f830152612ed4818688612e60565b90508181036020830152612ee9818486612e60565b905095945050505050565b5f82825260208201905092915050565b5f612f0f8385612ef4565b9350612f1c838584612778565b612f258361221f565b840190509392505050565b5f60a082019050612f435f83018b612890565b612f50602083018a612890565b8181036040830152612f6381888a612e60565b90508181036060830152612f78818688612e60565b90508181036080830152612f8d818486612f04565b90509998505050505050505050565b5f81519050612faa81612155565b92915050565b5f60208284031215612fc557612fc461202f565b5b5f612fd284828501612f9c565b91505092915050565b7f554e534146455f524543495049454e54000000000000000000000000000000005f82015250565b5f61300f6010836121e7565b915061301a82612fdb565b602082019050919050565b5f6020820190508181035f83015261303c81613003565b9050919050565b5f8160601b9050919050565b5f61305982613043565b9050919050565b5f61306a8261304f565b9050919050565b61308261307d82612056565b613060565b82525050565b5f6130938284613071565b60148201915081905092915050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026130ec7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130b1565b6130f686836130b1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61313161312c61312784612091565b61310e565b612091565b9050919050565b5f819050919050565b61314a83613117565b61315e61315682613138565b8484546130bd565b825550505050565b5f90565b613172613166565b61317d818484613141565b505050565b5b818110156131a0576131955f8261316a565b600181019050613183565b5050565b601f8211156131e5576131b681612b89565b6131bf846130a2565b810160208510156131ce578190505b6131e26131da856130a2565b830182613182565b50505b505050565b5f82821c905092915050565b5f6132055f19846008026131ea565b1980831691505092915050565b5f61321d83836131f6565b9150826002028217905092915050565b613236826121dd565b67ffffffffffffffff81111561324f5761324e6126d0565b5b6132598254612ae7565b6132648282856131a4565b5f60209050601f831160018114613295575f8415613283578287015190505b61328d8582613212565b8655506132f4565b601f1984166132a386612b89565b5f5b828110156132ca578489015182556001820191506020850194506020810190506132a5565b868310156132e757848901516132e3601f8916826131f6565b8355505b6001600288020188555050505b505050505050565b7f4e465420616c726561647920636c61696d6564206279207468697320616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6133566023836121e7565b9150613361826132fc565b604082019050919050565b5f6020820190508181035f8301526133838161334a565b9050919050565b7f496e76616c69642070726f6f66000000000000000000000000000000000000005f82015250565b5f6133be600d836121e7565b91506133c98261338a565b602082019050919050565b5f6020820190508181035f8301526133eb816133b2565b9050919050565b5f6040820190506134055f830185612102565b6134126020830184612102565b9392505050565b5f60a08201905061342c5f830189612890565b6134396020830188612890565b6134466040830187612102565b6134536060830186612102565b8181036080830152613466818486612f04565b9050979650505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6134cd6026836121e7565b91506134d882613473565b604082019050919050565b5f6020820190508181035f8301526134fa816134c1565b9050919050565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665645f82015250565b5f6135356020836121e7565b915061354082613501565b602082019050919050565b5f6020820190508181035f83015261356281613529565b9050919050565b7f4275726e20616d6f756e7420657863656564732062616c616e636500000000005f82015250565b5f61359d601b836121e7565b91506135a882613569565b602082019050919050565b5f6020820190508181035f8301526135ca81613591565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6136326020836121e7565b915061363d826135fe565b602082019050919050565b5f6020820190508181035f83015261365f81613626565b9050919050565b5f81519050919050565b5f61367a82613666565b6136848185612ef4565b93506136948185602086016121f7565b61369d8161221f565b840191505092915050565b5f60a0820190506136bb5f830188612890565b6136c86020830187612890565b6136d56040830186612102565b6136e26060830185612102565b81810360808301526136f48184613670565b90509695505050505050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f6137346010836121e7565b915061373f82613700565b602082019050919050565b5f6020820190508181035f83015261376181613728565b905091905056fea2646970667358221220a7f3ed6c64affae40bcb462d02ddab73b24141a78a96181449f82aca9a95314664736f6c63430008160033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000006942013379d195323e17cd2616435dce819c1fa900000000000000000000000000000000000000000000000000000000000000165468652050657065636f696e2050657065766572736500000000000000000000000000000000000000000000000000000000000000000000000000000000000850657065636f696e000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101c1575f3560e01c8063869f7594116100f7578063b391c50811610095578063e985e9c51161006f578063e985e9c5146104df578063f242432a1461050f578063f2fde38b1461052b578063f5298aca14610547576101c1565b8063b391c50814610475578063bd85b03914610491578063e8a3d485146104c1576101c1565b8063938e3d7b116100d1578063938e3d7b1461040157806395d89b411461041d578063a22cb4651461043b578063a5c42ef114610457576101c1565b8063869f7594146103955780638da5cb5b146103c5578063902d55a5146103e3576101c1565b80632eb4a7ab1161016457806355f804b31161013e57806355f804b3146103355780635c975abb14610351578063715018a61461036f5780637cb6475914610379576101c1565b80632eb4a7ab146102b75780634cb616a0146102d55780634e1273f414610305576101c1565b80630e89341c116101a05780630e89341c1461024357806316efd94114610273578063211d93751461027d5780632eb2c2d61461029b576101c1565b8062fdd58e146101c557806301ffc9a7146101f557806306fdde0314610225575b5f80fd5b6101df60048036038101906101da91906120c4565b610563565b6040516101ec9190612111565b60405180910390f35b61020f600480360381019061020a919061217f565b610582565b60405161021c91906121c4565b60405180910390f35b61022d610613565b60405161023a9190612267565b60405180910390f35b61025d60048036038101906102589190612287565b6106a3565b60405161026a9190612267565b60405180910390f35b61027b61071a565b005b61028561072c565b6040516102929190612111565b60405180910390f35b6102b560048036038101906102b09190612368565b610731565b005b6102bf610b77565b6040516102cc9190612457565b60405180910390f35b6102ef60048036038101906102ea91906124c5565b610b7d565b6040516102fc91906121c4565b60405180910390f35b61031f600480360381019061031a9190612577565b610c57565b60405161032c91906126ac565b60405180910390f35b61034f600480360381019061034a91906127f4565b610dbb565b005b610359610dd6565b60405161036691906121c4565b60405180910390f35b610377610dec565b005b610393600480360381019061038e9190612865565b610dff565b005b6103af60048036038101906103aa9190612287565b610e11565b6040516103bc9190612111565b60405180910390f35b6103cd610e26565b6040516103da919061289f565b60405180910390f35b6103eb610e4e565b6040516103f89190612111565b60405180910390f35b61041b600480360381019061041691906127f4565b610e54565b005b610425610e6f565b6040516104329190612267565b60405180910390f35b610455600480360381019061045091906128e2565b610eff565b005b61045f610ff7565b60405161046c9190612111565b60405180910390f35b61048f600480360381019061048a9190612920565b610ffc565b005b6104ab60048036038101906104a69190612287565b6111b1565b6040516104b89190612111565b60405180910390f35b6104c96111c6565b6040516104d69190612267565b60405180910390f35b6104f960048036038101906104f4919061296b565b611256565b60405161050691906121c4565b60405180910390f35b610529600480360381019061052491906129a9565b611280565b005b61054560048036038101906105409190612a3f565b61161f565b005b610561600480360381019061055c9190612a6a565b6116a1565b005b5f602052815f5260405f20602052805f5260405f205f91509150505481565b5f6301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105dc575063d9b67a2660e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060c5750630e89341c60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606004805461062290612ae7565b80601f016020809104026020016040519081016040528092919081815260200182805461064e90612ae7565b80156106995780601f1061067057610100808354040283529160200191610699565b820191905f5260205f20905b81548152906001019060200180831161067c57829003601f168201915b5050505050905090565b6060600182146106e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106df90612b61565b60405180910390fd5b60066106f383611934565b604051602001610704929190612c95565b6040516020818303038152906040529050919050565b6107226119fe565b61072a611a7c565b565b604581565b838390508686905014610779576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077090612d0d565b60405180910390fd5b8773ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161480610834575060015f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b610873576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086a90612d75565b60405180910390fd5b5f805f5b888890508110156109875788888281811061089557610894612d93565b5b9050602002013592508686828181106108b1576108b0612d93565b5b905060200201359150815f808d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8581526020019081526020015f205f8282546109149190612ded565b92505081905550815f808c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8581526020019081526020015f205f8282546109759190612e20565b92505081905550806001019050610877565b508873ffffffffffffffffffffffffffffffffffffffff168a73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8b8b8b8b604051610a029493929190612ebb565b60405180910390a45f8973ffffffffffffffffffffffffffffffffffffffff163b14610afb5763bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168973ffffffffffffffffffffffffffffffffffffffff1663bc197c81338d8c8c8c8c8c8c6040518963ffffffff1660e01b8152600401610a96989796959493929190612f30565b6020604051808303815f875af1158015610ab2573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ad69190612fb0565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614610b2c565b5f73ffffffffffffffffffffffffffffffffffffffff168973ffffffffffffffffffffffffffffffffffffffff1614155b610b6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6290613025565b60405180910390fd5b50505050505050505050565b60075481565b5f600b5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615610bd5575f9050610c50565b5f84604051602001610be79190613088565b604051602081830303815290604052805190602001209050610c4c8484808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060075483611adf565b9150505b9392505050565b6060828290508585905014610ca1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9890612d0d565b60405180910390fd5b8484905067ffffffffffffffff811115610cbe57610cbd6126d0565b5b604051908082528060200260200182016040528015610cec5781602001602082028036833780820191505090505b5090505f5b85859050811015610db2575f80878784818110610d1157610d10612d93565b5b9050602002016020810190610d269190612a3f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f858584818110610d7357610d72612d93565b5b9050602002013581526020019081526020015f2054828281518110610d9b57610d9a612d93565b5b602002602001018181525050806001019050610cf1565b50949350505050565b610dc36119fe565b8060069081610dd2919061322d565b5050565b5f600260149054906101000a900460ff16905090565b610df46119fe565b610dfd5f611af5565b565b610e076119fe565b8060078190555050565b6009602052805f5260405f205f915090505481565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107d081565b610e5c6119fe565b8060039081610e6b919061322d565b5050565b606060058054610e7e90612ae7565b80601f0160208091040260200160405190810160405280929190818152602001828054610eaa90612ae7565b8015610ef55780601f10610ecc57610100808354040283529160200191610ef5565b820191905f5260205f20905b815481529060010190602001808311610ed857829003601f168201915b5050505050905090565b8060015f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610feb91906121c4565b60405180910390a35050565b600181565b600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615611086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107d9061336c565b60405180910390fd5b5f336040516020016110989190613088565b6040516020818303038152906040528051906020012090506110fd8383808060200260200160405190810160405280939291908181526020018383602002808284375f81840152601f19601f8201169050808301925050505050505060075483611adf565b61113c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611133906133d4565b60405180910390fd5b6001600b5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506111ac3360018060405180602001604052805f815250611bb8565b505050565b600a602052805f5260405f205f915090505481565b6060600380546111d590612ae7565b80601f016020809104026020016040519081016040528092919081815260200182805461120190612ae7565b801561124c5780601f106112235761010080835404028352916020019161124c565b820191905f5260205f20905b81548152906001019060200180831161122f57829003601f168201915b5050505050905090565b6001602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b8573ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16148061133b575060015f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61137a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137190612d75565b60405180910390fd5b825f808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8681526020019081526020015f205f8282546113d49190612ded565b92505081905550825f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8681526020019081526020015f205f8282546114359190612e20565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516114b29291906133f2565b60405180910390a45f8573ffffffffffffffffffffffffffffffffffffffff163b146115a75763f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168573ffffffffffffffffffffffffffffffffffffffff1663f23a6e613389888888886040518763ffffffff1660e01b815260040161154296959493929190613419565b6020604051808303815f875af115801561155e573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906115829190612fb0565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146115d8565b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614155b611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90613025565b60405180910390fd5b505050505050565b6116276119fe565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611695576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168c906134e3565b60405180910390fd5b61169e81611af5565b50565b3373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061175c575060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b61179b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117929061354b565b60405180910390fd5b805f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f20541015611829576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611820906135b3565b60405180910390fd5b805f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8481526020019081526020015f205f8282546118839190612ded565b9250508190555080600a5f8481526020019081526020015f205f8282546118aa9190612ded565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6285856040516119279291906133f2565b60405180910390a4505050565b60605f600161194284611df8565b0190505f8167ffffffffffffffff8111156119605761195f6126d0565b5b6040519080825280601f01601f1916602001820160405280156119925781602001600182028036833780820191505090505b5090505f82602001820190505b6001156119f3578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816119e8576119e76135d1565b5b0494505f850361199f575b819350505050919050565b611a06611f49565b73ffffffffffffffffffffffffffffffffffffffff16611a24610e26565b73ffffffffffffffffffffffffffffffffffffffff1614611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190613648565b60405180910390fd5b565b611a84611f50565b6001600260146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611ac8611f49565b604051611ad5919061289f565b60405180910390a1565b5f82611aeb8584611f9a565b1490509392505050565b5f60025f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160025f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b815f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8581526020019081526020015f205f828254611c129190612e20565b925050819055508373ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628686604051611c8f9291906133f2565b60405180910390a45f8473ffffffffffffffffffffffffffffffffffffffff163b14611d825763f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663f23a6e61335f8787876040518663ffffffff1660e01b8152600401611d1d9594939291906136a8565b6020604051808303815f875af1158015611d39573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d5d9190612fb0565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614611db3565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990613025565b60405180910390fd5b50505050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611e54577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611e4a57611e496135d1565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611e91576d04ee2d6d415b85acef81000000008381611e8757611e866135d1565b5b0492506020810190505b662386f26fc100008310611ec057662386f26fc100008381611eb657611eb56135d1565b5b0492506010810190505b6305f5e1008310611ee9576305f5e1008381611edf57611ede6135d1565b5b0492506008810190505b6127108310611f0e576127108381611f0457611f036135d1565b5b0492506004810190505b60648310611f315760648381611f2757611f266135d1565b5b0492506002810190505b600a8310611f40576001810190505b80915050919050565b5f33905090565b611f58610dd6565b15611f98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8f9061374a565b60405180910390fd5b565b5f808290505f5b8451811015611fdd57611fce82868381518110611fc157611fc0612d93565b5b6020026020010151611fe8565b91508080600101915050611fa1565b508091505092915050565b5f818310611fff57611ffa8284612012565b61200a565b6120098383612012565b5b905092915050565b5f825f528160205260405f20905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61206082612037565b9050919050565b61207081612056565b811461207a575f80fd5b50565b5f8135905061208b81612067565b92915050565b5f819050919050565b6120a381612091565b81146120ad575f80fd5b50565b5f813590506120be8161209a565b92915050565b5f80604083850312156120da576120d961202f565b5b5f6120e78582860161207d565b92505060206120f8858286016120b0565b9150509250929050565b61210b81612091565b82525050565b5f6020820190506121245f830184612102565b92915050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61215e8161212a565b8114612168575f80fd5b50565b5f8135905061217981612155565b92915050565b5f602082840312156121945761219361202f565b5b5f6121a18482850161216b565b91505092915050565b5f8115159050919050565b6121be816121aa565b82525050565b5f6020820190506121d75f8301846121b5565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b838110156122145780820151818401526020810190506121f9565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612239826121dd565b61224381856121e7565b93506122538185602086016121f7565b61225c8161221f565b840191505092915050565b5f6020820190508181035f83015261227f818461222f565b905092915050565b5f6020828403121561229c5761229b61202f565b5b5f6122a9848285016120b0565b91505092915050565b5f80fd5b5f80fd5b5f80fd5b5f8083601f8401126122d3576122d26122b2565b5b8235905067ffffffffffffffff8111156122f0576122ef6122b6565b5b60208301915083602082028301111561230c5761230b6122ba565b5b9250929050565b5f8083601f840112612328576123276122b2565b5b8235905067ffffffffffffffff811115612345576123446122b6565b5b602083019150836001820283011115612361576123606122ba565b5b9250929050565b5f805f805f805f8060a0898b0312156123845761238361202f565b5b5f6123918b828c0161207d565b98505060206123a28b828c0161207d565b975050604089013567ffffffffffffffff8111156123c3576123c2612033565b5b6123cf8b828c016122be565b9650965050606089013567ffffffffffffffff8111156123f2576123f1612033565b5b6123fe8b828c016122be565b9450945050608089013567ffffffffffffffff81111561242157612420612033565b5b61242d8b828c01612313565b92509250509295985092959890939650565b5f819050919050565b6124518161243f565b82525050565b5f60208201905061246a5f830184612448565b92915050565b5f8083601f840112612485576124846122b2565b5b8235905067ffffffffffffffff8111156124a2576124a16122b6565b5b6020830191508360208202830111156124be576124bd6122ba565b5b9250929050565b5f805f604084860312156124dc576124db61202f565b5b5f6124e98682870161207d565b935050602084013567ffffffffffffffff81111561250a57612509612033565b5b61251686828701612470565b92509250509250925092565b5f8083601f840112612537576125366122b2565b5b8235905067ffffffffffffffff811115612554576125536122b6565b5b6020830191508360208202830111156125705761256f6122ba565b5b9250929050565b5f805f806040858703121561258f5761258e61202f565b5b5f85013567ffffffffffffffff8111156125ac576125ab612033565b5b6125b887828801612522565b9450945050602085013567ffffffffffffffff8111156125db576125da612033565b5b6125e7878288016122be565b925092505092959194509250565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b61262781612091565b82525050565b5f612638838361261e565b60208301905092915050565b5f602082019050919050565b5f61265a826125f5565b61266481856125ff565b935061266f8361260f565b805f5b8381101561269f578151612686888261262d565b975061269183612644565b925050600181019050612672565b5085935050505092915050565b5f6020820190508181035f8301526126c48184612650565b905092915050565b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6127068261221f565b810181811067ffffffffffffffff82111715612725576127246126d0565b5b80604052505050565b5f612737612026565b905061274382826126fd565b919050565b5f67ffffffffffffffff821115612762576127616126d0565b5b61276b8261221f565b9050602081019050919050565b828183375f83830152505050565b5f61279861279384612748565b61272e565b9050828152602081018484840111156127b4576127b36126cc565b5b6127bf848285612778565b509392505050565b5f82601f8301126127db576127da6122b2565b5b81356127eb848260208601612786565b91505092915050565b5f602082840312156128095761280861202f565b5b5f82013567ffffffffffffffff81111561282657612825612033565b5b612832848285016127c7565b91505092915050565b6128448161243f565b811461284e575f80fd5b50565b5f8135905061285f8161283b565b92915050565b5f6020828403121561287a5761287961202f565b5b5f61288784828501612851565b91505092915050565b61289981612056565b82525050565b5f6020820190506128b25f830184612890565b92915050565b6128c1816121aa565b81146128cb575f80fd5b50565b5f813590506128dc816128b8565b92915050565b5f80604083850312156128f8576128f761202f565b5b5f6129058582860161207d565b9250506020612916858286016128ce565b9150509250929050565b5f80602083850312156129365761293561202f565b5b5f83013567ffffffffffffffff81111561295357612952612033565b5b61295f85828601612470565b92509250509250929050565b5f80604083850312156129815761298061202f565b5b5f61298e8582860161207d565b925050602061299f8582860161207d565b9150509250929050565b5f805f805f8060a087890312156129c3576129c261202f565b5b5f6129d089828a0161207d565b96505060206129e189828a0161207d565b95505060406129f289828a016120b0565b9450506060612a0389828a016120b0565b935050608087013567ffffffffffffffff811115612a2457612a23612033565b5b612a3089828a01612313565b92509250509295509295509295565b5f60208284031215612a5457612a5361202f565b5b5f612a618482850161207d565b91505092915050565b5f805f60608486031215612a8157612a8061202f565b5b5f612a8e8682870161207d565b9350506020612a9f868287016120b0565b9250506040612ab0868287016120b0565b9150509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680612afe57607f821691505b602082108103612b1157612b10612aba565b5b50919050565b7f546f6b656e20494420646f6573206e6f742065786973740000000000000000005f82015250565b5f612b4b6017836121e7565b9150612b5682612b17565b602082019050919050565b5f6020820190508181035f830152612b7881612b3f565b9050919050565b5f81905092915050565b5f819050815f5260205f209050919050565b5f8154612ba781612ae7565b612bb18186612b7f565b9450600182165f8114612bcb5760018114612be057612c12565b60ff1983168652811515820286019350612c12565b612be985612b89565b5f5b83811015612c0a57815481890152600182019150602081019050612beb565b838801955050505b50505092915050565b5f612c25826121dd565b612c2f8185612b7f565b9350612c3f8185602086016121f7565b80840191505092915050565b7f2e6a736f6e0000000000000000000000000000000000000000000000000000005f82015250565b5f612c7f600583612b7f565b9150612c8a82612c4b565b600582019050919050565b5f612ca08285612b9b565b9150612cac8284612c1b565b9150612cb782612c73565b91508190509392505050565b7f4c454e4754485f4d49534d4154434800000000000000000000000000000000005f82015250565b5f612cf7600f836121e7565b9150612d0282612cc3565b602082019050919050565b5f6020820190508181035f830152612d2481612ceb565b9050919050565b7f4e4f545f415554484f52495a45440000000000000000000000000000000000005f82015250565b5f612d5f600e836121e7565b9150612d6a82612d2b565b602082019050919050565b5f6020820190508181035f830152612d8c81612d53565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f612df782612091565b9150612e0283612091565b9250828203905081811115612e1a57612e19612dc0565b5b92915050565b5f612e2a82612091565b9150612e3583612091565b9250828201905080821115612e4d57612e4c612dc0565b5b92915050565b5f80fd5b82818337505050565b5f612e6b83856125ff565b93507f07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831115612e9e57612e9d612e53565b5b602083029250612eaf838584612e57565b82840190509392505050565b5f6040820190508181035f830152612ed4818688612e60565b90508181036020830152612ee9818486612e60565b905095945050505050565b5f82825260208201905092915050565b5f612f0f8385612ef4565b9350612f1c838584612778565b612f258361221f565b840190509392505050565b5f60a082019050612f435f83018b612890565b612f50602083018a612890565b8181036040830152612f6381888a612e60565b90508181036060830152612f78818688612e60565b90508181036080830152612f8d818486612f04565b90509998505050505050505050565b5f81519050612faa81612155565b92915050565b5f60208284031215612fc557612fc461202f565b5b5f612fd284828501612f9c565b91505092915050565b7f554e534146455f524543495049454e54000000000000000000000000000000005f82015250565b5f61300f6010836121e7565b915061301a82612fdb565b602082019050919050565b5f6020820190508181035f83015261303c81613003565b9050919050565b5f8160601b9050919050565b5f61305982613043565b9050919050565b5f61306a8261304f565b9050919050565b61308261307d82612056565b613060565b82525050565b5f6130938284613071565b60148201915081905092915050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026130ec7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826130b1565b6130f686836130b1565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61313161312c61312784612091565b61310e565b612091565b9050919050565b5f819050919050565b61314a83613117565b61315e61315682613138565b8484546130bd565b825550505050565b5f90565b613172613166565b61317d818484613141565b505050565b5b818110156131a0576131955f8261316a565b600181019050613183565b5050565b601f8211156131e5576131b681612b89565b6131bf846130a2565b810160208510156131ce578190505b6131e26131da856130a2565b830182613182565b50505b505050565b5f82821c905092915050565b5f6132055f19846008026131ea565b1980831691505092915050565b5f61321d83836131f6565b9150826002028217905092915050565b613236826121dd565b67ffffffffffffffff81111561324f5761324e6126d0565b5b6132598254612ae7565b6132648282856131a4565b5f60209050601f831160018114613295575f8415613283578287015190505b61328d8582613212565b8655506132f4565b601f1984166132a386612b89565b5f5b828110156132ca578489015182556001820191506020850194506020810190506132a5565b868310156132e757848901516132e3601f8916826131f6565b8355505b6001600288020188555050505b505050505050565b7f4e465420616c726561647920636c61696d6564206279207468697320616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f6133566023836121e7565b9150613361826132fc565b604082019050919050565b5f6020820190508181035f8301526133838161334a565b9050919050565b7f496e76616c69642070726f6f66000000000000000000000000000000000000005f82015250565b5f6133be600d836121e7565b91506133c98261338a565b602082019050919050565b5f6020820190508181035f8301526133eb816133b2565b9050919050565b5f6040820190506134055f830185612102565b6134126020830184612102565b9392505050565b5f60a08201905061342c5f830189612890565b6134396020830188612890565b6134466040830187612102565b6134536060830186612102565b8181036080830152613466818486612f04565b9050979650505050505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6134cd6026836121e7565b91506134d882613473565b604082019050919050565b5f6020820190508181035f8301526134fa816134c1565b9050919050565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665645f82015250565b5f6135356020836121e7565b915061354082613501565b602082019050919050565b5f6020820190508181035f83015261356281613529565b9050919050565b7f4275726e20616d6f756e7420657863656564732062616c616e636500000000005f82015250565b5f61359d601b836121e7565b91506135a882613569565b602082019050919050565b5f6020820190508181035f8301526135ca81613591565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6136326020836121e7565b915061363d826135fe565b602082019050919050565b5f6020820190508181035f83015261365f81613626565b9050919050565b5f81519050919050565b5f61367a82613666565b6136848185612ef4565b93506136948185602086016121f7565b61369d8161221f565b840191505092915050565b5f60a0820190506136bb5f830188612890565b6136c86020830187612890565b6136d56040830186612102565b6136e26060830185612102565b81810360808301526136f48184613670565b90509695505050505050565b7f5061757361626c653a20706175736564000000000000000000000000000000005f82015250565b5f6137346010836121e7565b915061373f82613700565b602082019050919050565b5f6020820190508181035f83015261376181613728565b905091905056fea2646970667358221220a7f3ed6c64affae40bcb462d02ddab73b24141a78a96181449f82aca9a95314664736f6c63430008160033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000006942013379d195323e17cd2616435dce819c1fa900000000000000000000000000000000000000000000000000000000000000165468652050657065636f696e2050657065766572736500000000000000000000000000000000000000000000000000000000000000000000000000000000000850657065636f696e000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): The Pepecoin Pepeverse
Arg [1] : symbol_ (string): Pepecoin
Arg [2] : initialOwner (address): 0x6942013379d195323E17CD2616435DcE819c1fA9

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000006942013379d195323e17cd2616435dce819c1fa9
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [4] : 5468652050657065636f696e2050657065766572736500000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 50657065636f696e000000000000000000000000000000000000000000000000


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.