ETH Price: $2,613.48 (-0.44%)

Token

LUX (LUX)
 

Overview

Max Total Supply

176 LUX

Holders

108

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
0 LUX
0x647ae3c152e8f338da46d5dcaaa4292799f62e8e
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:
Lux

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 18 : Lux.sol
// SPDX-License-Identifier: GPL-3.0
// presented by Wildxyz

pragma solidity ^0.8.17;

import {Strings} from "./Strings.sol";
import {WildNFT} from "./WildNFT.sol";
import {Base64} from "./Base64.sol";
import {Math} from "./Math.sol";

contract Lux is WildNFT {
    uint256 public CYCLE_SECONDS = 1969920; // 22.8 days * 24 hours * 60 minutes * 60 seconds
    uint256 _maxSupply = 176;

    constructor(address _minter) WildNFT("LUX", "LUX", _minter, _maxSupply) {}

    function randomIndices(uint256 count)
        public
        view
        returns (uint256[] memory)
    {
        uint256[] memory numbers = new uint256[](count);
        for (uint256 j = 0; j < count; j++) {
            numbers[j] = j;
        }
        uint256 seed = uint256(
            keccak256(abi.encodePacked(block.timestamp / CYCLE_SECONDS )) 
        );
        for (uint256 i = 0; i < numbers.length; i++) {
            uint256 n = i + ((seed >> i) % (numbers.length - i));
            uint256 temp = numbers[n];
            numbers[n] = numbers[i];
            numbers[i] = temp;
        }
        return numbers;
    }

    /**
     Returns i % n and making sure the result is positive. Eg -1 % 44 => 43
     */
    function posMod(int256 i, int256 n) private pure returns (uint256) {
        int256 result = i % n;
        if (result < 0) {
            return uint256(result + n);
        }
        return uint256(result);
    }

    // each token is in one of four batches [0,1,2,3]
    // each batch has 44 tokens (44x4=176 total)
    // every CYCLE_SECONDS, the img assigned to each token changes, depending on the algo
    // for that batch
    // batch 0: 0-43, increments up 1 every CYCLE_SECONDS (43 goes to 0)
    // batch 1: 44-87, each img randomly assigned to each token every CYCLE_SECONDS
    // batch 2: 88-153, decrements down 1 every CYCLE_SECONDS (88 goes to 153)
    // batch 3: 154-175, never changes, always the same img
    function image(uint256 tokenId) public view returns (uint256) {
        uint256 cycles = block.timestamp / CYCLE_SECONDS;
        uint256 result;
        if (tokenId < 44) {
            result = posMod(int256(tokenId + cycles), 44);
        } else if (tokenId < 88) {
            uint256[] memory indices = randomIndices(44);
            result = 44 + indices[tokenId - 44]; 
        } else if (tokenId < 154) {
            cycles = block.timestamp / (CYCLE_SECONDS * 2 / 3);
            result = 88 + posMod(int256(tokenId) - int256(cycles), 66); 
        } else {
            result = tokenId;
        }
        return result;
    }

    // tokenURI function returns json metadata for the token
    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist.");
        string
            memory imgUrl = "https://static.wild.xyz/tokens/unrevealed/assets/unrevealed.webp";
        string memory name = string(
            abi.encodePacked("LUX ", Strings.toString(tokenId))
        );

        // styleGroup 1,2,3, or 4
        string memory phase = Strings.toString(4);
        string memory phase_time = "N/A";
        string memory phase_type = "STATIC";
        if (tokenId < 44) {
            phase = Strings.toString(1);
            phase_time = "22 DAYS";
            phase_type = "ASCENDING";
        } else if (tokenId < 88) {
            phase = Strings.toString(2);
            phase_time = "22 DAYS";
            phase_type = "RANDOM";
        } else if (tokenId < 154) {
            phase = Strings.toString(3);
            phase_time = "15 DAYS";
            phase_type = "DESCENDING";
        }
        string memory externalUrl = string.concat(
            "https://wild.xyz/loucas-braconnier/lux/",
            Strings.toString(tokenId)
        );
        string
            memory description = "LUX is a collection of 176 photographs split into four distinct phases. The sun's eleven-year oscillation is a dynamic unifying factor for all phases. Similar to four movements of a larger composition, each phase is a closed system. The images contained in a phase presaged the others. They cycle across tokens but are restricted to their own set of loops. Still, a few have broken out and remain petrified.";
        string memory attributesStr = "";
        if (bytes(baseURI).length > 0) {
            string memory imgStr = Strings.toString(image(tokenId));
            imgUrl = string(abi.encodePacked(baseURI, imgStr, ".jpg"));
            name = string(abi.encodePacked("LUX ", imgStr));
            attributesStr = string.concat(
                ',"attributes":[{"trait_type":"PHASE","value":"',
                phase,
                '"},{"trait_type":"PHASE TYPE","value":"',
                phase_type,
                '"},{"trait_type":"PHASE TIME","value":"',
                phase_time,
                '"}]'
            );
        }
        string memory json = Base64.encode(
            bytes(
                abi.encodePacked(
                    '{"name":"',
                    name,
                    '", "description": "',
                    description,
                    '", "image": "',
                    imgUrl,
                    '", "external_url": "',
                    externalUrl,
                    '"',
                    attributesStr,
                    "}"
                )
            )
        );
        return string(abi.encodePacked("data:application/json;base64,", json));
    }
}

File 2 of 18 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

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

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

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

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 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; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

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

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            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 (rounding == Rounding.Up && 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 down.
     *
     * 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 + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * 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 + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * 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 10, 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 + (rounding == Rounding.Up && 1 << (result << 3) < value ? 1 : 0);
        }
    }
}

File 3 of 18 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        /// @solidity memory-safe-assembly
        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 4 of 18 : WildNFT.sol
// SPDX-License-Identifier: GPL-3.0
// LICENSE
// This is a modified version of the original code from the
// NounsToken.sol— an implementation of OpenZeppelin's ERC-721:
// https://github.com/nounsDAO/nouns-monorepo/blob/master/packages/nouns-contracts/contracts/NounsToken.sol
// The original code is licensed under the GPL-3.0 license
// Thank you to the Nouns team for the inspiration and code!

pragma solidity ^0.8.6;

import "./IERC721.sol";
import {UpdatableOperatorFilterer} from "./UpdatableOperatorFilterer.sol";
import {RevokableDefaultOperatorFilterer} from "./RevokableDefaultOperatorFilterer.sol";
import {Ownable} from "./Ownable.sol";
import {ERC721} from "./ERC721.sol";
import {IERC721} from "./IERC721.sol";
import {Strings} from "./Strings.sol";
import {WildNFT} from "./WildNFT.sol";
import {Base64} from "./Base64.sol";
import {Math} from "./Math.sol";

interface IWildNFT is IERC721 {
    event TokenCreated(uint256 indexed tokenId, address mintedTo);

    event TokenBurned(uint256 indexed tokenId);

    event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId);

    function mint(address _to) external returns (uint256);

    function burn(uint256 tokenId) external;

    function setMinter(address minter) external;

    function setBaseURI(string memory _newBaseURI) external;

    function totalSupply() external view returns (uint256);

    function maxSupply() external view returns (uint256);
}

