ETH Price: $3,168.41 (+1.89%)
Gas: 1 Gwei

Token

Downsies (Downsie)
 

Overview

Max Total Supply

3,333 Downsie

Holders

1,252

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 Downsie
0xa2da34822e19c13a25ff7c2edc63f7c4b6e086b9
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:
Downsies

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-05
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

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

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

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

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

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

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_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) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

    /**
     * @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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

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

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

    // ==============================
    //        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 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.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;


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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard,
 * including the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at `_startTokenId()`
 * (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // 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 tokenId of the next token 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 => address) private _tokenApprovals;

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

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

    /**
     * @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 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 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 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 returns (uint256) {
        return _burnCounter;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    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: 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.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view 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 {
        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;
    }

    /**
     * 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 ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

    /**
     * @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 See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

        string memory baseURI = _baseURI();
        return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _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 '';
    }

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement
     *   {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * See {_mint}.
     *
     * Emits a {Transfer} event for each mint.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _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 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 {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // `balance` 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 tokenId = startTokenId;
            uint256 end = startTokenId + quantity;
            do {
                emit Transfer(address(0), to, tokenId++);
            } while (tokenId < end);

            _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 {
        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 Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
            // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
            // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isOwnerOrApproved(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 `_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) = _getApprovedAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isOwnerOrApproved(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++;
        }
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _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))
                }
            }
        }
    }

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal {
        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 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;
    }

    /**
     * @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 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 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 returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit),
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length,
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

            // We write the string from the rightmost digit to the leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // Costs a bit more than early returning for the zero case,
            // but cheaper in terms of deployment and overall runtime costs.
            for {
                // Initialize and perform the first pass without check.
                let temp := value
                // Move the pointer 1 byte leftwards to point to an empty character slot.
                ptr := sub(ptr, 1)
                // Write the character to the pointer. 48 is the ASCII index of '0'.
                mstore8(ptr, add(48, mod(temp, 10)))
                temp := div(temp, 10)
            } temp {
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
            } {
                // Body of the for loop.
                ptr := sub(ptr, 1)
                mstore8(ptr, add(48, mod(temp, 10)))
            }

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

// File: contracts/peder.sol



pragma solidity >=0.7.0 <0.9.0;





contract Downsies is ERC721A, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = 0 ether;
  uint256 public wlcost = 0 ether;
  uint256 public maxSupply = 3333;
  uint256 public MaxperWallet = 333;
  uint256 public MaxperWalletWl = 333;
  uint256 public MaxperTxWl = 2;
  uint256 public maxpertx = 5; // max mint per tx
  bool public paused = false;
  bool public revealed = false;
  bool public preSale = false;
  bool public publicSale = false;
  bytes32 public merkleRoot = 0x7d47dd9d8fd212164c3a9e8d23f89077455d468a3e287590d7f66b9c5ed8dcfd;

  constructor(
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721A("Downsies", "Downsie") {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
      function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

  // public
  function mint(uint256 tokens) public payable {
    require(!paused, "Downsie: oops contract is paused");
    require(publicSale, "Downsie: Sale Hasn't started yet");
    uint256 supply = totalSupply();
    uint256 ownerTokenCount = balanceOf(_msgSender());
    require(tokens > 0, "Downsie: need to mint at least 1 NFT");
    require(tokens <= maxpertx, "Downsie: max mint amount per tx exceeded");
    require(supply + tokens <= maxSupply, "Downsie: We Sold Out");
    require(ownerTokenCount + tokens <= MaxperWallet, "Downsie: Max NFT Per Wallet exceeded");
    require(msg.value >= cost * tokens, "Downsie: insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }
/// @dev presale mint for whitelisted
    function presalemint(uint256 tokens, bytes32[] calldata merkleProof) public payable  {
    require(!paused, "Downsie: oops contract is paused");
    require(preSale, "Downsie: Presale Hasn't started yet");
    require(MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Downsie: You are not Whitelisted");
    uint256 supply = totalSupply();
    uint256 ownerTokenCount = balanceOf(_msgSender());
    require(ownerTokenCount + tokens <= MaxperWalletWl, "Downsie: Max NFT Per Wallet exceeded");
    require(tokens > 0, "Downsie: need to mint at least 1 NFT");
    require(tokens <= MaxperTxWl, "Downsie: max mint per Tx exceeded");
    require(supply + tokens <= maxSupply, "Downsie: Whitelist MaxSupply exceeded");
    require(msg.value >= wlcost * tokens, "Downsie: insufficient funds");

      _safeMint(_msgSender(), tokens);
    
  }




  /// @dev use it for giveaway and mint for yourself
     function gift(uint256 _mintAmount, address destination) public onlyOwner {
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

      _safeMint(destination, _mintAmount);
    
  }

  


  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721AMetadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal(bool _state) public onlyOwner {
      revealed = _state;
  }

  function setMerkleRoot(bytes32 _merkleRoot) external onlyOwner {
        merkleRoot = _merkleRoot;
    }
  
  function setMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWallet = _limit;
  }

    function setWlMaxPerWallet(uint256 _limit) public onlyOwner {
    MaxperWalletWl = _limit;
  }

  function setmaxpertx(uint256 _maxpertx) public onlyOwner {
    maxpertx = _maxpertx;
  }

    function setWLMaxpertx(uint256 _wlmaxpertx) public onlyOwner {
    MaxperTxWl = _wlmaxpertx;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

    function setWlCost(uint256 _newWlCost) public onlyOwner {
    wlcost = _newWlCost;
  }

    function setMaxsupply(uint256 _newsupply) public onlyOwner {
    maxSupply = _newsupply;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }

    function togglepreSale(bool _state) external onlyOwner {
        preSale = _state;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","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":[],"name":"MaxperTxWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MaxperWalletWl","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"destination","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxpertx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"presalemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newsupply","type":"uint256"}],"name":"setMaxsupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlmaxpertx","type":"uint256"}],"name":"setWLMaxpertx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWlCost","type":"uint256"}],"name":"setWlCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setWlMaxPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxpertx","type":"uint256"}],"name":"setmaxpertx","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":"bool","name":"_state","type":"bool"}],"name":"togglepreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"togglepublicSale","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600a90805190602001906200005192919062000428565b506000600c556000600d55610d05600e5561014d600f5561014d601055600260115560056012556000601360006101000a81548160ff0219169083151502179055506000601360016101000a81548160ff0219169083151502179055506000601360026101000a81548160ff0219169083151502179055506000601360036101000a81548160ff0219169083151502179055507f7d47dd9d8fd212164c3a9e8d23f89077455d468a3e287590d7f66b9c5ed8dcfd60001b6014553480156200011857600080fd5b50604051620049f5380380620049f583398181016040528101906200013e919062000556565b6040518060400160405280600881526020017f446f776e736965730000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f446f776e736965000000000000000000000000000000000000000000000000008152508160029080519060200190620001c292919062000428565b508060039080519060200190620001db92919062000428565b50620001ec6200023e60201b60201c565b600081905550505062000214620002086200024760201b60201c565b6200024f60201b60201c565b62000225826200031560201b60201c565b62000236816200034160201b60201c565b5050620007e2565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620003256200036d60201b60201c565b80600990805190602001906200033d92919062000428565b5050565b620003516200036d60201b60201c565b80600b90805190602001906200036992919062000428565b5050565b6200037d6200024760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003a3620003fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620003fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003f39062000602565b60405180910390fd5b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200043690620006ca565b90600052602060002090601f0160209004810192826200045a5760008555620004a6565b82601f106200047557805160ff1916838001178555620004a6565b82800160010185558215620004a6579182015b82811115620004a557825182559160200191906001019062000488565b5b509050620004b59190620004b9565b5090565b5b80821115620004d4576000816000905550600101620004ba565b5090565b6000620004ef620004e9846200064d565b62000624565b9050828152602081018484840111156200050e576200050d62000799565b5b6200051b84828562000694565b509392505050565b600082601f8301126200053b576200053a62000794565b5b81516200054d848260208601620004d8565b91505092915050565b6000806040838503121562000570576200056f620007a3565b5b600083015167ffffffffffffffff8111156200059157620005906200079e565b5b6200059f8582860162000523565b925050602083015167ffffffffffffffff811115620005c357620005c26200079e565b5b620005d18582860162000523565b9150509250929050565b6000620005ea60208362000683565b9150620005f782620007b9565b602082019050919050565b600060208201905081810360008301526200061d81620005db565b9050919050565b60006200063062000643565b90506200063e828262000700565b919050565b6000604051905090565b600067ffffffffffffffff8211156200066b576200066a62000765565b5b6200067682620007a8565b9050602081019050919050565b600082825260208201905092915050565b60005b83811015620006b457808201518184015260208101905062000697565b83811115620006c4576000848401525b50505050565b60006002820490506001821680620006e357607f821691505b60208210811415620006fa57620006f962000736565b5b50919050565b6200070b82620007a8565b810181811067ffffffffffffffff821117156200072d576200072c62000765565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61420380620007f26000396000f3fe6080604052600436106102e35760003560e01c806370a0823111610190578063c8151d02116100dc578063e985e9c511610095578063f2c4ce1e1161006f578063f2c4ce1e14610ac2578063f2fde38b14610aeb578063f3257cdd14610b14578063fea0e05814610b3d576102e3565b8063e985e9c514610a31578063eff6011014610a6e578063f12f6d5d14610a99576102e3565b8063c8151d0214610923578063c87b56dd1461094c578063d5abeb0114610989578063d8ed370c146109b4578063da3ef23f146109df578063e268e4d314610a08576102e3565b806395d89b4111610149578063b88d4fde11610123578063b88d4fde1461087b578063bd7a1998146108a4578063bde0608a146108cf578063c6682862146108f8576102e3565b806395d89b411461080b578063a0712d6814610836578063a22cb46514610852576102e3565b806370a0823114610711578063715018a61461074e5780637cb647591461076557806383a076be1461078e5780638da5cb5b146107b7578063940cd05b146107e2576102e3565b806323b872dd1161024f57806351830227116102085780635c975abb116101e25780635c975abb146106535780636352211e1461067e5780636c0360eb146106bb5780636c2d3c4f146106e6576102e3565b806351830227146105d457806355f804b3146105ff5780635a7adf7f14610628576102e3565b806323b872dd146104f95780632eb4a7ab1461052257806333bc1c5c1461054d5780633ccfd60b1461057857806342842e0e1461058257806344a0d68a146105ab576102e3565b8063081c8c44116102a1578063081c8c44146103fd578063095ea7b31461042857806313faede614610451578063149835a01461047c57806318160ddd146104a55780631866756c146104d0576102e3565b806277ec05146102e857806301ffc9a71461031357806302329a2914610350578063036e4cb51461037957806306fdde0314610395578063081812fc146103c0575b600080fd5b3480156102f457600080fd5b506102fd610b66565b60405161030a9190613895565b60405180910390f35b34801561031f57600080fd5b5061033a6004803603810190610335919061303d565b610b6c565b604051610347919061363d565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190612fe3565b610bfe565b005b610393600480360381019061038e919061314d565b610c23565b005b3480156103a157600080fd5b506103aa610f25565b6040516103b79190613673565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906130e0565b610fb7565b6040516103f491906135d6565b60405180910390f35b34801561040957600080fd5b50610412611033565b60405161041f9190613673565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190612fa3565b6110c1565b005b34801561045d57600080fd5b50610466611202565b6040516104739190613895565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906130e0565b611208565b005b3480156104b157600080fd5b506104ba61121a565b6040516104c79190613895565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f291906130e0565b611231565b005b34801561050557600080fd5b50610520600480360381019061051b9190612e8d565b611243565b005b34801561052e57600080fd5b50610537611568565b6040516105449190613658565b60405180910390f35b34801561055957600080fd5b5061056261156e565b60405161056f919061363d565b60405180910390f35b610580611581565b005b34801561058e57600080fd5b506105a960048036038101906105a49190612e8d565b611602565b005b3480156105b757600080fd5b506105d260048036038101906105cd91906130e0565b611622565b005b3480156105e057600080fd5b506105e9611634565b6040516105f6919061363d565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190613097565b611647565b005b34801561063457600080fd5b5061063d611669565b60405161064a919061363d565b60405180910390f35b34801561065f57600080fd5b5061066861167c565b604051610675919061363d565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a091906130e0565b61168f565b6040516106b291906135d6565b60405180910390f35b3480156106c757600080fd5b506106d06116a1565b6040516106dd9190613673565b60405180910390f35b3480156106f257600080fd5b506106fb61172f565b6040516107089190613895565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190612e20565b611735565b6040516107459190613895565b60405180910390f35b34801561075a57600080fd5b506107636117ee565b005b34801561077157600080fd5b5061078c60048036038101906107879190613010565b611802565b005b34801561079a57600080fd5b506107b560048036038101906107b0919061310d565b611814565b005b3480156107c357600080fd5b506107cc6118ca565b6040516107d991906135d6565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190612fe3565b6118f4565b005b34801561081757600080fd5b50610820611919565b60405161082d9190613673565b60405180910390f35b610850600480360381019061084b91906130e0565b6119ab565b005b34801561085e57600080fd5b5061087960048036038101906108749190612f63565b611bf8565b005b34801561088757600080fd5b506108a2600480360381019061089d9190612ee0565b611d70565b005b3480156108b057600080fd5b506108b9611de3565b6040516108c69190613895565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906130e0565b611de9565b005b34801561090457600080fd5b5061090d611dfb565b60405161091a9190613673565b60405180910390f35b34801561092f57600080fd5b5061094a600480360381019061094591906130e0565b611e89565b005b34801561095857600080fd5b50610973600480360381019061096e91906130e0565b611e9b565b6040516109809190613673565b60405180910390f35b34801561099557600080fd5b5061099e611ff4565b6040516109ab9190613895565b60405180910390f35b3480156109c057600080fd5b506109c9611ffa565b6040516109d69190613895565b60405180910390f35b3480156109eb57600080fd5b50610a066004803603810190610a019190613097565b612000565b005b348015610a1457600080fd5b50610a2f6004803603810190610a2a91906130e0565b612022565b005b348015610a3d57600080fd5b50610a586004803603810190610a539190612e4d565b612034565b604051610a65919061363d565b60405180910390f35b348015610a7a57600080fd5b50610a836120c8565b604051610a909190613895565b60405180910390f35b348015610aa557600080fd5b50610ac06004803603810190610abb91906130e0565b6120ce565b005b348015610ace57600080fd5b50610ae96004803603810190610ae49190613097565b6120e0565b005b348015610af757600080fd5b50610b126004803603810190610b0d9190612e20565b612102565b005b348015610b2057600080fd5b50610b3b6004803603810190610b369190612fe3565b612186565b005b348015610b4957600080fd5b50610b646004803603810190610b5f9190612fe3565b6121ab565b005b60105481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bc757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610c066121d0565b80601360006101000a81548160ff02191690831515021790555050565b601360009054906101000a900460ff1615610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90613755565b60405180910390fd5b601360029054906101000a900460ff16610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb9906136d5565b60405180910390fd5b610d36828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145433604051602001610d1b9190613575565b6040516020818303038152906040528051906020012061224e565b610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90613775565b60405180910390fd5b6000610d7f61121a565b90506000610d93610d8e612265565b611735565b90506010548582610da4919061399a565b1115610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc906137b5565b60405180910390fd5b60008511610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90613855565b60405180910390fd5b601154851115610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e64906136f5565b60405180910390fd5b600e548583610e7c919061399a565b1115610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490613715565b60405180910390fd5b84600d54610ecb9190613a21565b341015610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490613815565b60405180910390fd5b610f1e610f18612265565b8661226d565b5050505050565b606060028054610f3490613b6f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6090613b6f565b8015610fad5780601f10610f8257610100808354040283529160200191610fad565b820191906000526020600020905b815481529060010190602001808311610f9057829003601f168201915b5050505050905090565b6000610fc28261228b565b610ff8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b805461104090613b6f565b80601f016020809104026020016040519081016040528092919081815260200182805461106c90613b6f565b80156110b95780601f1061108e576101008083540402835291602001916110b9565b820191906000526020600020905b81548152906001019060200180831161109c57829003601f168201915b505050505081565b60006110cc8261168f565b90508073ffffffffffffffffffffffffffffffffffffffff166110ed6122ea565b73ffffffffffffffffffffffffffffffffffffffff161461115057611119816111146122ea565b612034565b61114f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6112106121d0565b80600e8190555050565b60006112246122f2565b6001546000540303905090565b6112396121d0565b8060118190555050565b600061124e826122fb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112b5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806112c1846123c9565b915091506112d781876112d26122ea565b6123eb565b611323576112ec866112e76122ea565b612034565b611322576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561138a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611397868686600161242f565b80156113a257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506114708561144c888887612435565b7c02000000000000000000000000000000000000000000000000000000001761245d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156114f85760006001850190506000600460008381526020019081526020016000205414156114f65760005481146114f5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115608686866001612488565b505050505050565b60145481565b601360039054906101000a900460ff1681565b6115896121d0565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516115af906135c1565b60006040518083038185875af1925050503d80600081146115ec576040519150601f19603f3d011682016040523d82523d6000602084013e6115f1565b606091505b50509050806115ff57600080fd5b50565b61161d83838360405180602001604052806000815250611d70565b505050565b61162a6121d0565b80600c8190555050565b601360019054906101000a900460ff1681565b61164f6121d0565b8060099080519060200190611665929190612bc9565b5050565b601360029054906101000a900460ff1681565b601360009054906101000a900460ff1681565b600061169a826122fb565b9050919050565b600980546116ae90613b6f565b80601f01602080910402602001604051908101604052809291908181526020018280546116da90613b6f565b80156117275780601f106116fc57610100808354040283529160200191611727565b820191906000526020600020905b81548152906001019060200180831161170a57829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6117f66121d0565b611800600061248e565b565b61180a6121d0565b8060148190555050565b61181c6121d0565b6000821161185f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185690613875565b60405180910390fd5b600061186961121a565b9050600e54838261187a919061399a565b11156118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290613795565b60405180910390fd5b6118c5828461226d565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118fc6121d0565b80601360016101000a81548160ff02191690831515021790555050565b60606003805461192890613b6f565b80601f016020809104026020016040519081016040528092919081815260200182805461195490613b6f565b80156119a15780601f10611976576101008083540402835291602001916119a1565b820191906000526020600020905b81548152906001019060200180831161198457829003601f168201915b5050505050905090565b601360009054906101000a900460ff16156119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290613755565b60405180910390fd5b601360039054906101000a900460ff16611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a41906136b5565b60405180910390fd5b6000611a5461121a565b90506000611a68611a63612265565b611735565b905060008311611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490613855565b60405180910390fd5b601254831115611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990613835565b60405180910390fd5b600e548383611b01919061399a565b1115611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b39906137d5565b60405180910390fd5b600f548382611b51919061399a565b1115611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b89906137b5565b60405180910390fd5b82600c54611ba09190613a21565b341015611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990613815565b60405180910390fd5b611bf3611bed612265565b8461226d565b505050565b611c006122ea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c65576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c726122ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d1f6122ea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d64919061363d565b60405180910390a35050565b611d7b848484611243565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ddd57611da684848484612554565b611ddc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b611df16121d0565b8060108190555050565b600a8054611e0890613b6f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3490613b6f565b8015611e815780601f10611e5657610100808354040283529160200191611e81565b820191906000526020600020905b815481529060010190602001808311611e6457829003601f168201915b505050505081565b611e916121d0565b8060128190555050565b6060611ea68261228b565b611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613695565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415611f9357600b8054611f0e90613b6f565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3a90613b6f565b8015611f875780601f10611f5c57610100808354040283529160200191611f87565b820191906000526020600020905b815481529060010190602001808311611f6a57829003601f168201915b50505050509050611fef565b6000611f9d6126b4565b90506000815111611fbd5760405180602001604052806000815250611feb565b80611fc784612746565b600a604051602001611fdb93929190613590565b6040516020818303038152906040525b9150505b919050565b600e5481565b60115481565b6120086121d0565b80600a908051906020019061201e929190612bc9565b5050565b61202a6121d0565b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60125481565b6120d66121d0565b80600d8190555050565b6120e86121d0565b80600b90805190602001906120fe929190612bc9565b5050565b61210a6121d0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217190613735565b60405180910390fd5b6121838161248e565b50565b61218e6121d0565b80601360036101000a81548160ff02191690831515021790555050565b6121b36121d0565b80601360026101000a81548160ff02191690831515021790555050565b6121d8612265565b73ffffffffffffffffffffffffffffffffffffffff166121f66118ca565b73ffffffffffffffffffffffffffffffffffffffff161461224c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612243906137f5565b60405180910390fd5b565b60008261225b85846128a7565b1490509392505050565b600033905090565b6122878282604051806020016040528060008152506128fd565b5050565b6000816122966122f2565b111580156122a5575060005482105b80156122e3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061230a6122f2565b11612392576000548110156123915760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561238f575b600081141561238557600460008360019003935083815260200190815260200160002054905061235a565b80925050506123c4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861244c86868461299a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261257a6122ea565b8786866040518563ffffffff1660e01b815260040161259c94939291906135f1565b602060405180830381600087803b1580156125b657600080fd5b505af19250505080156125e757506040513d601f19601f820116820180604052508101906125e4919061306a565b60015b612661573d8060008114612617576040519150601f19603f3d011682016040523d82523d6000602084013e61261c565b606091505b50600081511415612659576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546126c390613b6f565b80601f01602080910402602001604051908101604052809291908181526020018280546126ef90613b6f565b801561273c5780601f106127115761010080835404028352916020019161273c565b820191906000526020600020905b81548152906001019060200180831161271f57829003601f168201915b5050505050905090565b6060600082141561278e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a2565b600082905060005b600082146127c05780806127a990613bd2565b915050600a826127b991906139f0565b9150612796565b60008167ffffffffffffffff8111156127dc576127db613d2c565b5b6040519080825280601f01601f19166020018201604052801561280e5781602001600182028036833780820191505090505b5090505b6000851461289b576001826128279190613a7b565b9150600a856128369190613c3f565b6030612842919061399a565b60f81b81838151811061285857612857613cfd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561289491906139f0565b9450612812565b8093505050505b919050565b60008082905060005b84518110156128f2576128dd828683815181106128d0576128cf613cfd565b5b60200260200101516129a3565b915080806128ea90613bd2565b9150506128b0565b508091505092915050565b61290783836129ce565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461299557600080549050600083820390505b6129476000868380600101945086612554565b61297d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061293457816000541461299257600080fd5b50505b505050565b60009392505050565b60008183106129bb576129b68284612ba2565b6129c6565b6129c58383612ba2565b5b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a3b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612a76576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a83600084838561242f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612afa83612aeb6000866000612435565b612af485612bb9565b1761245d565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612b1e57806000819055505050612b9d6000848385612488565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054612bd590613b6f565b90600052602060002090601f016020900481019282612bf75760008555612c3e565b82601f10612c1057805160ff1916838001178555612c3e565b82800160010185558215612c3e579182015b82811115612c3d578251825591602001919060010190612c22565b5b509050612c4b9190612c4f565b5090565b5b80821115612c68576000816000905550600101612c50565b5090565b6000612c7f612c7a846138d5565b6138b0565b905082815260208101848484011115612c9b57612c9a613d6a565b5b612ca6848285613b2d565b509392505050565b6000612cc1612cbc84613906565b6138b0565b905082815260208101848484011115612cdd57612cdc613d6a565b5b612ce8848285613b2d565b509392505050565b600081359050612cff8161415a565b92915050565b60008083601f840112612d1b57612d1a613d60565b5b8235905067ffffffffffffffff811115612d3857612d37613d5b565b5b602083019150836020820283011115612d5457612d53613d65565b5b9250929050565b600081359050612d6a81614171565b92915050565b600081359050612d7f81614188565b92915050565b600081359050612d948161419f565b92915050565b600081519050612da98161419f565b92915050565b600082601f830112612dc457612dc3613d60565b5b8135612dd4848260208601612c6c565b91505092915050565b600082601f830112612df257612df1613d60565b5b8135612e02848260208601612cae565b91505092915050565b600081359050612e1a816141b6565b92915050565b600060208284031215612e3657612e35613d74565b5b6000612e4484828501612cf0565b91505092915050565b60008060408385031215612e6457612e63613d74565b5b6000612e7285828601612cf0565b9250506020612e8385828601612cf0565b9150509250929050565b600080600060608486031215612ea657612ea5613d74565b5b6000612eb486828701612cf0565b9350506020612ec586828701612cf0565b9250506040612ed686828701612e0b565b9150509250925092565b60008060008060808587031215612efa57612ef9613d74565b5b6000612f0887828801612cf0565b9450506020612f1987828801612cf0565b9350506040612f2a87828801612e0b565b925050606085013567ffffffffffffffff811115612f4b57612f4a613d6f565b5b612f5787828801612daf565b91505092959194509250565b60008060408385031215612f7a57612f79613d74565b5b6000612f8885828601612cf0565b9250506020612f9985828601612d5b565b9150509250929050565b60008060408385031215612fba57612fb9613d74565b5b6000612fc885828601612cf0565b9250506020612fd985828601612e0b565b9150509250929050565b600060208284031215612ff957612ff8613d74565b5b600061300784828501612d5b565b91505092915050565b60006020828403121561302657613025613d74565b5b600061303484828501612d70565b91505092915050565b60006020828403121561305357613052613d74565b5b600061306184828501612d85565b91505092915050565b6000602082840312156130805761307f613d74565b5b600061308e84828501612d9a565b91505092915050565b6000602082840312156130ad576130ac613d74565b5b600082013567ffffffffffffffff8111156130cb576130ca613d6f565b5b6130d784828501612ddd565b91505092915050565b6000602082840312156130f6576130f5613d74565b5b600061310484828501612e0b565b91505092915050565b6000806040838503121561312457613123613d74565b5b600061313285828601612e0b565b925050602061314385828601612cf0565b9150509250929050565b60008060006040848603121561316657613165613d74565b5b600061317486828701612e0b565b935050602084013567ffffffffffffffff81111561319557613194613d6f565b5b6131a186828701612d05565b92509250509250925092565b6131b681613aaf565b82525050565b6131cd6131c882613aaf565b613c1b565b82525050565b6131dc81613ac1565b82525050565b6131eb81613acd565b82525050565b60006131fc8261394c565b6132068185613962565b9350613216818560208601613b3c565b61321f81613d79565b840191505092915050565b600061323582613957565b61323f818561397e565b935061324f818560208601613b3c565b61325881613d79565b840191505092915050565b600061326e82613957565b613278818561398f565b9350613288818560208601613b3c565b80840191505092915050565b600081546132a181613b6f565b6132ab818661398f565b945060018216600081146132c657600181146132d75761330a565b60ff1983168652818601935061330a565b6132e085613937565b60005b83811015613302578154818901526001820191506020810190506132e3565b838801955050505b50505092915050565b600061332060308361397e565b915061332b82613d97565b604082019050919050565b600061334360208361397e565b915061334e82613de6565b602082019050919050565b600061336660238361397e565b915061337182613e0f565b604082019050919050565b600061338960218361397e565b915061339482613e5e565b604082019050919050565b60006133ac60258361397e565b91506133b782613ead565b604082019050919050565b60006133cf60268361397e565b91506133da82613efc565b604082019050919050565b60006133f260208361397e565b91506133fd82613f4b565b602082019050919050565b600061341560208361397e565b915061342082613f74565b602082019050919050565b600061343860168361397e565b915061344382613f9d565b602082019050919050565b600061345b60248361397e565b915061346682613fc6565b604082019050919050565b600061347e60148361397e565b915061348982614015565b602082019050919050565b60006134a160208361397e565b91506134ac8261403e565b602082019050919050565b60006134c4601b8361397e565b91506134cf82614067565b602082019050919050565b60006134e7600083613973565b91506134f282614090565b600082019050919050565b600061350a60288361397e565b915061351582614093565b604082019050919050565b600061352d60248361397e565b9150613538826140e2565b604082019050919050565b6000613550601b8361397e565b915061355b82614131565b602082019050919050565b61356f81613b23565b82525050565b600061358182846131bc565b60148201915081905092915050565b600061359c8286613263565b91506135a88285613263565b91506135b48284613294565b9150819050949350505050565b60006135cc826134da565b9150819050919050565b60006020820190506135eb60008301846131ad565b92915050565b600060808201905061360660008301876131ad565b61361360208301866131ad565b6136206040830185613566565b818103606083015261363281846131f1565b905095945050505050565b600060208201905061365260008301846131d3565b92915050565b600060208201905061366d60008301846131e2565b92915050565b6000602082019050818103600083015261368d818461322a565b905092915050565b600060208201905081810360008301526136ae81613313565b9050919050565b600060208201905081810360008301526136ce81613336565b9050919050565b600060208201905081810360008301526136ee81613359565b9050919050565b6000602082019050818103600083015261370e8161337c565b9050919050565b6000602082019050818103600083015261372e8161339f565b9050919050565b6000602082019050818103600083015261374e816133c2565b9050919050565b6000602082019050818103600083015261376e816133e5565b9050919050565b6000602082019050818103600083015261378e81613408565b9050919050565b600060208201905081810360008301526137ae8161342b565b9050919050565b600060208201905081810360008301526137ce8161344e565b9050919050565b600060208201905081810360008301526137ee81613471565b9050919050565b6000602082019050818103600083015261380e81613494565b9050919050565b6000602082019050818103600083015261382e816134b7565b9050919050565b6000602082019050818103600083015261384e816134fd565b9050919050565b6000602082019050818103600083015261386e81613520565b9050919050565b6000602082019050818103600083015261388e81613543565b9050919050565b60006020820190506138aa6000830184613566565b92915050565b60006138ba6138cb565b90506138c68282613ba1565b919050565b6000604051905090565b600067ffffffffffffffff8211156138f0576138ef613d2c565b5b6138f982613d79565b9050602081019050919050565b600067ffffffffffffffff82111561392157613920613d2c565b5b61392a82613d79565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006139a582613b23565b91506139b083613b23565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139e5576139e4613c70565b5b828201905092915050565b60006139fb82613b23565b9150613a0683613b23565b925082613a1657613a15613c9f565b5b828204905092915050565b6000613a2c82613b23565b9150613a3783613b23565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a7057613a6f613c70565b5b828202905092915050565b6000613a8682613b23565b9150613a9183613b23565b925082821015613aa457613aa3613c70565b5b828203905092915050565b6000613aba82613b03565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b5a578082015181840152602081019050613b3f565b83811115613b69576000848401525b50505050565b60006002820490506001821680613b8757607f821691505b60208210811415613b9b57613b9a613cce565b5b50919050565b613baa82613d79565b810181811067ffffffffffffffff82111715613bc957613bc8613d2c565b5b80604052505050565b6000613bdd82613b23565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1057613c0f613c70565b5b600182019050919050565b6000613c2682613c2d565b9050919050565b6000613c3882613d8a565b9050919050565b6000613c4a82613b23565b9150613c5583613b23565b925082613c6557613c64613c9f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f446f776e7369653a2053616c65204861736e2774207374617274656420796574600082015250565b7f446f776e7369653a2050726573616c65204861736e277420737461727465642060008201527f7965740000000000000000000000000000000000000000000000000000000000602082015250565b7f446f776e7369653a206d6178206d696e7420706572205478206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f446f776e7369653a2057686974656c697374204d6178537570706c792065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f446f776e7369653a206f6f707320636f6e747261637420697320706175736564600082015250565b7f446f776e7369653a20596f7520617265206e6f742057686974656c6973746564600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f446f776e7369653a204d6178204e4654205065722057616c6c6574206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f446f776e7369653a20576520536f6c64204f7574000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f446f776e7369653a20696e73756666696369656e742066756e64730000000000600082015250565b50565b7f446f776e7369653a206d6178206d696e7420616d6f756e74207065722074782060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b7f446f776e7369653a206e65656420746f206d696e74206174206c65617374203160008201527f204e465400000000000000000000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61416381613aaf565b811461416e57600080fd5b50565b61417a81613ac1565b811461418557600080fd5b50565b61419181613acd565b811461419c57600080fd5b50565b6141a881613ad7565b81146141b357600080fd5b50565b6141bf81613b23565b81146141ca57600080fd5b5056fea2646970667358221220f3f1fc37e55abe7bdeed7077533d2037c3c520340a9e2037d72cd29bf03f8a9564736f6c634300080700330000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e35760003560e01c806370a0823111610190578063c8151d02116100dc578063e985e9c511610095578063f2c4ce1e1161006f578063f2c4ce1e14610ac2578063f2fde38b14610aeb578063f3257cdd14610b14578063fea0e05814610b3d576102e3565b8063e985e9c514610a31578063eff6011014610a6e578063f12f6d5d14610a99576102e3565b8063c8151d0214610923578063c87b56dd1461094c578063d5abeb0114610989578063d8ed370c146109b4578063da3ef23f146109df578063e268e4d314610a08576102e3565b806395d89b4111610149578063b88d4fde11610123578063b88d4fde1461087b578063bd7a1998146108a4578063bde0608a146108cf578063c6682862146108f8576102e3565b806395d89b411461080b578063a0712d6814610836578063a22cb46514610852576102e3565b806370a0823114610711578063715018a61461074e5780637cb647591461076557806383a076be1461078e5780638da5cb5b146107b7578063940cd05b146107e2576102e3565b806323b872dd1161024f57806351830227116102085780635c975abb116101e25780635c975abb146106535780636352211e1461067e5780636c0360eb146106bb5780636c2d3c4f146106e6576102e3565b806351830227146105d457806355f804b3146105ff5780635a7adf7f14610628576102e3565b806323b872dd146104f95780632eb4a7ab1461052257806333bc1c5c1461054d5780633ccfd60b1461057857806342842e0e1461058257806344a0d68a146105ab576102e3565b8063081c8c44116102a1578063081c8c44146103fd578063095ea7b31461042857806313faede614610451578063149835a01461047c57806318160ddd146104a55780631866756c146104d0576102e3565b806277ec05146102e857806301ffc9a71461031357806302329a2914610350578063036e4cb51461037957806306fdde0314610395578063081812fc146103c0575b600080fd5b3480156102f457600080fd5b506102fd610b66565b60405161030a9190613895565b60405180910390f35b34801561031f57600080fd5b5061033a6004803603810190610335919061303d565b610b6c565b604051610347919061363d565b60405180910390f35b34801561035c57600080fd5b5061037760048036038101906103729190612fe3565b610bfe565b005b610393600480360381019061038e919061314d565b610c23565b005b3480156103a157600080fd5b506103aa610f25565b6040516103b79190613673565b60405180910390f35b3480156103cc57600080fd5b506103e760048036038101906103e291906130e0565b610fb7565b6040516103f491906135d6565b60405180910390f35b34801561040957600080fd5b50610412611033565b60405161041f9190613673565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190612fa3565b6110c1565b005b34801561045d57600080fd5b50610466611202565b6040516104739190613895565b60405180910390f35b34801561048857600080fd5b506104a3600480360381019061049e91906130e0565b611208565b005b3480156104b157600080fd5b506104ba61121a565b6040516104c79190613895565b60405180910390f35b3480156104dc57600080fd5b506104f760048036038101906104f291906130e0565b611231565b005b34801561050557600080fd5b50610520600480360381019061051b9190612e8d565b611243565b005b34801561052e57600080fd5b50610537611568565b6040516105449190613658565b60405180910390f35b34801561055957600080fd5b5061056261156e565b60405161056f919061363d565b60405180910390f35b610580611581565b005b34801561058e57600080fd5b506105a960048036038101906105a49190612e8d565b611602565b005b3480156105b757600080fd5b506105d260048036038101906105cd91906130e0565b611622565b005b3480156105e057600080fd5b506105e9611634565b6040516105f6919061363d565b60405180910390f35b34801561060b57600080fd5b5061062660048036038101906106219190613097565b611647565b005b34801561063457600080fd5b5061063d611669565b60405161064a919061363d565b60405180910390f35b34801561065f57600080fd5b5061066861167c565b604051610675919061363d565b60405180910390f35b34801561068a57600080fd5b506106a560048036038101906106a091906130e0565b61168f565b6040516106b291906135d6565b60405180910390f35b3480156106c757600080fd5b506106d06116a1565b6040516106dd9190613673565b60405180910390f35b3480156106f257600080fd5b506106fb61172f565b6040516107089190613895565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190612e20565b611735565b6040516107459190613895565b60405180910390f35b34801561075a57600080fd5b506107636117ee565b005b34801561077157600080fd5b5061078c60048036038101906107879190613010565b611802565b005b34801561079a57600080fd5b506107b560048036038101906107b0919061310d565b611814565b005b3480156107c357600080fd5b506107cc6118ca565b6040516107d991906135d6565b60405180910390f35b3480156107ee57600080fd5b5061080960048036038101906108049190612fe3565b6118f4565b005b34801561081757600080fd5b50610820611919565b60405161082d9190613673565b60405180910390f35b610850600480360381019061084b91906130e0565b6119ab565b005b34801561085e57600080fd5b5061087960048036038101906108749190612f63565b611bf8565b005b34801561088757600080fd5b506108a2600480360381019061089d9190612ee0565b611d70565b005b3480156108b057600080fd5b506108b9611de3565b6040516108c69190613895565b60405180910390f35b3480156108db57600080fd5b506108f660048036038101906108f191906130e0565b611de9565b005b34801561090457600080fd5b5061090d611dfb565b60405161091a9190613673565b60405180910390f35b34801561092f57600080fd5b5061094a600480360381019061094591906130e0565b611e89565b005b34801561095857600080fd5b50610973600480360381019061096e91906130e0565b611e9b565b6040516109809190613673565b60405180910390f35b34801561099557600080fd5b5061099e611ff4565b6040516109ab9190613895565b60405180910390f35b3480156109c057600080fd5b506109c9611ffa565b6040516109d69190613895565b60405180910390f35b3480156109eb57600080fd5b50610a066004803603810190610a019190613097565b612000565b005b348015610a1457600080fd5b50610a2f6004803603810190610a2a91906130e0565b612022565b005b348015610a3d57600080fd5b50610a586004803603810190610a539190612e4d565b612034565b604051610a65919061363d565b60405180910390f35b348015610a7a57600080fd5b50610a836120c8565b604051610a909190613895565b60405180910390f35b348015610aa557600080fd5b50610ac06004803603810190610abb91906130e0565b6120ce565b005b348015610ace57600080fd5b50610ae96004803603810190610ae49190613097565b6120e0565b005b348015610af757600080fd5b50610b126004803603810190610b0d9190612e20565b612102565b005b348015610b2057600080fd5b50610b3b6004803603810190610b369190612fe3565b612186565b005b348015610b4957600080fd5b50610b646004803603810190610b5f9190612fe3565b6121ab565b005b60105481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bc757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610bf75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b610c066121d0565b80601360006101000a81548160ff02191690831515021790555050565b601360009054906101000a900460ff1615610c73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6a90613755565b60405180910390fd5b601360029054906101000a900460ff16610cc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb9906136d5565b60405180910390fd5b610d36828280806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060145433604051602001610d1b9190613575565b6040516020818303038152906040528051906020012061224e565b610d75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6c90613775565b60405180910390fd5b6000610d7f61121a565b90506000610d93610d8e612265565b611735565b90506010548582610da4919061399a565b1115610de5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddc906137b5565b60405180910390fd5b60008511610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90613855565b60405180910390fd5b601154851115610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e64906136f5565b60405180910390fd5b600e548583610e7c919061399a565b1115610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490613715565b60405180910390fd5b84600d54610ecb9190613a21565b341015610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490613815565b60405180910390fd5b610f1e610f18612265565b8661226d565b5050505050565b606060028054610f3490613b6f565b80601f0160208091040260200160405190810160405280929190818152602001828054610f6090613b6f565b8015610fad5780601f10610f8257610100808354040283529160200191610fad565b820191906000526020600020905b815481529060010190602001808311610f9057829003601f168201915b5050505050905090565b6000610fc28261228b565b610ff8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600b805461104090613b6f565b80601f016020809104026020016040519081016040528092919081815260200182805461106c90613b6f565b80156110b95780601f1061108e576101008083540402835291602001916110b9565b820191906000526020600020905b81548152906001019060200180831161109c57829003601f168201915b505050505081565b60006110cc8261168f565b90508073ffffffffffffffffffffffffffffffffffffffff166110ed6122ea565b73ffffffffffffffffffffffffffffffffffffffff161461115057611119816111146122ea565b612034565b61114f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600c5481565b6112106121d0565b80600e8190555050565b60006112246122f2565b6001546000540303905090565b6112396121d0565b8060118190555050565b600061124e826122fb565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112b5576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000806112c1846123c9565b915091506112d781876112d26122ea565b6123eb565b611323576112ec866112e76122ea565b612034565b611322576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561138a576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611397868686600161242f565b80156113a257600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506114708561144c888887612435565b7c02000000000000000000000000000000000000000000000000000000001761245d565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841614156114f85760006001850190506000600460008381526020019081526020016000205414156114f65760005481146114f5578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46115608686866001612488565b505050505050565b60145481565b601360039054906101000a900460ff1681565b6115896121d0565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516115af906135c1565b60006040518083038185875af1925050503d80600081146115ec576040519150601f19603f3d011682016040523d82523d6000602084013e6115f1565b606091505b50509050806115ff57600080fd5b50565b61161d83838360405180602001604052806000815250611d70565b505050565b61162a6121d0565b80600c8190555050565b601360019054906101000a900460ff1681565b61164f6121d0565b8060099080519060200190611665929190612bc9565b5050565b601360029054906101000a900460ff1681565b601360009054906101000a900460ff1681565b600061169a826122fb565b9050919050565b600980546116ae90613b6f565b80601f01602080910402602001604051908101604052809291908181526020018280546116da90613b6f565b80156117275780601f106116fc57610100808354040283529160200191611727565b820191906000526020600020905b81548152906001019060200180831161170a57829003601f168201915b505050505081565b600d5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179d576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6117f66121d0565b611800600061248e565b565b61180a6121d0565b8060148190555050565b61181c6121d0565b6000821161185f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185690613875565b60405180910390fd5b600061186961121a565b9050600e54838261187a919061399a565b11156118bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b290613795565b60405180910390fd5b6118c5828461226d565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118fc6121d0565b80601360016101000a81548160ff02191690831515021790555050565b60606003805461192890613b6f565b80601f016020809104026020016040519081016040528092919081815260200182805461195490613b6f565b80156119a15780601f10611976576101008083540402835291602001916119a1565b820191906000526020600020905b81548152906001019060200180831161198457829003601f168201915b5050505050905090565b601360009054906101000a900460ff16156119fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f290613755565b60405180910390fd5b601360039054906101000a900460ff16611a4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a41906136b5565b60405180910390fd5b6000611a5461121a565b90506000611a68611a63612265565b611735565b905060008311611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490613855565b60405180910390fd5b601254831115611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990613835565b60405180910390fd5b600e548383611b01919061399a565b1115611b42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b39906137d5565b60405180910390fd5b600f548382611b51919061399a565b1115611b92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b89906137b5565b60405180910390fd5b82600c54611ba09190613a21565b341015611be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd990613815565b60405180910390fd5b611bf3611bed612265565b8461226d565b505050565b611c006122ea565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c65576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c726122ea565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d1f6122ea565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d64919061363d565b60405180910390a35050565b611d7b848484611243565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611ddd57611da684848484612554565b611ddc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600f5481565b611df16121d0565b8060108190555050565b600a8054611e0890613b6f565b80601f0160208091040260200160405190810160405280929190818152602001828054611e3490613b6f565b8015611e815780601f10611e5657610100808354040283529160200191611e81565b820191906000526020600020905b815481529060010190602001808311611e6457829003601f168201915b505050505081565b611e916121d0565b8060128190555050565b6060611ea68261228b565b611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613695565b60405180910390fd5b60001515601360019054906101000a900460ff1615151415611f9357600b8054611f0e90613b6f565b80601f0160208091040260200160405190810160405280929190818152602001828054611f3a90613b6f565b8015611f875780601f10611f5c57610100808354040283529160200191611f87565b820191906000526020600020905b815481529060010190602001808311611f6a57829003601f168201915b50505050509050611fef565b6000611f9d6126b4565b90506000815111611fbd5760405180602001604052806000815250611feb565b80611fc784612746565b600a604051602001611fdb93929190613590565b6040516020818303038152906040525b9150505b919050565b600e5481565b60115481565b6120086121d0565b80600a908051906020019061201e929190612bc9565b5050565b61202a6121d0565b80600f8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60125481565b6120d66121d0565b80600d8190555050565b6120e86121d0565b80600b90805190602001906120fe929190612bc9565b5050565b61210a6121d0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561217a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217190613735565b60405180910390fd5b6121838161248e565b50565b61218e6121d0565b80601360036101000a81548160ff02191690831515021790555050565b6121b36121d0565b80601360026101000a81548160ff02191690831515021790555050565b6121d8612265565b73ffffffffffffffffffffffffffffffffffffffff166121f66118ca565b73ffffffffffffffffffffffffffffffffffffffff161461224c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612243906137f5565b60405180910390fd5b565b60008261225b85846128a7565b1490509392505050565b600033905090565b6122878282604051806020016040528060008152506128fd565b5050565b6000816122966122f2565b111580156122a5575060005482105b80156122e3575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b6000808290508061230a6122f2565b11612392576000548110156123915760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561238f575b600081141561238557600460008360019003935083815260200190815260200160002054905061235a565b80925050506123c4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e861244c86868461299a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261257a6122ea565b8786866040518563ffffffff1660e01b815260040161259c94939291906135f1565b602060405180830381600087803b1580156125b657600080fd5b505af19250505080156125e757506040513d601f19601f820116820180604052508101906125e4919061306a565b60015b612661573d8060008114612617576040519150601f19603f3d011682016040523d82523d6000602084013e61261c565b606091505b50600081511415612659576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600980546126c390613b6f565b80601f01602080910402602001604051908101604052809291908181526020018280546126ef90613b6f565b801561273c5780601f106127115761010080835404028352916020019161273c565b820191906000526020600020905b81548152906001019060200180831161271f57829003601f168201915b5050505050905090565b6060600082141561278e576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506128a2565b600082905060005b600082146127c05780806127a990613bd2565b915050600a826127b991906139f0565b9150612796565b60008167ffffffffffffffff8111156127dc576127db613d2c565b5b6040519080825280601f01601f19166020018201604052801561280e5781602001600182028036833780820191505090505b5090505b6000851461289b576001826128279190613a7b565b9150600a856128369190613c3f565b6030612842919061399a565b60f81b81838151811061285857612857613cfd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561289491906139f0565b9450612812565b8093505050505b919050565b60008082905060005b84518110156128f2576128dd828683815181106128d0576128cf613cfd565b5b60200260200101516129a3565b915080806128ea90613bd2565b9150506128b0565b508091505092915050565b61290783836129ce565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461299557600080549050600083820390505b6129476000868380600101945086612554565b61297d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061293457816000541461299257600080fd5b50505b505050565b60009392505050565b60008183106129bb576129b68284612ba2565b6129c6565b6129c58383612ba2565b5b905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a3b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000821415612a76576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612a83600084838561242f565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612afa83612aeb6000866000612435565b612af485612bb9565b1761245d565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612b1e57806000819055505050612b9d6000848385612488565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b828054612bd590613b6f565b90600052602060002090601f016020900481019282612bf75760008555612c3e565b82601f10612c1057805160ff1916838001178555612c3e565b82800160010185558215612c3e579182015b82811115612c3d578251825591602001919060010190612c22565b5b509050612c4b9190612c4f565b5090565b5b80821115612c68576000816000905550600101612c50565b5090565b6000612c7f612c7a846138d5565b6138b0565b905082815260208101848484011115612c9b57612c9a613d6a565b5b612ca6848285613b2d565b509392505050565b6000612cc1612cbc84613906565b6138b0565b905082815260208101848484011115612cdd57612cdc613d6a565b5b612ce8848285613b2d565b509392505050565b600081359050612cff8161415a565b92915050565b60008083601f840112612d1b57612d1a613d60565b5b8235905067ffffffffffffffff811115612d3857612d37613d5b565b5b602083019150836020820283011115612d5457612d53613d65565b5b9250929050565b600081359050612d6a81614171565b92915050565b600081359050612d7f81614188565b92915050565b600081359050612d948161419f565b92915050565b600081519050612da98161419f565b92915050565b600082601f830112612dc457612dc3613d60565b5b8135612dd4848260208601612c6c565b91505092915050565b600082601f830112612df257612df1613d60565b5b8135612e02848260208601612cae565b91505092915050565b600081359050612e1a816141b6565b92915050565b600060208284031215612e3657612e35613d74565b5b6000612e4484828501612cf0565b91505092915050565b60008060408385031215612e6457612e63613d74565b5b6000612e7285828601612cf0565b9250506020612e8385828601612cf0565b9150509250929050565b600080600060608486031215612ea657612ea5613d74565b5b6000612eb486828701612cf0565b9350506020612ec586828701612cf0565b9250506040612ed686828701612e0b565b9150509250925092565b60008060008060808587031215612efa57612ef9613d74565b5b6000612f0887828801612cf0565b9450506020612f1987828801612cf0565b9350506040612f2a87828801612e0b565b925050606085013567ffffffffffffffff811115612f4b57612f4a613d6f565b5b612f5787828801612daf565b91505092959194509250565b60008060408385031215612f7a57612f79613d74565b5b6000612f8885828601612cf0565b9250506020612f9985828601612d5b565b9150509250929050565b60008060408385031215612fba57612fb9613d74565b5b6000612fc885828601612cf0565b9250506020612fd985828601612e0b565b9150509250929050565b600060208284031215612ff957612ff8613d74565b5b600061300784828501612d5b565b91505092915050565b60006020828403121561302657613025613d74565b5b600061303484828501612d70565b91505092915050565b60006020828403121561305357613052613d74565b5b600061306184828501612d85565b91505092915050565b6000602082840312156130805761307f613d74565b5b600061308e84828501612d9a565b91505092915050565b6000602082840312156130ad576130ac613d74565b5b600082013567ffffffffffffffff8111156130cb576130ca613d6f565b5b6130d784828501612ddd565b91505092915050565b6000602082840312156130f6576130f5613d74565b5b600061310484828501612e0b565b91505092915050565b6000806040838503121561312457613123613d74565b5b600061313285828601612e0b565b925050602061314385828601612cf0565b9150509250929050565b60008060006040848603121561316657613165613d74565b5b600061317486828701612e0b565b935050602084013567ffffffffffffffff81111561319557613194613d6f565b5b6131a186828701612d05565b92509250509250925092565b6131b681613aaf565b82525050565b6131cd6131c882613aaf565b613c1b565b82525050565b6131dc81613ac1565b82525050565b6131eb81613acd565b82525050565b60006131fc8261394c565b6132068185613962565b9350613216818560208601613b3c565b61321f81613d79565b840191505092915050565b600061323582613957565b61323f818561397e565b935061324f818560208601613b3c565b61325881613d79565b840191505092915050565b600061326e82613957565b613278818561398f565b9350613288818560208601613b3c565b80840191505092915050565b600081546132a181613b6f565b6132ab818661398f565b945060018216600081146132c657600181146132d75761330a565b60ff1983168652818601935061330a565b6132e085613937565b60005b83811015613302578154818901526001820191506020810190506132e3565b838801955050505b50505092915050565b600061332060308361397e565b915061332b82613d97565b604082019050919050565b600061334360208361397e565b915061334e82613de6565b602082019050919050565b600061336660238361397e565b915061337182613e0f565b604082019050919050565b600061338960218361397e565b915061339482613e5e565b604082019050919050565b60006133ac60258361397e565b91506133b782613ead565b604082019050919050565b60006133cf60268361397e565b91506133da82613efc565b604082019050919050565b60006133f260208361397e565b91506133fd82613f4b565b602082019050919050565b600061341560208361397e565b915061342082613f74565b602082019050919050565b600061343860168361397e565b915061344382613f9d565b602082019050919050565b600061345b60248361397e565b915061346682613fc6565b604082019050919050565b600061347e60148361397e565b915061348982614015565b602082019050919050565b60006134a160208361397e565b91506134ac8261403e565b602082019050919050565b60006134c4601b8361397e565b91506134cf82614067565b602082019050919050565b60006134e7600083613973565b91506134f282614090565b600082019050919050565b600061350a60288361397e565b915061351582614093565b604082019050919050565b600061352d60248361397e565b9150613538826140e2565b604082019050919050565b6000613550601b8361397e565b915061355b82614131565b602082019050919050565b61356f81613b23565b82525050565b600061358182846131bc565b60148201915081905092915050565b600061359c8286613263565b91506135a88285613263565b91506135b48284613294565b9150819050949350505050565b60006135cc826134da565b9150819050919050565b60006020820190506135eb60008301846131ad565b92915050565b600060808201905061360660008301876131ad565b61361360208301866131ad565b6136206040830185613566565b818103606083015261363281846131f1565b905095945050505050565b600060208201905061365260008301846131d3565b92915050565b600060208201905061366d60008301846131e2565b92915050565b6000602082019050818103600083015261368d818461322a565b905092915050565b600060208201905081810360008301526136ae81613313565b9050919050565b600060208201905081810360008301526136ce81613336565b9050919050565b600060208201905081810360008301526136ee81613359565b9050919050565b6000602082019050818103600083015261370e8161337c565b9050919050565b6000602082019050818103600083015261372e8161339f565b9050919050565b6000602082019050818103600083015261374e816133c2565b9050919050565b6000602082019050818103600083015261376e816133e5565b9050919050565b6000602082019050818103600083015261378e81613408565b9050919050565b600060208201905081810360008301526137ae8161342b565b9050919050565b600060208201905081810360008301526137ce8161344e565b9050919050565b600060208201905081810360008301526137ee81613471565b9050919050565b6000602082019050818103600083015261380e81613494565b9050919050565b6000602082019050818103600083015261382e816134b7565b9050919050565b6000602082019050818103600083015261384e816134fd565b9050919050565b6000602082019050818103600083015261386e81613520565b9050919050565b6000602082019050818103600083015261388e81613543565b9050919050565b60006020820190506138aa6000830184613566565b92915050565b60006138ba6138cb565b90506138c68282613ba1565b919050565b6000604051905090565b600067ffffffffffffffff8211156138f0576138ef613d2c565b5b6138f982613d79565b9050602081019050919050565b600067ffffffffffffffff82111561392157613920613d2c565b5b61392a82613d79565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006139a582613b23565b91506139b083613b23565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139e5576139e4613c70565b5b828201905092915050565b60006139fb82613b23565b9150613a0683613b23565b925082613a1657613a15613c9f565b5b828204905092915050565b6000613a2c82613b23565b9150613a3783613b23565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613a7057613a6f613c70565b5b828202905092915050565b6000613a8682613b23565b9150613a9183613b23565b925082821015613aa457613aa3613c70565b5b828203905092915050565b6000613aba82613b03565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613b5a578082015181840152602081019050613b3f565b83811115613b69576000848401525b50505050565b60006002820490506001821680613b8757607f821691505b60208210811415613b9b57613b9a613cce565b5b50919050565b613baa82613d79565b810181811067ffffffffffffffff82111715613bc957613bc8613d2c565b5b80604052505050565b6000613bdd82613b23565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613c1057613c0f613c70565b5b600182019050919050565b6000613c2682613c2d565b9050919050565b6000613c3882613d8a565b9050919050565b6000613c4a82613b23565b9150613c5583613b23565b925082613c6557613c64613c9f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231414d657461646174613a2055524920717565727920666f72206e60008201527f6f6e6578697374656e7420746f6b656e00000000000000000000000000000000602082015250565b7f446f776e7369653a2053616c65204861736e2774207374617274656420796574600082015250565b7f446f776e7369653a2050726573616c65204861736e277420737461727465642060008201527f7965740000000000000000000000000000000000000000000000000000000000602082015250565b7f446f776e7369653a206d6178206d696e7420706572205478206578636565646560008201527f6400000000000000000000000000000000000000000000000000000000000000602082015250565b7f446f776e7369653a2057686974656c697374204d6178537570706c792065786360008201527f6565646564000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f446f776e7369653a206f6f707320636f6e747261637420697320706175736564600082015250565b7f446f776e7369653a20596f7520617265206e6f742057686974656c6973746564600082015250565b7f6d6178204e4654206c696d697420657863656564656400000000000000000000600082015250565b7f446f776e7369653a204d6178204e4654205065722057616c6c6574206578636560008201527f6564656400000000000000000000000000000000000000000000000000000000602082015250565b7f446f776e7369653a20576520536f6c64204f7574000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f446f776e7369653a20696e73756666696369656e742066756e64730000000000600082015250565b50565b7f446f776e7369653a206d6178206d696e7420616d6f756e74207065722074782060008201527f6578636565646564000000000000000000000000000000000000000000000000602082015250565b7f446f776e7369653a206e65656420746f206d696e74206174206c65617374203160008201527f204e465400000000000000000000000000000000000000000000000000000000602082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b61416381613aaf565b811461416e57600080fd5b50565b61417a81613ac1565b811461418557600080fd5b50565b61419181613acd565b811461419c57600080fd5b50565b6141a881613ad7565b81146141b357600080fd5b50565b6141bf81613b23565b81146141ca57600080fd5b5056fea2646970667358221220f3f1fc37e55abe7bdeed7077533d2037c3c520340a9e2037d72cd29bf03f8a9564736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string):
Arg [1] : _initNotRevealedUri (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

59655:5359:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59975:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29444:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64567:73;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61525:886;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35091:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37037:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59798:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36585:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59831:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64107:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28498:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63817:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46302:2800;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60231:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60196:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64853:158;;;:::i;:::-;;37927:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63923:80;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60131:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64207:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60164:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60100:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34880:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59730:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59865:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30123:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14035:103;;;;;;;;;;;;;:::i;:::-;;63403:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62480:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13387:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63319:78;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35260:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60786:694;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37313:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38183:399;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59937:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63617:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59756:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;63719:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;62799:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59901:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60015:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64311:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;63517:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37692:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60049:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64011:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64441:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14293:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64746:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64648:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59975:35;;;;:::o;29444:615::-;29529:4;29844:10;29829:25;;:11;:25;;;;:102;;;;29921:10;29906:25;;:11;:25;;;;29829:102;:179;;;;29998:10;29983:25;;:11;:25;;;;29829:179;29809:199;;29444:615;;;:::o;64567:73::-;13273:13;:11;:13::i;:::-;64628:6:::1;64619;;:15;;;;;;;;;;;;;;;;;;64567:73:::0;:::o;61525:886::-;61626:6;;;;;;;;;;;61625:7;61617:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;61684:7;;;;;;;;;;;61676:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;61746:84;61765:11;;61746:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61778:10;;61817;61800:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;61790:39;;;;;;61746:18;:84::i;:::-;61738:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;61874:14;61891:13;:11;:13::i;:::-;61874:30;;61911:23;61937;61947:12;:10;:12::i;:::-;61937:9;:23::i;:::-;61911:49;;62003:14;;61993:6;61975:15;:24;;;;:::i;:::-;:42;;61967:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;62082:1;62073:6;:10;62065:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;62149:10;;62139:6;:20;;62131:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;62231:9;;62221:6;62212;:15;;;;:::i;:::-;:28;;62204:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;62319:6;62310;;:15;;;;:::i;:::-;62297:9;:28;;62289:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62368:31;62378:12;:10;:12::i;:::-;62392:6;62368:9;:31::i;:::-;61610:801;;61525:886;;;:::o;35091:100::-;35145:13;35178:5;35171:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35091:100;:::o;37037:204::-;37105:7;37130:16;37138:7;37130;:16::i;:::-;37125:64;;37155:34;;;;;;;;;;;;;;37125:64;37209:15;:24;37225:7;37209:24;;;;;;;;;;;;;;;;;;;;;37202:31;;37037:204;;;:::o;59798:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36585:386::-;36658:13;36674:16;36682:7;36674;:16::i;:::-;36658:32;;36730:5;36707:28;;:19;:17;:19::i;:::-;:28;;;36703:175;;36755:44;36772:5;36779:19;:17;:19::i;:::-;36755:16;:44::i;:::-;36750:128;;36827:35;;;;;;;;;;;;;;36750:128;36703:175;36917:2;36890:15;:24;36906:7;36890:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36955:7;36951:2;36935:28;;36944:5;36935:28;;;;;;;;;;;;36647:324;36585:386;;:::o;59831:29::-;;;;:::o;64107:94::-;13273:13;:11;:13::i;:::-;64185:10:::1;64173:9;:22;;;;64107:94:::0;:::o;28498:315::-;28551:7;28779:15;:13;:15::i;:::-;28764:12;;28748:13;;:28;:46;28741:53;;28498:315;:::o;63817:98::-;13273:13;:11;:13::i;:::-;63898:11:::1;63885:10;:24;;;;63817:98:::0;:::o;46302:2800::-;46436:27;46466;46485:7;46466:18;:27::i;:::-;46436:57;;46551:4;46510:45;;46526:19;46510:45;;;46506:86;;46564:28;;;;;;;;;;;;;;46506:86;46606:27;46635:23;46662:28;46682:7;46662:19;:28::i;:::-;46605:85;;;;46790:62;46809:15;46826:4;46832:19;:17;:19::i;:::-;46790:18;:62::i;:::-;46785:174;;46872:43;46889:4;46895:19;:17;:19::i;:::-;46872:16;:43::i;:::-;46867:92;;46924:35;;;;;;;;;;;;;;46867:92;46785:174;46990:1;46976:16;;:2;:16;;;46972:52;;;47001:23;;;;;;;;;;;;;;46972:52;47037:43;47059:4;47065:2;47069:7;47078:1;47037:21;:43::i;:::-;47173:15;47170:160;;;47313:1;47292:19;47285:30;47170:160;47708:18;:24;47727:4;47708:24;;;;;;;;;;;;;;;;47706:26;;;;;;;;;;;;47777:18;:22;47796:2;47777:22;;;;;;;;;;;;;;;;47775:24;;;;;;;;;;;48099:145;48136:2;48184:45;48199:4;48205:2;48209:19;48184:14;:45::i;:::-;25726:8;48157:72;48099:18;:145::i;:::-;48070:17;:26;48088:7;48070:26;;;;;;;;;;;:174;;;;48414:1;25726:8;48364:19;:46;:51;48360:626;;;48436:19;48468:1;48458:7;:11;48436:33;;48625:1;48591:17;:30;48609:11;48591:30;;;;;;;;;;;;:35;48587:384;;;48729:13;;48714:11;:28;48710:242;;48909:19;48876:17;:30;48894:11;48876:30;;;;;;;;;;;:52;;;;48710:242;48587:384;48417:569;48360:626;49033:7;49029:2;49014:27;;49023:4;49014:27;;;;;;;;;;;;49052:42;49073:4;49079:2;49083:7;49092:1;49052:20;:42::i;:::-;46425:2677;;;46302:2800;;;:::o;60231:94::-;;;;:::o;60196:30::-;;;;;;;;;;;;;:::o;64853:158::-;13273:13;:11;:13::i;:::-;64906:12:::1;64932:10;64924:24;;64956:21;64924:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64905:77;;;64997:7;64989:16;;;::::0;::::1;;64898:113;64853:158::o:0;37927:185::-;38065:39;38082:4;38088:2;38092:7;38065:39;;;;;;;;;;;;:16;:39::i;:::-;37927:185;;;:::o;63923:80::-;13273:13;:11;:13::i;:::-;63989:8:::1;63982:4;:15;;;;63923:80:::0;:::o;60131:28::-;;;;;;;;;;;;;:::o;64207:98::-;13273:13;:11;:13::i;:::-;64288:11:::1;64278:7;:21;;;;;;;;;;;;:::i;:::-;;64207:98:::0;:::o;60164:27::-;;;;;;;;;;;;;:::o;60100:26::-;;;;;;;;;;;;;:::o;34880:144::-;34944:7;34987:27;35006:7;34987:18;:27::i;:::-;34964:52;;34880:144;;;:::o;59730:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59865:31::-;;;;:::o;30123:224::-;30187:7;30228:1;30211:19;;:5;:19;;;30207:60;;;30239:28;;;;;;;;;;;;;;30207:60;24678:13;30285:18;:25;30304:5;30285:25;;;;;;;;;;;;;;;;:54;30278:61;;30123:224;;;:::o;14035:103::-;13273:13;:11;:13::i;:::-;14100:30:::1;14127:1;14100:18;:30::i;:::-;14035:103::o:0;63403:106::-;13273:13;:11;:13::i;:::-;63490:11:::1;63477:10;:24;;;;63403:106:::0;:::o;62480:305::-;13273:13;:11;:13::i;:::-;62582:1:::1;62568:11;:15;62560:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;62622:14;62639:13;:11;:13::i;:::-;62622:30;;62691:9;;62676:11;62667:6;:20;;;;:::i;:::-;:33;;62659:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;62738:35;62748:11;62761;62738:9;:35::i;:::-;62553:232;62480:305:::0;;:::o;13387:87::-;13433:7;13460:6;;;;;;;;;;;13453:13;;13387:87;:::o;63319:78::-;13273:13;:11;:13::i;:::-;63385:6:::1;63374:8;;:17;;;;;;;;;;;;;;;;;;63319:78:::0;:::o;35260:104::-;35316:13;35349:7;35342:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35260:104;:::o;60786:694::-;60847:6;;;;;;;;;;;60846:7;60838:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;60905:10;;;;;;;;;;;60897:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;60959:14;60976:13;:11;:13::i;:::-;60959:30;;60996:23;61022;61032:12;:10;:12::i;:::-;61022:9;:23::i;:::-;60996:49;;61069:1;61060:6;:10;61052:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;61136:8;;61126:6;:18;;61118:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;61223:9;;61213:6;61204;:15;;;;:::i;:::-;:28;;61196:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;61300:12;;61290:6;61272:15;:24;;;;:::i;:::-;:40;;61264:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;61388:6;61381:4;;:13;;;;:::i;:::-;61368:9;:26;;61360:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;61437:31;61447:12;:10;:12::i;:::-;61461:6;61437:9;:31::i;:::-;60831:649;;60786:694;:::o;37313:308::-;37424:19;:17;:19::i;:::-;37412:31;;:8;:31;;;37408:61;;;37452:17;;;;;;;;;;;;;;37408:61;37534:8;37482:18;:39;37501:19;:17;:19::i;:::-;37482:39;;;;;;;;;;;;;;;:49;37522:8;37482:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;37594:8;37558:55;;37573:19;:17;:19::i;:::-;37558:55;;;37604:8;37558:55;;;;;;:::i;:::-;;;;;;;;37313:308;;:::o;38183:399::-;38350:31;38363:4;38369:2;38373:7;38350:12;:31::i;:::-;38414:1;38396:2;:14;;;:19;38392:183;;38435:56;38466:4;38472:2;38476:7;38485:5;38435:30;:56::i;:::-;38430:145;;38519:40;;;;;;;;;;;;;;38430:145;38392:183;38183:399;;;;:::o;59937:33::-;;;;:::o;63617:96::-;13273:13;:11;:13::i;:::-;63701:6:::1;63684:14;:23;;;;63617:96:::0;:::o;59756:37::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;63719:90::-;13273:13;:11;:13::i;:::-;63794:9:::1;63783:8;:20;;;;63719:90:::0;:::o;62799:498::-;62897:13;62938:16;62946:7;62938;:16::i;:::-;62922:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;63048:5;63036:17;;:8;;;;;;;;;;;:17;;;63033:62;;;63073:14;63066:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63033:62;63103:28;63134:10;:8;:10::i;:::-;63103:41;;63189:1;63164:14;63158:28;:32;:133;;;;;;;;;;;;;;;;;63226:14;63242:18;:7;:16;:18::i;:::-;63262:13;63209:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;63158:133;63151:140;;;62799:498;;;;:::o;59901:31::-;;;;:::o;60015:29::-;;;;:::o;64311:122::-;13273:13;:11;:13::i;:::-;64410:17:::1;64394:13;:33;;;;;;;;;;;;:::i;:::-;;64311:122:::0;:::o;63517:92::-;13273:13;:11;:13::i;:::-;63597:6:::1;63582:12;:21;;;;63517:92:::0;:::o;37692:164::-;37789:4;37813:18;:25;37832:5;37813:25;;;;;;;;;;;;;;;:35;37839:8;37813:35;;;;;;;;;;;;;;;;;;;;;;;;;37806:42;;37692:164;;;;:::o;60049:27::-;;;;:::o;64011:88::-;13273:13;:11;:13::i;:::-;64083:10:::1;64074:6;:19;;;;64011:88:::0;:::o;64441:120::-;13273:13;:11;:13::i;:::-;64540:15:::1;64523:14;:32;;;;;;;;;;;;:::i;:::-;;64441:120:::0;:::o;14293:201::-;13273:13;:11;:13::i;:::-;14402:1:::1;14382:22;;:8;:22;;;;14374:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;14458:28;14477:8;14458:18;:28::i;:::-;14293:201:::0;:::o;64746:96::-;13273:13;:11;:13::i;:::-;64828:6:::1;64815:10;;:19;;;;;;;;;;;;;;;;;;64746:96:::0;:::o;64648:90::-;13273:13;:11;:13::i;:::-;64724:6:::1;64714:7;;:16;;;;;;;;;;;;;;;;;;64648:90:::0;:::o;13552:132::-;13627:12;:10;:12::i;:::-;13616:23;;:7;:5;:7::i;:::-;:23;;;13608:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13552:132::o;1256:190::-;1381:4;1434;1405:25;1418:5;1425:4;1405:12;:25::i;:::-;:33;1398:40;;1256:190;;;;;:::o;11938:98::-;11991:7;12018:10;12011:17;;11938:98;:::o;39194:104::-;39263:27;39273:2;39277:8;39263:27;;;;;;;;;;;;:9;:27::i;:::-;39194:104;;:::o;38837:273::-;38894:4;38950:7;38931:15;:13;:15::i;:::-;:26;;:66;;;;;38984:13;;38974:7;:23;38931:66;:152;;;;;39082:1;25448:8;39035:17;:26;39053:7;39035:26;;;;;;;;;;;;:43;:48;38931:152;38911:172;;38837:273;;;:::o;57398:105::-;57458:7;57485:10;57478:17;;57398:105;:::o;60666:101::-;60731:7;60758:1;60751:8;;60666:101;:::o;31797:1129::-;31864:7;31884:12;31899:7;31884:22;;31967:4;31948:15;:13;:15::i;:::-;:23;31944:915;;32001:13;;31994:4;:20;31990:869;;;32039:14;32056:17;:23;32074:4;32056:23;;;;;;;;;;;;32039:40;;32172:1;25448:8;32145:6;:23;:28;32141:699;;;32664:113;32681:1;32671:6;:11;32664:113;;;32724:17;:25;32742:6;;;;;;;32724:25;;;;;;;;;;;;32715:34;;32664:113;;;32810:6;32803:13;;;;;;32141:699;32016:843;31990:869;31944:915;32887:31;;;;;;;;;;;;;;31797:1129;;;;:::o;44638:652::-;44733:27;44762:23;44803:53;44859:15;44803:71;;45045:7;45039:4;45032:21;45080:22;45074:4;45067:36;45156:4;45150;45140:21;45117:44;;45252:19;45246:26;45227:45;;44983:300;44638:652;;;:::o;45403:645::-;45545:11;45707:15;45701:4;45697:26;45689:34;;45866:15;45855:9;45851:31;45838:44;;46013:15;46002:9;45999:30;45992:4;45981:9;45978:19;45975:55;45965:65;;45403:645;;;;;:::o;56231:159::-;;;;;:::o;54543:309::-;54678:7;54698:16;25849:3;54724:19;:40;;54698:67;;25849:3;54791:31;54802:4;54808:2;54812:9;54791:10;:31::i;:::-;54783:40;;:61;;54776:68;;;54543:309;;;;;:::o;34371:447::-;34451:14;34619:15;34612:5;34608:27;34599:36;;34793:5;34779:11;34755:22;34751:40;34748:51;34741:5;34738:62;34728:72;;34371:447;;;;:::o;57049:158::-;;;;;:::o;14654:191::-;14728:16;14747:6;;;;;;;;;;;14728:25;;14773:8;14764:6;;:17;;;;;;;;;;;;;;;;;;14828:8;14797:40;;14818:8;14797:40;;;;;;;;;;;;14717:128;14654:191;:::o;53053:716::-;53216:4;53262:2;53237:45;;;53283:19;:17;:19::i;:::-;53304:4;53310:7;53319:5;53237:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;53233:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53537:1;53520:6;:13;:18;53516:235;;;53566:40;;;;;;;;;;;;;;53516:235;53709:6;53703:13;53694:6;53690:2;53686:15;53679:38;53233:529;53406:54;;;53396:64;;;:6;:64;;;;53389:71;;;53053:716;;;;;;:::o;60556:102::-;60616:13;60645:7;60638:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60556:102;:::o;9192:723::-;9248:13;9478:1;9469:5;:10;9465:53;;;9496:10;;;;;;;;;;;;;;;;;;;;;9465:53;9528:12;9543:5;9528:20;;9559:14;9584:78;9599:1;9591:4;:9;9584:78;;9617:8;;;;;:::i;:::-;;;;9648:2;9640:10;;;;;:::i;:::-;;;9584:78;;;9672:19;9704:6;9694:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9672:39;;9722:154;9738:1;9729:5;:10;9722:154;;9766:1;9756:11;;;;;:::i;:::-;;;9833:2;9825:5;:10;;;;:::i;:::-;9812:2;:24;;;;:::i;:::-;9799:39;;9782:6;9789;9782:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;9862:2;9853:11;;;;;:::i;:::-;;;9722:154;;;9900:6;9886:21;;;;;9192:723;;;;:::o;2123:296::-;2206:7;2226:20;2249:4;2226:27;;2269:9;2264:118;2288:5;:12;2284:1;:16;2264:118;;;2337:33;2347:12;2361:5;2367:1;2361:8;;;;;;;;:::i;:::-;;;;;;;;2337:9;:33::i;:::-;2322:48;;2302:3;;;;;:::i;:::-;;;;2264:118;;;;2399:12;2392:19;;;2123:296;;;;:::o;39714:681::-;39837:19;39843:2;39847:8;39837:5;:19::i;:::-;39916:1;39898:2;:14;;;:19;39894:483;;39938:11;39952:13;;39938:27;;39984:13;40006:8;40000:3;:14;39984:30;;40033:233;40064:62;40103:1;40107:2;40111:7;;;;;;40120:5;40064:30;:62::i;:::-;40059:167;;40162:40;;;;;;;;;;;;;;40059:167;40261:3;40253:5;:11;40033:233;;40348:3;40331:13;;:20;40327:34;;40353:8;;;40327:34;39919:458;;39894:483;39714:681;;;:::o;55428:147::-;55565:6;55428:147;;;;;:::o;8330:149::-;8393:7;8424:1;8420;:5;:51;;8451:20;8466:1;8469;8451:14;:20::i;:::-;8420:51;;;8428:20;8443:1;8446;8428:14;:20::i;:::-;8420:51;8413:58;;8330:149;;;;:::o;40668:1529::-;40733:20;40756:13;;40733:36;;40798:1;40784:16;;:2;:16;;;40780:48;;;40809:19;;;;;;;;;;;;;;40780:48;40855:1;40843:8;:13;40839:44;;;40865:18;;;;;;;;;;;;;;40839:44;40896:61;40926:1;40930:2;40934:12;40948:8;40896:21;:61::i;:::-;41439:1;24815:2;41410:1;:25;;41409:31;41397:8;:44;41371:18;:22;41390:2;41371:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;41718:139;41755:2;41809:33;41832:1;41836:2;41840:1;41809:14;:33::i;:::-;41776:30;41797:8;41776:20;:30::i;:::-;:66;41718:18;:139::i;:::-;41684:17;:31;41702:12;41684:31;;;;;;;;;;;:173;;;;41874:15;41892:12;41874:30;;41919:11;41948:8;41933:12;:23;41919:37;;41971:101;42023:9;;;;;;42019:2;41998:35;;42015:1;41998:35;;;;;;;;;;;;42067:3;42057:7;:13;41971:101;;42104:3;42088:13;:19;;;;41145:974;;42129:60;42158:1;42162:2;42166:12;42180:8;42129:20;:60::i;:::-;40722:1475;40668:1529;;:::o;8487:268::-;8555:13;8662:1;8656:4;8649:15;8691:1;8685:4;8678:15;8732:4;8726;8716:21;8707:30;;8487:268;;;;:::o;36201:322::-;36271:14;36502:1;36492:8;36489:15;36464:23;36460:45;36450:55;;36201:322;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;1003:568::-;1076:8;1086:6;1136:3;1129:4;1121:6;1117:17;1113:27;1103:122;;1144:79;;:::i;:::-;1103:122;1257:6;1244:20;1234:30;;1287:18;1279:6;1276:30;1273:117;;;1309:79;;:::i;:::-;1273:117;1423:4;1415:6;1411:17;1399:29;;1477:3;1469:4;1461:6;1457:17;1447:8;1443:32;1440:41;1437:128;;;1484:79;;:::i;:::-;1437:128;1003:568;;;;;:::o;1577:133::-;1620:5;1658:6;1645:20;1636:29;;1674:30;1698:5;1674:30;:::i;:::-;1577:133;;;;:::o;1716:139::-;1762:5;1800:6;1787:20;1778:29;;1816:33;1843:5;1816:33;:::i;:::-;1716:139;;;;:::o;1861:137::-;1906:5;1944:6;1931:20;1922:29;;1960:32;1986:5;1960:32;:::i;:::-;1861:137;;;;:::o;2004:141::-;2060:5;2091:6;2085:13;2076:22;;2107:32;2133:5;2107:32;:::i;:::-;2004:141;;;;:::o;2164:338::-;2219:5;2268:3;2261:4;2253:6;2249:17;2245:27;2235:122;;2276:79;;:::i;:::-;2235:122;2393:6;2380:20;2418:78;2492:3;2484:6;2477:4;2469:6;2465:17;2418:78;:::i;:::-;2409:87;;2225:277;2164:338;;;;:::o;2522:340::-;2578:5;2627:3;2620:4;2612:6;2608:17;2604:27;2594:122;;2635:79;;:::i;:::-;2594:122;2752:6;2739:20;2777:79;2852:3;2844:6;2837:4;2829:6;2825:17;2777:79;:::i;:::-;2768:88;;2584:278;2522:340;;;;:::o;2868:139::-;2914:5;2952:6;2939:20;2930:29;;2968:33;2995:5;2968:33;:::i;:::-;2868:139;;;;:::o;3013:329::-;3072:6;3121:2;3109:9;3100:7;3096:23;3092:32;3089:119;;;3127:79;;:::i;:::-;3089:119;3247:1;3272:53;3317:7;3308:6;3297:9;3293:22;3272:53;:::i;:::-;3262:63;;3218:117;3013:329;;;;:::o;3348:474::-;3416:6;3424;3473:2;3461:9;3452:7;3448:23;3444:32;3441:119;;;3479:79;;:::i;:::-;3441:119;3599:1;3624:53;3669:7;3660:6;3649:9;3645:22;3624:53;:::i;:::-;3614:63;;3570:117;3726:2;3752:53;3797:7;3788:6;3777:9;3773:22;3752:53;:::i;:::-;3742:63;;3697:118;3348:474;;;;;:::o;3828:619::-;3905:6;3913;3921;3970:2;3958:9;3949:7;3945:23;3941:32;3938:119;;;3976:79;;:::i;:::-;3938:119;4096:1;4121:53;4166:7;4157:6;4146:9;4142:22;4121:53;:::i;:::-;4111:63;;4067:117;4223:2;4249:53;4294:7;4285:6;4274:9;4270:22;4249:53;:::i;:::-;4239:63;;4194:118;4351:2;4377:53;4422:7;4413:6;4402:9;4398:22;4377:53;:::i;:::-;4367:63;;4322:118;3828:619;;;;;:::o;4453:943::-;4548:6;4556;4564;4572;4621:3;4609:9;4600:7;4596:23;4592:33;4589:120;;;4628:79;;:::i;:::-;4589:120;4748:1;4773:53;4818:7;4809:6;4798:9;4794:22;4773:53;:::i;:::-;4763:63;;4719:117;4875:2;4901:53;4946:7;4937:6;4926:9;4922:22;4901:53;:::i;:::-;4891:63;;4846:118;5003:2;5029:53;5074:7;5065:6;5054:9;5050:22;5029:53;:::i;:::-;5019:63;;4974:118;5159:2;5148:9;5144:18;5131:32;5190:18;5182:6;5179:30;5176:117;;;5212:79;;:::i;:::-;5176:117;5317:62;5371:7;5362:6;5351:9;5347:22;5317:62;:::i;:::-;5307:72;;5102:287;4453:943;;;;;;;:::o;5402:468::-;5467:6;5475;5524:2;5512:9;5503:7;5499:23;5495:32;5492:119;;;5530:79;;:::i;:::-;5492:119;5650:1;5675:53;5720:7;5711:6;5700:9;5696:22;5675:53;:::i;:::-;5665:63;;5621:117;5777:2;5803:50;5845:7;5836:6;5825:9;5821:22;5803:50;:::i;:::-;5793:60;;5748:115;5402:468;;;;;:::o;5876:474::-;5944:6;5952;6001:2;5989:9;5980:7;5976:23;5972:32;5969:119;;;6007:79;;:::i;:::-;5969:119;6127:1;6152:53;6197:7;6188:6;6177:9;6173:22;6152:53;:::i;:::-;6142:63;;6098:117;6254:2;6280:53;6325:7;6316:6;6305:9;6301:22;6280:53;:::i;:::-;6270:63;;6225:118;5876:474;;;;;:::o;6356:323::-;6412:6;6461:2;6449:9;6440:7;6436:23;6432:32;6429:119;;;6467:79;;:::i;:::-;6429:119;6587:1;6612:50;6654:7;6645:6;6634:9;6630:22;6612:50;:::i;:::-;6602:60;;6558:114;6356:323;;;;:::o;6685:329::-;6744:6;6793:2;6781:9;6772:7;6768:23;6764:32;6761:119;;;6799:79;;:::i;:::-;6761:119;6919:1;6944:53;6989:7;6980:6;6969:9;6965:22;6944:53;:::i;:::-;6934:63;;6890:117;6685:329;;;;:::o;7020:327::-;7078:6;7127:2;7115:9;7106:7;7102:23;7098:32;7095:119;;;7133:79;;:::i;:::-;7095:119;7253:1;7278:52;7322:7;7313:6;7302:9;7298:22;7278:52;:::i;:::-;7268:62;;7224:116;7020:327;;;;:::o;7353:349::-;7422:6;7471:2;7459:9;7450:7;7446:23;7442:32;7439:119;;;7477:79;;:::i;:::-;7439:119;7597:1;7622:63;7677:7;7668:6;7657:9;7653:22;7622:63;:::i;:::-;7612:73;;7568:127;7353:349;;;;:::o;7708:509::-;7777:6;7826:2;7814:9;7805:7;7801:23;7797:32;7794:119;;;7832:79;;:::i;:::-;7794:119;7980:1;7969:9;7965:17;7952:31;8010:18;8002:6;7999:30;7996:117;;;8032:79;;:::i;:::-;7996:117;8137:63;8192:7;8183:6;8172:9;8168:22;8137:63;:::i;:::-;8127:73;;7923:287;7708:509;;;;:::o;8223:329::-;8282:6;8331:2;8319:9;8310:7;8306:23;8302:32;8299:119;;;8337:79;;:::i;:::-;8299:119;8457:1;8482:53;8527:7;8518:6;8507:9;8503:22;8482:53;:::i;:::-;8472:63;;8428:117;8223:329;;;;:::o;8558:474::-;8626:6;8634;8683:2;8671:9;8662:7;8658:23;8654:32;8651:119;;;8689:79;;:::i;:::-;8651:119;8809:1;8834:53;8879:7;8870:6;8859:9;8855:22;8834:53;:::i;:::-;8824:63;;8780:117;8936:2;8962:53;9007:7;8998:6;8987:9;8983:22;8962:53;:::i;:::-;8952:63;;8907:118;8558:474;;;;;:::o;9038:704::-;9133:6;9141;9149;9198:2;9186:9;9177:7;9173:23;9169:32;9166:119;;;9204:79;;:::i;:::-;9166:119;9324:1;9349:53;9394:7;9385:6;9374:9;9370:22;9349:53;:::i;:::-;9339:63;;9295:117;9479:2;9468:9;9464:18;9451:32;9510:18;9502:6;9499:30;9496:117;;;9532:79;;:::i;:::-;9496:117;9645:80;9717:7;9708:6;9697:9;9693:22;9645:80;:::i;:::-;9627:98;;;;9422:313;9038:704;;;;;:::o;9748:118::-;9835:24;9853:5;9835:24;:::i;:::-;9830:3;9823:37;9748:118;;:::o;9872:157::-;9977:45;9997:24;10015:5;9997:24;:::i;:::-;9977:45;:::i;:::-;9972:3;9965:58;9872:157;;:::o;10035:109::-;10116:21;10131:5;10116:21;:::i;:::-;10111:3;10104:34;10035:109;;:::o;10150:118::-;10237:24;10255:5;10237:24;:::i;:::-;10232:3;10225:37;10150:118;;:::o;10274:360::-;10360:3;10388:38;10420:5;10388:38;:::i;:::-;10442:70;10505:6;10500:3;10442:70;:::i;:::-;10435:77;;10521:52;10566:6;10561:3;10554:4;10547:5;10543:16;10521:52;:::i;:::-;10598:29;10620:6;10598:29;:::i;:::-;10593:3;10589:39;10582:46;;10364:270;10274:360;;;;:::o;10640:364::-;10728:3;10756:39;10789:5;10756:39;:::i;:::-;10811:71;10875:6;10870:3;10811:71;:::i;:::-;10804:78;;10891:52;10936:6;10931:3;10924:4;10917:5;10913:16;10891:52;:::i;:::-;10968:29;10990:6;10968:29;:::i;:::-;10963:3;10959:39;10952:46;;10732:272;10640:364;;;;:::o;11010:377::-;11116:3;11144:39;11177:5;11144:39;:::i;:::-;11199:89;11281:6;11276:3;11199:89;:::i;:::-;11192:96;;11297:52;11342:6;11337:3;11330:4;11323:5;11319:16;11297:52;:::i;:::-;11374:6;11369:3;11365:16;11358:23;;11120:267;11010:377;;;;:::o;11417:845::-;11520:3;11557:5;11551:12;11586:36;11612:9;11586:36;:::i;:::-;11638:89;11720:6;11715:3;11638:89;:::i;:::-;11631:96;;11758:1;11747:9;11743:17;11774:1;11769:137;;;;11920:1;11915:341;;;;11736:520;;11769:137;11853:4;11849:9;11838;11834:25;11829:3;11822:38;11889:6;11884:3;11880:16;11873:23;;11769:137;;11915:341;11982:38;12014:5;11982:38;:::i;:::-;12042:1;12056:154;12070:6;12067:1;12064:13;12056:154;;;12144:7;12138:14;12134:1;12129:3;12125:11;12118:35;12194:1;12185:7;12181:15;12170:26;;12092:4;12089:1;12085:12;12080:17;;12056:154;;;12239:6;12234:3;12230:16;12223:23;;11922:334;;11736:520;;11524:738;;11417:845;;;;:::o;12268:366::-;12410:3;12431:67;12495:2;12490:3;12431:67;:::i;:::-;12424:74;;12507:93;12596:3;12507:93;:::i;:::-;12625:2;12620:3;12616:12;12609:19;;12268:366;;;:::o;12640:::-;12782:3;12803:67;12867:2;12862:3;12803:67;:::i;:::-;12796:74;;12879:93;12968:3;12879:93;:::i;:::-;12997:2;12992:3;12988:12;12981:19;;12640:366;;;:::o;13012:::-;13154:3;13175:67;13239:2;13234:3;13175:67;:::i;:::-;13168:74;;13251:93;13340:3;13251:93;:::i;:::-;13369:2;13364:3;13360:12;13353:19;;13012:366;;;:::o;13384:::-;13526:3;13547:67;13611:2;13606:3;13547:67;:::i;:::-;13540:74;;13623:93;13712:3;13623:93;:::i;:::-;13741:2;13736:3;13732:12;13725:19;;13384:366;;;:::o;13756:::-;13898:3;13919:67;13983:2;13978:3;13919:67;:::i;:::-;13912:74;;13995:93;14084:3;13995:93;:::i;:::-;14113:2;14108:3;14104:12;14097:19;;13756:366;;;:::o;14128:::-;14270:3;14291:67;14355:2;14350:3;14291:67;:::i;:::-;14284:74;;14367:93;14456:3;14367:93;:::i;:::-;14485:2;14480:3;14476:12;14469:19;;14128:366;;;:::o;14500:::-;14642:3;14663:67;14727:2;14722:3;14663:67;:::i;:::-;14656:74;;14739:93;14828:3;14739:93;:::i;:::-;14857:2;14852:3;14848:12;14841:19;;14500:366;;;:::o;14872:::-;15014:3;15035:67;15099:2;15094:3;15035:67;:::i;:::-;15028:74;;15111:93;15200:3;15111:93;:::i;:::-;15229:2;15224:3;15220:12;15213:19;;14872:366;;;:::o;15244:::-;15386:3;15407:67;15471:2;15466:3;15407:67;:::i;:::-;15400:74;;15483:93;15572:3;15483:93;:::i;:::-;15601:2;15596:3;15592:12;15585:19;;15244:366;;;:::o;15616:::-;15758:3;15779:67;15843:2;15838:3;15779:67;:::i;:::-;15772:74;;15855:93;15944:3;15855:93;:::i;:::-;15973:2;15968:3;15964:12;15957:19;;15616:366;;;:::o;15988:::-;16130:3;16151:67;16215:2;16210:3;16151:67;:::i;:::-;16144:74;;16227:93;16316:3;16227:93;:::i;:::-;16345:2;16340:3;16336:12;16329:19;;15988:366;;;:::o;16360:::-;16502:3;16523:67;16587:2;16582:3;16523:67;:::i;:::-;16516:74;;16599:93;16688:3;16599:93;:::i;:::-;16717:2;16712:3;16708:12;16701:19;;16360:366;;;:::o;16732:::-;16874:3;16895:67;16959:2;16954:3;16895:67;:::i;:::-;16888:74;;16971:93;17060:3;16971:93;:::i;:::-;17089:2;17084:3;17080:12;17073:19;;16732:366;;;:::o;17104:398::-;17263:3;17284:83;17365:1;17360:3;17284:83;:::i;:::-;17277:90;;17376:93;17465:3;17376:93;:::i;:::-;17494:1;17489:3;17485:11;17478:18;;17104:398;;;:::o;17508:366::-;17650:3;17671:67;17735:2;17730:3;17671:67;:::i;:::-;17664:74;;17747:93;17836:3;17747:93;:::i;:::-;17865:2;17860:3;17856:12;17849:19;;17508:366;;;:::o;17880:::-;18022:3;18043:67;18107:2;18102:3;18043:67;:::i;:::-;18036:74;;18119:93;18208:3;18119:93;:::i;:::-;18237:2;18232:3;18228:12;18221:19;;17880:366;;;:::o;18252:::-;18394:3;18415:67;18479:2;18474:3;18415:67;:::i;:::-;18408:74;;18491:93;18580:3;18491:93;:::i;:::-;18609:2;18604:3;18600:12;18593:19;;18252:366;;;:::o;18624:118::-;18711:24;18729:5;18711:24;:::i;:::-;18706:3;18699:37;18624:118;;:::o;18748:256::-;18860:3;18875:75;18946:3;18937:6;18875:75;:::i;:::-;18975:2;18970:3;18966:12;18959:19;;18995:3;18988:10;;18748:256;;;;:::o;19010:589::-;19235:3;19257:95;19348:3;19339:6;19257:95;:::i;:::-;19250:102;;19369:95;19460:3;19451:6;19369:95;:::i;:::-;19362:102;;19481:92;19569:3;19560:6;19481:92;:::i;:::-;19474:99;;19590:3;19583:10;;19010:589;;;;;;:::o;19605:379::-;19789:3;19811:147;19954:3;19811:147;:::i;:::-;19804:154;;19975:3;19968:10;;19605:379;;;:::o;19990:222::-;20083:4;20121:2;20110:9;20106:18;20098:26;;20134:71;20202:1;20191:9;20187:17;20178:6;20134:71;:::i;:::-;19990:222;;;;:::o;20218:640::-;20413:4;20451:3;20440:9;20436:19;20428:27;;20465:71;20533:1;20522:9;20518:17;20509:6;20465:71;:::i;:::-;20546:72;20614:2;20603:9;20599:18;20590:6;20546:72;:::i;:::-;20628;20696:2;20685:9;20681:18;20672:6;20628:72;:::i;:::-;20747:9;20741:4;20737:20;20732:2;20721:9;20717:18;20710:48;20775:76;20846:4;20837:6;20775:76;:::i;:::-;20767:84;;20218:640;;;;;;;:::o;20864:210::-;20951:4;20989:2;20978:9;20974:18;20966:26;;21002:65;21064:1;21053:9;21049:17;21040:6;21002:65;:::i;:::-;20864:210;;;;:::o;21080:222::-;21173:4;21211:2;21200:9;21196:18;21188:26;;21224:71;21292:1;21281:9;21277:17;21268:6;21224:71;:::i;:::-;21080:222;;;;:::o;21308:313::-;21421:4;21459:2;21448:9;21444:18;21436:26;;21508:9;21502:4;21498:20;21494:1;21483:9;21479:17;21472:47;21536:78;21609:4;21600:6;21536:78;:::i;:::-;21528:86;;21308:313;;;;:::o;21627:419::-;21793:4;21831:2;21820:9;21816:18;21808:26;;21880:9;21874:4;21870:20;21866:1;21855:9;21851:17;21844:47;21908:131;22034:4;21908:131;:::i;:::-;21900:139;;21627:419;;;:::o;22052:::-;22218:4;22256:2;22245:9;22241:18;22233:26;;22305:9;22299:4;22295:20;22291:1;22280:9;22276:17;22269:47;22333:131;22459:4;22333:131;:::i;:::-;22325:139;;22052:419;;;:::o;22477:::-;22643:4;22681:2;22670:9;22666:18;22658:26;;22730:9;22724:4;22720:20;22716:1;22705:9;22701:17;22694:47;22758:131;22884:4;22758:131;:::i;:::-;22750:139;;22477:419;;;:::o;22902:::-;23068:4;23106:2;23095:9;23091:18;23083:26;;23155:9;23149:4;23145:20;23141:1;23130:9;23126:17;23119:47;23183:131;23309:4;23183:131;:::i;:::-;23175:139;;22902:419;;;:::o;23327:::-;23493:4;23531:2;23520:9;23516:18;23508:26;;23580:9;23574:4;23570:20;23566:1;23555:9;23551:17;23544:47;23608:131;23734:4;23608:131;:::i;:::-;23600:139;;23327:419;;;:::o;23752:::-;23918:4;23956:2;23945:9;23941:18;23933:26;;24005:9;23999:4;23995:20;23991:1;23980:9;23976:17;23969:47;24033:131;24159:4;24033:131;:::i;:::-;24025:139;;23752:419;;;:::o;24177:::-;24343:4;24381:2;24370:9;24366:18;24358:26;;24430:9;24424:4;24420:20;24416:1;24405:9;24401:17;24394:47;24458:131;24584:4;24458:131;:::i;:::-;24450:139;;24177:419;;;:::o;24602:::-;24768:4;24806:2;24795:9;24791:18;24783:26;;24855:9;24849:4;24845:20;24841:1;24830:9;24826:17;24819:47;24883:131;25009:4;24883:131;:::i;:::-;24875:139;;24602:419;;;:::o;25027:::-;25193:4;25231:2;25220:9;25216:18;25208:26;;25280:9;25274:4;25270:20;25266:1;25255:9;25251:17;25244:47;25308:131;25434:4;25308:131;:::i;:::-;25300:139;;25027:419;;;:::o;25452:::-;25618:4;25656:2;25645:9;25641:18;25633:26;;25705:9;25699:4;25695:20;25691:1;25680:9;25676:17;25669:47;25733:131;25859:4;25733:131;:::i;:::-;25725:139;;25452:419;;;:::o;25877:::-;26043:4;26081:2;26070:9;26066:18;26058:26;;26130:9;26124:4;26120:20;26116:1;26105:9;26101:17;26094:47;26158:131;26284:4;26158:131;:::i;:::-;26150:139;;25877:419;;;:::o;26302:::-;26468:4;26506:2;26495:9;26491:18;26483:26;;26555:9;26549:4;26545:20;26541:1;26530:9;26526:17;26519:47;26583:131;26709:4;26583:131;:::i;:::-;26575:139;;26302:419;;;:::o;26727:::-;26893:4;26931:2;26920:9;26916:18;26908:26;;26980:9;26974:4;26970:20;26966:1;26955:9;26951:17;26944:47;27008:131;27134:4;27008:131;:::i;:::-;27000:139;;26727:419;;;:::o;27152:::-;27318:4;27356:2;27345:9;27341:18;27333:26;;27405:9;27399:4;27395:20;27391:1;27380:9;27376:17;27369:47;27433:131;27559:4;27433:131;:::i;:::-;27425:139;;27152:419;;;:::o;27577:::-;27743:4;27781:2;27770:9;27766:18;27758:26;;27830:9;27824:4;27820:20;27816:1;27805:9;27801:17;27794:47;27858:131;27984:4;27858:131;:::i;:::-;27850:139;;27577:419;;;:::o;28002:::-;28168:4;28206:2;28195:9;28191:18;28183:26;;28255:9;28249:4;28245:20;28241:1;28230:9;28226:17;28219:47;28283:131;28409:4;28283:131;:::i;:::-;28275:139;;28002:419;;;:::o;28427:222::-;28520:4;28558:2;28547:9;28543:18;28535:26;;28571:71;28639:1;28628:9;28624:17;28615:6;28571:71;:::i;:::-;28427:222;;;;:::o;28655:129::-;28689:6;28716:20;;:::i;:::-;28706:30;;28745:33;28773:4;28765:6;28745:33;:::i;:::-;28655:129;;;:::o;28790:75::-;28823:6;28856:2;28850:9;28840:19;;28790:75;:::o;28871:307::-;28932:4;29022:18;29014:6;29011:30;29008:56;;;29044:18;;:::i;:::-;29008:56;29082:29;29104:6;29082:29;:::i;:::-;29074:37;;29166:4;29160;29156:15;29148:23;;28871:307;;;:::o;29184:308::-;29246:4;29336:18;29328:6;29325:30;29322:56;;;29358:18;;:::i;:::-;29322:56;29396:29;29418:6;29396:29;:::i;:::-;29388:37;;29480:4;29474;29470:15;29462:23;;29184:308;;;:::o;29498:141::-;29547:4;29570:3;29562:11;;29593:3;29590:1;29583:14;29627:4;29624:1;29614:18;29606:26;;29498:141;;;:::o;29645:98::-;29696:6;29730:5;29724:12;29714:22;;29645:98;;;:::o;29749:99::-;29801:6;29835:5;29829:12;29819:22;;29749:99;;;:::o;29854:168::-;29937:11;29971:6;29966:3;29959:19;30011:4;30006:3;30002:14;29987:29;;29854:168;;;;:::o;30028:147::-;30129:11;30166:3;30151:18;;30028:147;;;;:::o;30181:169::-;30265:11;30299:6;30294:3;30287:19;30339:4;30334:3;30330:14;30315:29;;30181:169;;;;:::o;30356:148::-;30458:11;30495:3;30480:18;;30356:148;;;;:::o;30510:305::-;30550:3;30569:20;30587:1;30569:20;:::i;:::-;30564:25;;30603:20;30621:1;30603:20;:::i;:::-;30598:25;;30757:1;30689:66;30685:74;30682:1;30679:81;30676:107;;;30763:18;;:::i;:::-;30676:107;30807:1;30804;30800:9;30793:16;;30510:305;;;;:::o;30821:185::-;30861:1;30878:20;30896:1;30878:20;:::i;:::-;30873:25;;30912:20;30930:1;30912:20;:::i;:::-;30907:25;;30951:1;30941:35;;30956:18;;:::i;:::-;30941:35;30998:1;30995;30991:9;30986:14;;30821:185;;;;:::o;31012:348::-;31052:7;31075:20;31093:1;31075:20;:::i;:::-;31070:25;;31109:20;31127:1;31109:20;:::i;:::-;31104:25;;31297:1;31229:66;31225:74;31222:1;31219:81;31214:1;31207:9;31200:17;31196:105;31193:131;;;31304:18;;:::i;:::-;31193:131;31352:1;31349;31345:9;31334:20;;31012:348;;;;:::o;31366:191::-;31406:4;31426:20;31444:1;31426:20;:::i;:::-;31421:25;;31460:20;31478:1;31460:20;:::i;:::-;31455:25;;31499:1;31496;31493:8;31490:34;;;31504:18;;:::i;:::-;31490:34;31549:1;31546;31542:9;31534:17;;31366:191;;;;:::o;31563:96::-;31600:7;31629:24;31647:5;31629:24;:::i;:::-;31618:35;;31563:96;;;:::o;31665:90::-;31699:7;31742:5;31735:13;31728:21;31717:32;;31665:90;;;:::o;31761:77::-;31798:7;31827:5;31816:16;;31761:77;;;:::o;31844:149::-;31880:7;31920:66;31913:5;31909:78;31898:89;;31844:149;;;:::o;31999:126::-;32036:7;32076:42;32069:5;32065:54;32054:65;;31999:126;;;:::o;32131:77::-;32168:7;32197:5;32186:16;;32131:77;;;:::o;32214:154::-;32298:6;32293:3;32288;32275:30;32360:1;32351:6;32346:3;32342:16;32335:27;32214:154;;;:::o;32374:307::-;32442:1;32452:113;32466:6;32463:1;32460:13;32452:113;;;32551:1;32546:3;32542:11;32536:18;32532:1;32527:3;32523:11;32516:39;32488:2;32485:1;32481:10;32476:15;;32452:113;;;32583:6;32580:1;32577:13;32574:101;;;32663:1;32654:6;32649:3;32645:16;32638:27;32574:101;32423:258;32374:307;;;:::o;32687:320::-;32731:6;32768:1;32762:4;32758:12;32748:22;;32815:1;32809:4;32805:12;32836:18;32826:81;;32892:4;32884:6;32880:17;32870:27;;32826:81;32954:2;32946:6;32943:14;32923:18;32920:38;32917:84;;;32973:18;;:::i;:::-;32917:84;32738:269;32687:320;;;:::o;33013:281::-;33096:27;33118:4;33096:27;:::i;:::-;33088:6;33084:40;33226:6;33214:10;33211:22;33190:18;33178:10;33175:34;33172:62;33169:88;;;33237:18;;:::i;:::-;33169:88;33277:10;33273:2;33266:22;33056:238;33013:281;;:::o;33300:233::-;33339:3;33362:24;33380:5;33362:24;:::i;:::-;33353:33;;33408:66;33401:5;33398:77;33395:103;;;33478:18;;:::i;:::-;33395:103;33525:1;33518:5;33514:13;33507:20;;33300:233;;;:::o;33539:100::-;33578:7;33607:26;33627:5;33607:26;:::i;:::-;33596:37;;33539:100;;;:::o;33645:94::-;33684:7;33713:20;33727:5;33713:20;:::i;:::-;33702:31;;33645:94;;;:::o;33745:176::-;33777:1;33794:20;33812:1;33794:20;:::i;:::-;33789:25;;33828:20;33846:1;33828:20;:::i;:::-;33823:25;;33867:1;33857:35;;33872:18;;:::i;:::-;33857:35;33913:1;33910;33906:9;33901:14;;33745:176;;;;:::o;33927:180::-;33975:77;33972:1;33965:88;34072:4;34069:1;34062:15;34096:4;34093:1;34086:15;34113:180;34161:77;34158:1;34151:88;34258:4;34255:1;34248:15;34282:4;34279:1;34272:15;34299:180;34347:77;34344:1;34337:88;34444:4;34441:1;34434:15;34468:4;34465:1;34458:15;34485:180;34533:77;34530:1;34523:88;34630:4;34627:1;34620:15;34654:4;34651:1;34644:15;34671:180;34719:77;34716:1;34709:88;34816:4;34813:1;34806:15;34840:4;34837:1;34830:15;34857:117;34966:1;34963;34956:12;34980:117;35089:1;35086;35079:12;35103:117;35212:1;35209;35202:12;35226:117;35335:1;35332;35325:12;35349:117;35458:1;35455;35448:12;35472:117;35581:1;35578;35571:12;35595:102;35636:6;35687:2;35683:7;35678:2;35671:5;35667:14;35663:28;35653:38;;35595:102;;;:::o;35703:94::-;35736:8;35784:5;35780:2;35776:14;35755:35;;35703:94;;;:::o;35803:235::-;35943:34;35939:1;35931:6;35927:14;35920:58;36012:18;36007:2;35999:6;35995:15;35988:43;35803:235;:::o;36044:182::-;36184:34;36180:1;36172:6;36168:14;36161:58;36044:182;:::o;36232:222::-;36372:34;36368:1;36360:6;36356:14;36349:58;36441:5;36436:2;36428:6;36424:15;36417:30;36232:222;:::o;36460:220::-;36600:34;36596:1;36588:6;36584:14;36577:58;36669:3;36664:2;36656:6;36652:15;36645:28;36460:220;:::o;36686:224::-;36826:34;36822:1;36814:6;36810:14;36803:58;36895:7;36890:2;36882:6;36878:15;36871:32;36686:224;:::o;36916:225::-;37056:34;37052:1;37044:6;37040:14;37033:58;37125:8;37120:2;37112:6;37108:15;37101:33;36916:225;:::o;37147:182::-;37287:34;37283:1;37275:6;37271:14;37264:58;37147:182;:::o;37335:::-;37475:34;37471:1;37463:6;37459:14;37452:58;37335:182;:::o;37523:172::-;37663:24;37659:1;37651:6;37647:14;37640:48;37523:172;:::o;37701:223::-;37841:34;37837:1;37829:6;37825:14;37818:58;37910:6;37905:2;37897:6;37893:15;37886:31;37701:223;:::o;37930:170::-;38070:22;38066:1;38058:6;38054:14;38047:46;37930:170;:::o;38106:182::-;38246:34;38242:1;38234:6;38230:14;38223:58;38106:182;:::o;38294:177::-;38434:29;38430:1;38422:6;38418:14;38411:53;38294:177;:::o;38477:114::-;;:::o;38597:227::-;38737:34;38733:1;38725:6;38721:14;38714:58;38806:10;38801:2;38793:6;38789:15;38782:35;38597:227;:::o;38830:223::-;38970:34;38966:1;38958:6;38954:14;38947:58;39039:6;39034:2;39026:6;39022:15;39015:31;38830:223;:::o;39059:177::-;39199:29;39195:1;39187:6;39183:14;39176:53;39059:177;:::o;39242:122::-;39315:24;39333:5;39315:24;:::i;:::-;39308:5;39305:35;39295:63;;39354:1;39351;39344:12;39295:63;39242:122;:::o;39370:116::-;39440:21;39455:5;39440:21;:::i;:::-;39433:5;39430:32;39420:60;;39476:1;39473;39466:12;39420:60;39370:116;:::o;39492:122::-;39565:24;39583:5;39565:24;:::i;:::-;39558:5;39555:35;39545:63;;39604:1;39601;39594:12;39545:63;39492:122;:::o;39620:120::-;39692:23;39709:5;39692:23;:::i;:::-;39685:5;39682:34;39672:62;;39730:1;39727;39720:12;39672:62;39620:120;:::o;39746:122::-;39819:24;39837:5;39819:24;:::i;:::-;39812:5;39809:35;39799:63;;39858:1;39855;39848:12;39799:63;39746:122;:::o

Swarm Source

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