ETH Price: $3,322.61 (+1.59%)
Gas: 10 Gwei

Token

Proof of Present (Present)
 

Overview

Max Total Supply

1,225 Present

Holders

119

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
10 Present
0xb6adf5f7e22c2a4e85e436cca6ebd869e66fcecd
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:
ProofOfPresent

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-12-25
*/

// File: @openzeppelin/contracts/utils/math/Math.sol


// 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 * 8) < value ? 1 : 0);
        }
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions 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: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of ERC721A.
 */
interface IERC721A {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the
     * ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    /**
     * The `quantity` minted with ERC2309 exceeds the safety limit.
     */
    error MintERC2309QuantityExceedsLimit();

    /**
     * The `extraData` cannot be set on an unintialized ownership slot.
     */
    error OwnershipNotInitializedForExtraData();

    // =============================================================
    //                            STRUCTS
    // =============================================================

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Stores the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
        // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
        uint24 extraData;
    }

    // =============================================================
    //                         TOKEN COUNTERS
    // =============================================================

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() external view returns (uint256);

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);

    // =============================================================
    //                            IERC721
    // =============================================================

    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external payable;

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

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

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

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

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

    // =============================================================
    //                           IERC2309
    // =============================================================

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId`
     * (inclusive) is transferred from `from` to `to`, as defined in the
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

// File: erc721a/contracts/ERC721A.sol


// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;


/**
 * @dev Interface of ERC721 token receiver.
 */
interface ERC721A__IERC721Receiver {
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // Mask of an entry in packed address data.
    uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    // The bit position of `numberMinted` in packed address data.
    uint256 private constant _BITPOS_NUMBER_MINTED = 64;

    // The bit position of `numberBurned` in packed address data.
    uint256 private constant _BITPOS_NUMBER_BURNED = 128;

    // The bit position of `aux` in packed address data.
    uint256 private constant _BITPOS_AUX = 192;

    // Mask of all 256 bits in packed address data except the 64 bits for `aux`.
    uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    // The bit position of `startTimestamp` in packed ownership.
    uint256 private constant _BITPOS_START_TIMESTAMP = 160;

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant _BITMASK_BURNED = 1 << 224;

    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;

    // The bit mask of the `nextInitialized` bit in packed ownership.
    uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;

    // The bit position of `extraData` in packed ownership.
    uint256 private constant _BITPOS_EXTRA_DATA = 232;

    // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
    uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;

    // The mask of the lower 160 bits for addresses.
    uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;

    // The maximum `quantity` that can be minted with {_mintERC2309}.
    // This limit is to prevent overflows on the address data entries.
    // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
    // is required to cause an overflow, which is unrealistic.
    uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;

    // The `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned.
    // See {_packedOwnershipOf} implementation for details.
    //
    // Bits Layout:
    // - [0..159]   `addr`
    // - [160..223] `startTimestamp`
    // - [224]      `burned`
    // - [225]      `nextInitialized`
    // - [232..255] `extraData`
    mapping(uint256 => uint256) private _packedOwnerships;

    // Mapping owner address to address data.
    //
    // Bits Layout:
    // - [0..63]    `balance`
    // - [64..127]  `numberMinted`
    // - [128..191] `numberBurned`
    // - [192..255] `aux`
    mapping(address => uint256) private _packedAddressData;

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

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @dev Returns the starting token ID.
     * To change the starting token ID, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Returns the next token ID to be minted.
     */
    function _nextTokenId() internal view virtual returns (uint256) {
        return _currentIndex;
    }

    /**
     * @dev Returns the total number of tokens in existence.
     * Burned tokens will reduce the count.
     * To get the total number of tokens minted, please see {_totalMinted}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * @dev Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view virtual returns (uint256) {
        // Counter underflow is impossible as `_currentIndex` does not decrement,
        // and it is initialized to `_startTokenId()`.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @dev Returns the total number of tokens burned.
     */
    function _totalBurned() internal view virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
    }

    /**
     * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
    }

    /**
     * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal virtual {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        // Cast `aux` with assembly to avoid redundant masking.
        assembly {
            auxCasted := aux
        }
        packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

    // =============================================================
    //                            IERC165
    // =============================================================

    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30000 gas.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes
        // of the XOR of all function selectors in the interface.
        // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
        // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    // =============================================================
    //                        IERC721Metadata
    // =============================================================

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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, it can be overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    /**
     * @dev Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around over time.
     */
    function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct at `index`.
     */
    function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    /**
     * @dev Initializes the ownership slot minted at `index` for efficiency purposes.
     */
    function _initializeOwnershipAt(uint256 index) internal virtual {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    /**
     * Returns the packed ownership data of `tokenId`.
     */
    function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & _BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
        ownership.burned = packed & _BITMASK_BURNED != 0;
        ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
    }

    /**
     * @dev Packs ownership data into a single uint256.
     */
    function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
            result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
        }
    }

    /**
     * @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
     */
    function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
        // For branchless setting of the `nextInitialized` flag.
        assembly {
            // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
            result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
        }
    }

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

        _tokenApprovals[tokenId].value = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

    /**
     * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
     */
    function _isSenderApprovedOrOwner(
        address approvedAddress,
        address owner,
        address msgSender
    ) private pure returns (bool result) {
        assembly {
            // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
            owner := and(owner, _BITMASK_ADDRESS)
            // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
            msgSender := and(msgSender, _BITMASK_ADDRESS)
            // `msgSender == owner || msgSender == approvedAddress`.
            result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
        }
    }

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

        if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
            if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();

        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

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

            // Updates:
            // - `address` to the next owner.
            // - `startTimestamp` to the timestamp of transfering.
            // - `burned` to `false`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                to,
                _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

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

    /**
     * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    /**
     * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns whether the call correctly returned the expected magic value.
     */
    function _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
            bytes4 retval
        ) {
            return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

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

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

        // Overflows are incredibly unrealistic.
        // `balance` and `numberMinted` have a maximum limit of 2**64.
        // `tokenId` has a maximum limit of 2**256.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

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

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * This function is intended for efficient minting only during contract creation.
     *
     * It emits only one {ConsecutiveTransfer} as defined in
     * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
     * instead of a sequence of {Transfer} event(s).
     *
     * Calling this function outside of contract creation WILL make your contract
     * non-compliant with the ERC721 standard.
     * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
     * {ConsecutiveTransfer} event is only permissible during contract creation.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {ConsecutiveTransfer} event.
     */
    function _mintERC2309(address to, uint256 quantity) internal virtual {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();
        if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();

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

        // Overflows are unrealistic due to the above check for `quantity` to be below the limit.
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the `balance` and `numberMinted`.
            _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);

            // Updates:
            // - `address` to the owner.
            // - `startTimestamp` to the timestamp of minting.
            // - `burned` to `false`.
            // - `nextInitialized` to `quantity == 1`.
            _packedOwnerships[startTokenId] = _packOwnershipData(
                to,
                _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
            );

            emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);

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

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

        unchecked {
            if (to.code.length != 0) {
                uint256 end = _currentIndex;
                uint256 index = end - quantity;
                do {
                    if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (index < end);
                // Reentrancy protection.
                if (_currentIndex != end) revert();
            }
        }
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = address(uint160(prevOwnershipPacked));

        (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
                if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

        // Clear approvals from the previous owner.
        assembly {
            if approvedAddress {
                // This is equivalent to `delete _tokenApprovals[tokenId]`.
                sstore(approvedAddressSlot, 0)
            }
        }

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
        unchecked {
            // Updates:
            // - `balance -= 1`.
            // - `numberBurned += 1`.
            //
            // We can directly decrement the balance, and increment the number burned.
            // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
            _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;

            // Updates:
            // - `address` to the last owner.
            // - `startTimestamp` to the timestamp of burning.
            // - `burned` to `true`.
            // - `nextInitialized` to `true`.
            _packedOwnerships[tokenId] = _packOwnershipData(
                from,
                (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
            );

            // If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
            if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
                uint256 nextTokenId = tokenId + 1;
                // If the next slot's address is zero and not burned (i.e. packed value is zero).
                if (_packedOwnerships[nextTokenId] == 0) {
                    // If the next slot is within bounds.
                    if (nextTokenId != _currentIndex) {
                        // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
                        _packedOwnerships[nextTokenId] = prevOwnershipPacked;
                    }
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

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

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        uint256 packed = _packedOwnerships[index];
        if (packed == 0) revert OwnershipNotInitializedForExtraData();
        uint256 extraDataCasted;
        // Cast `extraData` with assembly to avoid redundant masking.
        assembly {
            extraDataCasted := extraData
        }
        packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
        _packedOwnerships[index] = packed;
    }

    /**
     * @dev Called during each token transfer to set the 24bit `extraData` field.
     * Intended to be overridden by the cosumer contract.
     *
     * `previousExtraData` - the value of `extraData` before transfer.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _extraData(
        address from,
        address to,
        uint24 previousExtraData
    ) internal view virtual returns (uint24) {}

    /**
     * @dev Returns the next extra data for the packed ownership data.
     * The returned result is shifted into position.
     */
    function _nextExtraData(
        address from,
        address to,
        uint256 prevOwnershipPacked
    ) private view returns (uint256) {
        uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
        return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @dev Returns the message sender (defaults to `msg.sender`).
     *
     * If you are writing GSN compatible contracts, you need to override this function.
     */
    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    /**
     * @dev Converts a uint256 to its ASCII string decimal representation.
     */
    function _toString(uint256 value) internal pure virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

            // Cache the end of the memory to calculate the length later.
            let end := str

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

            let length := sub(end, str)
            // Move the pointer 32 bytes leftwards to make room for the length.
            str := sub(str, 0x20)
            // Store the length.
            mstore(str, length)
        }
    }
}

// File: proof of present.sol


pragma solidity ^0.8.9;




contract ProofOfPresent is ERC721A, Ownable {
    uint256 public maxSupply = 1225;
    uint256 public mintPrice = 0.001 ether;
    uint256 public maxMintPerTx = 10;
    uint256 public maxFreeMintPerWallet = 1;
    bool public paused = true;
    bool public isRevealed;

    using Strings for uint256;
    string private baseTokenUri = "";
    string public hiddenTokenUri =
        "ipfs://QmR1hgSiAHe1wEQ6CZ8rKWQi1Rm8pevAzdJN83Tov4A2k6/metadata.json";
    mapping(address => uint256) private _mintedFreeAmount;
    mapping(address => uint256) private _mintedPerWallet;

    constructor() ERC721A("Proof of Present", "Present") {}

    function mint(uint256 count) external payable {
        require(paused == false, "Minting is not live yet.");

        uint256 cost = (msg.value == 0 &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreeMintPerWallet))
            ? 0
            : mintPrice;

        require(
            _mintedPerWallet[msg.sender] + count <= maxMintPerTx,
            "Max per wallet reached."
        );
        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count <= maxSupply, "Sold out!");

        require(count <= maxMintPerTx, "Max per txn reached.");

        if (cost == 0) {
            _mintedFreeAmount[msg.sender] += count;
        } else {
            _mintedPerWallet[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }

    function teamMint(address receiver, uint256 amount) external onlyOwner {
        _safeMint(receiver, amount);
    }

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        uint256 trueId = tokenId + 1;

        if (!isRevealed) {
            return hiddenTokenUri;
        }
        return
            bytes(baseTokenUri).length > 0
                ? string(
                    abi.encodePacked(baseTokenUri, trueId.toString(), ".json")
                )
                : "";
    }

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

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function setTokenUri(string memory _baseTokenUri) external onlyOwner {
        baseTokenUri = _baseTokenUri;
    }

    function togglePaused() external onlyOwner {
        paused = !paused;
    }

    function setPrice(uint256 _newPrice) external onlyOwner {
        mintPrice = _newPrice;
    }

    function cutSupply(uint256 _newSupply) external onlyOwner {
        maxSupply = _newSupply;
    }

    function toggleReveal() external onlyOwner {
        isRevealed = !isRevealed;
    }

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success, "Withdraw failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"cutSupply","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":[],"name":"hiddenTokenUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenUri","type":"string"}],"name":"setTokenUri","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":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleReveal","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526104c960095566038d7ea4c68000600a55600a600b556001600c556001600d60006101000a81548160ff02191690831515021790555060405180602001604052806000815250600e90805190602001906200006192919062000255565b506040518060800160405280604381526020016200349b60439139600f90805190602001906200009392919062000255565b50348015620000a157600080fd5b506040518060400160405280601081526020017f50726f6f66206f662050726573656e74000000000000000000000000000000008152506040518060400160405280600781526020017f50726573656e740000000000000000000000000000000000000000000000000081525081600290805190602001906200012692919062000255565b5080600390805190602001906200013f92919062000255565b50620001506200017e60201b60201c565b6000819055505050620001786200016c6200018760201b60201c565b6200018f60201b60201c565b6200036a565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002639062000334565b90600052602060002090601f016020900481019282620002875760008555620002d3565b82601f10620002a257805160ff1916838001178555620002d3565b82800160010185558215620002d3579182015b82811115620002d2578251825591602001919060010190620002b5565b5b509050620002e29190620002e6565b5090565b5b8082111562000301576000816000905550600101620002e7565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200034d57607f821691505b6020821081141562000364576200036362000305565b5b50919050565b613121806200037a6000396000f3fe6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610653578063f2fde38b14610690578063f4c44569146106b9578063fa7ffe68146106e2576101e3565b8063b88d4fde146105a4578063c87b56dd146105c0578063d5abeb01146105fd578063de7fcb1d14610628576101e3565b806395d89b41116100d157806395d89b411461050b578063a0712d6814610536578063a22cb46514610552578063add5a4fa1461057b576101e3565b8063715018a614610475578063845bb3bb1461048c5780638da5cb5b146104b757806391b7f5ed146104e2576101e3565b80633ccfd60b1161017a5780635c975abb116101495780635c975abb146103a55780636352211e146103d05780636817c76c1461040d57806370a0823114610438576101e3565b80633ccfd60b1461033057806342842e0e1461034757806354214f69146103635780635b8ad4291461038e576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102d257806323b872dd146102fd57806336566f0614610319576101e3565b806301ffc9a7146101e85780630675b7c61461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906122af565b61070d565b60405161021c91906122f7565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612458565b61079f565b005b34801561025a57600080fd5b506102636107c1565b6040516102709190612529565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612581565b610853565b6040516102ad91906125ef565b60405180910390f35b6102d060048036038101906102cb9190612636565b6108d2565b005b3480156102de57600080fd5b506102e7610a16565b6040516102f49190612685565b60405180910390f35b610317600480360381019061031291906126a0565b610a2d565b005b34801561032557600080fd5b5061032e610d52565b005b34801561033c57600080fd5b50610345610d86565b005b610361600480360381019061035c91906126a0565b610e3d565b005b34801561036f57600080fd5b50610378610e5d565b60405161038591906122f7565b60405180910390f35b34801561039a57600080fd5b506103a3610e70565b005b3480156103b157600080fd5b506103ba610ea4565b6040516103c791906122f7565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190612581565b610eb7565b60405161040491906125ef565b60405180910390f35b34801561041957600080fd5b50610422610ec9565b60405161042f9190612685565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a91906126f3565b610ecf565b60405161046c9190612685565b60405180910390f35b34801561048157600080fd5b5061048a610f88565b005b34801561049857600080fd5b506104a1610f9c565b6040516104ae9190612685565b60405180910390f35b3480156104c357600080fd5b506104cc610fa2565b6040516104d991906125ef565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190612581565b610fcc565b005b34801561051757600080fd5b50610520610fde565b60405161052d9190612529565b60405180910390f35b610550600480360381019061054b9190612581565b611070565b005b34801561055e57600080fd5b506105796004803603810190610574919061274c565b611376565b005b34801561058757600080fd5b506105a2600480360381019061059d9190612636565b611481565b005b6105be60048036038101906105b9919061282d565b611497565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612581565b61150a565b6040516105f49190612529565b60405180910390f35b34801561060957600080fd5b5061061261166c565b60405161061f9190612685565b60405180910390f35b34801561063457600080fd5b5061063d611672565b60405161064a9190612685565b60405180910390f35b34801561065f57600080fd5b5061067a600480360381019061067591906128b0565b611678565b60405161068791906122f7565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b291906126f3565b61170c565b005b3480156106c557600080fd5b506106e060048036038101906106db9190612581565b611790565b005b3480156106ee57600080fd5b506106f76117a2565b6040516107049190612529565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107985750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6107a7611830565b80600e90805190602001906107bd9291906121a0565b5050565b6060600280546107d09061291f565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc9061291f565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b600061085e826118ae565b610894576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108dd82610eb7565b90508073ffffffffffffffffffffffffffffffffffffffff166108fe61190d565b73ffffffffffffffffffffffffffffffffffffffff16146109615761092a8161092561190d565b611678565b610960576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a20611915565b6001546000540303905090565b6000610a388261191e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a9f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610aab846119ec565b91509150610ac18187610abc61190d565b611a13565b610b0d57610ad686610ad161190d565b611678565b610b0c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b74576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b818686866001611a57565b8015610b8c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c5a85610c36888887611a5d565b7c020000000000000000000000000000000000000000000000000000000017611a85565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ce2576000600185019050600060046000838152602001908152602001600020541415610ce0576000548114610cdf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d4a8686866001611ab0565b505050505050565b610d5a611830565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610d8e611830565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610db490612982565b60006040518083038185875af1925050503d8060008114610df1576040519150601f19603f3d011682016040523d82523d6000602084013e610df6565b606091505b5050905080610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e31906129e3565b60405180910390fd5b50565b610e5883838360405180602001604052806000815250611497565b505050565b600d60019054906101000a900460ff1681565b610e78611830565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff1681565b6000610ec28261191e565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f37576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f90611830565b610f9a6000611ab6565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fd4611830565b80600a8190555050565b606060038054610fed9061291f565b80601f01602080910402602001604051908101604052809291908181526020018280546110199061291f565b80156110665780601f1061103b57610100808354040283529160200191611066565b820191906000526020600020905b81548152906001019060200180831161104957829003601f168201915b5050505050905090565b60001515600d60009054906101000a900460ff161515146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612a4f565b60405180910390fd5b600080341480156111235750600c5482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111209190612a9e565b11155b61112f57600a54611132565b60005b9050600b5482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111829190612a9e565b11156111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba90612b40565b60405180910390fd5b80826111cf9190612b60565b341015611211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120890612c06565b60405180910390fd5b6009548261121d610a16565b6112279190612a9e565b1115611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90612c72565b60405180910390fd5b600b548211156112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490612cde565b60405180910390fd5b60008114156113115781601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113059190612a9e565b92505081905550611368565b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113609190612a9e565b925050819055505b6113723383611b7c565b5050565b806007600061138361190d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661143061190d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147591906122f7565b60405180910390a35050565b611489611830565b6114938282611b7c565b5050565b6114a2848484610a2d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611504576114cd84848484611b9a565b611503576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611515826118ae565b611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b90612d70565b60405180910390fd5b60006001836115639190612a9e565b9050600d60019054906101000a900460ff1661160c57600f80546115869061291f565b80601f01602080910402602001604051908101604052809291908181526020018280546115b29061291f565b80156115ff5780601f106115d4576101008083540402835291602001916115ff565b820191906000526020600020905b8154815290600101906020018083116115e257829003601f168201915b5050505050915050611667565b6000600e805461161b9061291f565b9050116116375760405180602001604052806000815250611663565b600e61164282611cfa565b604051602001611653929190612eac565b6040516020818303038152906040525b9150505b919050565b60095481565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611714611830565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90612f4d565b60405180910390fd5b61178d81611ab6565b50565b611798611830565b8060098190555050565b600f80546117af9061291f565b80601f01602080910402602001604051908101604052809291908181526020018280546117db9061291f565b80156118285780601f106117fd57610100808354040283529160200191611828565b820191906000526020600020905b81548152906001019060200180831161180b57829003601f168201915b505050505081565b611838611dd2565b73ffffffffffffffffffffffffffffffffffffffff16611856610fa2565b73ffffffffffffffffffffffffffffffffffffffff16146118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390612fb9565b60405180910390fd5b565b6000816118b9611915565b111580156118c8575060005482105b8015611906575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061192d611915565b116119b5576000548110156119b45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119b2575b60008114156119a857600460008360019003935083815260200190815260200160002054905061197d565b80925050506119e7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a74868684611dda565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b96828260405180602001604052806000815250611de3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bc061190d565b8786866040518563ffffffff1660e01b8152600401611be2949392919061302e565b602060405180830381600087803b158015611bfc57600080fd5b505af1925050508015611c2d57506040513d601f19601f82011682018060405250810190611c2a919061308f565b60015b611ca7573d8060008114611c5d576040519150601f19603f3d011682016040523d82523d6000602084013e611c62565b606091505b50600081511415611c9f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001611d0984611e80565b01905060008167ffffffffffffffff811115611d2857611d2761232d565b5b6040519080825280601f01601f191660200182016040528015611d5a5781602001600182028036833780820191505090505b509050600082602001820190505b600115611dc7578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611db157611db06130bc565b5b0494506000851415611dc257611dc7565b611d68565b819350505050919050565b600033905090565b60009392505050565b611ded8383611fd3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e7b57600080549050600083820390505b611e2d6000868380600101945086611b9a565b611e63576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e1a578160005414611e7857600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611ede577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ed457611ed36130bc565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f1b576d04ee2d6d415b85acef81000000008381611f1157611f106130bc565b5b0492506020810190505b662386f26fc100008310611f4a57662386f26fc100008381611f4057611f3f6130bc565b5b0492506010810190505b6305f5e1008310611f73576305f5e1008381611f6957611f686130bc565b5b0492506008810190505b6127108310611f98576127108381611f8e57611f8d6130bc565b5b0492506004810190505b60648310611fbb5760648381611fb157611fb06130bc565b5b0492506002810190505b600a8310611fca576001810190505b80915050919050565b6000805490506000821415612014576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120216000848385611a57565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612098836120896000866000611a5d565b61209285612190565b17611a85565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461213957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120fe565b506000821415612175576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061218b6000848385611ab0565b505050565b60006001821460e11b9050919050565b8280546121ac9061291f565b90600052602060002090601f0160209004810192826121ce5760008555612215565b82601f106121e757805160ff1916838001178555612215565b82800160010185558215612215579182015b828111156122145782518255916020019190600101906121f9565b5b5090506122229190612226565b5090565b5b8082111561223f576000816000905550600101612227565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61228c81612257565b811461229757600080fd5b50565b6000813590506122a981612283565b92915050565b6000602082840312156122c5576122c461224d565b5b60006122d38482850161229a565b91505092915050565b60008115159050919050565b6122f1816122dc565b82525050565b600060208201905061230c60008301846122e8565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6123658261231c565b810181811067ffffffffffffffff821117156123845761238361232d565b5b80604052505050565b6000612397612243565b90506123a3828261235c565b919050565b600067ffffffffffffffff8211156123c3576123c261232d565b5b6123cc8261231c565b9050602081019050919050565b82818337600083830152505050565b60006123fb6123f6846123a8565b61238d565b90508281526020810184848401111561241757612416612317565b5b6124228482856123d9565b509392505050565b600082601f83011261243f5761243e612312565b5b813561244f8482602086016123e8565b91505092915050565b60006020828403121561246e5761246d61224d565b5b600082013567ffffffffffffffff81111561248c5761248b612252565b5b6124988482850161242a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124db5780820151818401526020810190506124c0565b838111156124ea576000848401525b50505050565b60006124fb826124a1565b61250581856124ac565b93506125158185602086016124bd565b61251e8161231c565b840191505092915050565b6000602082019050818103600083015261254381846124f0565b905092915050565b6000819050919050565b61255e8161254b565b811461256957600080fd5b50565b60008135905061257b81612555565b92915050565b6000602082840312156125975761259661224d565b5b60006125a58482850161256c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125d9826125ae565b9050919050565b6125e9816125ce565b82525050565b600060208201905061260460008301846125e0565b92915050565b612613816125ce565b811461261e57600080fd5b50565b6000813590506126308161260a565b92915050565b6000806040838503121561264d5761264c61224d565b5b600061265b85828601612621565b925050602061266c8582860161256c565b9150509250929050565b61267f8161254b565b82525050565b600060208201905061269a6000830184612676565b92915050565b6000806000606084860312156126b9576126b861224d565b5b60006126c786828701612621565b93505060206126d886828701612621565b92505060406126e98682870161256c565b9150509250925092565b6000602082840312156127095761270861224d565b5b600061271784828501612621565b91505092915050565b612729816122dc565b811461273457600080fd5b50565b60008135905061274681612720565b92915050565b600080604083850312156127635761276261224d565b5b600061277185828601612621565b925050602061278285828601612737565b9150509250929050565b600067ffffffffffffffff8211156127a7576127a661232d565b5b6127b08261231c565b9050602081019050919050565b60006127d06127cb8461278c565b61238d565b9050828152602081018484840111156127ec576127eb612317565b5b6127f78482856123d9565b509392505050565b600082601f83011261281457612813612312565b5b81356128248482602086016127bd565b91505092915050565b600080600080608085870312156128475761284661224d565b5b600061285587828801612621565b945050602061286687828801612621565b93505060406128778782880161256c565b925050606085013567ffffffffffffffff81111561289857612897612252565b5b6128a4878288016127ff565b91505092959194509250565b600080604083850312156128c7576128c661224d565b5b60006128d585828601612621565b92505060206128e685828601612621565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061293757607f821691505b6020821081141561294b5761294a6128f0565b5b50919050565b600081905092915050565b50565b600061296c600083612951565b91506129778261295c565b600082019050919050565b600061298d8261295f565b9150819050919050565b7f5769746864726177206661696c65642e00000000000000000000000000000000600082015250565b60006129cd6010836124ac565b91506129d882612997565b602082019050919050565b600060208201905081810360008301526129fc816129c0565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b6000612a396018836124ac565b9150612a4482612a03565b602082019050919050565b60006020820190508181036000830152612a6881612a2c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612aa98261254b565b9150612ab48361254b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ae957612ae8612a6f565b5b828201905092915050565b7f4d6178207065722077616c6c657420726561636865642e000000000000000000600082015250565b6000612b2a6017836124ac565b9150612b3582612af4565b602082019050919050565b60006020820190508181036000830152612b5981612b1d565b9050919050565b6000612b6b8261254b565b9150612b768361254b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612baf57612bae612a6f565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612bf0601d836124ac565b9150612bfb82612bba565b602082019050919050565b60006020820190508181036000830152612c1f81612be3565b9050919050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612c5c6009836124ac565b9150612c6782612c26565b602082019050919050565b60006020820190508181036000830152612c8b81612c4f565b9050919050565b7f4d6178207065722074786e20726561636865642e000000000000000000000000600082015250565b6000612cc86014836124ac565b9150612cd382612c92565b602082019050919050565b60006020820190508181036000830152612cf781612cbb565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d5a602f836124ac565b9150612d6582612cfe565b604082019050919050565b60006020820190508181036000830152612d8981612d4d565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612dbd8161291f565b612dc78186612d90565b94506001821660008114612de25760018114612df357612e26565b60ff19831686528186019350612e26565b612dfc85612d9b565b60005b83811015612e1e57815481890152600182019150602081019050612dff565b838801955050505b50505092915050565b6000612e3a826124a1565b612e448185612d90565b9350612e548185602086016124bd565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e96600583612d90565b9150612ea182612e60565b600582019050919050565b6000612eb88285612db0565b9150612ec48284612e2f565b9150612ecf82612e89565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f376026836124ac565b9150612f4282612edb565b604082019050919050565b60006020820190508181036000830152612f6681612f2a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fa36020836124ac565b9150612fae82612f6d565b602082019050919050565b60006020820190508181036000830152612fd281612f96565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061300082612fd9565b61300a8185612fe4565b935061301a8185602086016124bd565b6130238161231c565b840191505092915050565b600060808201905061304360008301876125e0565b61305060208301866125e0565b61305d6040830185612676565b818103606083015261306f8184612ff5565b905095945050505050565b60008151905061308981612283565b92915050565b6000602082840312156130a5576130a461224d565b5b60006130b38482850161307a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212204617582b073455022f96e2ac62723c31d49f3449b4103762489fc75d96ec098d64736f6c63430008090033697066733a2f2f516d5231686753694148653177455136435a38724b57516931526d38706576417a644a4e3833546f763441326b362f6d657461646174612e6a736f6e

Deployed Bytecode

0x6080604052600436106101e35760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610653578063f2fde38b14610690578063f4c44569146106b9578063fa7ffe68146106e2576101e3565b8063b88d4fde146105a4578063c87b56dd146105c0578063d5abeb01146105fd578063de7fcb1d14610628576101e3565b806395d89b41116100d157806395d89b411461050b578063a0712d6814610536578063a22cb46514610552578063add5a4fa1461057b576101e3565b8063715018a614610475578063845bb3bb1461048c5780638da5cb5b146104b757806391b7f5ed146104e2576101e3565b80633ccfd60b1161017a5780635c975abb116101495780635c975abb146103a55780636352211e146103d05780636817c76c1461040d57806370a0823114610438576101e3565b80633ccfd60b1461033057806342842e0e1461034757806354214f69146103635780635b8ad4291461038e576101e3565b8063095ea7b3116101b6578063095ea7b3146102b657806318160ddd146102d257806323b872dd146102fd57806336566f0614610319576101e3565b806301ffc9a7146101e85780630675b7c61461022557806306fdde031461024e578063081812fc14610279575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a91906122af565b61070d565b60405161021c91906122f7565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190612458565b61079f565b005b34801561025a57600080fd5b506102636107c1565b6040516102709190612529565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b9190612581565b610853565b6040516102ad91906125ef565b60405180910390f35b6102d060048036038101906102cb9190612636565b6108d2565b005b3480156102de57600080fd5b506102e7610a16565b6040516102f49190612685565b60405180910390f35b610317600480360381019061031291906126a0565b610a2d565b005b34801561032557600080fd5b5061032e610d52565b005b34801561033c57600080fd5b50610345610d86565b005b610361600480360381019061035c91906126a0565b610e3d565b005b34801561036f57600080fd5b50610378610e5d565b60405161038591906122f7565b60405180910390f35b34801561039a57600080fd5b506103a3610e70565b005b3480156103b157600080fd5b506103ba610ea4565b6040516103c791906122f7565b60405180910390f35b3480156103dc57600080fd5b506103f760048036038101906103f29190612581565b610eb7565b60405161040491906125ef565b60405180910390f35b34801561041957600080fd5b50610422610ec9565b60405161042f9190612685565b60405180910390f35b34801561044457600080fd5b5061045f600480360381019061045a91906126f3565b610ecf565b60405161046c9190612685565b60405180910390f35b34801561048157600080fd5b5061048a610f88565b005b34801561049857600080fd5b506104a1610f9c565b6040516104ae9190612685565b60405180910390f35b3480156104c357600080fd5b506104cc610fa2565b6040516104d991906125ef565b60405180910390f35b3480156104ee57600080fd5b5061050960048036038101906105049190612581565b610fcc565b005b34801561051757600080fd5b50610520610fde565b60405161052d9190612529565b60405180910390f35b610550600480360381019061054b9190612581565b611070565b005b34801561055e57600080fd5b506105796004803603810190610574919061274c565b611376565b005b34801561058757600080fd5b506105a2600480360381019061059d9190612636565b611481565b005b6105be60048036038101906105b9919061282d565b611497565b005b3480156105cc57600080fd5b506105e760048036038101906105e29190612581565b61150a565b6040516105f49190612529565b60405180910390f35b34801561060957600080fd5b5061061261166c565b60405161061f9190612685565b60405180910390f35b34801561063457600080fd5b5061063d611672565b60405161064a9190612685565b60405180910390f35b34801561065f57600080fd5b5061067a600480360381019061067591906128b0565b611678565b60405161068791906122f7565b60405180910390f35b34801561069c57600080fd5b506106b760048036038101906106b291906126f3565b61170c565b005b3480156106c557600080fd5b506106e060048036038101906106db9190612581565b611790565b005b3480156106ee57600080fd5b506106f76117a2565b6040516107049190612529565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061076857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107985750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6107a7611830565b80600e90805190602001906107bd9291906121a0565b5050565b6060600280546107d09061291f565b80601f01602080910402602001604051908101604052809291908181526020018280546107fc9061291f565b80156108495780601f1061081e57610100808354040283529160200191610849565b820191906000526020600020905b81548152906001019060200180831161082c57829003601f168201915b5050505050905090565b600061085e826118ae565b610894576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108dd82610eb7565b90508073ffffffffffffffffffffffffffffffffffffffff166108fe61190d565b73ffffffffffffffffffffffffffffffffffffffff16146109615761092a8161092561190d565b611678565b610960576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610a20611915565b6001546000540303905090565b6000610a388261191e565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610a9f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610aab846119ec565b91509150610ac18187610abc61190d565b611a13565b610b0d57610ad686610ad161190d565b611678565b610b0c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610b74576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b818686866001611a57565b8015610b8c57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610c5a85610c36888887611a5d565b7c020000000000000000000000000000000000000000000000000000000017611a85565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610ce2576000600185019050600060046000838152602001908152602001600020541415610ce0576000548114610cdf578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610d4a8686866001611ab0565b505050505050565b610d5a611830565b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610d8e611830565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610db490612982565b60006040518083038185875af1925050503d8060008114610df1576040519150601f19603f3d011682016040523d82523d6000602084013e610df6565b606091505b5050905080610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e31906129e3565b60405180910390fd5b50565b610e5883838360405180602001604052806000815250611497565b505050565b600d60019054906101000a900460ff1681565b610e78611830565b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b600d60009054906101000a900460ff1681565b6000610ec28261191e565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f37576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f90611830565b610f9a6000611ab6565b565b600c5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610fd4611830565b80600a8190555050565b606060038054610fed9061291f565b80601f01602080910402602001604051908101604052809291908181526020018280546110199061291f565b80156110665780601f1061103b57610100808354040283529160200191611066565b820191906000526020600020905b81548152906001019060200180831161104957829003601f168201915b5050505050905090565b60001515600d60009054906101000a900460ff161515146110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90612a4f565b60405180910390fd5b600080341480156111235750600c5482601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111209190612a9e565b11155b61112f57600a54611132565b60005b9050600b5482601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111829190612a9e565b11156111c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ba90612b40565b60405180910390fd5b80826111cf9190612b60565b341015611211576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120890612c06565b60405180910390fd5b6009548261121d610a16565b6112279190612a9e565b1115611268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125f90612c72565b60405180910390fd5b600b548211156112ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a490612cde565b60405180910390fd5b60008114156113115781601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113059190612a9e565b92505081905550611368565b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113609190612a9e565b925050819055505b6113723383611b7c565b5050565b806007600061138361190d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661143061190d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161147591906122f7565b60405180910390a35050565b611489611830565b6114938282611b7c565b5050565b6114a2848484610a2d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611504576114cd84848484611b9a565b611503576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060611515826118ae565b611554576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154b90612d70565b60405180910390fd5b60006001836115639190612a9e565b9050600d60019054906101000a900460ff1661160c57600f80546115869061291f565b80601f01602080910402602001604051908101604052809291908181526020018280546115b29061291f565b80156115ff5780601f106115d4576101008083540402835291602001916115ff565b820191906000526020600020905b8154815290600101906020018083116115e257829003601f168201915b5050505050915050611667565b6000600e805461161b9061291f565b9050116116375760405180602001604052806000815250611663565b600e61164282611cfa565b604051602001611653929190612eac565b6040516020818303038152906040525b9150505b919050565b60095481565b600b5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611714611830565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611784576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177b90612f4d565b60405180910390fd5b61178d81611ab6565b50565b611798611830565b8060098190555050565b600f80546117af9061291f565b80601f01602080910402602001604051908101604052809291908181526020018280546117db9061291f565b80156118285780601f106117fd57610100808354040283529160200191611828565b820191906000526020600020905b81548152906001019060200180831161180b57829003601f168201915b505050505081565b611838611dd2565b73ffffffffffffffffffffffffffffffffffffffff16611856610fa2565b73ffffffffffffffffffffffffffffffffffffffff16146118ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a390612fb9565b60405180910390fd5b565b6000816118b9611915565b111580156118c8575060005482105b8015611906575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061192d611915565b116119b5576000548110156119b45760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156119b2575b60008114156119a857600460008360019003935083815260200190815260200160002054905061197d565b80925050506119e7565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611a74868684611dda565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b96828260405180602001604052806000815250611de3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bc061190d565b8786866040518563ffffffff1660e01b8152600401611be2949392919061302e565b602060405180830381600087803b158015611bfc57600080fd5b505af1925050508015611c2d57506040513d601f19601f82011682018060405250810190611c2a919061308f565b60015b611ca7573d8060008114611c5d576040519150601f19603f3d011682016040523d82523d6000602084013e611c62565b606091505b50600081511415611c9f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060006001611d0984611e80565b01905060008167ffffffffffffffff811115611d2857611d2761232d565b5b6040519080825280601f01601f191660200182016040528015611d5a5781602001600182028036833780820191505090505b509050600082602001820190505b600115611dc7578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a8581611db157611db06130bc565b5b0494506000851415611dc257611dc7565b611d68565b819350505050919050565b600033905090565b60009392505050565b611ded8383611fd3565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e7b57600080549050600083820390505b611e2d6000868380600101945086611b9a565b611e63576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611e1a578160005414611e7857600080fd5b50505b505050565b600080600090507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310611ede577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381611ed457611ed36130bc565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310611f1b576d04ee2d6d415b85acef81000000008381611f1157611f106130bc565b5b0492506020810190505b662386f26fc100008310611f4a57662386f26fc100008381611f4057611f3f6130bc565b5b0492506010810190505b6305f5e1008310611f73576305f5e1008381611f6957611f686130bc565b5b0492506008810190505b6127108310611f98576127108381611f8e57611f8d6130bc565b5b0492506004810190505b60648310611fbb5760648381611fb157611fb06130bc565b5b0492506002810190505b600a8310611fca576001810190505b80915050919050565b6000805490506000821415612014576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6120216000848385611a57565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612098836120896000866000611a5d565b61209285612190565b17611a85565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461213957808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001810190506120fe565b506000821415612175576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600081905550505061218b6000848385611ab0565b505050565b60006001821460e11b9050919050565b8280546121ac9061291f565b90600052602060002090601f0160209004810192826121ce5760008555612215565b82601f106121e757805160ff1916838001178555612215565b82800160010185558215612215579182015b828111156122145782518255916020019190600101906121f9565b5b5090506122229190612226565b5090565b5b8082111561223f576000816000905550600101612227565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61228c81612257565b811461229757600080fd5b50565b6000813590506122a981612283565b92915050565b6000602082840312156122c5576122c461224d565b5b60006122d38482850161229a565b91505092915050565b60008115159050919050565b6122f1816122dc565b82525050565b600060208201905061230c60008301846122e8565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6123658261231c565b810181811067ffffffffffffffff821117156123845761238361232d565b5b80604052505050565b6000612397612243565b90506123a3828261235c565b919050565b600067ffffffffffffffff8211156123c3576123c261232d565b5b6123cc8261231c565b9050602081019050919050565b82818337600083830152505050565b60006123fb6123f6846123a8565b61238d565b90508281526020810184848401111561241757612416612317565b5b6124228482856123d9565b509392505050565b600082601f83011261243f5761243e612312565b5b813561244f8482602086016123e8565b91505092915050565b60006020828403121561246e5761246d61224d565b5b600082013567ffffffffffffffff81111561248c5761248b612252565b5b6124988482850161242a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156124db5780820151818401526020810190506124c0565b838111156124ea576000848401525b50505050565b60006124fb826124a1565b61250581856124ac565b93506125158185602086016124bd565b61251e8161231c565b840191505092915050565b6000602082019050818103600083015261254381846124f0565b905092915050565b6000819050919050565b61255e8161254b565b811461256957600080fd5b50565b60008135905061257b81612555565b92915050565b6000602082840312156125975761259661224d565b5b60006125a58482850161256c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006125d9826125ae565b9050919050565b6125e9816125ce565b82525050565b600060208201905061260460008301846125e0565b92915050565b612613816125ce565b811461261e57600080fd5b50565b6000813590506126308161260a565b92915050565b6000806040838503121561264d5761264c61224d565b5b600061265b85828601612621565b925050602061266c8582860161256c565b9150509250929050565b61267f8161254b565b82525050565b600060208201905061269a6000830184612676565b92915050565b6000806000606084860312156126b9576126b861224d565b5b60006126c786828701612621565b93505060206126d886828701612621565b92505060406126e98682870161256c565b9150509250925092565b6000602082840312156127095761270861224d565b5b600061271784828501612621565b91505092915050565b612729816122dc565b811461273457600080fd5b50565b60008135905061274681612720565b92915050565b600080604083850312156127635761276261224d565b5b600061277185828601612621565b925050602061278285828601612737565b9150509250929050565b600067ffffffffffffffff8211156127a7576127a661232d565b5b6127b08261231c565b9050602081019050919050565b60006127d06127cb8461278c565b61238d565b9050828152602081018484840111156127ec576127eb612317565b5b6127f78482856123d9565b509392505050565b600082601f83011261281457612813612312565b5b81356128248482602086016127bd565b91505092915050565b600080600080608085870312156128475761284661224d565b5b600061285587828801612621565b945050602061286687828801612621565b93505060406128778782880161256c565b925050606085013567ffffffffffffffff81111561289857612897612252565b5b6128a4878288016127ff565b91505092959194509250565b600080604083850312156128c7576128c661224d565b5b60006128d585828601612621565b92505060206128e685828601612621565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061293757607f821691505b6020821081141561294b5761294a6128f0565b5b50919050565b600081905092915050565b50565b600061296c600083612951565b91506129778261295c565b600082019050919050565b600061298d8261295f565b9150819050919050565b7f5769746864726177206661696c65642e00000000000000000000000000000000600082015250565b60006129cd6010836124ac565b91506129d882612997565b602082019050919050565b600060208201905081810360008301526129fc816129c0565b9050919050565b7f4d696e74696e67206973206e6f74206c697665207965742e0000000000000000600082015250565b6000612a396018836124ac565b9150612a4482612a03565b602082019050919050565b60006020820190508181036000830152612a6881612a2c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612aa98261254b565b9150612ab48361254b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612ae957612ae8612a6f565b5b828201905092915050565b7f4d6178207065722077616c6c657420726561636865642e000000000000000000600082015250565b6000612b2a6017836124ac565b9150612b3582612af4565b602082019050919050565b60006020820190508181036000830152612b5981612b1d565b9050919050565b6000612b6b8261254b565b9150612b768361254b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612baf57612bae612a6f565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612bf0601d836124ac565b9150612bfb82612bba565b602082019050919050565b60006020820190508181036000830152612c1f81612be3565b9050919050565b7f536f6c64206f7574210000000000000000000000000000000000000000000000600082015250565b6000612c5c6009836124ac565b9150612c6782612c26565b602082019050919050565b60006020820190508181036000830152612c8b81612c4f565b9050919050565b7f4d6178207065722074786e20726561636865642e000000000000000000000000600082015250565b6000612cc86014836124ac565b9150612cd382612c92565b602082019050919050565b60006020820190508181036000830152612cf781612cbb565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612d5a602f836124ac565b9150612d6582612cfe565b604082019050919050565b60006020820190508181036000830152612d8981612d4d565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b60008154612dbd8161291f565b612dc78186612d90565b94506001821660008114612de25760018114612df357612e26565b60ff19831686528186019350612e26565b612dfc85612d9b565b60005b83811015612e1e57815481890152600182019150602081019050612dff565b838801955050505b50505092915050565b6000612e3a826124a1565b612e448185612d90565b9350612e548185602086016124bd565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612e96600583612d90565b9150612ea182612e60565b600582019050919050565b6000612eb88285612db0565b9150612ec48284612e2f565b9150612ecf82612e89565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612f376026836124ac565b9150612f4282612edb565b604082019050919050565b60006020820190508181036000830152612f6681612f2a565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612fa36020836124ac565b9150612fae82612f6d565b602082019050919050565b60006020820190508181036000830152612fd281612f96565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061300082612fd9565b61300a8185612fe4565b935061301a8185602086016124bd565b6130238161231c565b840191505092915050565b600060808201905061304360008301876125e0565b61305060208301866125e0565b61305d6040830185612676565b818103606083015261306f8184612ff5565b905095945050505050565b60008151905061308981612283565b92915050565b6000602082840312156130a5576130a461224d565b5b60006130b38482850161307a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fdfea26469706673582212204617582b073455022f96e2ac62723c31d49f3449b4103762489fc75d96ec098d64736f6c63430008090033

Deployed Bytecode Sourcemap

70295:3181:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37196:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72752:116;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38098:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44589:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44022:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33849:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48228:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;72876:78;;;;;;;;;;;;;:::i;:::-;;73267:206;;;;;;;;;;;;;:::i;:::-;;51149:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70546:22;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;73173:86;;;;;;;;;;;;;:::i;:::-;;70514:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39491:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70384:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35033:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17975:103;;;;;;;;;;;;;:::i;:::-;;70468:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17327:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;72962:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38274:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70948:836;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45147:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71792:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51940:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;71917:597;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70346:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70429:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45538:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18233:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;73066:99;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70648:109;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37196:639;37281:4;37620:10;37605:25;;:11;:25;;;;:102;;;;37697:10;37682:25;;:11;:25;;;;37605:102;:179;;;;37774:10;37759:25;;:11;:25;;;;37605:179;37585:199;;37196:639;;;:::o;72752:116::-;17213:13;:11;:13::i;:::-;72847::::1;72832:12;:28;;;;;;;;;;;;:::i;:::-;;72752:116:::0;:::o;38098:100::-;38152:13;38185:5;38178:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38098:100;:::o;44589:218::-;44665:7;44690:16;44698:7;44690;:16::i;:::-;44685:64;;44715:34;;;;;;;;;;;;;;44685:64;44769:15;:24;44785:7;44769:24;;;;;;;;;;;:30;;;;;;;;;;;;44762:37;;44589:218;;;:::o;44022:408::-;44111:13;44127:16;44135:7;44127;:16::i;:::-;44111:32;;44183:5;44160:28;;:19;:17;:19::i;:::-;:28;;;44156:175;;44208:44;44225:5;44232:19;:17;:19::i;:::-;44208:16;:44::i;:::-;44203:128;;44280:35;;;;;;;;;;;;;;44203:128;44156:175;44376:2;44343:15;:24;44359:7;44343:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;44414:7;44410:2;44394:28;;44403:5;44394:28;;;;;;;;;;;;44100:330;44022:408;;:::o;33849:323::-;33910:7;34138:15;:13;:15::i;:::-;34123:12;;34107:13;;:28;:46;34100:53;;33849:323;:::o;48228:2825::-;48370:27;48400;48419:7;48400:18;:27::i;:::-;48370:57;;48485:4;48444:45;;48460:19;48444:45;;;48440:86;;48498:28;;;;;;;;;;;;;;48440:86;48540:27;48569:23;48596:35;48623:7;48596:26;:35::i;:::-;48539:92;;;;48731:68;48756:15;48773:4;48779:19;:17;:19::i;:::-;48731:24;:68::i;:::-;48726:180;;48819:43;48836:4;48842:19;:17;:19::i;:::-;48819:16;:43::i;:::-;48814:92;;48871:35;;;;;;;;;;;;;;48814:92;48726:180;48937:1;48923:16;;:2;:16;;;48919:52;;;48948:23;;;;;;;;;;;;;;48919:52;48984:43;49006:4;49012:2;49016:7;49025:1;48984:21;:43::i;:::-;49120:15;49117:160;;;49260:1;49239:19;49232:30;49117:160;49657:18;:24;49676:4;49657:24;;;;;;;;;;;;;;;;49655:26;;;;;;;;;;;;49726:18;:22;49745:2;49726:22;;;;;;;;;;;;;;;;49724:24;;;;;;;;;;;50048:146;50085:2;50134:45;50149:4;50155:2;50159:19;50134:14;:45::i;:::-;30248:8;50106:73;50048:18;:146::i;:::-;50019:17;:26;50037:7;50019:26;;;;;;;;;;;:175;;;;50365:1;30248:8;50314:19;:47;:52;50310:627;;;50387:19;50419:1;50409:7;:11;50387:33;;50576:1;50542:17;:30;50560:11;50542:30;;;;;;;;;;;;:35;50538:384;;;50680:13;;50665:11;:28;50661:242;;50860:19;50827:17;:30;50845:11;50827:30;;;;;;;;;;;:52;;;;50661:242;50538:384;50368:569;50310:627;50984:7;50980:2;50965:27;;50974:4;50965:27;;;;;;;;;;;;51003:42;51024:4;51030:2;51034:7;51043:1;51003:20;:42::i;:::-;48359:2694;;;48228:2825;;;:::o;72876:78::-;17213:13;:11;:13::i;:::-;72940:6:::1;;;;;;;;;;;72939:7;72930:6;;:16;;;;;;;;;;;;;;;;;;72876:78::o:0;73267:206::-;17213:13;:11;:13::i;:::-;73318:12:::1;73344:10;73336:24;;73382:21;73336:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73317:101;;;73437:7;73429:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;73306:167;73267:206::o:0;51149:193::-;51295:39;51312:4;51318:2;51322:7;51295:39;;;;;;;;;;;;:16;:39::i;:::-;51149:193;;;:::o;70546:22::-;;;;;;;;;;;;;:::o;73173:86::-;17213:13;:11;:13::i;:::-;73241:10:::1;;;;;;;;;;;73240:11;73227:10;;:24;;;;;;;;;;;;;;;;;;73173:86::o:0;70514:25::-;;;;;;;;;;;;;:::o;39491:152::-;39563:7;39606:27;39625:7;39606:18;:27::i;:::-;39583:52;;39491:152;;;:::o;70384:38::-;;;;:::o;35033:233::-;35105:7;35146:1;35129:19;;:5;:19;;;35125:60;;;35157:28;;;;;;;;;;;;;;35125:60;29192:13;35203:18;:25;35222:5;35203:25;;;;;;;;;;;;;;;;:55;35196:62;;35033:233;;;:::o;17975:103::-;17213:13;:11;:13::i;:::-;18040:30:::1;18067:1;18040:18;:30::i;:::-;17975:103::o:0;70468:39::-;;;;:::o;17327:87::-;17373:7;17400:6;;;;;;;;;;;17393:13;;17327:87;:::o;72962:96::-;17213:13;:11;:13::i;:::-;73041:9:::1;73029;:21;;;;72962:96:::0;:::o;38274:104::-;38330:13;38363:7;38356:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38274:104;:::o;70948:836::-;71023:5;71013:15;;:6;;;;;;;;;;;:15;;;71005:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;71070:12;71099:1;71086:9;:14;:94;;;;;71159:20;;71150:5;71118:17;:29;71136:10;71118:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:61;;71086:94;71085:138;;71214:9;;71085:138;;;71197:1;71085:138;71070:153;;71298:12;;71289:5;71258:16;:28;71275:10;71258:28;;;;;;;;;;;;;;;;:36;;;;:::i;:::-;:52;;71236:125;;;;;;;;;;;;:::i;:::-;;;;;;;;;71401:4;71393:5;:12;;;;:::i;:::-;71380:9;:25;;71372:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;71483:9;;71474:5;71458:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:34;;71450:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;71536:12;;71527:5;:21;;71519:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;71598:1;71590:4;:9;71586:150;;;71649:5;71616:17;:29;71634:10;71616:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;71586:150;;;71719:5;71687:16;:28;71704:10;71687:28;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;71586:150;71748:28;71758:10;71770:5;71748:9;:28::i;:::-;70994:790;70948:836;:::o;45147:234::-;45294:8;45242:18;:39;45261:19;:17;:19::i;:::-;45242:39;;;;;;;;;;;;;;;:49;45282:8;45242:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;45354:8;45318:55;;45333:19;:17;:19::i;:::-;45318:55;;;45364:8;45318:55;;;;;;:::i;:::-;;;;;;;;45147:234;;:::o;71792:117::-;17213:13;:11;:13::i;:::-;71874:27:::1;71884:8;71894:6;71874:9;:27::i;:::-;71792:117:::0;;:::o;51940:407::-;52115:31;52128:4;52134:2;52138:7;52115:12;:31::i;:::-;52179:1;52161:2;:14;;;:19;52157:183;;52200:56;52231:4;52237:2;52241:7;52250:5;52200:30;:56::i;:::-;52195:145;;52284:40;;;;;;;;;;;;;;52195:145;52157:183;51940:407;;;;:::o;71917:597::-;72035:13;72088:16;72096:7;72088;:16::i;:::-;72066:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;72192:14;72219:1;72209:7;:11;;;;:::i;:::-;72192:28;;72238:10;;;;;;;;;;;72233:65;;72272:14;72265:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72233:65;72357:1;72334:12;72328:26;;;;;:::i;:::-;;;:30;:178;;;;;;;;;;;;;;;;;72424:12;72438:17;:6;:15;:17::i;:::-;72407:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;72328:178;72308:198;;;71917:597;;;;:::o;70346:31::-;;;;:::o;70429:32::-;;;;:::o;45538:164::-;45635:4;45659:18;:25;45678:5;45659:25;;;;;;;;;;;;;;;:35;45685:8;45659:35;;;;;;;;;;;;;;;;;;;;;;;;;45652:42;;45538:164;;;;:::o;18233:201::-;17213:13;:11;:13::i;:::-;18342:1:::1;18322:22;;:8;:22;;;;18314:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;18398:28;18417:8;18398:18;:28::i;:::-;18233:201:::0;:::o;73066:99::-;17213:13;:11;:13::i;:::-;73147:10:::1;73135:9;:22;;;;73066:99:::0;:::o;70648:109::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17492:132::-;17567:12;:10;:12::i;:::-;17556:23;;:7;:5;:7::i;:::-;:23;;;17548:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17492:132::o;45960:282::-;46025:4;46081:7;46062:15;:13;:15::i;:::-;:26;;:66;;;;;46115:13;;46105:7;:23;46062:66;:153;;;;;46214:1;29968:8;46166:17;:26;46184:7;46166:26;;;;;;;;;;;;:44;:49;46062:153;46042:173;;45960:282;;;:::o;68268:105::-;68328:7;68355:10;68348:17;;68268:105;:::o;72643:101::-;72708:7;72735:1;72728:8;;72643:101;:::o;40646:1275::-;40713:7;40733:12;40748:7;40733:22;;40816:4;40797:15;:13;:15::i;:::-;:23;40793:1061;;40850:13;;40843:4;:20;40839:1015;;;40888:14;40905:17;:23;40923:4;40905:23;;;;;;;;;;;;40888:40;;41022:1;29968:8;40994:6;:24;:29;40990:845;;;41659:113;41676:1;41666:6;:11;41659:113;;;41719:17;:25;41737:6;;;;;;;41719:25;;;;;;;;;;;;41710:34;;41659:113;;;41805:6;41798:13;;;;;;40990:845;40865:989;40839:1015;40793:1061;41882:31;;;;;;;;;;;;;;40646:1275;;;;:::o;47123:485::-;47225:27;47254:23;47295:38;47336:15;:24;47352:7;47336:24;;;;;;;;;;;47295:65;;47513:18;47490:41;;47570:19;47564:26;47545:45;;47475:126;47123:485;;;:::o;46351:659::-;46500:11;46665:16;46658:5;46654:28;46645:37;;46825:16;46814:9;46810:32;46797:45;;46975:15;46964:9;46961:30;46953:5;46942:9;46939:20;46936:56;46926:66;;46351:659;;;;;:::o;53009:159::-;;;;;:::o;67577:311::-;67712:7;67732:16;30372:3;67758:19;:41;;67732:68;;30372:3;67826:31;67837:4;67843:2;67847:9;67826:10;:31::i;:::-;67818:40;;:62;;67811:69;;;67577:311;;;;;:::o;42469:450::-;42549:14;42717:16;42710:5;42706:28;42697:37;;42894:5;42880:11;42855:23;42851:41;42848:52;42841:5;42838:63;42828:73;;42469:450;;;;:::o;53833:158::-;;;;;:::o;18594:191::-;18668:16;18687:6;;;;;;;;;;;18668:25;;18713:8;18704:6;;:17;;;;;;;;;;;;;;;;;;18768:8;18737:40;;18758:8;18737:40;;;;;;;;;;;;18657:128;18594:191;:::o;62100:112::-;62177:27;62187:2;62191:8;62177:27;;;;;;;;;;;;:9;:27::i;:::-;62100:112;;:::o;54431:716::-;54594:4;54640:2;54615:45;;;54661:19;:17;:19::i;:::-;54682:4;54688:7;54697:5;54615:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;54611:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54915:1;54898:6;:13;:18;54894:235;;;54944:40;;;;;;;;;;;;;;54894:235;55087:6;55081:13;55072:6;55068:2;55064:15;55057:38;54611:529;54784:54;;;54774:64;;;:6;:64;;;;54767:71;;;54431:716;;;;;;:::o;13305:::-;13361:13;13412:14;13449:1;13429:17;13440:5;13429:10;:17::i;:::-;:21;13412:38;;13465:20;13499:6;13488:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13465:41;;13521:11;13650:6;13646:2;13642:15;13634:6;13630:28;13623:35;;13687:288;13694:4;13687:288;;;13719:5;;;;;;;;13861:8;13856:2;13849:5;13845:14;13840:30;13835:3;13827:44;13917:2;13908:11;;;;;;:::i;:::-;;;;;13951:1;13942:5;:10;13938:21;;;13954:5;;13938:21;13687:288;;;13996:6;13989:13;;;;;13305:716;;;:::o;15878:98::-;15931:7;15958:10;15951:17;;15878:98;:::o;67278:147::-;67415:6;67278:147;;;;;:::o;61327:689::-;61458:19;61464:2;61468:8;61458:5;:19::i;:::-;61537:1;61519:2;:14;;;:19;61515:483;;61559:11;61573:13;;61559:27;;61605:13;61627:8;61621:3;:14;61605:30;;61654:233;61685:62;61724:1;61728:2;61732:7;;;;;;61741:5;61685:30;:62::i;:::-;61680:167;;61783:40;;;;;;;;;;;;;;61680:167;61882:3;61874:5;:11;61654:233;;61969:3;61952:13;;:20;61948:34;;61974:8;;;61948:34;61540:458;;61515:483;61327:689;;;:::o;10171:922::-;10224:7;10244:14;10261:1;10244:18;;10311:6;10302:5;:15;10298:102;;10347:6;10338:15;;;;;;:::i;:::-;;;;;10382:2;10372:12;;;;10298:102;10427:6;10418:5;:15;10414:102;;10463:6;10454:15;;;;;;:::i;:::-;;;;;10498:2;10488:12;;;;10414:102;10543:6;10534:5;:15;10530:102;;10579:6;10570:15;;;;;;:::i;:::-;;;;;10614:2;10604:12;;;;10530:102;10659:5;10650;:14;10646:99;;10694:5;10685:14;;;;;;:::i;:::-;;;;;10728:1;10718:11;;;;10646:99;10772:5;10763;:14;10759:99;;10807:5;10798:14;;;;;;:::i;:::-;;;;;10841:1;10831:11;;;;10759:99;10885:5;10876;:14;10872:99;;10920:5;10911:14;;;;;;:::i;:::-;;;;;10954:1;10944:11;;;;10872:99;10998:5;10989;:14;10985:66;;11034:1;11024:11;;;;10985:66;11079:6;11072:13;;;10171:922;;;:::o;55609:2966::-;55682:20;55705:13;;55682:36;;55745:1;55733:8;:13;55729:44;;;55755:18;;;;;;;;;;;;;;55729:44;55786:61;55816:1;55820:2;55824:12;55838:8;55786:21;:61::i;:::-;56330:1;29330:2;56300:1;:26;;56299:32;56287:8;:45;56261:18;:22;56280:2;56261:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;56609:139;56646:2;56700:33;56723:1;56727:2;56731:1;56700:14;:33::i;:::-;56667:30;56688:8;56667:20;:30::i;:::-;:66;56609:18;:139::i;:::-;56575:17;:31;56593:12;56575:31;;;;;;;;;;;:173;;;;56765:16;56796:11;56825:8;56810:12;:23;56796:37;;57346:16;57342:2;57338:25;57326:37;;57718:12;57678:8;57637:1;57575:25;57516:1;57455;57428:335;58089:1;58075:12;58071:20;58029:346;58130:3;58121:7;58118:16;58029:346;;58348:7;58338:8;58335:1;58308:25;58305:1;58302;58297:59;58183:1;58174:7;58170:15;58159:26;;58029:346;;;58033:77;58420:1;58408:8;:13;58404:45;;;58430:19;;;;;;;;;;;;;;58404:45;58482:3;58466:13;:19;;;;56035:2462;;58507:60;58536:1;58540:2;58544:12;58558:8;58507:20;:60::i;:::-;55671:2904;55609:2966;;:::o;43021:324::-;43091:14;43324:1;43314:8;43311:15;43285:24;43281:46;43271:56;;43021:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:117::-;1627:1;1624;1617:12;1641:117;1750:1;1747;1740:12;1764:102;1805:6;1856:2;1852:7;1847:2;1840:5;1836:14;1832:28;1822:38;;1764:102;;;:::o;1872:180::-;1920:77;1917:1;1910:88;2017:4;2014:1;2007:15;2041:4;2038:1;2031:15;2058:281;2141:27;2163:4;2141:27;:::i;:::-;2133:6;2129:40;2271:6;2259:10;2256:22;2235:18;2223:10;2220:34;2217:62;2214:88;;;2282:18;;:::i;:::-;2214:88;2322:10;2318:2;2311:22;2101:238;2058:281;;:::o;2345:129::-;2379:6;2406:20;;:::i;:::-;2396:30;;2435:33;2463:4;2455:6;2435:33;:::i;:::-;2345:129;;;:::o;2480:308::-;2542:4;2632:18;2624:6;2621:30;2618:56;;;2654:18;;:::i;:::-;2618:56;2692:29;2714:6;2692:29;:::i;:::-;2684:37;;2776:4;2770;2766:15;2758:23;;2480:308;;;:::o;2794:154::-;2878:6;2873:3;2868;2855:30;2940:1;2931:6;2926:3;2922:16;2915:27;2794:154;;;:::o;2954:412::-;3032:5;3057:66;3073:49;3115:6;3073:49;:::i;:::-;3057:66;:::i;:::-;3048:75;;3146:6;3139:5;3132:21;3184:4;3177:5;3173:16;3222:3;3213:6;3208:3;3204:16;3201:25;3198:112;;;3229:79;;:::i;:::-;3198:112;3319:41;3353:6;3348:3;3343;3319:41;:::i;:::-;3038:328;2954:412;;;;;:::o;3386:340::-;3442:5;3491:3;3484:4;3476:6;3472:17;3468:27;3458:122;;3499:79;;:::i;:::-;3458:122;3616:6;3603:20;3641:79;3716:3;3708:6;3701:4;3693:6;3689:17;3641:79;:::i;:::-;3632:88;;3448:278;3386:340;;;;:::o;3732:509::-;3801:6;3850:2;3838:9;3829:7;3825:23;3821:32;3818:119;;;3856:79;;:::i;:::-;3818:119;4004:1;3993:9;3989:17;3976:31;4034:18;4026:6;4023:30;4020:117;;;4056:79;;:::i;:::-;4020:117;4161:63;4216:7;4207:6;4196:9;4192:22;4161:63;:::i;:::-;4151:73;;3947:287;3732:509;;;;:::o;4247:99::-;4299:6;4333:5;4327:12;4317:22;;4247:99;;;:::o;4352:169::-;4436:11;4470:6;4465:3;4458:19;4510:4;4505:3;4501:14;4486:29;;4352:169;;;;:::o;4527:307::-;4595:1;4605:113;4619:6;4616:1;4613:13;4605:113;;;4704:1;4699:3;4695:11;4689:18;4685:1;4680:3;4676:11;4669:39;4641:2;4638:1;4634:10;4629:15;;4605:113;;;4736:6;4733:1;4730:13;4727:101;;;4816:1;4807:6;4802:3;4798:16;4791:27;4727:101;4576:258;4527:307;;;:::o;4840:364::-;4928:3;4956:39;4989:5;4956:39;:::i;:::-;5011:71;5075:6;5070:3;5011:71;:::i;:::-;5004:78;;5091:52;5136:6;5131:3;5124:4;5117:5;5113:16;5091:52;:::i;:::-;5168:29;5190:6;5168:29;:::i;:::-;5163:3;5159:39;5152:46;;4932:272;4840:364;;;;:::o;5210:313::-;5323:4;5361:2;5350:9;5346:18;5338:26;;5410:9;5404:4;5400:20;5396:1;5385:9;5381:17;5374:47;5438:78;5511:4;5502:6;5438:78;:::i;:::-;5430:86;;5210:313;;;;:::o;5529:77::-;5566:7;5595:5;5584:16;;5529:77;;;:::o;5612:122::-;5685:24;5703:5;5685:24;:::i;:::-;5678:5;5675:35;5665:63;;5724:1;5721;5714:12;5665:63;5612:122;:::o;5740:139::-;5786:5;5824:6;5811:20;5802:29;;5840:33;5867:5;5840:33;:::i;:::-;5740:139;;;;:::o;5885:329::-;5944:6;5993:2;5981:9;5972:7;5968:23;5964:32;5961:119;;;5999:79;;:::i;:::-;5961:119;6119:1;6144:53;6189:7;6180:6;6169:9;6165:22;6144:53;:::i;:::-;6134:63;;6090:117;5885:329;;;;:::o;6220:126::-;6257:7;6297:42;6290:5;6286:54;6275:65;;6220:126;;;:::o;6352:96::-;6389:7;6418:24;6436:5;6418:24;:::i;:::-;6407:35;;6352:96;;;:::o;6454:118::-;6541:24;6559:5;6541:24;:::i;:::-;6536:3;6529:37;6454:118;;:::o;6578:222::-;6671:4;6709:2;6698:9;6694:18;6686:26;;6722:71;6790:1;6779:9;6775:17;6766:6;6722:71;:::i;:::-;6578:222;;;;:::o;6806:122::-;6879:24;6897:5;6879:24;:::i;:::-;6872:5;6869:35;6859:63;;6918:1;6915;6908:12;6859:63;6806:122;:::o;6934:139::-;6980:5;7018:6;7005:20;6996:29;;7034:33;7061:5;7034:33;:::i;:::-;6934:139;;;;:::o;7079:474::-;7147:6;7155;7204:2;7192:9;7183:7;7179:23;7175:32;7172:119;;;7210:79;;:::i;:::-;7172:119;7330:1;7355:53;7400:7;7391:6;7380:9;7376:22;7355:53;:::i;:::-;7345:63;;7301:117;7457:2;7483:53;7528:7;7519:6;7508:9;7504:22;7483:53;:::i;:::-;7473:63;;7428:118;7079:474;;;;;:::o;7559:118::-;7646:24;7664:5;7646:24;:::i;:::-;7641:3;7634:37;7559:118;;:::o;7683:222::-;7776:4;7814:2;7803:9;7799:18;7791:26;;7827:71;7895:1;7884:9;7880:17;7871:6;7827:71;:::i;:::-;7683:222;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:329::-;8595:6;8644:2;8632:9;8623:7;8619:23;8615:32;8612:119;;;8650:79;;:::i;:::-;8612:119;8770:1;8795:53;8840:7;8831:6;8820:9;8816:22;8795:53;:::i;:::-;8785:63;;8741:117;8536:329;;;;:::o;8871:116::-;8941:21;8956:5;8941:21;:::i;:::-;8934:5;8931:32;8921:60;;8977:1;8974;8967:12;8921:60;8871:116;:::o;8993:133::-;9036:5;9074:6;9061:20;9052:29;;9090:30;9114:5;9090:30;:::i;:::-;8993:133;;;;:::o;9132:468::-;9197:6;9205;9254:2;9242:9;9233:7;9229:23;9225:32;9222:119;;;9260:79;;:::i;:::-;9222:119;9380:1;9405:53;9450:7;9441:6;9430:9;9426:22;9405:53;:::i;:::-;9395:63;;9351:117;9507:2;9533:50;9575:7;9566:6;9555:9;9551:22;9533:50;:::i;:::-;9523:60;;9478:115;9132:468;;;;;:::o;9606:307::-;9667:4;9757:18;9749:6;9746:30;9743:56;;;9779:18;;:::i;:::-;9743:56;9817:29;9839:6;9817:29;:::i;:::-;9809:37;;9901:4;9895;9891:15;9883:23;;9606:307;;;:::o;9919:410::-;9996:5;10021:65;10037:48;10078:6;10037:48;:::i;:::-;10021:65;:::i;:::-;10012:74;;10109:6;10102:5;10095:21;10147:4;10140:5;10136:16;10185:3;10176:6;10171:3;10167:16;10164:25;10161:112;;;10192:79;;:::i;:::-;10161:112;10282:41;10316:6;10311:3;10306;10282:41;:::i;:::-;10002:327;9919:410;;;;;:::o;10348:338::-;10403:5;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10577:6;10564:20;10602:78;10676:3;10668:6;10661:4;10653:6;10649:17;10602:78;:::i;:::-;10593:87;;10409:277;10348:338;;;;:::o;10692:943::-;10787:6;10795;10803;10811;10860:3;10848:9;10839:7;10835:23;10831:33;10828:120;;;10867:79;;:::i;:::-;10828:120;10987:1;11012:53;11057:7;11048:6;11037:9;11033:22;11012:53;:::i;:::-;11002:63;;10958:117;11114:2;11140:53;11185:7;11176:6;11165:9;11161:22;11140:53;:::i;:::-;11130:63;;11085:118;11242:2;11268:53;11313:7;11304:6;11293:9;11289:22;11268:53;:::i;:::-;11258:63;;11213:118;11398:2;11387:9;11383:18;11370:32;11429:18;11421:6;11418:30;11415:117;;;11451:79;;:::i;:::-;11415:117;11556:62;11610:7;11601:6;11590:9;11586:22;11556:62;:::i;:::-;11546:72;;11341:287;10692:943;;;;;;;:::o;11641:474::-;11709:6;11717;11766:2;11754:9;11745:7;11741:23;11737:32;11734:119;;;11772:79;;:::i;:::-;11734:119;11892:1;11917:53;11962:7;11953:6;11942:9;11938:22;11917:53;:::i;:::-;11907:63;;11863:117;12019:2;12045:53;12090:7;12081:6;12070:9;12066:22;12045:53;:::i;:::-;12035:63;;11990:118;11641:474;;;;;:::o;12121:180::-;12169:77;12166:1;12159:88;12266:4;12263:1;12256:15;12290:4;12287:1;12280:15;12307:320;12351:6;12388:1;12382:4;12378:12;12368:22;;12435:1;12429:4;12425:12;12456:18;12446:81;;12512:4;12504:6;12500:17;12490:27;;12446:81;12574:2;12566:6;12563:14;12543:18;12540:38;12537:84;;;12593:18;;:::i;:::-;12537:84;12358:269;12307:320;;;:::o;12633:147::-;12734:11;12771:3;12756:18;;12633:147;;;;:::o;12786:114::-;;:::o;12906:398::-;13065:3;13086:83;13167:1;13162:3;13086:83;:::i;:::-;13079:90;;13178:93;13267:3;13178:93;:::i;:::-;13296:1;13291:3;13287:11;13280:18;;12906:398;;;:::o;13310:379::-;13494:3;13516:147;13659:3;13516:147;:::i;:::-;13509:154;;13680:3;13673:10;;13310:379;;;:::o;13695:166::-;13835:18;13831:1;13823:6;13819:14;13812:42;13695:166;:::o;13867:366::-;14009:3;14030:67;14094:2;14089:3;14030:67;:::i;:::-;14023:74;;14106:93;14195:3;14106:93;:::i;:::-;14224:2;14219:3;14215:12;14208:19;;13867:366;;;:::o;14239:419::-;14405:4;14443:2;14432:9;14428:18;14420:26;;14492:9;14486:4;14482:20;14478:1;14467:9;14463:17;14456:47;14520:131;14646:4;14520:131;:::i;:::-;14512:139;;14239:419;;;:::o;14664:174::-;14804:26;14800:1;14792:6;14788:14;14781:50;14664:174;:::o;14844:366::-;14986:3;15007:67;15071:2;15066:3;15007:67;:::i;:::-;15000:74;;15083:93;15172:3;15083:93;:::i;:::-;15201:2;15196:3;15192:12;15185:19;;14844:366;;;:::o;15216:419::-;15382:4;15420:2;15409:9;15405:18;15397:26;;15469:9;15463:4;15459:20;15455:1;15444:9;15440:17;15433:47;15497:131;15623:4;15497:131;:::i;:::-;15489:139;;15216:419;;;:::o;15641:180::-;15689:77;15686:1;15679:88;15786:4;15783:1;15776:15;15810:4;15807:1;15800:15;15827:305;15867:3;15886:20;15904:1;15886:20;:::i;:::-;15881:25;;15920:20;15938:1;15920:20;:::i;:::-;15915:25;;16074:1;16006:66;16002:74;15999:1;15996:81;15993:107;;;16080:18;;:::i;:::-;15993:107;16124:1;16121;16117:9;16110:16;;15827:305;;;;:::o;16138:173::-;16278:25;16274:1;16266:6;16262:14;16255:49;16138:173;:::o;16317:366::-;16459:3;16480:67;16544:2;16539:3;16480:67;:::i;:::-;16473:74;;16556:93;16645:3;16556:93;:::i;:::-;16674:2;16669:3;16665:12;16658:19;;16317:366;;;:::o;16689:419::-;16855:4;16893:2;16882:9;16878:18;16870:26;;16942:9;16936:4;16932:20;16928:1;16917:9;16913:17;16906:47;16970:131;17096:4;16970:131;:::i;:::-;16962:139;;16689:419;;;:::o;17114:348::-;17154:7;17177:20;17195:1;17177:20;:::i;:::-;17172:25;;17211:20;17229:1;17211:20;:::i;:::-;17206:25;;17399:1;17331:66;17327:74;17324:1;17321:81;17316:1;17309:9;17302:17;17298:105;17295:131;;;17406:18;;:::i;:::-;17295:131;17454:1;17451;17447:9;17436:20;;17114:348;;;;:::o;17468:179::-;17608:31;17604:1;17596:6;17592:14;17585:55;17468:179;:::o;17653:366::-;17795:3;17816:67;17880:2;17875:3;17816:67;:::i;:::-;17809:74;;17892:93;17981:3;17892:93;:::i;:::-;18010:2;18005:3;18001:12;17994:19;;17653:366;;;:::o;18025:419::-;18191:4;18229:2;18218:9;18214:18;18206:26;;18278:9;18272:4;18268:20;18264:1;18253:9;18249:17;18242:47;18306:131;18432:4;18306:131;:::i;:::-;18298:139;;18025:419;;;:::o;18450:159::-;18590:11;18586:1;18578:6;18574:14;18567:35;18450:159;:::o;18615:365::-;18757:3;18778:66;18842:1;18837:3;18778:66;:::i;:::-;18771:73;;18853:93;18942:3;18853:93;:::i;:::-;18971:2;18966:3;18962:12;18955:19;;18615:365;;;:::o;18986:419::-;19152:4;19190:2;19179:9;19175:18;19167:26;;19239:9;19233:4;19229:20;19225:1;19214:9;19210:17;19203:47;19267:131;19393:4;19267:131;:::i;:::-;19259:139;;18986:419;;;:::o;19411:170::-;19551:22;19547:1;19539:6;19535:14;19528:46;19411:170;:::o;19587:366::-;19729:3;19750:67;19814:2;19809:3;19750:67;:::i;:::-;19743:74;;19826:93;19915:3;19826:93;:::i;:::-;19944:2;19939:3;19935:12;19928:19;;19587:366;;;:::o;19959:419::-;20125:4;20163:2;20152:9;20148:18;20140:26;;20212:9;20206:4;20202:20;20198:1;20187:9;20183:17;20176:47;20240:131;20366:4;20240:131;:::i;:::-;20232:139;;19959:419;;;:::o;20384:234::-;20524:34;20520:1;20512:6;20508:14;20501:58;20593:17;20588:2;20580:6;20576:15;20569:42;20384:234;:::o;20624:366::-;20766:3;20787:67;20851:2;20846:3;20787:67;:::i;:::-;20780:74;;20863:93;20952:3;20863:93;:::i;:::-;20981:2;20976:3;20972:12;20965:19;;20624:366;;;:::o;20996:419::-;21162:4;21200:2;21189:9;21185:18;21177:26;;21249:9;21243:4;21239:20;21235:1;21224:9;21220:17;21213:47;21277:131;21403:4;21277:131;:::i;:::-;21269:139;;20996:419;;;:::o;21421:148::-;21523:11;21560:3;21545:18;;21421:148;;;;:::o;21575:141::-;21624:4;21647:3;21639:11;;21670:3;21667:1;21660:14;21704:4;21701:1;21691:18;21683:26;;21575:141;;;:::o;21746:845::-;21849:3;21886:5;21880:12;21915:36;21941:9;21915:36;:::i;:::-;21967:89;22049:6;22044:3;21967:89;:::i;:::-;21960:96;;22087:1;22076:9;22072:17;22103:1;22098:137;;;;22249:1;22244:341;;;;22065:520;;22098:137;22182:4;22178:9;22167;22163:25;22158:3;22151:38;22218:6;22213:3;22209:16;22202:23;;22098:137;;22244:341;22311:38;22343:5;22311:38;:::i;:::-;22371:1;22385:154;22399:6;22396:1;22393:13;22385:154;;;22473:7;22467:14;22463:1;22458:3;22454:11;22447:35;22523:1;22514:7;22510:15;22499:26;;22421:4;22418:1;22414:12;22409:17;;22385:154;;;22568:6;22563:3;22559:16;22552:23;;22251:334;;22065:520;;21853:738;;21746:845;;;;:::o;22597:377::-;22703:3;22731:39;22764:5;22731:39;:::i;:::-;22786:89;22868:6;22863:3;22786:89;:::i;:::-;22779:96;;22884:52;22929:6;22924:3;22917:4;22910:5;22906:16;22884:52;:::i;:::-;22961:6;22956:3;22952:16;22945:23;;22707:267;22597:377;;;;:::o;22980:155::-;23120:7;23116:1;23108:6;23104:14;23097:31;22980:155;:::o;23141:400::-;23301:3;23322:84;23404:1;23399:3;23322:84;:::i;:::-;23315:91;;23415:93;23504:3;23415:93;:::i;:::-;23533:1;23528:3;23524:11;23517:18;;23141:400;;;:::o;23547:695::-;23825:3;23847:92;23935:3;23926:6;23847:92;:::i;:::-;23840:99;;23956:95;24047:3;24038:6;23956:95;:::i;:::-;23949:102;;24068:148;24212:3;24068:148;:::i;:::-;24061:155;;24233:3;24226:10;;23547:695;;;;;:::o;24248:225::-;24388:34;24384:1;24376:6;24372:14;24365:58;24457:8;24452:2;24444:6;24440:15;24433:33;24248:225;:::o;24479:366::-;24621:3;24642:67;24706:2;24701:3;24642:67;:::i;:::-;24635:74;;24718:93;24807:3;24718:93;:::i;:::-;24836:2;24831:3;24827:12;24820:19;;24479:366;;;:::o;24851:419::-;25017:4;25055:2;25044:9;25040:18;25032:26;;25104:9;25098:4;25094:20;25090:1;25079:9;25075:17;25068:47;25132:131;25258:4;25132:131;:::i;:::-;25124:139;;24851:419;;;:::o;25276:182::-;25416:34;25412:1;25404:6;25400:14;25393:58;25276:182;:::o;25464:366::-;25606:3;25627:67;25691:2;25686:3;25627:67;:::i;:::-;25620:74;;25703:93;25792:3;25703:93;:::i;:::-;25821:2;25816:3;25812:12;25805:19;;25464:366;;;:::o;25836:419::-;26002:4;26040:2;26029:9;26025:18;26017:26;;26089:9;26083:4;26079:20;26075:1;26064:9;26060:17;26053:47;26117:131;26243:4;26117:131;:::i;:::-;26109:139;;25836:419;;;:::o;26261:98::-;26312:6;26346:5;26340:12;26330:22;;26261:98;;;:::o;26365:168::-;26448:11;26482:6;26477:3;26470:19;26522:4;26517:3;26513:14;26498:29;;26365:168;;;;:::o;26539:360::-;26625:3;26653:38;26685:5;26653:38;:::i;:::-;26707:70;26770:6;26765:3;26707:70;:::i;:::-;26700:77;;26786:52;26831:6;26826:3;26819:4;26812:5;26808:16;26786:52;:::i;:::-;26863:29;26885:6;26863:29;:::i;:::-;26858:3;26854:39;26847:46;;26629:270;26539:360;;;;:::o;26905:640::-;27100:4;27138:3;27127:9;27123:19;27115:27;;27152:71;27220:1;27209:9;27205:17;27196:6;27152:71;:::i;:::-;27233:72;27301:2;27290:9;27286:18;27277:6;27233:72;:::i;:::-;27315;27383:2;27372:9;27368:18;27359:6;27315:72;:::i;:::-;27434:9;27428:4;27424:20;27419:2;27408:9;27404:18;27397:48;27462:76;27533:4;27524:6;27462:76;:::i;:::-;27454:84;;26905:640;;;;;;;:::o;27551:141::-;27607:5;27638:6;27632:13;27623:22;;27654:32;27680:5;27654:32;:::i;:::-;27551:141;;;;:::o;27698:349::-;27767:6;27816:2;27804:9;27795:7;27791:23;27787:32;27784:119;;;27822:79;;:::i;:::-;27784:119;27942:1;27967:63;28022:7;28013:6;28002:9;27998:22;27967:63;:::i;:::-;27957:73;;27913:127;27698:349;;;;:::o;28053:180::-;28101:77;28098:1;28091:88;28198:4;28195:1;28188:15;28222:4;28219:1;28212:15

Swarm Source

ipfs://4617582b073455022f96e2ac62723c31d49f3449b4103762489fc75d96ec098d
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.