abstract contract WildNFT is
    IWildNFT,
    Ownable,
    RevokableDefaultOperatorFilterer,
    ERC721
{
    // An address who has permissions to mint qf tokens
    address public minter;

    // Mapping of operators to whether they are approved or not
    mapping(address => bool) public authorized;

    // Mapping of addresses flagged for denying token interactions
    mapping(address => bool) public blockList;

    // The internal ID tracker
    uint256 public _currentTokenId;

    uint256 public maxSupply;

    string public baseURI;

    constructor(
        string memory name_,
        string memory symbol_,
        address _minter,
        uint256 _maxSupply
    ) ERC721(name_, symbol_) {
        minter = _minter;
        maxSupply = _maxSupply;
    }

    /**
     * @notice Require that the sender is the minter.
     */
    modifier onlyMinter() {
        require(msg.sender == minter, "Sender is not the minter");
        _;
    }

    /**
     * @notice updates the deny list
     * @param flaggedOperator the address to be added to the deny list
     * @param status whether the address is to be added or removed from the deny list
     */
    function updateDenyList(address flaggedOperator, bool status)
        public
        onlyOwner
    {
        _updateDenyList(flaggedOperator, status);
    }

    /*
     * @notice Override isApprovedForAll
     * @param owner The owner of the Nouns
     * @param operator The operator to check if approved
     */
    function isApprovedForAll(address _owner, address operator)
        public
        view
        override(IERC721, ERC721)
        returns (bool)
    {
        require(
            blockList[operator] == false,
            "Operator has been denied by contract owner."
        );

        if (authorized[operator] == true) {
            return true;
        }

        return super.isApprovedForAll(_owner, operator);
    }

    /* OS */
    function setApprovalForAll(address operator, bool approved)
        public
        override(IERC721, ERC721)
        onlyAllowedOperatorApproval(operator)
    {
        super.setApprovalForAll(operator, approved);
    }

    function approve(address operator, uint256 tokenId)
        public
        override(IERC721, ERC721)
        onlyAllowedOperatorApproval(operator)
    {
        super.approve(operator, tokenId);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override(IERC721, ERC721) onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override(IERC721, ERC721) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public override(IERC721, ERC721) onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function owner()
        public
        view
        virtual
        override(Ownable, UpdatableOperatorFilterer)
        returns (address)
    {
        return Ownable.owner();
    }

    /**
     * @notice sets the authorized operators for interacting with the contract
     * @param operator the address to be added to the authorized operators
     * @param approved whether the address is approved or not within authorized operators
     */
    function setAuthorized(address operator, bool approved) public onlyOwner {
        authorized[operator] = approved;
    }

    /**
     * @notice Set the token minter.
     * @dev Only callable by the owner when not locked.
     * @param _minter The address of the new minter.
     */
    function setMinter(address _minter) external onlyOwner {
        minter = _minter;
    }

    /**
     * @notice updates the deny list
     * @param flaggedOperator The address to be approved.
     * @param status True if the operator is approved, false to revoke approval.
     */
    function _updateDenyList(address flaggedOperator, bool status)
        internal
        virtual
    {
        blockList[flaggedOperator] = status;
    }

    /**
     * @notice Mint a token to the given address.
     * @dev Only callable by the minter.
     * @param _to The address to mint the qf token to.
     * @return The ID of the newly minted qf token.
     */
    function mint(address _to) public override onlyMinter returns (uint256) {
        require(_currentTokenId < maxSupply, "Max supply reached");
        return _mintTo(_to, _currentTokenId++);
    }

    /**
     * @notice Burn a pass.
     * @dev Only callable by the minter.
     * @param tokenId The ID of the qf token to burn.
     */
    function burn(uint256 tokenId) public override onlyMinter {
        _burn(tokenId);
        emit TokenBurned(tokenId);
    }

    /**
     * @notice Set the base URI.
     * @dev Only callable by the owner.
     * @param _newBaseURI The new base URI.
     */
    function setBaseURI(string memory _newBaseURI) public onlyOwner {
        baseURI = _newBaseURI;
        emit BatchMetadataUpdate(0, maxSupply - 1);
    }

    /** @notice Mints a new token
     * @param to: the address of the new owner looking to mint
     * @param tokenId: the token ID
     * @return the ID of the newly minted token
     */
    function _mintTo(address to, uint256 tokenId) internal returns (uint256) {
        _mint(to, tokenId);
        emit TokenCreated(tokenId, to);

        return tokenId;
    }

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

File 5 of 18 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./Math.sol";

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

    /**
     * @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), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @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) {
        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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        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);
    }
}

File 6 of 18 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

File 7 of 18 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: invalid token ID");
        return owner;
    }

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

    /**
     * @dev Returns the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

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

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

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

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

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

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

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

File 8 of 18 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 9 of 18 : RevokableDefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {RevokableOperatorFilterer} from "./RevokableOperatorFilterer.sol";

/**
 * @title  RevokableDefaultOperatorFilterer
 * @notice Inherits from RevokableOperatorFilterer and automatically subscribes to the default OpenSea subscription.
 *         Note that OpenSea will disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */
abstract contract RevokableDefaultOperatorFilterer is RevokableOperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() RevokableOperatorFilterer(0x000000000000AAeB6D7670E522A718067333cd4E, DEFAULT_SUBSCRIPTION, true) {}
}

File 10 of 18 : UpdatableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  UpdatableOperatorFilterer
 * @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
 *         registrant's entries in the OperatorFilterRegistry. This contract allows the Owner to update the
 *         OperatorFilterRegistry address via updateOperatorFilterRegistryAddress, including to the zero address,
 *         which will bypass registry checks.
 *         Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 * @dev    This smart contract is meant to be inherited by token contracts so they can use the following:
 *         - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
 *         - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
 */
abstract contract UpdatableOperatorFilterer {
    error OperatorNotAllowed(address operator);
    error OnlyOwner();

    IOperatorFilterRegistry public operatorFilterRegistry;

    constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe) {
        IOperatorFilterRegistry registry = IOperatorFilterRegistry(_registry);
        operatorFilterRegistry = registry;
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(registry).code.length > 0) {
            if (subscribe) {
                registry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    registry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
                } else {
                    registry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Allow spending tokens from addresses with balance
        // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
        // from an EOA.
        if (from != msg.sender) {
            _checkFilterOperator(msg.sender);
        }
        _;
    }

    modifier onlyAllowedOperatorApproval(address operator) virtual {
        _checkFilterOperator(operator);
        _;
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be bypassed. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public virtual {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
    }

    /**
     * @dev assume the contract has an owner, but leave specific Ownable implementation up to inheriting contract
     */
    function owner() public view virtual returns (address);

    function _checkFilterOperator(address operator) internal view virtual {
        IOperatorFilterRegistry registry = operatorFilterRegistry;
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(registry) != address(0) && address(registry).code.length > 0) {
            if (!registry.isOperatorAllowed(address(this), operator)) {
                revert OperatorNotAllowed(operator);
            }
        }
    }
}

File 11 of 18 : IOperatorFilterRegistry.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator) external view returns (bool);
    function register(address registrant) external;
    function registerAndSubscribe(address registrant, address subscription) external;
    function registerAndCopyEntries(address registrant, address registrantToCopy) external;
    function unregister(address addr) external;
    function updateOperator(address registrant, address operator, bool filtered) external;
    function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
    function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
    function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
    function subscribe(address registrant, address registrantToSubscribe) external;
    function unsubscribe(address registrant, bool copyExistingEntries) external;
    function subscriptionOf(address addr) external returns (address registrant);
    function subscribers(address registrant) external returns (address[] memory);
    function subscriberAt(address registrant, uint256 index) external returns (address);
    function copyEntriesOf(address registrant, address registrantToCopy) external;
    function isOperatorFiltered(address registrant, address operator) external returns (bool);
    function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
    function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
    function filteredOperators(address addr) external returns (address[] memory);
    function filteredCodeHashes(address addr) external returns (bytes32[] memory);
    function filteredOperatorAt(address registrant, uint256 index) external returns (address);
    function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
    function isRegistered(address addr) external returns (bool);
    function codeHashOf(address addr) external returns (bytes32);
}

File 12 of 18 : RevokableOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;

import {UpdatableOperatorFilterer} from "./UpdatableOperatorFilterer.sol";
import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";

/**
 * @title  RevokableOperatorFilterer
 * @notice This contract is meant to allow contracts to permanently skip OperatorFilterRegistry checks if desired. The
 *         Registry itself has an "unregister" function, but if the contract is ownable, the owner can re-register at
 *         any point. As implemented, this abstract contract allows the contract owner to permanently skip the
 *         OperatorFilterRegistry checks by calling revokeOperatorFilterRegistry. Once done, the registry
 *         address cannot be further updated.
 *         Note that OpenSea will still disable creator fee enforcement if filtered operators begin fulfilling orders
 *         on-chain, eg, if the registry is revoked or bypassed.
 */
abstract contract RevokableOperatorFilterer is UpdatableOperatorFilterer {
    error RegistryHasBeenRevoked();
    error InitialRegistryAddressCannotBeZeroAddress();

    bool public isOperatorFilterRegistryRevoked;

    constructor(address _registry, address subscriptionOrRegistrantToCopy, bool subscribe)
        UpdatableOperatorFilterer(_registry, subscriptionOrRegistrantToCopy, subscribe)
    {
        // don't allow creating a contract with a permanently revoked registry
        if (_registry == address(0)) {
            revert InitialRegistryAddressCannotBeZeroAddress();
        }
    }

    function _checkFilterOperator(address operator) internal view virtual override {
        if (address(operatorFilterRegistry) != address(0)) {
            super._checkFilterOperator(operator);
        }
    }

    /**
     * @notice Update the address that the contract will make OperatorFilter checks against. When set to the zero
     *         address, checks will be permanently bypassed, and the address cannot be updated again. OnlyOwner.
     */
    function updateOperatorFilterRegistryAddress(address newRegistry) public override {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        operatorFilterRegistry = IOperatorFilterRegistry(newRegistry);
    }

    /**
     * @notice Revoke the OperatorFilterRegistry address, permanently bypassing checks. OnlyOwner.
     */
    function revokeOperatorFilterRegistry() public {
        if (msg.sender != owner()) {
            revert OnlyOwner();
        }
        // if registry has been revoked, do not allow further updates
        if (isOperatorFilterRegistryRevoked) {
            revert RegistryHasBeenRevoked();
        }

        // set to zero address to bypass checks
        operatorFilterRegistry = IOperatorFilterRegistry(address(0));
        isOperatorFilterRegistryRevoked = true;
    }
}

File 13 of 18 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.3.2 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 14 of 18 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 16 of 18 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

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

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InitialRegistryAddressCannotBeZeroAddress","type":"error"},{"inputs":[],"name":"OnlyOwner","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"RegistryHasBeenRevoked","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_toTokenId","type":"uint256"}],"name":"BatchMetadataUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenBurned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"mintedTo","type":"address"}],"name":"TokenCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CYCLE_SECONDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blockList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"image","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperatorFilterRegistryRevoked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"minter","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operatorFilterRegistry","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"randomIndices","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revokeOperatorFilterRegistry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setAuthorized","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"setMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"flaggedOperator","type":"address"},{"internalType":"bool","name":"status","type":"bool"}],"name":"updateDenyList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newRegistry","type":"address"}],"name":"updateOperatorFilterRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052621e0f00600e5560b0600f553480156200001d57600080fd5b5060405162005e1e38038062005e1e83398181016040528101906200004391906200051e565b6040518060400160405280600381526020017f4c555800000000000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f4c5558000000000000000000000000000000000000000000000000000000000081525082600f5483836daaeb6d7670e522a718067333cd4e733cc6cdda760b79bafa08df41ecfa224f810dceb66001828282620000fe620000f2620003e860201b60201c565b620003f060201b60201c565b600083905080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060008173ffffffffffffffffffffffffffffffffffffffff163b111562000301578115620001e3578073ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30856040518363ffffffff1660e01b8152600401620001a992919062000561565b600060405180830381600087803b158015620001c457600080fd5b505af1158015620001d9573d6000803e3d6000fd5b5050505062000300565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146200028f578073ffffffffffffffffffffffffffffffffffffffff1663a0af290330856040518363ffffffff1660e01b81526004016200025592919062000561565b600060405180830381600087803b1580156200027057600080fd5b505af115801562000285573d6000803e3d6000fd5b50505050620002ff565b8073ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002ca91906200058e565b600060405180830381600087803b158015620002e557600080fd5b505af1158015620002fa573d6000803e3d6000fd5b505050505b5b5b50505050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200036c576040517fc49d17ad00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050816002908162000380919062000825565b50806003908162000392919062000825565b50505081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c8190555050505050506200090c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004e682620004b9565b9050919050565b620004f881620004d9565b81146200050457600080fd5b50565b6000815190506200051881620004ed565b92915050565b600060208284031215620005375762000536620004b4565b5b6000620005478482850162000507565b91505092915050565b6200055b81620004d9565b82525050565b600060408201905062000578600083018562000550565b62000587602083018462000550565b9392505050565b6000602082019050620005a5600083018462000550565b92915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200062d57607f821691505b602082108103620006435762000642620005e5565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006ad7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200066e565b620006b986836200066e565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200070662000700620006fa84620006d1565b620006db565b620006d1565b9050919050565b6000819050919050565b6200072283620006e5565b6200073a62000731826200070d565b8484546200067b565b825550505050565b600090565b6200075162000742565b6200075e81848462000717565b505050565b5b8181101562000786576200077a60008262000747565b60018101905062000764565b5050565b601f821115620007d5576200079f8162000649565b620007aa846200065e565b81016020851015620007ba578190505b620007d2620007c9856200065e565b83018262000763565b50505b505050565b600082821c905092915050565b6000620007fa60001984600802620007da565b1980831691505092915050565b6000620008158383620007e7565b9150826002028217905092915050565b6200083082620005ab565b67ffffffffffffffff8111156200084c576200084b620005b6565b5b62000858825462000614565b620008658282856200078a565b600060209050601f8311600181146200089d576000841562000888578287015190505b62000894858262000807565b86555062000904565b601f198416620008ad8662000649565b60005b82811015620008d757848901518255600182019150602085019450602081019050620008b0565b86831015620008f75784890151620008f3601f891682620007e7565b8355505b6001600288020188555050505b505050505050565b615502806200091c6000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c806395d89b4111610125578063c79178c6116100ad578063d5abeb011161007c578063d5abeb011461063b578063e985e9c514610659578063ecba222a14610689578063f2fde38b146106a7578063fca3b5aa146106c35761021c565b8063c79178c6146105a1578063c87b56dd146105d1578063c963483c14610601578063ccf30b401461061f5761021c565b8063b0ccc31e116100f4578063b0ccc31e146104eb578063b539928314610509578063b88d4fde14610539578063b8d1e53214610555578063b9181611146105715761021c565b806395d89b411461046357806398805c3d14610481578063a22cb465146104b1578063a8cc6d32146104cd5761021c565b806355f804b3116101a85780636c0360eb116101775780636c0360eb146103d157806370a08231146103ef578063711bf9b21461041f578063715018a61461043b5780638da5cb5b146104455761021c565b806355f804b31461034b5780635ef9432a146103675780636352211e146103715780636a627842146103a15761021c565b8063095ea7b3116101ef578063095ea7b3146102bd57806318160ddd146102d957806323b872dd146102f757806342842e0e1461031357806342966c681461032f5761021c565b806301ffc9a71461022157806306fdde0314610251578063075461721461026f578063081812fc1461028d575b600080fd5b61023b60048036038101906102369190613460565b6106df565b60405161024891906134a8565b60405180910390f35b6102596107c1565b6040516102669190613553565b60405180910390f35b610277610853565b60405161028491906135b6565b60405180910390f35b6102a760048036038101906102a29190613607565b610879565b6040516102b491906135b6565b60405180910390f35b6102d760048036038101906102d29190613660565b6108bf565b005b6102e16108d8565b6040516102ee91906136af565b60405180910390f35b610311600480360381019061030c91906136ca565b6108e2565b005b61032d600480360381019061032891906136ca565b610931565b005b61034960048036038101906103449190613607565b610980565b005b61036560048036038101906103609190613852565b610a49565b005b61036f610b20565b005b61038b60048036038101906103869190613607565b610c31565b60405161039891906135b6565b60405180910390f35b6103bb60048036038101906103b6919061389b565b610cb7565b6040516103c891906136af565b60405180910390f35b6103d9610db6565b6040516103e69190613553565b60405180910390f35b6104096004803603810190610404919061389b565b610e44565b60405161041691906136af565b60405180910390f35b610439600480360381019061043491906138f4565b610efb565b005b610443610fd2565b005b61044d61105a565b60405161045a91906135b6565b60405180910390f35b61046b611069565b6040516104789190613553565b60405180910390f35b61049b60048036038101906104969190613607565b6110fb565b6040516104a891906139f2565b60405180910390f35b6104cb60048036038101906104c691906138f4565b611293565b005b6104d56112ac565b6040516104e291906136af565b60405180910390f35b6104f36112b2565b6040516105009190613a73565b60405180910390f35b610523600480360381019061051e919061389b565b6112d8565b60405161053091906134a8565b60405180910390f35b610553600480360381019061054e9190613b2f565b6112f8565b005b61056f600480360381019061056a919061389b565b611349565b005b61058b6004803603810190610586919061389b565b611440565b60405161059891906134a8565b60405180910390f35b6105bb60048036038101906105b69190613607565b611460565b6040516105c891906136af565b60405180910390f35b6105eb60048036038101906105e69190613607565b611557565b6040516105f89190613553565b60405180910390f35b610609611967565b60405161061691906136af565b60405180910390f35b610639600480360381019061063491906138f4565b61196d565b005b6106436119f7565b60405161065091906136af565b60405180910390f35b610673600480360381019061066e9190613bb2565b6119fd565b60405161068091906134a8565b60405180910390f35b610691611b05565b60405161069e91906134a8565b60405180910390f35b6106c160048036038101906106bc919061389b565b611b18565b005b6106dd60048036038101906106d8919061389b565b611c0f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107aa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ba57506107b982611ccf565b5b9050919050565b6060600280546107d090613c21565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc90613c21565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061088482611d39565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108c981611d84565b6108d38383611de7565b505050565b6000600b54905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109205761091f33611d84565b5b61092b848484611efe565b50505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461096f5761096e33611d84565b5b61097a848484611f5e565b50505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790613c9e565b60405180910390fd5b610a1981611f7e565b807f0c526103b8f47af5516191d0c89a598755bd00faa211a3cb52e4c2cc782f7fe260405160405180910390a250565b610a516120cc565b73ffffffffffffffffffffffffffffffffffffffff16610a6f61105a565b73ffffffffffffffffffffffffffffffffffffffff1614610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90613d0a565b60405180910390fd5b80600d9081610ad49190613ecc565b507f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c60006001600c54610b079190613fcd565b604051610b1592919061403c565b60405180910390a150565b610b2861105a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160149054906101000a900460ff1615610bd3576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060018060146101000a81548160ff021916908315150217905550565b600080610c3d836120d4565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906140b1565b60405180910390fd5b80915050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613c9e565b60405180910390fd5b600c54600b5410610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d869061411d565b60405180910390fd5b610daf82600b6000815480929190610da69061413d565b91905055612111565b9050919050565b600d8054610dc390613c21565b80601f0160208091040260200160405190810160405280929190818152602001828054610def90613c21565b8015610e3c5780601f10610e1157610100808354040283529160200191610e3c565b820191906000526020600020905b815481529060010190602001808311610e1f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab906141f7565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f036120cc565b73ffffffffffffffffffffffffffffffffffffffff16610f2161105a565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90613d0a565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610fda6120cc565b73ffffffffffffffffffffffffffffffffffffffff16610ff861105a565b73ffffffffffffffffffffffffffffffffffffffff161461104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590613d0a565b60405180910390fd5b611058600061215e565b565b6000611064612222565b905090565b60606003805461107890613c21565b80601f01602080910402602001604051908101604052809291908181526020018280546110a490613c21565b80156110f15780601f106110c6576101008083540402835291602001916110f1565b820191906000526020600020905b8154815290600101906020018083116110d457829003601f168201915b5050505050905090565b606060008267ffffffffffffffff81111561111957611118613727565b5b6040519080825280602002602001820160405280156111475781602001602082028036833780820191505090505b50905060005b83811015611188578082828151811061116957611168614217565b5b60200260200101818152505080806111809061413d565b91505061114d565b506000600e54426111999190614275565b6040516020016111a991906142c7565b6040516020818303038152906040528051906020012060001c905060005b82518110156112885760008184516111df9190613fcd565b8284901c6111ed91906142e2565b826111f89190614313565b9050600084828151811061120f5761120e614217565b5b6020026020010151905084838151811061122c5761122b614217565b5b602002602001015185838151811061124757611246614217565b5b6020026020010181815250508085848151811061126757611266614217565b5b602002602001018181525050505080806112809061413d565b9150506111c7565b508192505050919050565b8161129d81611d84565b6112a7838361224b565b505050565b600e5481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113365761133533611d84565b5b61134285858585612261565b5050505050565b61135161105a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113b5576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160149054906101000a900460ff16156113fc576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60096020528060005260406000206000915054906101000a900460ff1681565b600080600e54426114719190614275565b90506000602c84101561149b57611494828561148d9190614313565b602c6122c3565b905061154d565b60588410156114ed5760006114b0602c6110fb565b905080602c866114c09190613fcd565b815181106114d1576114d0614217565b5b6020026020010151602c6114e59190614313565b91505061154c565b609a8410156115475760036002600e546115079190614347565b6115119190614275565b4261151c9190614275565b9150611534828561152d9190614393565b60426122c3565b60586115409190614313565b905061154b565b8390505b5b5b8092505050919050565b6060611562826122fc565b6115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890614422565b60405180910390fd5b600060405180606001604052806040815260200161544d60409139905060006115c98461233d565b6040516020016115d991906144ca565b604051602081830303815290604052905060006115f6600461233d565b905060006040518060400160405280600381526020017f4e2f410000000000000000000000000000000000000000000000000000000000815250905060006040518060400160405280600681526020017f53544154494300000000000000000000000000000000000000000000000000008152509050602c8710156116f65761167f600161233d565b92506040518060400160405280600781526020017f323220444159530000000000000000000000000000000000000000000000000081525091506040518060400160405280600981526020017f415343454e44494e4700000000000000000000000000000000000000000000008152509050611808565b605887101561178057611709600261233d565b92506040518060400160405280600781526020017f323220444159530000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f52414e444f4d00000000000000000000000000000000000000000000000000008152509050611807565b609a87101561180657611793600361233d565b92506040518060400160405280600781526020017f313520444159530000000000000000000000000000000000000000000000000081525091506040518060400160405280600a81526020017f44455343454e44494e470000000000000000000000000000000000000000000081525090505b5b5b60006118138861233d565b604051602001611823919061455e565b60405160208183030381529060405290506000604051806101c0016040528061019781526020016152b66101979139905060006040518060200160405280600081525090506000600d805461187790613c21565b9050111561190357600061189261188d8c611460565b61233d565b9050600d816040516020016118a892919061464f565b6040516020818303038152906040529850806040516020016118ca91906144ca565b60405160208183030381529060405297508685876040516020016118f0939291906147fa565b6040516020818303038152906040529150505b600061193588848b8786604051602001611921959493929190614a23565b60405160208183030381529060405261240b565b9050806040516020016119489190614afc565b6040516020818303038152906040529950505050505050505050919050565b600b5481565b6119756120cc565b73ffffffffffffffffffffffffffffffffffffffff1661199361105a565b73ffffffffffffffffffffffffffffffffffffffff16146119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613d0a565b60405180910390fd5b6119f3828261256e565b5050565b600c5481565b6000801515600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8890614b90565b60405180910390fd5b60011515600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611af25760019050611aff565b611afc83836125c9565b90505b92915050565b600160149054906101000a900460ff1681565b611b206120cc565b73ffffffffffffffffffffffffffffffffffffffff16611b3e61105a565b73ffffffffffffffffffffffffffffffffffffffff1614611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90613d0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90614c22565b60405180910390fd5b611c0c8161215e565b50565b611c176120cc565b73ffffffffffffffffffffffffffffffffffffffff16611c3561105a565b73ffffffffffffffffffffffffffffffffffffffff1614611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613d0a565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d42816122fc565b611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d78906140b1565b60405180910390fd5b50565b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611de457611de38161265d565b5b50565b6000611df282610c31565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5990614cb4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611e816120cc565b73ffffffffffffffffffffffffffffffffffffffff161480611eb05750611eaf81611eaa6120cc565b6119fd565b5b611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee690614d46565b60405180910390fd5b611ef9838361279f565b505050565b611f0f611f096120cc565b82612858565b611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590614dd8565b60405180910390fd5b611f598383836128ed565b505050565b611f79838383604051806020016040528060008152506112f8565b505050565b6000611f8982610c31565b9050611f99816000846001612be6565b611fa282610c31565b90506006600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120c8816000846001612d0c565b5050565b600033905090565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061211d8383612d12565b817fc331dc3e37e2ab4d6e65d42a119ffdfab8481b9be24d26704f9f4b4a331d4dd08460405161214d91906135b6565b60405180910390a281905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61225d6122566120cc565b8383612f2f565b5050565b61227261226c6120cc565b83612858565b6122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a890614dd8565b60405180910390fd5b6122bd8484848461309b565b50505050565b60008082846122d29190614df8565b905060008112156122f15782816122e99190614e29565b9150506122f6565b809150505b92915050565b60008073ffffffffffffffffffffffffffffffffffffffff1661231e836120d4565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000600161234c846130f7565b01905060008167ffffffffffffffff81111561236b5761236a613727565b5b6040519080825280601f01601f19166020018201604052801561239d5781602001600182028036833780820191505090505b509050600082602001820190505b600115612400578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816123f4576123f3614246565b5b049450600085036123ab575b819350505050919050565b6060600082510361242d57604051806020016040528060008152509050612569565b600060405180606001604052806040815260200161548d604091399050600060036002855161245c9190614313565b6124669190614275565b60046124729190614347565b67ffffffffffffffff81111561248b5761248a613727565b5b6040519080825280601f01601f1916602001820160405280156124bd5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612529576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506124ce565b5050600386510660018114612545576002811461255857612560565b603d6001830353603d6002830353612560565b603d60018303535b50505080925050505b919050565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156126d8575060008173ffffffffffffffffffffffffffffffffffffffff163b115b1561279b578073ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b8152600401612718929190614e6d565b602060405180830381865afa158015612735573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127599190614eab565b61279a57816040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161279191906135b6565b60405180910390fd5b5b5050565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661281283610c31565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061286483610c31565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128a657506128a581856119fd565b5b806128e457508373ffffffffffffffffffffffffffffffffffffffff166128cc84610879565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661290d82610c31565b73ffffffffffffffffffffffffffffffffffffffff1614612963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295a90614f4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c990614fdc565b60405180910390fd5b6129df8383836001612be6565b8273ffffffffffffffffffffffffffffffffffffffff166129ff82610c31565b73ffffffffffffffffffffffffffffffffffffffff1614612a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4c90614f4a565b60405180910390fd5b6006600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612be18383836001612d0c565b505050565b6001811115612d0657600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612c7a5780600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c729190613fcd565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d055780600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cfd9190614313565b925050819055505b5b50505050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7890615048565b60405180910390fd5b612d8a816122fc565b15612dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc1906150b4565b60405180910390fd5b612dd8600083836001612be6565b612de1816122fc565b15612e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e18906150b4565b60405180910390fd5b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f2b600083836001612d0c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9490615120565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161308e91906134a8565b60405180910390a3505050565b6130a68484846128ed565b6130b28484848461324a565b6130f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e8906151b2565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613155577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161314b5761314a614246565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613192576d04ee2d6d415b85acef8100000000838161318857613187614246565b5b0492506020810190505b662386f26fc1000083106131c157662386f26fc1000083816131b7576131b6614246565b5b0492506010810190505b6305f5e10083106131ea576305f5e10083816131e0576131df614246565b5b0492506008810190505b612710831061320f57612710838161320557613204614246565b5b0492506004810190505b60648310613232576064838161322857613227614246565b5b0492506002810190505b600a8310613241576001810190505b80915050919050565b600061326b8473ffffffffffffffffffffffffffffffffffffffff166133d1565b156133c4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132946120cc565b8786866040518563ffffffff1660e01b81526004016132b69493929190615227565b6020604051808303816000875af19250505080156132f257506040513d601f19601f820116820180604052508101906132ef9190615288565b60015b613374573d8060008114613322576040519150601f19603f3d011682016040523d82523d6000602084013e613327565b606091505b50600081510361336c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613363906151b2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133c9565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61343d81613408565b811461344857600080fd5b50565b60008135905061345a81613434565b92915050565b600060208284031215613476576134756133fe565b5b60006134848482850161344b565b91505092915050565b60008115159050919050565b6134a28161348d565b82525050565b60006020820190506134bd6000830184613499565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134fd5780820151818401526020810190506134e2565b60008484015250505050565b6000601f19601f8301169050919050565b6000613525826134c3565b61352f81856134ce565b935061353f8185602086016134df565b61354881613509565b840191505092915050565b6000602082019050818103600083015261356d818461351a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135a082613575565b9050919050565b6135b081613595565b82525050565b60006020820190506135cb60008301846135a7565b92915050565b6000819050919050565b6135e4816135d1565b81146135ef57600080fd5b50565b600081359050613601816135db565b92915050565b60006020828403121561361d5761361c6133fe565b5b600061362b848285016135f2565b91505092915050565b61363d81613595565b811461364857600080fd5b50565b60008135905061365a81613634565b92915050565b60008060408385031215613677576136766133fe565b5b60006136858582860161364b565b9250506020613696858286016135f2565b9150509250929050565b6136a9816135d1565b82525050565b60006020820190506136c460008301846136a0565b92915050565b6000806000606084860312156136e3576136e26133fe565b5b60006136f18682870161364b565b93505060206137028682870161364b565b9250506040613713868287016135f2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61375f82613509565b810181811067ffffffffffffffff8211171561377e5761377d613727565b5b80604052505050565b60006137916133f4565b905061379d8282613756565b919050565b600067ffffffffffffffff8211156137bd576137bc613727565b5b6137c682613509565b9050602081019050919050565b82818337600083830152505050565b60006137f56137f0846137a2565b613787565b90508281526020810184848401111561381157613810613722565b5b61381c8482856137d3565b509392505050565b600082601f8301126138395761383861371d565b5b81356138498482602086016137e2565b91505092915050565b600060208284031215613868576138676133fe565b5b600082013567ffffffffffffffff81111561388657613885613403565b5b61389284828501613824565b91505092915050565b6000602082840312156138b1576138b06133fe565b5b60006138bf8482850161364b565b91505092915050565b6138d18161348d565b81146138dc57600080fd5b50565b6000813590506138ee816138c8565b92915050565b6000806040838503121561390b5761390a6133fe565b5b60006139198582860161364b565b925050602061392a858286016138df565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613969816135d1565b82525050565b600061397b8383613960565b60208301905092915050565b6000602082019050919050565b600061399f82613934565b6139a9818561393f565b93506139b483613950565b8060005b838110156139e55781516139cc888261396f565b97506139d783613987565b9250506001810190506139b8565b5085935050505092915050565b60006020820190508181036000830152613a0c8184613994565b905092915050565b6000819050919050565b6000613a39613a34613a2f84613575565b613a14565b613575565b9050919050565b6000613a4b82613a1e565b9050919050565b6000613a5d82613a40565b9050919050565b613a6d81613a52565b82525050565b6000602082019050613a886000830184613a64565b92915050565b600067ffffffffffffffff821115613aa957613aa8613727565b5b613ab282613509565b9050602081019050919050565b6000613ad2613acd84613a8e565b613787565b905082815260208101848484011115613aee57613aed613722565b5b613af98482856137d3565b509392505050565b600082601f830112613b1657613b1561371d565b5b8135613b26848260208601613abf565b91505092915050565b60008060008060808587031215613b4957613b486133fe565b5b6000613b578782880161364b565b9450506020613b688782880161364b565b9350506040613b79878288016135f2565b925050606085013567ffffffffffffffff811115613b9a57613b99613403565b5b613ba687828801613b01565b91505092959194509250565b60008060408385031215613bc957613bc86133fe565b5b6000613bd78582860161364b565b9250506020613be88582860161364b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c3957607f821691505b602082108103613c4c57613c4b613bf2565b5b50919050565b7f53656e646572206973206e6f7420746865206d696e7465720000000000000000600082015250565b6000613c886018836134ce565b9150613c9382613c52565b602082019050919050565b60006020820190508181036000830152613cb781613c7b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cf46020836134ce565b9150613cff82613cbe565b602082019050919050565b60006020820190508181036000830152613d2381613ce7565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613d8c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613d4f565b613d968683613d4f565b95508019841693508086168417925050509392505050565b6000613dc9613dc4613dbf846135d1565b613a14565b6135d1565b9050919050565b6000819050919050565b613de383613dae565b613df7613def82613dd0565b848454613d5c565b825550505050565b600090565b613e0c613dff565b613e17818484613dda565b505050565b5b81811015613e3b57613e30600082613e04565b600181019050613e1d565b5050565b601f821115613e8057613e5181613d2a565b613e5a84613d3f565b81016020851015613e69578190505b613e7d613e7585613d3f565b830182613e1c565b50505b505050565b600082821c905092915050565b6000613ea360001984600802613e85565b1980831691505092915050565b6000613ebc8383613e92565b9150826002028217905092915050565b613ed5826134c3565b67ffffffffffffffff811115613eee57613eed613727565b5b613ef88254613c21565b613f03828285613e3f565b600060209050601f831160018114613f365760008415613f24578287015190505b613f2e8582613eb0565b865550613f96565b601f198416613f4486613d2a565b60005b82811015613f6c57848901518255600182019150602085019450602081019050613f47565b86831015613f895784890151613f85601f891682613e92565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fd8826135d1565b9150613fe3836135d1565b9250828203905081811115613ffb57613ffa613f9e565b5b92915050565b6000819050919050565b600061402661402161401c84614001565b613a14565b6135d1565b9050919050565b6140368161400b565b82525050565b6000604082019050614051600083018561402d565b61405e60208301846136a0565b9392505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061409b6018836134ce565b91506140a682614065565b602082019050919050565b600060208201905081810360008301526140ca8161408e565b9050919050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b60006141076012836134ce565b9150614112826140d1565b602082019050919050565b60006020820190508181036000830152614136816140fa565b9050919050565b6000614148826135d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361417a57614179613f9e565b5b600182019050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006141e16029836134ce565b91506141ec82614185565b604082019050919050565b60006020820190508181036000830152614210816141d4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614280826135d1565b915061428b836135d1565b92508261429b5761429a614246565b5b828204905092915050565b6000819050919050565b6142c16142bc826135d1565b6142a6565b82525050565b60006142d382846142b0565b60208201915081905092915050565b60006142ed826135d1565b91506142f8836135d1565b92508261430857614307614246565b5b828206905092915050565b600061431e826135d1565b9150614329836135d1565b925082820190508082111561434157614340613f9e565b5b92915050565b6000614352826135d1565b915061435d836135d1565b925082820261436b816135d1565b9150828204841483151761438257614381613f9e565b5b5092915050565b6000819050919050565b600061439e82614389565b91506143a983614389565b92508282039050818112600084121682821360008512151617156143d0576143cf613f9e565b5b92915050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b600061440c6015836134ce565b9150614417826143d6565b602082019050919050565b6000602082019050818103600083015261443b816143ff565b9050919050565b600081905092915050565b7f4c55582000000000000000000000000000000000000000000000000000000000600082015250565b6000614483600483614442565b915061448e8261444d565b600482019050919050565b60006144a4826134c3565b6144ae8185614442565b93506144be8185602086016134df565b80840191505092915050565b60006144d582614476565b91506144e18284614499565b915081905092915050565b7f68747470733a2f2f77696c642e78797a2f6c6f756361732d627261636f6e6e6960008201527f65722f6c75782f00000000000000000000000000000000000000000000000000602082015250565b6000614548602783614442565b9150614553826144ec565b602782019050919050565b60006145698261453b565b91506145758284614499565b915081905092915050565b6000815461458d81613c21565b6145978186614442565b945060018216600081146145b257600181146145c7576145fa565b60ff19831686528115158202860193506145fa565b6145d085613d2a565b60005b838110156145f2578154818901526001820191506020810190506145d3565b838801955050505b50505092915050565b7f2e6a706700000000000000000000000000000000000000000000000000000000600082015250565b6000614639600483614442565b915061464482614603565b600482019050919050565b600061465b8285614580565b91506146678284614499565b91506146728261462c565b91508190509392505050565b7f2c2261747472696275746573223a5b7b2274726169745f74797065223a22504860008201527f415345222c2276616c7565223a22000000000000000000000000000000000000602082015250565b60006146da602e83614442565b91506146e58261467e565b602e82019050919050565b7f227d2c7b2274726169745f74797065223a2250484153452054595045222c227660008201527f616c7565223a2200000000000000000000000000000000000000000000000000602082015250565b600061474c602783614442565b9150614757826146f0565b602782019050919050565b7f227d2c7b2274726169745f74797065223a2250484153452054494d45222c227660008201527f616c7565223a2200000000000000000000000000000000000000000000000000602082015250565b60006147be602783614442565b91506147c982614762565b602782019050919050565b7f227d5d0000000000000000000000000000000000000000000000000000000000815250565b6000614805826146cd565b91506148118286614499565b915061481c8261473f565b91506148288285614499565b9150614833826147b1565b915061483f8284614499565b915061484a826147d4565b600382019150819050949350505050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b6000614891600983614442565b915061489c8261485b565b600982019050919050565b7f222c20226465736372697074696f6e223a202200000000000000000000000000600082015250565b60006148dd601383614442565b91506148e8826148a7565b601382019050919050565b7f222c2022696d616765223a202200000000000000000000000000000000000000600082015250565b6000614929600d83614442565b9150614934826148f3565b600d82019050919050565b7f222c202265787465726e616c5f75726c223a2022000000000000000000000000600082015250565b6000614975601483614442565b91506149808261493f565b601482019050919050565b7f2200000000000000000000000000000000000000000000000000000000000000600082015250565b60006149c1600183614442565b91506149cc8261498b565b600182019050919050565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614a0d600183614442565b9150614a18826149d7565b600182019050919050565b6000614a2e82614884565b9150614a3a8288614499565b9150614a45826148d0565b9150614a518287614499565b9150614a5c8261491c565b9150614a688286614499565b9150614a7382614968565b9150614a7f8285614499565b9150614a8a826149b4565b9150614a968284614499565b9150614aa182614a00565b91508190509695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000614ae6601d83614442565b9150614af182614ab0565b601d82019050919050565b6000614b0782614ad9565b9150614b138284614499565b915081905092915050565b7f4f70657261746f7220686173206265656e2064656e69656420627920636f6e7460008201527f72616374206f776e65722e000000000000000000000000000000000000000000602082015250565b6000614b7a602b836134ce565b9150614b8582614b1e565b604082019050919050565b60006020820190508181036000830152614ba981614b6d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c0c6026836134ce565b9150614c1782614bb0565b604082019050919050565b60006020820190508181036000830152614c3b81614bff565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c9e6021836134ce565b9150614ca982614c42565b604082019050919050565b60006020820190508181036000830152614ccd81614c91565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000614d30603d836134ce565b9150614d3b82614cd4565b604082019050919050565b60006020820190508181036000830152614d5f81614d23565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614dc2602d836134ce565b9150614dcd82614d66565b604082019050919050565b60006020820190508181036000830152614df181614db5565b9050919050565b6000614e0382614389565b9150614e0e83614389565b925082614e1e57614e1d614246565b5b828207905092915050565b6000614e3482614389565b9150614e3f83614389565b925082820190508281121560008312168382126000841215161715614e6757614e66613f9e565b5b92915050565b6000604082019050614e8260008301856135a7565b614e8f60208301846135a7565b9392505050565b600081519050614ea5816138c8565b92915050565b600060208284031215614ec157614ec06133fe565b5b6000614ecf84828501614e96565b91505092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614f346025836134ce565b9150614f3f82614ed8565b604082019050919050565b60006020820190508181036000830152614f6381614f27565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614fc66024836134ce565b9150614fd182614f6a565b604082019050919050565b60006020820190508181036000830152614ff581614fb9565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006150326020836134ce565b915061503d82614ffc565b602082019050919050565b6000602082019050818103600083015261506181615025565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061509e601c836134ce565b91506150a982615068565b602082019050919050565b600060208201905081810360008301526150cd81615091565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061510a6019836134ce565b9150615115826150d4565b602082019050919050565b60006020820190508181036000830152615139816150fd565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061519c6032836134ce565b91506151a782615140565b604082019050919050565b600060208201905081810360008301526151cb8161518f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006151f9826151d2565b61520381856151dd565b93506152138185602086016134df565b61521c81613509565b840191505092915050565b600060808201905061523c60008301876135a7565b61524960208301866135a7565b61525660408301856136a0565b818103606083015261526881846151ee565b905095945050505050565b60008151905061528281613434565b92915050565b60006020828403121561529e5761529d6133fe565b5b60006152ac84828501615273565b9150509291505056fe4c5558206973206120636f6c6c656374696f6e206f66203137362070686f746f6772617068732073706c697420696e746f20666f75722064697374696e6374207068617365732e205468652073756e277320656c6576656e2d79656172206f7363696c6c6174696f6e20697320612064796e616d696320756e696679696e6720666163746f7220666f7220616c6c207068617365732e2053696d696c617220746f20666f7572206d6f76656d656e7473206f662061206c617267657220636f6d706f736974696f6e2c2065616368207068617365206973206120636c6f7365642073797374656d2e2054686520696d6167657320636f6e7461696e656420696e206120706861736520707265736167656420746865206f74686572732e2054686579206379636c65206163726f737320746f6b656e732062757420617265207265737472696374656420746f207468656972206f776e20736574206f66206c6f6f70732e205374696c6c2c20612066657720686176652062726f6b656e206f757420616e642072656d61696e207065747269666965642e68747470733a2f2f7374617469632e77696c642e78797a2f746f6b656e732f756e72657665616c65642f6173736574732f756e72657665616c65642e776562704142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220fc4311e682e77398b1db11b3837a5aad654ca8814803c26c39134b4ffaa614b364736f6c634300081200330000000000000000000000009daf56fb5d08b1dad7e6a46e0d5e814f41d1b7f9

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061021c5760003560e01c806395d89b4111610125578063c79178c6116100ad578063d5abeb011161007c578063d5abeb011461063b578063e985e9c514610659578063ecba222a14610689578063f2fde38b146106a7578063fca3b5aa146106c35761021c565b8063c79178c6146105a1578063c87b56dd146105d1578063c963483c14610601578063ccf30b401461061f5761021c565b8063b0ccc31e116100f4578063b0ccc31e146104eb578063b539928314610509578063b88d4fde14610539578063b8d1e53214610555578063b9181611146105715761021c565b806395d89b411461046357806398805c3d14610481578063a22cb465146104b1578063a8cc6d32146104cd5761021c565b806355f804b3116101a85780636c0360eb116101775780636c0360eb146103d157806370a08231146103ef578063711bf9b21461041f578063715018a61461043b5780638da5cb5b146104455761021c565b806355f804b31461034b5780635ef9432a146103675780636352211e146103715780636a627842146103a15761021c565b8063095ea7b3116101ef578063095ea7b3146102bd57806318160ddd146102d957806323b872dd146102f757806342842e0e1461031357806342966c681461032f5761021c565b806301ffc9a71461022157806306fdde0314610251578063075461721461026f578063081812fc1461028d575b600080fd5b61023b60048036038101906102369190613460565b6106df565b60405161024891906134a8565b60405180910390f35b6102596107c1565b6040516102669190613553565b60405180910390f35b610277610853565b60405161028491906135b6565b60405180910390f35b6102a760048036038101906102a29190613607565b610879565b6040516102b491906135b6565b60405180910390f35b6102d760048036038101906102d29190613660565b6108bf565b005b6102e16108d8565b6040516102ee91906136af565b60405180910390f35b610311600480360381019061030c91906136ca565b6108e2565b005b61032d600480360381019061032891906136ca565b610931565b005b61034960048036038101906103449190613607565b610980565b005b61036560048036038101906103609190613852565b610a49565b005b61036f610b20565b005b61038b60048036038101906103869190613607565b610c31565b60405161039891906135b6565b60405180910390f35b6103bb60048036038101906103b6919061389b565b610cb7565b6040516103c891906136af565b60405180910390f35b6103d9610db6565b6040516103e69190613553565b60405180910390f35b6104096004803603810190610404919061389b565b610e44565b60405161041691906136af565b60405180910390f35b610439600480360381019061043491906138f4565b610efb565b005b610443610fd2565b005b61044d61105a565b60405161045a91906135b6565b60405180910390f35b61046b611069565b6040516104789190613553565b60405180910390f35b61049b60048036038101906104969190613607565b6110fb565b6040516104a891906139f2565b60405180910390f35b6104cb60048036038101906104c691906138f4565b611293565b005b6104d56112ac565b6040516104e291906136af565b60405180910390f35b6104f36112b2565b6040516105009190613a73565b60405180910390f35b610523600480360381019061051e919061389b565b6112d8565b60405161053091906134a8565b60405180910390f35b610553600480360381019061054e9190613b2f565b6112f8565b005b61056f600480360381019061056a919061389b565b611349565b005b61058b6004803603810190610586919061389b565b611440565b60405161059891906134a8565b60405180910390f35b6105bb60048036038101906105b69190613607565b611460565b6040516105c891906136af565b60405180910390f35b6105eb60048036038101906105e69190613607565b611557565b6040516105f89190613553565b60405180910390f35b610609611967565b60405161061691906136af565b60405180910390f35b610639600480360381019061063491906138f4565b61196d565b005b6106436119f7565b60405161065091906136af565b60405180910390f35b610673600480360381019061066e9190613bb2565b6119fd565b60405161068091906134a8565b60405180910390f35b610691611b05565b60405161069e91906134a8565b60405180910390f35b6106c160048036038101906106bc919061389b565b611b18565b005b6106dd60048036038101906106d8919061389b565b611c0f565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107aa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107ba57506107b982611ccf565b5b9050919050565b6060600280546107d090613c21565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc90613c21565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600061088482611d39565b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816108c981611d84565b6108d38383611de7565b505050565b6000600b54905090565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146109205761091f33611d84565b5b61092b848484611efe565b50505050565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461096f5761096e33611d84565b5b61097a848484611f5e565b50505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0790613c9e565b60405180910390fd5b610a1981611f7e565b807f0c526103b8f47af5516191d0c89a598755bd00faa211a3cb52e4c2cc782f7fe260405160405180910390a250565b610a516120cc565b73ffffffffffffffffffffffffffffffffffffffff16610a6f61105a565b73ffffffffffffffffffffffffffffffffffffffff1614610ac5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abc90613d0a565b60405180910390fd5b80600d9081610ad49190613ecc565b507f6bd5c950a8d8df17f772f5af37cb3655737899cbf903264b9795592da439661c60006001600c54610b079190613fcd565b604051610b1592919061403c565b60405180910390a150565b610b2861105a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160149054906101000a900460ff1615610bd3576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060018060146101000a81548160ff021916908315150217905550565b600080610c3d836120d4565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca5906140b1565b60405180910390fd5b80915050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090613c9e565b60405180910390fd5b600c54600b5410610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d869061411d565b60405180910390fd5b610daf82600b6000815480929190610da69061413d565b91905055612111565b9050919050565b600d8054610dc390613c21565b80601f0160208091040260200160405190810160405280929190818152602001828054610def90613c21565b8015610e3c5780601f10610e1157610100808354040283529160200191610e3c565b820191906000526020600020905b815481529060010190602001808311610e1f57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab906141f7565b60405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f036120cc565b73ffffffffffffffffffffffffffffffffffffffff16610f2161105a565b73ffffffffffffffffffffffffffffffffffffffff1614610f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6e90613d0a565b60405180910390fd5b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b610fda6120cc565b73ffffffffffffffffffffffffffffffffffffffff16610ff861105a565b73ffffffffffffffffffffffffffffffffffffffff161461104e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104590613d0a565b60405180910390fd5b611058600061215e565b565b6000611064612222565b905090565b60606003805461107890613c21565b80601f01602080910402602001604051908101604052809291908181526020018280546110a490613c21565b80156110f15780601f106110c6576101008083540402835291602001916110f1565b820191906000526020600020905b8154815290600101906020018083116110d457829003601f168201915b5050505050905090565b606060008267ffffffffffffffff81111561111957611118613727565b5b6040519080825280602002602001820160405280156111475781602001602082028036833780820191505090505b50905060005b83811015611188578082828151811061116957611168614217565b5b60200260200101818152505080806111809061413d565b91505061114d565b506000600e54426111999190614275565b6040516020016111a991906142c7565b6040516020818303038152906040528051906020012060001c905060005b82518110156112885760008184516111df9190613fcd565b8284901c6111ed91906142e2565b826111f89190614313565b9050600084828151811061120f5761120e614217565b5b6020026020010151905084838151811061122c5761122b614217565b5b602002602001015185838151811061124757611246614217565b5b6020026020010181815250508085848151811061126757611266614217565b5b602002602001018181525050505080806112809061413d565b9150506111c7565b508192505050919050565b8161129d81611d84565b6112a7838361224b565b505050565b600e5481565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600a6020528060005260406000206000915054906101000a900460ff1681565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146113365761133533611d84565b5b61134285858585612261565b5050505050565b61135161105a565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146113b5576040517f5fc483c500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160149054906101000a900460ff16156113fc576040517f2aa3491e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60096020528060005260406000206000915054906101000a900460ff1681565b600080600e54426114719190614275565b90506000602c84101561149b57611494828561148d9190614313565b602c6122c3565b905061154d565b60588410156114ed5760006114b0602c6110fb565b905080602c866114c09190613fcd565b815181106114d1576114d0614217565b5b6020026020010151602c6114e59190614313565b91505061154c565b609a8410156115475760036002600e546115079190614347565b6115119190614275565b4261151c9190614275565b9150611534828561152d9190614393565b60426122c3565b60586115409190614313565b905061154b565b8390505b5b5b8092505050919050565b6060611562826122fc565b6115a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159890614422565b60405180910390fd5b600060405180606001604052806040815260200161544d60409139905060006115c98461233d565b6040516020016115d991906144ca565b604051602081830303815290604052905060006115f6600461233d565b905060006040518060400160405280600381526020017f4e2f410000000000000000000000000000000000000000000000000000000000815250905060006040518060400160405280600681526020017f53544154494300000000000000000000000000000000000000000000000000008152509050602c8710156116f65761167f600161233d565b92506040518060400160405280600781526020017f323220444159530000000000000000000000000000000000000000000000000081525091506040518060400160405280600981526020017f415343454e44494e4700000000000000000000000000000000000000000000008152509050611808565b605887101561178057611709600261233d565b92506040518060400160405280600781526020017f323220444159530000000000000000000000000000000000000000000000000081525091506040518060400160405280600681526020017f52414e444f4d00000000000000000000000000000000000000000000000000008152509050611807565b609a87101561180657611793600361233d565b92506040518060400160405280600781526020017f313520444159530000000000000000000000000000000000000000000000000081525091506040518060400160405280600a81526020017f44455343454e44494e470000000000000000000000000000000000000000000081525090505b5b5b60006118138861233d565b604051602001611823919061455e565b60405160208183030381529060405290506000604051806101c0016040528061019781526020016152b66101979139905060006040518060200160405280600081525090506000600d805461187790613c21565b9050111561190357600061189261188d8c611460565b61233d565b9050600d816040516020016118a892919061464f565b6040516020818303038152906040529850806040516020016118ca91906144ca565b60405160208183030381529060405297508685876040516020016118f0939291906147fa565b6040516020818303038152906040529150505b600061193588848b8786604051602001611921959493929190614a23565b60405160208183030381529060405261240b565b9050806040516020016119489190614afc565b6040516020818303038152906040529950505050505050505050919050565b600b5481565b6119756120cc565b73ffffffffffffffffffffffffffffffffffffffff1661199361105a565b73ffffffffffffffffffffffffffffffffffffffff16146119e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e090613d0a565b60405180910390fd5b6119f3828261256e565b5050565b600c5481565b6000801515600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8890614b90565b60405180910390fd5b60011515600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151503611af25760019050611aff565b611afc83836125c9565b90505b92915050565b600160149054906101000a900460ff1681565b611b206120cc565b73ffffffffffffffffffffffffffffffffffffffff16611b3e61105a565b73ffffffffffffffffffffffffffffffffffffffff1614611b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8b90613d0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611c03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bfa90614c22565b60405180910390fd5b611c0c8161215e565b50565b611c176120cc565b73ffffffffffffffffffffffffffffffffffffffff16611c3561105a565b73ffffffffffffffffffffffffffffffffffffffff1614611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8290613d0a565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d42816122fc565b611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d78906140b1565b60405180910390fd5b50565b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611de457611de38161265d565b5b50565b6000611df282610c31565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5990614cb4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611e816120cc565b73ffffffffffffffffffffffffffffffffffffffff161480611eb05750611eaf81611eaa6120cc565b6119fd565b5b611eef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee690614d46565b60405180910390fd5b611ef9838361279f565b505050565b611f0f611f096120cc565b82612858565b611f4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4590614dd8565b60405180910390fd5b611f598383836128ed565b505050565b611f79838383604051806020016040528060008152506112f8565b505050565b6000611f8982610c31565b9050611f99816000846001612be6565b611fa282610c31565b90506006600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506004600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120c8816000846001612d0c565b5050565b600033905090565b60006004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061211d8383612d12565b817fc331dc3e37e2ab4d6e65d42a119ffdfab8481b9be24d26704f9f4b4a331d4dd08460405161214d91906135b6565b60405180910390a281905092915050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61225d6122566120cc565b8383612f2f565b5050565b61227261226c6120cc565b83612858565b6122b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a890614dd8565b60405180910390fd5b6122bd8484848461309b565b50505050565b60008082846122d29190614df8565b905060008112156122f15782816122e99190614e29565b9150506122f6565b809150505b92915050565b60008073ffffffffffffffffffffffffffffffffffffffff1661231e836120d4565b73ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60606000600161234c846130f7565b01905060008167ffffffffffffffff81111561236b5761236a613727565b5b6040519080825280601f01601f19166020018201604052801561239d5781602001600182028036833780820191505090505b509050600082602001820190505b600115612400578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816123f4576123f3614246565b5b049450600085036123ab575b819350505050919050565b6060600082510361242d57604051806020016040528060008152509050612569565b600060405180606001604052806040815260200161548d604091399050600060036002855161245c9190614313565b6124669190614275565b60046124729190614347565b67ffffffffffffffff81111561248b5761248a613727565b5b6040519080825280601f01601f1916602001820160405280156124bd5781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612529576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f81168501518453600184019350506124ce565b5050600386510660018114612545576002811461255857612560565b603d6001830353603d6002830353612560565b603d60018303535b50505080925050505b919050565b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141580156126d8575060008173ffffffffffffffffffffffffffffffffffffffff163b115b1561279b578073ffffffffffffffffffffffffffffffffffffffff1663c617113430846040518363ffffffff1660e01b8152600401612718929190614e6d565b602060405180830381865afa158015612735573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127599190614eab565b61279a57816040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161279191906135b6565b60405180910390fd5b5b5050565b816006600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661281283610c31565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061286483610c31565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128a657506128a581856119fd565b5b806128e457508373ffffffffffffffffffffffffffffffffffffffff166128cc84610879565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661290d82610c31565b73ffffffffffffffffffffffffffffffffffffffff1614612963576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295a90614f4a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036129d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c990614fdc565b60405180910390fd5b6129df8383836001612be6565b8273ffffffffffffffffffffffffffffffffffffffff166129ff82610c31565b73ffffffffffffffffffffffffffffffffffffffff1614612a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4c90614f4a565b60405180910390fd5b6006600082815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690556001600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825403925050819055506001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612be18383836001612d0c565b505050565b6001811115612d0657600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614612c7a5780600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c729190613fcd565b925050819055505b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612d055780600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cfd9190614313565b925050819055505b5b50505050565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7890615048565b60405180910390fd5b612d8a816122fc565b15612dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc1906150b4565b60405180910390fd5b612dd8600083836001612be6565b612de1816122fc565b15612e21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e18906150b4565b60405180910390fd5b6001600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f2b600083836001612d0c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9490615120565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161308e91906134a8565b60405180910390a3505050565b6130a68484846128ed565b6130b28484848461324a565b6130f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e8906151b2565b60405180910390fd5b50505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310613155577a184f03e93ff9f4daa797ed6e38ed64bf6a1f010000000000000000838161314b5761314a614246565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310613192576d04ee2d6d415b85acef8100000000838161318857613187614246565b5b0492506020810190505b662386f26fc1000083106131c157662386f26fc1000083816131b7576131b6614246565b5b0492506010810190505b6305f5e10083106131ea576305f5e10083816131e0576131df614246565b5b0492506008810190505b612710831061320f57612710838161320557613204614246565b5b0492506004810190505b60648310613232576064838161322857613227614246565b5b0492506002810190505b600a8310613241576001810190505b80915050919050565b600061326b8473ffffffffffffffffffffffffffffffffffffffff166133d1565b156133c4578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132946120cc565b8786866040518563ffffffff1660e01b81526004016132b69493929190615227565b6020604051808303816000875af19250505080156132f257506040513d601f19601f820116820180604052508101906132ef9190615288565b60015b613374573d8060008114613322576040519150601f19603f3d011682016040523d82523d6000602084013e613327565b606091505b50600081510361336c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613363906151b2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506133c9565b600190505b949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61343d81613408565b811461344857600080fd5b50565b60008135905061345a81613434565b92915050565b600060208284031215613476576134756133fe565b5b60006134848482850161344b565b91505092915050565b60008115159050919050565b6134a28161348d565b82525050565b60006020820190506134bd6000830184613499565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134fd5780820151818401526020810190506134e2565b60008484015250505050565b6000601f19601f8301169050919050565b6000613525826134c3565b61352f81856134ce565b935061353f8185602086016134df565b61354881613509565b840191505092915050565b6000602082019050818103600083015261356d818461351a565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135a082613575565b9050919050565b6135b081613595565b82525050565b60006020820190506135cb60008301846135a7565b92915050565b6000819050919050565b6135e4816135d1565b81146135ef57600080fd5b50565b600081359050613601816135db565b92915050565b60006020828403121561361d5761361c6133fe565b5b600061362b848285016135f2565b91505092915050565b61363d81613595565b811461364857600080fd5b50565b60008135905061365a81613634565b92915050565b60008060408385031215613677576136766133fe565b5b60006136858582860161364b565b9250506020613696858286016135f2565b9150509250929050565b6136a9816135d1565b82525050565b60006020820190506136c460008301846136a0565b92915050565b6000806000606084860312156136e3576136e26133fe565b5b60006136f18682870161364b565b93505060206137028682870161364b565b9250506040613713868287016135f2565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61375f82613509565b810181811067ffffffffffffffff8211171561377e5761377d613727565b5b80604052505050565b60006137916133f4565b905061379d8282613756565b919050565b600067ffffffffffffffff8211156137bd576137bc613727565b5b6137c682613509565b9050602081019050919050565b82818337600083830152505050565b60006137f56137f0846137a2565b613787565b90508281526020810184848401111561381157613810613722565b5b61381c8482856137d3565b509392505050565b600082601f8301126138395761383861371d565b5b81356138498482602086016137e2565b91505092915050565b600060208284031215613868576138676133fe565b5b600082013567ffffffffffffffff81111561388657613885613403565b5b61389284828501613824565b91505092915050565b6000602082840312156138b1576138b06133fe565b5b60006138bf8482850161364b565b91505092915050565b6138d18161348d565b81146138dc57600080fd5b50565b6000813590506138ee816138c8565b92915050565b6000806040838503121561390b5761390a6133fe565b5b60006139198582860161364b565b925050602061392a858286016138df565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613969816135d1565b82525050565b600061397b8383613960565b60208301905092915050565b6000602082019050919050565b600061399f82613934565b6139a9818561393f565b93506139b483613950565b8060005b838110156139e55781516139cc888261396f565b97506139d783613987565b9250506001810190506139b8565b5085935050505092915050565b60006020820190508181036000830152613a0c8184613994565b905092915050565b6000819050919050565b6000613a39613a34613a2f84613575565b613a14565b613575565b9050919050565b6000613a4b82613a1e565b9050919050565b6000613a5d82613a40565b9050919050565b613a6d81613a52565b82525050565b6000602082019050613a886000830184613a64565b92915050565b600067ffffffffffffffff821115613aa957613aa8613727565b5b613ab282613509565b9050602081019050919050565b6000613ad2613acd84613a8e565b613787565b905082815260208101848484011115613aee57613aed613722565b5b613af98482856137d3565b509392505050565b600082601f830112613b1657613b1561371d565b5b8135613b26848260208601613abf565b91505092915050565b60008060008060808587031215613b4957613b486133fe565b5b6000613b578782880161364b565b9450506020613b688782880161364b565b9350506040613b79878288016135f2565b925050606085013567ffffffffffffffff811115613b9a57613b99613403565b5b613ba687828801613b01565b91505092959194509250565b60008060408385031215613bc957613bc86133fe565b5b6000613bd78582860161364b565b9250506020613be88582860161364b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613c3957607f821691505b602082108103613c4c57613c4b613bf2565b5b50919050565b7f53656e646572206973206e6f7420746865206d696e7465720000000000000000600082015250565b6000613c886018836134ce565b9150613c9382613c52565b602082019050919050565b60006020820190508181036000830152613cb781613c7b565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613cf46020836134ce565b9150613cff82613cbe565b602082019050919050565b60006020820190508181036000830152613d2381613ce7565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302613d8c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613d4f565b613d968683613d4f565b95508019841693508086168417925050509392505050565b6000613dc9613dc4613dbf846135d1565b613a14565b6135d1565b9050919050565b6000819050919050565b613de383613dae565b613df7613def82613dd0565b848454613d5c565b825550505050565b600090565b613e0c613dff565b613e17818484613dda565b505050565b5b81811015613e3b57613e30600082613e04565b600181019050613e1d565b5050565b601f821115613e8057613e5181613d2a565b613e5a84613d3f565b81016020851015613e69578190505b613e7d613e7585613d3f565b830182613e1c565b50505b505050565b600082821c905092915050565b6000613ea360001984600802613e85565b1980831691505092915050565b6000613ebc8383613e92565b9150826002028217905092915050565b613ed5826134c3565b67ffffffffffffffff811115613eee57613eed613727565b5b613ef88254613c21565b613f03828285613e3f565b600060209050601f831160018114613f365760008415613f24578287015190505b613f2e8582613eb0565b865550613f96565b601f198416613f4486613d2a565b60005b82811015613f6c57848901518255600182019150602085019450602081019050613f47565b86831015613f895784890151613f85601f891682613e92565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613fd8826135d1565b9150613fe3836135d1565b9250828203905081811115613ffb57613ffa613f9e565b5b92915050565b6000819050919050565b600061402661402161401c84614001565b613a14565b6135d1565b9050919050565b6140368161400b565b82525050565b6000604082019050614051600083018561402d565b61405e60208301846136a0565b9392505050565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b600061409b6018836134ce565b91506140a682614065565b602082019050919050565b600060208201905081810360008301526140ca8161408e565b9050919050565b7f4d617820737570706c7920726561636865640000000000000000000000000000600082015250565b60006141076012836134ce565b9150614112826140d1565b602082019050919050565b60006020820190508181036000830152614136816140fa565b9050919050565b6000614148826135d1565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361417a57614179613f9e565b5b600182019050919050565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b60006141e16029836134ce565b91506141ec82614185565b604082019050919050565b60006020820190508181036000830152614210816141d4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614280826135d1565b915061428b836135d1565b92508261429b5761429a614246565b5b828204905092915050565b6000819050919050565b6142c16142bc826135d1565b6142a6565b82525050565b60006142d382846142b0565b60208201915081905092915050565b60006142ed826135d1565b91506142f8836135d1565b92508261430857614307614246565b5b828206905092915050565b600061431e826135d1565b9150614329836135d1565b925082820190508082111561434157614340613f9e565b5b92915050565b6000614352826135d1565b915061435d836135d1565b925082820261436b816135d1565b9150828204841483151761438257614381613f9e565b5b5092915050565b6000819050919050565b600061439e82614389565b91506143a983614389565b92508282039050818112600084121682821360008512151617156143d0576143cf613f9e565b5b92915050565b7f546f6b656e20646f6573206e6f742065786973742e0000000000000000000000600082015250565b600061440c6015836134ce565b9150614417826143d6565b602082019050919050565b6000602082019050818103600083015261443b816143ff565b9050919050565b600081905092915050565b7f4c55582000000000000000000000000000000000000000000000000000000000600082015250565b6000614483600483614442565b915061448e8261444d565b600482019050919050565b60006144a4826134c3565b6144ae8185614442565b93506144be8185602086016134df565b80840191505092915050565b60006144d582614476565b91506144e18284614499565b915081905092915050565b7f68747470733a2f2f77696c642e78797a2f6c6f756361732d627261636f6e6e6960008201527f65722f6c75782f00000000000000000000000000000000000000000000000000602082015250565b6000614548602783614442565b9150614553826144ec565b602782019050919050565b60006145698261453b565b91506145758284614499565b915081905092915050565b6000815461458d81613c21565b6145978186614442565b945060018216600081146145b257600181146145c7576145fa565b60ff19831686528115158202860193506145fa565b6145d085613d2a565b60005b838110156145f2578154818901526001820191506020810190506145d3565b838801955050505b50505092915050565b7f2e6a706700000000000000000000000000000000000000000000000000000000600082015250565b6000614639600483614442565b915061464482614603565b600482019050919050565b600061465b8285614580565b91506146678284614499565b91506146728261462c565b91508190509392505050565b7f2c2261747472696275746573223a5b7b2274726169745f74797065223a22504860008201527f415345222c2276616c7565223a22000000000000000000000000000000000000602082015250565b60006146da602e83614442565b91506146e58261467e565b602e82019050919050565b7f227d2c7b2274726169745f74797065223a2250484153452054595045222c227660008201527f616c7565223a2200000000000000000000000000000000000000000000000000602082015250565b600061474c602783614442565b9150614757826146f0565b602782019050919050565b7f227d2c7b2274726169745f74797065223a2250484153452054494d45222c227660008201527f616c7565223a2200000000000000000000000000000000000000000000000000602082015250565b60006147be602783614442565b91506147c982614762565b602782019050919050565b7f227d5d0000000000000000000000000000000000000000000000000000000000815250565b6000614805826146cd565b91506148118286614499565b915061481c8261473f565b91506148288285614499565b9150614833826147b1565b915061483f8284614499565b915061484a826147d4565b600382019150819050949350505050565b7f7b226e616d65223a220000000000000000000000000000000000000000000000600082015250565b6000614891600983614442565b915061489c8261485b565b600982019050919050565b7f222c20226465736372697074696f6e223a202200000000000000000000000000600082015250565b60006148dd601383614442565b91506148e8826148a7565b601382019050919050565b7f222c2022696d616765223a202200000000000000000000000000000000000000600082015250565b6000614929600d83614442565b9150614934826148f3565b600d82019050919050565b7f222c202265787465726e616c5f75726c223a2022000000000000000000000000600082015250565b6000614975601483614442565b91506149808261493f565b601482019050919050565b7f2200000000000000000000000000000000000000000000000000000000000000600082015250565b60006149c1600183614442565b91506149cc8261498b565b600182019050919050565b7f7d00000000000000000000000000000000000000000000000000000000000000600082015250565b6000614a0d600183614442565b9150614a18826149d7565b600182019050919050565b6000614a2e82614884565b9150614a3a8288614499565b9150614a45826148d0565b9150614a518287614499565b9150614a5c8261491c565b9150614a688286614499565b9150614a7382614968565b9150614a7f8285614499565b9150614a8a826149b4565b9150614a968284614499565b9150614aa182614a00565b91508190509695505050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b6000614ae6601d83614442565b9150614af182614ab0565b601d82019050919050565b6000614b0782614ad9565b9150614b138284614499565b915081905092915050565b7f4f70657261746f7220686173206265656e2064656e69656420627920636f6e7460008201527f72616374206f776e65722e000000000000000000000000000000000000000000602082015250565b6000614b7a602b836134ce565b9150614b8582614b1e565b604082019050919050565b60006020820190508181036000830152614ba981614b6d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614c0c6026836134ce565b9150614c1782614bb0565b604082019050919050565b60006020820190508181036000830152614c3b81614bff565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c9e6021836134ce565b9150614ca982614c42565b604082019050919050565b60006020820190508181036000830152614ccd81614c91565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c000000602082015250565b6000614d30603d836134ce565b9150614d3b82614cd4565b604082019050919050565b60006020820190508181036000830152614d5f81614d23565b9050919050565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206f7220617070726f76656400000000000000000000000000000000000000602082015250565b6000614dc2602d836134ce565b9150614dcd82614d66565b604082019050919050565b60006020820190508181036000830152614df181614db5565b9050919050565b6000614e0382614389565b9150614e0e83614389565b925082614e1e57614e1d614246565b5b828207905092915050565b6000614e3482614389565b9150614e3f83614389565b925082820190508281121560008312168382126000841215161715614e6757614e66613f9e565b5b92915050565b6000604082019050614e8260008301856135a7565b614e8f60208301846135a7565b9392505050565b600081519050614ea5816138c8565b92915050565b600060208284031215614ec157614ec06133fe565b5b6000614ecf84828501614e96565b91505092915050565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b6000614f346025836134ce565b9150614f3f82614ed8565b604082019050919050565b60006020820190508181036000830152614f6381614f27565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614fc66024836134ce565b9150614fd182614f6a565b604082019050919050565b60006020820190508181036000830152614ff581614fb9565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006150326020836134ce565b915061503d82614ffc565b602082019050919050565b6000602082019050818103600083015261506181615025565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061509e601c836134ce565b91506150a982615068565b602082019050919050565b600060208201905081810360008301526150cd81615091565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061510a6019836134ce565b9150615115826150d4565b602082019050919050565b60006020820190508181036000830152615139816150fd565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061519c6032836134ce565b91506151a782615140565b604082019050919050565b600060208201905081810360008301526151cb8161518f565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006151f9826151d2565b61520381856151dd565b93506152138185602086016134df565b61521c81613509565b840191505092915050565b600060808201905061523c60008301876135a7565b61524960208301866135a7565b61525660408301856136a0565b818103606083015261526881846151ee565b905095945050505050565b60008151905061528281613434565b92915050565b60006020828403121561529e5761529d6133fe565b5b60006152ac84828501615273565b9150509291505056fe4c5558206973206120636f6c6c656374696f6e206f66203137362070686f746f6772617068732073706c697420696e746f20666f75722064697374696e6374207068617365732e205468652073756e277320656c6576656e2d79656172206f7363696c6c6174696f6e20697320612064796e616d696320756e696679696e6720666163746f7220666f7220616c6c207068617365732e2053696d696c617220746f20666f7572206d6f76656d656e7473206f662061206c617267657220636f6d706f736974696f6e2c2065616368207068617365206973206120636c6f7365642073797374656d2e2054686520696d6167657320636f6e7461696e656420696e206120706861736520707265736167656420746865206f74686572732e2054686579206379636c65206163726f737320746f6b656e732062757420617265207265737472696374656420746f207468656972206f776e20736574206f66206c6f6f70732e205374696c6c2c20612066657720686176652062726f6b656e206f757420616e642072656d61696e207065747269666965642e68747470733a2f2f7374617469632e77696c642e78797a2f746f6b656e732f756e72657665616c65642f6173736574732f756e72657665616c65642e776562704142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220fc4311e682e77398b1db11b3837a5aad654ca8814803c26c39134b4ffaa614b364736f6c63430008120033

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

0000000000000000000000009daf56fb5d08b1dad7e6a46e0d5e814f41d1b7f9

-----Decoded View---------------
Arg [0] : _minter (address): 0x9DAF56fB5d08b1dad7e6A46e0d5E814F41d1b7F9

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000009daf56fb5d08b1dad7e6a46e0d5e814f41d1b7f9


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.