ETH Price: $2,620.10 (-2.09%)

Token

BRAINS (BRAINS)
 

Overview

Max Total Supply

251 BRAINS

Holders

77

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 BRAINS
0xe97B5678d00cCCab3a3d74B6277bB6dfEe781316
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:
Brains

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-31
*/

// Sources flattened with hardhat v2.12.1 https://hardhat.org

// File erc721a/contracts/[email protected]
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File erc721a/contracts/[email protected]

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

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom}
     * for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token
     * by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement
     * {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

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

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

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

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

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

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

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

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

            uint256 toMasked;
            uint256 end = startTokenId + quantity;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

// 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/[email protected]

// 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 @openzeppelin/contracts/utils/cryptography/[email protected]

// 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 contracts/Brains.sol

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;



contract Brains is ERC721A, Ownable {
  address[] masterminds;
  uint256 public constant MAX_HORDE = 666;
  uint256 public constant MASTERMINDS_ALLOCATED = 20;
  uint256 public constant NIGHTWALKER_ALLOCATED = 3;
  uint256 public constant PUKER_ALLOCATED = 2;
  uint256 public constant ROAMER_ALLOCATED = 2;
  bytes32 public nightwalkerDNA;
  bytes32 public pukerGenetics;
  string public baseURI;
  string public prerevealURI;
  bool public isRevealed = false;

  constructor(address[] memory _masterminds) ERC721A("BRAINS","BRAINS"){
    masterminds = _masterminds;
  }

  enum CurrentHorde{no_horde, vip_horde, premint_horde, big_horde}
  CurrentHorde public currentHorde = CurrentHorde.no_horde;

  function isMastermind(address _address) public view returns (bool) {
    bool mastermind = false;
    for(uint i = 0; i < masterminds.length; i++){
      if(_address == masterminds[i]){
        mastermind = true;
        break;
      }
    }
    return mastermind;
  }

  function setNightwalkerDNA(bytes32 _dna) external onlyOwner {
    nightwalkerDNA = _dna;
  }

  function setPukerGenetics(bytes32 _genetics) external onlyOwner {
    pukerGenetics = _genetics;
  }

  function _verify(bytes32 leaf, bool isNightwalker, bytes32[] memory proof) internal view returns (bool) {
    return MerkleProof.verify(proof, isNightwalker ? nightwalkerDNA : pukerGenetics, leaf);
  }

  function nightwalkerHarvest(uint256 amt, bytes32[] calldata proof) external {
    require(currentHorde == CurrentHorde.vip_horde, "nightwalkerHarvest has yet to begin!");
    uint256 current_mints = getMintCountFromAddress(_msgSender());
    if(isMastermind(_msgSender())){
      require(current_mints + amt < MASTERMINDS_ALLOCATED + 1, "this will exceed supply, master");
      mintBRRAAIINNSSS(amt);
    } else {
      require(_verify(keccak256(abi.encodePacked(_msgSender())), true, proof), "fuck off, zombitch");
      require(current_mints + amt < NIGHTWALKER_ALLOCATED + 1, "You cant mint any more, my love");
      mintBRRAAIINNSSS(amt);
    }
  }

  function willPukeForBRAINS(uint256 amt, bytes32[] calldata proof) external {
    require(currentHorde == CurrentHorde.premint_horde, "puking commencing.... maybe!");
    require(_verify(keccak256(abi.encodePacked(_msgSender())), false, proof), "Address is not on premint list");
    require(getMintCountFromAddress(_msgSender()) + amt < PUKER_ALLOCATED + 1, "Zombie eat your brain? You cant mint any more!");
    mintBRRAAIINNSSS(amt);
  }

  function roamerMint(uint256 amt) external {
    require(currentHorde == CurrentHorde.big_horde, "roamerMint is not yet open!");
    require(getMintCountFromAddress(_msgSender()) + amt < ROAMER_ALLOCATED + 1, "You cannot mint any more, maggotbrain.");
    mintBRRAAIINNSSS(amt);
  }

  function mintBRRAAIINNSSS(uint256 amt) private {
    require(totalMinted() + amt < MAX_HORDE + 1, "Max supply reached, fuck off!");
    _safeMint(_msgSender(), amt);
  }

  function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
      require(_exists(tokenId), "AARRGGHHHH. This token does not exist. Someone eat your brain?");
      if(!isRevealed){ return prerevealURI; }
      return bytes(_baseURI()).length > 0 ?
        string(abi.encodePacked(_baseURI(), _toString(tokenId), ".json")) :
        prerevealURI;
  }

  // erc721a override
  function _startTokenId() internal pure override returns (uint256) {
      return 1;
  }

  // returns the total amount of tokens minted
  function totalMinted() public view returns(uint256) {
      return _totalMinted();
  }

  // returns the number of tokens minted by a specific address
  function getMintCountFromAddress(address _address) public view returns(uint256) {
      return _numberMinted(_address);
  }

  // set the baseuri
  function setBaseURI(string calldata _uri) external onlyOwner {
      baseURI = _uri;
  }

  // set the prerevealURI
  function setPrerevealURI(string calldata _prerevealURI) external onlyOwner {
      prerevealURI = _prerevealURI;
  }

  // the base uri
  function _baseURI() internal view virtual override returns (string memory) {
      return baseURI;
  }

  function revealCollection() external onlyOwner {
    isRevealed = true;
  }

  function setCurrentHorde(uint256 _group) external onlyOwner {
    currentHorde = CurrentHorde(_group);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"_masterminds","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MASTERMINDS_ALLOCATED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_HORDE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NIGHTWALKER_ALLOCATED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUKER_ALLOCATED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROAMER_ALLOCATED","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentHorde","outputs":[{"internalType":"enum Brains.CurrentHorde","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getMintCountFromAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isMastermind","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nightwalkerDNA","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"nightwalkerHarvest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prerevealURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pukerGenetics","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"}],"name":"roamerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_group","type":"uint256"}],"name":"setCurrentHorde","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_dna","type":"bytes32"}],"name":"setNightwalkerDNA","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_prerevealURI","type":"string"}],"name":"setPrerevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_genetics","type":"bytes32"}],"name":"setPukerGenetics","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amt","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"willPukeForBRAINS","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff02191690836003811115620000485762000047620002ed565b5b02179055503480156200005a57600080fd5b50604051620043d5380380620043d583398181016040528101906200008091906200050a565b6040518060400160405280600681526020017f425241494e5300000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f425241494e5300000000000000000000000000000000000000000000000000008152508160029081620000fd9190620007a6565b5080600390816200010f9190620007a6565b50620001206200016860201b60201c565b6000819055505050620001486200013c6200017160201b60201c565b6200017960201b60201c565b8060099080519060200190620001609291906200023f565b50506200088d565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054828255906000526020600020908101928215620002bb579160200282015b82811115620002ba5782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000260565b5b509050620002ca9190620002ce565b5090565b5b80821115620002e9576000816000905550600101620002cf565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b6000604051905090565b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003808262000335565b810181811067ffffffffffffffff82111715620003a257620003a162000346565b5b80604052505050565b6000620003b76200031c565b9050620003c5828262000375565b919050565b600067ffffffffffffffff821115620003e857620003e762000346565b5b602082029050602081019050919050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200042b82620003fe565b9050919050565b6200043d816200041e565b81146200044957600080fd5b50565b6000815190506200045d8162000432565b92915050565b60006200047a6200047484620003ca565b620003ab565b90508083825260208201905060208402830185811115620004a0576200049f620003f9565b5b835b81811015620004cd5780620004b888826200044c565b845260208401935050602081019050620004a2565b5050509392505050565b600082601f830112620004ef57620004ee62000330565b5b81516200050184826020860162000463565b91505092915050565b60006020828403121562000523576200052262000326565b5b600082015167ffffffffffffffff8111156200054457620005436200032b565b5b6200055284828501620004d7565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005ae57607f821691505b602082108103620005c457620005c362000566565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200062e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005ef565b6200063a8683620005ef565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000687620006816200067b8462000652565b6200065c565b62000652565b9050919050565b6000819050919050565b620006a38362000666565b620006bb620006b2826200068e565b848454620005fc565b825550505050565b600090565b620006d2620006c3565b620006df81848462000698565b505050565b5b818110156200070757620006fb600082620006c8565b600181019050620006e5565b5050565b601f82111562000756576200072081620005ca565b6200072b84620005df565b810160208510156200073b578190505b620007536200074a85620005df565b830182620006e4565b50505b505050565b600082821c905092915050565b60006200077b600019846008026200075b565b1980831691505092915050565b600062000796838362000768565b9150826002028217905092915050565b620007b1826200055b565b67ffffffffffffffff811115620007cd57620007cc62000346565b5b620007d9825462000595565b620007e68282856200070b565b600060209050601f8311600181146200081e576000841562000809578287015190505b62000815858262000788565b86555062000885565b601f1984166200082e86620005ca565b60005b82811015620008585784890151825560018201915060208501945060208101905062000831565b8683101562000878578489015162000874601f89168262000768565b8355505b6001600288020188555050505b505050505050565b613b38806200089d6000396000f3fe60806040526004361061023b5760003560e01c80638da5cb5b1161012e578063d62280b2116100ab578063f3e749991161006f578063f3e749991461082b578063f769d02e14610856578063f8d9b35b1461087f578063fa80e4c6146108a8578063ff451ce4146108e55761023b565b8063d62280b214610732578063dc9227df1461075d578063e42008da14610788578063e985e9c5146107c5578063f2fde38b146108025761023b565b8063a6d5cdfd116100f2578063a6d5cdfd1461065c578063b88d4fde14610687578063be526273146106a3578063bea76cad146106cc578063c87b56dd146106f55761023b565b80638da5cb5b14610587578063924990b8146105b257806395d89b41146105dd578063a22cb46514610608578063a2309ff8146106315761023b565b80634af38aa3116101bc5780636c0360eb116101805780636c0360eb146104b25780636c595801146104dd57806370a0823114610508578063715018a6146105455780637fc5582e1461055c5761023b565b80634af38aa3146103cf5780634db42cbf146103f857806354214f691461042157806355f804b31461044c5780636352211e146104755761023b565b806318160ddd1161020357806318160ddd1461032a57806323b872dd146103555780633dcd1a821461037157806340d0b4a91461039c57806342842e0e146103b35761023b565b806301ffc9a71461024057806306fdde031461027d578063078eef28146102a8578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061273a565b610910565b6040516102749190612782565b60405180910390f35b34801561028957600080fd5b506102926109a2565b60405161029f919061282d565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906128b4565b610a34565b005b3480156102dd57600080fd5b506102f860048036038101906102f39190612937565b610a52565b60405161030591906129a5565b60405180910390f35b610328600480360381019061032391906129ec565b610ad1565b005b34801561033657600080fd5b5061033f610c15565b60405161034c9190612a3b565b60405180910390f35b61036f600480360381019061036a9190612a56565b610c2c565b005b34801561037d57600080fd5b50610386610f4e565b6040516103939190612a3b565b60405180910390f35b3480156103a857600080fd5b506103b1610f54565b005b6103cd60048036038101906103c89190612a56565b610f79565b005b3480156103db57600080fd5b506103f660048036038101906103f19190612aff565b610f99565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612937565b61113f565b005b34801561042d57600080fd5b50610436611229565b6040516104439190612782565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e91906128b4565b61123c565b005b34801561048157600080fd5b5061049c60048036038101906104979190612937565b61125a565b6040516104a991906129a5565b60405180910390f35b3480156104be57600080fd5b506104c761126c565b6040516104d4919061282d565b60405180910390f35b3480156104e957600080fd5b506104f26112fa565b6040516104ff9190612a3b565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190612b5f565b6112ff565b60405161053c9190612a3b565b60405180910390f35b34801561055157600080fd5b5061055a6113b7565b005b34801561056857600080fd5b506105716113cb565b60405161057e9190612c03565b60405180910390f35b34801561059357600080fd5b5061059c6113de565b6040516105a991906129a5565b60405180910390f35b3480156105be57600080fd5b506105c7611408565b6040516105d49190612c37565b60405180910390f35b3480156105e957600080fd5b506105f261140e565b6040516105ff919061282d565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190612c7e565b6114a0565b005b34801561063d57600080fd5b506106466115ab565b6040516106539190612a3b565b60405180910390f35b34801561066857600080fd5b506106716115ba565b60405161067e9190612c37565b60405180910390f35b6106a1600480360381019061069c9190612dee565b6115c0565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190612e9d565b611633565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190612e9d565b611645565b005b34801561070157600080fd5b5061071c60048036038101906107179190612937565b611657565b604051610729919061282d565b60405180910390f35b34801561073e57600080fd5b50610747611821565b604051610754919061282d565b60405180910390f35b34801561076957600080fd5b506107726118af565b60405161077f9190612a3b565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612b5f565b6118b4565b6040516107bc9190612782565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612eca565b611962565b6040516107f99190612782565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612b5f565b6119f6565b005b34801561083757600080fd5b50610840611a79565b60405161084d9190612a3b565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190612aff565b611a7e565b005b34801561088b57600080fd5b506108a660048036038101906108a19190612937565b611ca8565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190612b5f565b611cef565b6040516108dc9190612a3b565b60405180910390f35b3480156108f157600080fd5b506108fa611d01565b6040516109079190612a3b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109b190612f39565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd90612f39565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b610a3c611d06565b8181600d9182610a4d929190613121565b505050565b6000610a5d82611d84565b610a93576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610adc8261125a565b90508073ffffffffffffffffffffffffffffffffffffffff16610afd611de3565b73ffffffffffffffffffffffffffffffffffffffff1614610b6057610b2981610b24611de3565b611962565b610b5f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c1f611deb565b6001546000540303905090565b6000610c3782611df4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c9e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610caa84611ec0565b91509150610cc08187610cbb611de3565b611ee7565b610d0c57610cd586610cd0611de3565b611962565b610d0b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d7f8686866001611f2b565b8015610d8a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5885610e34888887611f31565b7c020000000000000000000000000000000000000000000000000000000017611f59565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ede5760006001850190506000600460008381526020019081526020016000205403610edc576000548114610edb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f468686866001611f84565b505050505050565b61029a81565b610f5c611d06565b6001600e60006101000a81548160ff021916908315150217905550565b610f94838383604051806020016040528060008152506115c0565b505050565b60026003811115610fad57610fac612b8c565b5b600e60019054906101000a900460ff166003811115610fcf57610fce612b8c565b5b1461100f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110069061323d565b60405180910390fd5b61108961101a611f8a565b60405160200161102a91906132a5565b604051602081830303815290604052805190602001206000848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050611f92565b6110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf9061330c565b60405180910390fd5b600160026110d6919061335b565b836110e76110e2611f8a565b611cef565b6110f1919061335b565b10611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890613401565b60405180910390fd5b61113a83611fb8565b505050565b60038081111561115257611151612b8c565b5b600e60019054906101000a900460ff16600381111561117457611173612b8c565b5b146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab9061346d565b60405180910390fd5b600160026111c2919061335b565b816111d36111ce611f8a565b611cef565b6111dd919061335b565b1061121d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611214906134ff565b60405180910390fd5b61122681611fb8565b50565b600e60009054906101000a900460ff1681565b611244611d06565b8181600c9182611255929190613121565b505050565b600061126582611df4565b9050919050565b600c805461127990612f39565b80601f01602080910402602001604051908101604052809291908181526020018280546112a590612f39565b80156112f25780601f106112c7576101008083540402835291602001916112f2565b820191906000526020600020905b8154815290600101906020018083116112d557829003601f168201915b505050505081565b601481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611366576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113bf611d06565b6113c9600061202e565b565b600e60019054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b60606003805461141d90612f39565b80601f016020809104026020016040519081016040528092919081815260200182805461144990612f39565b80156114965780601f1061146b57610100808354040283529160200191611496565b820191906000526020600020905b81548152906001019060200180831161147957829003601f168201915b5050505050905090565b80600760006114ad611de3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661155a611de3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161159f9190612782565b60405180910390a35050565b60006115b56120f4565b905090565b600a5481565b6115cb848484610c2c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461162d576115f684848484612107565b61162c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61163b611d06565b80600b8190555050565b61164d611d06565b80600a8190555050565b606061166282611d84565b6116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613591565b60405180910390fd5b600e60009054906101000a900460ff1661174757600d80546116c290612f39565b80601f01602080910402602001604051908101604052809291908181526020018280546116ee90612f39565b801561173b5780601f106117105761010080835404028352916020019161173b565b820191906000526020600020905b81548152906001019060200180831161171e57829003601f168201915b5050505050905061181c565b6000611751612257565b51116117e757600d805461176490612f39565b80601f016020809104026020016040519081016040528092919081815260200182805461179090612f39565b80156117dd5780601f106117b2576101008083540402835291602001916117dd565b820191906000526020600020905b8154815290600101906020018083116117c057829003601f168201915b5050505050611819565b6117ef612257565b6117f8836122e9565b604051602001611809929190613639565b6040516020818303038152906040525b90505b919050565b600d805461182e90612f39565b80601f016020809104026020016040519081016040528092919081815260200182805461185a90612f39565b80156118a75780601f1061187c576101008083540402835291602001916118a7565b820191906000526020600020905b81548152906001019060200180831161188a57829003601f168201915b505050505081565b600281565b6000806000905060005b60098054905081101561195857600981815481106118df576118de613668565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119455760019150611958565b808061195090613697565b9150506118be565b5080915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119fe611d06565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6490613751565b60405180910390fd5b611a768161202e565b50565b600381565b60016003811115611a9257611a91612b8c565b5b600e60019054906101000a900460ff166003811115611ab457611ab3612b8c565b5b14611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb906137e3565b60405180910390fd5b6000611b06611b01611f8a565b611cef565b9050611b18611b13611f8a565b6118b4565b15611b855760016014611b2b919061335b565b8482611b37919061335b565b10611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e9061384f565b60405180910390fd5b611b8084611fb8565b611ca2565b611bff611b90611f8a565b604051602001611ba091906132a5565b604051602081830303815290604052805190602001206001858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050611f92565b611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c35906138bb565b60405180910390fd5b60016003611c4c919061335b565b8482611c58919061335b565b10611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90613927565b60405180910390fd5b611ca184611fb8565b5b50505050565b611cb0611d06565b806003811115611cc357611cc2612b8c565b5b600e60016101000a81548160ff02191690836003811115611ce757611ce6612b8c565b5b021790555050565b6000611cfa82612339565b9050919050565b600281565b611d0e611f8a565b73ffffffffffffffffffffffffffffffffffffffff16611d2c6113de565b73ffffffffffffffffffffffffffffffffffffffff1614611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7990613993565b60405180910390fd5b565b600081611d8f611deb565b11158015611d9e575060005482105b8015611ddc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611e03611deb565b11611e8957600054811015611e885760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e86575b60008103611e7c576004600083600190039350838152602001908152602001600020549050611e52565b8092505050611ebb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f48868684612390565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000611faf8284611fa557600b54611fa9565b600a545b86612399565b90509392505050565b600161029a611fc7919061335b565b81611fd06115ab565b611fda919061335b565b1061201a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612011906139ff565b60405180910390fd5b61202b612025611f8a565b826123b0565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120fe611deb565b60005403905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261212d611de3565b8786866040518563ffffffff1660e01b815260040161214f9493929190613a74565b6020604051808303816000875af192505050801561218b57506040513d601f19601f820116820180604052508101906121889190613ad5565b60015b612204573d80600081146121bb576040519150601f19603f3d011682016040523d82523d6000602084013e6121c0565b606091505b5060008151036121fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461226690612f39565b80601f016020809104026020016040519081016040528092919081815260200182805461229290612f39565b80156122df5780601f106122b4576101008083540402835291602001916122df565b820191906000526020600020905b8154815290600101906020018083116122c257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561232457600184039350600a81066030018453600a8104905080612302575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b6000826123a685846123ce565b1490509392505050565b6123ca828260405180602001604052806000815250612424565b5050565b60008082905060005b845181101561241957612404828683815181106123f7576123f6613668565b5b60200260200101516124c1565b9150808061241190613697565b9150506123d7565b508091505092915050565b61242e83836124ec565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124bc57600080549050600083820390505b61246e6000868380600101945086612107565b6124a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061245b5781600054146124b957600080fd5b50505b505050565b60008183106124d9576124d482846126a7565b6124e4565b6124e383836126a7565b5b905092915050565b6000805490506000820361252c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125396000848385611f2b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125b0836125a16000866000611f31565b6125aa856126be565b17611f59565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461265157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612616565b506000820361268c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126a26000848385611f84565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612717816126e2565b811461272257600080fd5b50565b6000813590506127348161270e565b92915050565b6000602082840312156127505761274f6126d8565b5b600061275e84828501612725565b91505092915050565b60008115159050919050565b61277c81612767565b82525050565b60006020820190506127976000830184612773565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127d75780820151818401526020810190506127bc565b60008484015250505050565b6000601f19601f8301169050919050565b60006127ff8261279d565b61280981856127a8565b93506128198185602086016127b9565b612822816127e3565b840191505092915050565b6000602082019050818103600083015261284781846127f4565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126128745761287361284f565b5b8235905067ffffffffffffffff81111561289157612890612854565b5b6020830191508360018202830111156128ad576128ac612859565b5b9250929050565b600080602083850312156128cb576128ca6126d8565b5b600083013567ffffffffffffffff8111156128e9576128e86126dd565b5b6128f58582860161285e565b92509250509250929050565b6000819050919050565b61291481612901565b811461291f57600080fd5b50565b6000813590506129318161290b565b92915050565b60006020828403121561294d5761294c6126d8565b5b600061295b84828501612922565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061298f82612964565b9050919050565b61299f81612984565b82525050565b60006020820190506129ba6000830184612996565b92915050565b6129c981612984565b81146129d457600080fd5b50565b6000813590506129e6816129c0565b92915050565b60008060408385031215612a0357612a026126d8565b5b6000612a11858286016129d7565b9250506020612a2285828601612922565b9150509250929050565b612a3581612901565b82525050565b6000602082019050612a506000830184612a2c565b92915050565b600080600060608486031215612a6f57612a6e6126d8565b5b6000612a7d868287016129d7565b9350506020612a8e868287016129d7565b9250506040612a9f86828701612922565b9150509250925092565b60008083601f840112612abf57612abe61284f565b5b8235905067ffffffffffffffff811115612adc57612adb612854565b5b602083019150836020820283011115612af857612af7612859565b5b9250929050565b600080600060408486031215612b1857612b176126d8565b5b6000612b2686828701612922565b935050602084013567ffffffffffffffff811115612b4757612b466126dd565b5b612b5386828701612aa9565b92509250509250925092565b600060208284031215612b7557612b746126d8565b5b6000612b83848285016129d7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110612bcc57612bcb612b8c565b5b50565b6000819050612bdd82612bbb565b919050565b6000612bed82612bcf565b9050919050565b612bfd81612be2565b82525050565b6000602082019050612c186000830184612bf4565b92915050565b6000819050919050565b612c3181612c1e565b82525050565b6000602082019050612c4c6000830184612c28565b92915050565b612c5b81612767565b8114612c6657600080fd5b50565b600081359050612c7881612c52565b92915050565b60008060408385031215612c9557612c946126d8565b5b6000612ca3858286016129d7565b9250506020612cb485828601612c69565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cfb826127e3565b810181811067ffffffffffffffff82111715612d1a57612d19612cc3565b5b80604052505050565b6000612d2d6126ce565b9050612d398282612cf2565b919050565b600067ffffffffffffffff821115612d5957612d58612cc3565b5b612d62826127e3565b9050602081019050919050565b82818337600083830152505050565b6000612d91612d8c84612d3e565b612d23565b905082815260208101848484011115612dad57612dac612cbe565b5b612db8848285612d6f565b509392505050565b600082601f830112612dd557612dd461284f565b5b8135612de5848260208601612d7e565b91505092915050565b60008060008060808587031215612e0857612e076126d8565b5b6000612e16878288016129d7565b9450506020612e27878288016129d7565b9350506040612e3887828801612922565b925050606085013567ffffffffffffffff811115612e5957612e586126dd565b5b612e6587828801612dc0565b91505092959194509250565b612e7a81612c1e565b8114612e8557600080fd5b50565b600081359050612e9781612e71565b92915050565b600060208284031215612eb357612eb26126d8565b5b6000612ec184828501612e88565b91505092915050565b60008060408385031215612ee157612ee06126d8565b5b6000612eef858286016129d7565b9250506020612f00858286016129d7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f5157607f821691505b602082108103612f6457612f63612f0a565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612fd77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f9a565b612fe18683612f9a565b95508019841693508086168417925050509392505050565b6000819050919050565b600061301e61301961301484612901565b612ff9565b612901565b9050919050565b6000819050919050565b61303883613003565b61304c61304482613025565b848454612fa7565b825550505050565b600090565b613061613054565b61306c81848461302f565b505050565b5b8181101561309057613085600082613059565b600181019050613072565b5050565b601f8211156130d5576130a681612f75565b6130af84612f8a565b810160208510156130be578190505b6130d26130ca85612f8a565b830182613071565b50505b505050565b600082821c905092915050565b60006130f8600019846008026130da565b1980831691505092915050565b600061311183836130e7565b9150826002028217905092915050565b61312b8383612f6a565b67ffffffffffffffff81111561314457613143612cc3565b5b61314e8254612f39565b613159828285613094565b6000601f8311600181146131885760008415613176578287013590505b6131808582613105565b8655506131e8565b601f19841661319686612f75565b60005b828110156131be57848901358255600182019150602085019450602081019050613199565b868310156131db57848901356131d7601f8916826130e7565b8355505b6001600288020188555050505b50505050505050565b7f70756b696e6720636f6d6d656e63696e672e2e2e2e206d617962652100000000600082015250565b6000613227601c836127a8565b9150613232826131f1565b602082019050919050565b600060208201905081810360008301526132568161321a565b9050919050565b60008160601b9050919050565b60006132758261325d565b9050919050565b60006132878261326a565b9050919050565b61329f61329a82612984565b61327c565b82525050565b60006132b1828461328e565b60148201915081905092915050565b7f41646472657373206973206e6f74206f6e207072656d696e74206c6973740000600082015250565b60006132f6601e836127a8565b9150613301826132c0565b602082019050919050565b60006020820190508181036000830152613325816132e9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061336682612901565b915061337183612901565b92508282019050808211156133895761338861332c565b5b92915050565b7f5a6f6d6269652065617420796f757220627261696e3f20596f752063616e742060008201527f6d696e7420616e79206d6f726521000000000000000000000000000000000000602082015250565b60006133eb602e836127a8565b91506133f68261338f565b604082019050919050565b6000602082019050818103600083015261341a816133de565b9050919050565b7f726f616d65724d696e74206973206e6f7420796574206f70656e210000000000600082015250565b6000613457601b836127a8565b915061346282613421565b602082019050919050565b600060208201905081810360008301526134868161344a565b9050919050565b7f596f752063616e6e6f74206d696e7420616e79206d6f72652c206d6167676f7460008201527f627261696e2e0000000000000000000000000000000000000000000000000000602082015250565b60006134e96026836127a8565b91506134f48261348d565b604082019050919050565b60006020820190508181036000830152613518816134dc565b9050919050565b7f414152524747484848482e205468697320746f6b656e20646f6573206e6f742060008201527f65786973742e20536f6d656f6e652065617420796f757220627261696e3f0000602082015250565b600061357b603e836127a8565b91506135868261351f565b604082019050919050565b600060208201905081810360008301526135aa8161356e565b9050919050565b600081905092915050565b60006135c78261279d565b6135d181856135b1565b93506135e18185602086016127b9565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006136236005836135b1565b915061362e826135ed565b600582019050919050565b600061364582856135bc565b915061365182846135bc565b915061365c82613616565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006136a282612901565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136d4576136d361332c565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061373b6026836127a8565b9150613746826136df565b604082019050919050565b6000602082019050818103600083015261376a8161372e565b9050919050565b7f6e6967687477616c6b657248617276657374206861732079657420746f20626560008201527f67696e2100000000000000000000000000000000000000000000000000000000602082015250565b60006137cd6024836127a8565b91506137d882613771565b604082019050919050565b600060208201905081810360008301526137fc816137c0565b9050919050565b7f746869732077696c6c2065786365656420737570706c792c206d617374657200600082015250565b6000613839601f836127a8565b915061384482613803565b602082019050919050565b600060208201905081810360008301526138688161382c565b9050919050565b7f6675636b206f66662c207a6f6d62697463680000000000000000000000000000600082015250565b60006138a56012836127a8565b91506138b08261386f565b602082019050919050565b600060208201905081810360008301526138d481613898565b9050919050565b7f596f752063616e74206d696e7420616e79206d6f72652c206d79206c6f766500600082015250565b6000613911601f836127a8565b915061391c826138db565b602082019050919050565b6000602082019050818103600083015261394081613904565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061397d6020836127a8565b915061398882613947565b602082019050919050565b600060208201905081810360008301526139ac81613970565b9050919050565b7f4d617820737570706c7920726561636865642c206675636b206f666621000000600082015250565b60006139e9601d836127a8565b91506139f4826139b3565b602082019050919050565b60006020820190508181036000830152613a18816139dc565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a4682613a1f565b613a508185613a2a565b9350613a608185602086016127b9565b613a69816127e3565b840191505092915050565b6000608082019050613a896000830187612996565b613a966020830186612996565b613aa36040830185612a2c565b8181036060830152613ab58184613a3b565b905095945050505050565b600081519050613acf8161270e565b92915050565b600060208284031215613aeb57613aea6126d8565b5b6000613af984828501613ac0565b9150509291505056fea2646970667358221220d8c50d9bd210740cf4695eab7ba4252314357397247f59cd9b9db6e604a8827e64736f6c6343000811003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000004000000000000000000000000f73eb54f01f86e7c58beb13dc0c6f3fcce6e5d0700000000000000000000000034e4be561ddac409b117aad02b16b15f0379ec5b0000000000000000000000006f6ff053e3b2b9b5403bca233d8a7ce8484056f900000000000000000000000081007d72f3813f37548a938d04c2ad3c7a6517b6

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80638da5cb5b1161012e578063d62280b2116100ab578063f3e749991161006f578063f3e749991461082b578063f769d02e14610856578063f8d9b35b1461087f578063fa80e4c6146108a8578063ff451ce4146108e55761023b565b8063d62280b214610732578063dc9227df1461075d578063e42008da14610788578063e985e9c5146107c5578063f2fde38b146108025761023b565b8063a6d5cdfd116100f2578063a6d5cdfd1461065c578063b88d4fde14610687578063be526273146106a3578063bea76cad146106cc578063c87b56dd146106f55761023b565b80638da5cb5b14610587578063924990b8146105b257806395d89b41146105dd578063a22cb46514610608578063a2309ff8146106315761023b565b80634af38aa3116101bc5780636c0360eb116101805780636c0360eb146104b25780636c595801146104dd57806370a0823114610508578063715018a6146105455780637fc5582e1461055c5761023b565b80634af38aa3146103cf5780634db42cbf146103f857806354214f691461042157806355f804b31461044c5780636352211e146104755761023b565b806318160ddd1161020357806318160ddd1461032a57806323b872dd146103555780633dcd1a821461037157806340d0b4a91461039c57806342842e0e146103b35761023b565b806301ffc9a71461024057806306fdde031461027d578063078eef28146102a8578063081812fc146102d1578063095ea7b31461030e575b600080fd5b34801561024c57600080fd5b506102676004803603810190610262919061273a565b610910565b6040516102749190612782565b60405180910390f35b34801561028957600080fd5b506102926109a2565b60405161029f919061282d565b60405180910390f35b3480156102b457600080fd5b506102cf60048036038101906102ca91906128b4565b610a34565b005b3480156102dd57600080fd5b506102f860048036038101906102f39190612937565b610a52565b60405161030591906129a5565b60405180910390f35b610328600480360381019061032391906129ec565b610ad1565b005b34801561033657600080fd5b5061033f610c15565b60405161034c9190612a3b565b60405180910390f35b61036f600480360381019061036a9190612a56565b610c2c565b005b34801561037d57600080fd5b50610386610f4e565b6040516103939190612a3b565b60405180910390f35b3480156103a857600080fd5b506103b1610f54565b005b6103cd60048036038101906103c89190612a56565b610f79565b005b3480156103db57600080fd5b506103f660048036038101906103f19190612aff565b610f99565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612937565b61113f565b005b34801561042d57600080fd5b50610436611229565b6040516104439190612782565b60405180910390f35b34801561045857600080fd5b50610473600480360381019061046e91906128b4565b61123c565b005b34801561048157600080fd5b5061049c60048036038101906104979190612937565b61125a565b6040516104a991906129a5565b60405180910390f35b3480156104be57600080fd5b506104c761126c565b6040516104d4919061282d565b60405180910390f35b3480156104e957600080fd5b506104f26112fa565b6040516104ff9190612a3b565b60405180910390f35b34801561051457600080fd5b5061052f600480360381019061052a9190612b5f565b6112ff565b60405161053c9190612a3b565b60405180910390f35b34801561055157600080fd5b5061055a6113b7565b005b34801561056857600080fd5b506105716113cb565b60405161057e9190612c03565b60405180910390f35b34801561059357600080fd5b5061059c6113de565b6040516105a991906129a5565b60405180910390f35b3480156105be57600080fd5b506105c7611408565b6040516105d49190612c37565b60405180910390f35b3480156105e957600080fd5b506105f261140e565b6040516105ff919061282d565b60405180910390f35b34801561061457600080fd5b5061062f600480360381019061062a9190612c7e565b6114a0565b005b34801561063d57600080fd5b506106466115ab565b6040516106539190612a3b565b60405180910390f35b34801561066857600080fd5b506106716115ba565b60405161067e9190612c37565b60405180910390f35b6106a1600480360381019061069c9190612dee565b6115c0565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190612e9d565b611633565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190612e9d565b611645565b005b34801561070157600080fd5b5061071c60048036038101906107179190612937565b611657565b604051610729919061282d565b60405180910390f35b34801561073e57600080fd5b50610747611821565b604051610754919061282d565b60405180910390f35b34801561076957600080fd5b506107726118af565b60405161077f9190612a3b565b60405180910390f35b34801561079457600080fd5b506107af60048036038101906107aa9190612b5f565b6118b4565b6040516107bc9190612782565b60405180910390f35b3480156107d157600080fd5b506107ec60048036038101906107e79190612eca565b611962565b6040516107f99190612782565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190612b5f565b6119f6565b005b34801561083757600080fd5b50610840611a79565b60405161084d9190612a3b565b60405180910390f35b34801561086257600080fd5b5061087d60048036038101906108789190612aff565b611a7e565b005b34801561088b57600080fd5b506108a660048036038101906108a19190612937565b611ca8565b005b3480156108b457600080fd5b506108cf60048036038101906108ca9190612b5f565b611cef565b6040516108dc9190612a3b565b60405180910390f35b3480156108f157600080fd5b506108fa611d01565b6040516109079190612a3b565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096b57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099b5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109b190612f39565b80601f01602080910402602001604051908101604052809291908181526020018280546109dd90612f39565b8015610a2a5780601f106109ff57610100808354040283529160200191610a2a565b820191906000526020600020905b815481529060010190602001808311610a0d57829003601f168201915b5050505050905090565b610a3c611d06565b8181600d9182610a4d929190613121565b505050565b6000610a5d82611d84565b610a93576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610adc8261125a565b90508073ffffffffffffffffffffffffffffffffffffffff16610afd611de3565b73ffffffffffffffffffffffffffffffffffffffff1614610b6057610b2981610b24611de3565b611962565b610b5f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c1f611deb565b6001546000540303905090565b6000610c3782611df4565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610c9e576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610caa84611ec0565b91509150610cc08187610cbb611de3565b611ee7565b610d0c57610cd586610cd0611de3565b611962565b610d0b576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610d72576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610d7f8686866001611f2b565b8015610d8a57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610e5885610e34888887611f31565b7c020000000000000000000000000000000000000000000000000000000017611f59565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610ede5760006001850190506000600460008381526020019081526020016000205403610edc576000548114610edb578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f468686866001611f84565b505050505050565b61029a81565b610f5c611d06565b6001600e60006101000a81548160ff021916908315150217905550565b610f94838383604051806020016040528060008152506115c0565b505050565b60026003811115610fad57610fac612b8c565b5b600e60019054906101000a900460ff166003811115610fcf57610fce612b8c565b5b1461100f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110069061323d565b60405180910390fd5b61108961101a611f8a565b60405160200161102a91906132a5565b604051602081830303815290604052805190602001206000848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050611f92565b6110c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bf9061330c565b60405180910390fd5b600160026110d6919061335b565b836110e76110e2611f8a565b611cef565b6110f1919061335b565b10611131576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112890613401565b60405180910390fd5b61113a83611fb8565b505050565b60038081111561115257611151612b8c565b5b600e60019054906101000a900460ff16600381111561117457611173612b8c565b5b146111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab9061346d565b60405180910390fd5b600160026111c2919061335b565b816111d36111ce611f8a565b611cef565b6111dd919061335b565b1061121d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611214906134ff565b60405180910390fd5b61122681611fb8565b50565b600e60009054906101000a900460ff1681565b611244611d06565b8181600c9182611255929190613121565b505050565b600061126582611df4565b9050919050565b600c805461127990612f39565b80601f01602080910402602001604051908101604052809291908181526020018280546112a590612f39565b80156112f25780601f106112c7576101008083540402835291602001916112f2565b820191906000526020600020905b8154815290600101906020018083116112d557829003601f168201915b505050505081565b601481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611366576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113bf611d06565b6113c9600061202e565b565b600e60019054906101000a900460ff1681565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600b5481565b60606003805461141d90612f39565b80601f016020809104026020016040519081016040528092919081815260200182805461144990612f39565b80156114965780601f1061146b57610100808354040283529160200191611496565b820191906000526020600020905b81548152906001019060200180831161147957829003601f168201915b5050505050905090565b80600760006114ad611de3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661155a611de3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161159f9190612782565b60405180910390a35050565b60006115b56120f4565b905090565b600a5481565b6115cb848484610c2c565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461162d576115f684848484612107565b61162c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61163b611d06565b80600b8190555050565b61164d611d06565b80600a8190555050565b606061166282611d84565b6116a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169890613591565b60405180910390fd5b600e60009054906101000a900460ff1661174757600d80546116c290612f39565b80601f01602080910402602001604051908101604052809291908181526020018280546116ee90612f39565b801561173b5780601f106117105761010080835404028352916020019161173b565b820191906000526020600020905b81548152906001019060200180831161171e57829003601f168201915b5050505050905061181c565b6000611751612257565b51116117e757600d805461176490612f39565b80601f016020809104026020016040519081016040528092919081815260200182805461179090612f39565b80156117dd5780601f106117b2576101008083540402835291602001916117dd565b820191906000526020600020905b8154815290600101906020018083116117c057829003601f168201915b5050505050611819565b6117ef612257565b6117f8836122e9565b604051602001611809929190613639565b6040516020818303038152906040525b90505b919050565b600d805461182e90612f39565b80601f016020809104026020016040519081016040528092919081815260200182805461185a90612f39565b80156118a75780601f1061187c576101008083540402835291602001916118a7565b820191906000526020600020905b81548152906001019060200180831161188a57829003601f168201915b505050505081565b600281565b6000806000905060005b60098054905081101561195857600981815481106118df576118de613668565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119455760019150611958565b808061195090613697565b9150506118be565b5080915050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6119fe611d06565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6490613751565b60405180910390fd5b611a768161202e565b50565b600381565b60016003811115611a9257611a91612b8c565b5b600e60019054906101000a900460ff166003811115611ab457611ab3612b8c565b5b14611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb906137e3565b60405180910390fd5b6000611b06611b01611f8a565b611cef565b9050611b18611b13611f8a565b6118b4565b15611b855760016014611b2b919061335b565b8482611b37919061335b565b10611b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6e9061384f565b60405180910390fd5b611b8084611fb8565b611ca2565b611bff611b90611f8a565b604051602001611ba091906132a5565b604051602081830303815290604052805190602001206001858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050611f92565b611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c35906138bb565b60405180910390fd5b60016003611c4c919061335b565b8482611c58919061335b565b10611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90613927565b60405180910390fd5b611ca184611fb8565b5b50505050565b611cb0611d06565b806003811115611cc357611cc2612b8c565b5b600e60016101000a81548160ff02191690836003811115611ce757611ce6612b8c565b5b021790555050565b6000611cfa82612339565b9050919050565b600281565b611d0e611f8a565b73ffffffffffffffffffffffffffffffffffffffff16611d2c6113de565b73ffffffffffffffffffffffffffffffffffffffff1614611d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7990613993565b60405180910390fd5b565b600081611d8f611deb565b11158015611d9e575060005482105b8015611ddc575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b60008082905080611e03611deb565b11611e8957600054811015611e885760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603611e86575b60008103611e7c576004600083600190039350838152602001908152602001600020549050611e52565b8092505050611ebb565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611f48868684612390565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b600033905090565b6000611faf8284611fa557600b54611fa9565b600a545b86612399565b90509392505050565b600161029a611fc7919061335b565b81611fd06115ab565b611fda919061335b565b1061201a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612011906139ff565b60405180910390fd5b61202b612025611f8a565b826123b0565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006120fe611deb565b60005403905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261212d611de3565b8786866040518563ffffffff1660e01b815260040161214f9493929190613a74565b6020604051808303816000875af192505050801561218b57506040513d601f19601f820116820180604052508101906121889190613ad5565b60015b612204573d80600081146121bb576040519150601f19603f3d011682016040523d82523d6000602084013e6121c0565b606091505b5060008151036121fc576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600c805461226690612f39565b80601f016020809104026020016040519081016040528092919081815260200182805461229290612f39565b80156122df5780601f106122b4576101008083540402835291602001916122df565b820191906000526020600020905b8154815290600101906020018083116122c257829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561232457600184039350600a81066030018453600a8104905080612302575b50828103602084039350808452505050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b60009392505050565b6000826123a685846123ce565b1490509392505050565b6123ca828260405180602001604052806000815250612424565b5050565b60008082905060005b845181101561241957612404828683815181106123f7576123f6613668565b5b60200260200101516124c1565b9150808061241190613697565b9150506123d7565b508091505092915050565b61242e83836124ec565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124bc57600080549050600083820390505b61246e6000868380600101945086612107565b6124a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061245b5781600054146124b957600080fd5b50505b505050565b60008183106124d9576124d482846126a7565b6124e4565b6124e383836126a7565b5b905092915050565b6000805490506000820361252c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125396000848385611f2b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506125b0836125a16000866000611f31565b6125aa856126be565b17611f59565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461265157808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612616565b506000820361268c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506126a26000848385611f84565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612717816126e2565b811461272257600080fd5b50565b6000813590506127348161270e565b92915050565b6000602082840312156127505761274f6126d8565b5b600061275e84828501612725565b91505092915050565b60008115159050919050565b61277c81612767565b82525050565b60006020820190506127976000830184612773565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156127d75780820151818401526020810190506127bc565b60008484015250505050565b6000601f19601f8301169050919050565b60006127ff8261279d565b61280981856127a8565b93506128198185602086016127b9565b612822816127e3565b840191505092915050565b6000602082019050818103600083015261284781846127f4565b905092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126128745761287361284f565b5b8235905067ffffffffffffffff81111561289157612890612854565b5b6020830191508360018202830111156128ad576128ac612859565b5b9250929050565b600080602083850312156128cb576128ca6126d8565b5b600083013567ffffffffffffffff8111156128e9576128e86126dd565b5b6128f58582860161285e565b92509250509250929050565b6000819050919050565b61291481612901565b811461291f57600080fd5b50565b6000813590506129318161290b565b92915050565b60006020828403121561294d5761294c6126d8565b5b600061295b84828501612922565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061298f82612964565b9050919050565b61299f81612984565b82525050565b60006020820190506129ba6000830184612996565b92915050565b6129c981612984565b81146129d457600080fd5b50565b6000813590506129e6816129c0565b92915050565b60008060408385031215612a0357612a026126d8565b5b6000612a11858286016129d7565b9250506020612a2285828601612922565b9150509250929050565b612a3581612901565b82525050565b6000602082019050612a506000830184612a2c565b92915050565b600080600060608486031215612a6f57612a6e6126d8565b5b6000612a7d868287016129d7565b9350506020612a8e868287016129d7565b9250506040612a9f86828701612922565b9150509250925092565b60008083601f840112612abf57612abe61284f565b5b8235905067ffffffffffffffff811115612adc57612adb612854565b5b602083019150836020820283011115612af857612af7612859565b5b9250929050565b600080600060408486031215612b1857612b176126d8565b5b6000612b2686828701612922565b935050602084013567ffffffffffffffff811115612b4757612b466126dd565b5b612b5386828701612aa9565b92509250509250925092565b600060208284031215612b7557612b746126d8565b5b6000612b83848285016129d7565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b60048110612bcc57612bcb612b8c565b5b50565b6000819050612bdd82612bbb565b919050565b6000612bed82612bcf565b9050919050565b612bfd81612be2565b82525050565b6000602082019050612c186000830184612bf4565b92915050565b6000819050919050565b612c3181612c1e565b82525050565b6000602082019050612c4c6000830184612c28565b92915050565b612c5b81612767565b8114612c6657600080fd5b50565b600081359050612c7881612c52565b92915050565b60008060408385031215612c9557612c946126d8565b5b6000612ca3858286016129d7565b9250506020612cb485828601612c69565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612cfb826127e3565b810181811067ffffffffffffffff82111715612d1a57612d19612cc3565b5b80604052505050565b6000612d2d6126ce565b9050612d398282612cf2565b919050565b600067ffffffffffffffff821115612d5957612d58612cc3565b5b612d62826127e3565b9050602081019050919050565b82818337600083830152505050565b6000612d91612d8c84612d3e565b612d23565b905082815260208101848484011115612dad57612dac612cbe565b5b612db8848285612d6f565b509392505050565b600082601f830112612dd557612dd461284f565b5b8135612de5848260208601612d7e565b91505092915050565b60008060008060808587031215612e0857612e076126d8565b5b6000612e16878288016129d7565b9450506020612e27878288016129d7565b9350506040612e3887828801612922565b925050606085013567ffffffffffffffff811115612e5957612e586126dd565b5b612e6587828801612dc0565b91505092959194509250565b612e7a81612c1e565b8114612e8557600080fd5b50565b600081359050612e9781612e71565b92915050565b600060208284031215612eb357612eb26126d8565b5b6000612ec184828501612e88565b91505092915050565b60008060408385031215612ee157612ee06126d8565b5b6000612eef858286016129d7565b9250506020612f00858286016129d7565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f5157607f821691505b602082108103612f6457612f63612f0a565b5b50919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302612fd77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612f9a565b612fe18683612f9a565b95508019841693508086168417925050509392505050565b6000819050919050565b600061301e61301961301484612901565b612ff9565b612901565b9050919050565b6000819050919050565b61303883613003565b61304c61304482613025565b848454612fa7565b825550505050565b600090565b613061613054565b61306c81848461302f565b505050565b5b8181101561309057613085600082613059565b600181019050613072565b5050565b601f8211156130d5576130a681612f75565b6130af84612f8a565b810160208510156130be578190505b6130d26130ca85612f8a565b830182613071565b50505b505050565b600082821c905092915050565b60006130f8600019846008026130da565b1980831691505092915050565b600061311183836130e7565b9150826002028217905092915050565b61312b8383612f6a565b67ffffffffffffffff81111561314457613143612cc3565b5b61314e8254612f39565b613159828285613094565b6000601f8311600181146131885760008415613176578287013590505b6131808582613105565b8655506131e8565b601f19841661319686612f75565b60005b828110156131be57848901358255600182019150602085019450602081019050613199565b868310156131db57848901356131d7601f8916826130e7565b8355505b6001600288020188555050505b50505050505050565b7f70756b696e6720636f6d6d656e63696e672e2e2e2e206d617962652100000000600082015250565b6000613227601c836127a8565b9150613232826131f1565b602082019050919050565b600060208201905081810360008301526132568161321a565b9050919050565b60008160601b9050919050565b60006132758261325d565b9050919050565b60006132878261326a565b9050919050565b61329f61329a82612984565b61327c565b82525050565b60006132b1828461328e565b60148201915081905092915050565b7f41646472657373206973206e6f74206f6e207072656d696e74206c6973740000600082015250565b60006132f6601e836127a8565b9150613301826132c0565b602082019050919050565b60006020820190508181036000830152613325816132e9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061336682612901565b915061337183612901565b92508282019050808211156133895761338861332c565b5b92915050565b7f5a6f6d6269652065617420796f757220627261696e3f20596f752063616e742060008201527f6d696e7420616e79206d6f726521000000000000000000000000000000000000602082015250565b60006133eb602e836127a8565b91506133f68261338f565b604082019050919050565b6000602082019050818103600083015261341a816133de565b9050919050565b7f726f616d65724d696e74206973206e6f7420796574206f70656e210000000000600082015250565b6000613457601b836127a8565b915061346282613421565b602082019050919050565b600060208201905081810360008301526134868161344a565b9050919050565b7f596f752063616e6e6f74206d696e7420616e79206d6f72652c206d6167676f7460008201527f627261696e2e0000000000000000000000000000000000000000000000000000602082015250565b60006134e96026836127a8565b91506134f48261348d565b604082019050919050565b60006020820190508181036000830152613518816134dc565b9050919050565b7f414152524747484848482e205468697320746f6b656e20646f6573206e6f742060008201527f65786973742e20536f6d656f6e652065617420796f757220627261696e3f0000602082015250565b600061357b603e836127a8565b91506135868261351f565b604082019050919050565b600060208201905081810360008301526135aa8161356e565b9050919050565b600081905092915050565b60006135c78261279d565b6135d181856135b1565b93506135e18185602086016127b9565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006136236005836135b1565b915061362e826135ed565b600582019050919050565b600061364582856135bc565b915061365182846135bc565b915061365c82613616565b91508190509392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006136a282612901565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036136d4576136d361332c565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061373b6026836127a8565b9150613746826136df565b604082019050919050565b6000602082019050818103600083015261376a8161372e565b9050919050565b7f6e6967687477616c6b657248617276657374206861732079657420746f20626560008201527f67696e2100000000000000000000000000000000000000000000000000000000602082015250565b60006137cd6024836127a8565b91506137d882613771565b604082019050919050565b600060208201905081810360008301526137fc816137c0565b9050919050565b7f746869732077696c6c2065786365656420737570706c792c206d617374657200600082015250565b6000613839601f836127a8565b915061384482613803565b602082019050919050565b600060208201905081810360008301526138688161382c565b9050919050565b7f6675636b206f66662c207a6f6d62697463680000000000000000000000000000600082015250565b60006138a56012836127a8565b91506138b08261386f565b602082019050919050565b600060208201905081810360008301526138d481613898565b9050919050565b7f596f752063616e74206d696e7420616e79206d6f72652c206d79206c6f766500600082015250565b6000613911601f836127a8565b915061391c826138db565b602082019050919050565b6000602082019050818103600083015261394081613904565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061397d6020836127a8565b915061398882613947565b602082019050919050565b600060208201905081810360008301526139ac81613970565b9050919050565b7f4d617820737570706c7920726561636865642c206675636b206f666621000000600082015250565b60006139e9601d836127a8565b91506139f4826139b3565b602082019050919050565b60006020820190508181036000830152613a18816139dc565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613a4682613a1f565b613a508185613a2a565b9350613a608185602086016127b9565b613a69816127e3565b840191505092915050565b6000608082019050613a896000830187612996565b613a966020830186612996565b613aa36040830185612a2c565b8181036060830152613ab58184613a3b565b905095945050505050565b600081519050613acf8161270e565b92915050565b600060208284031215613aeb57613aea6126d8565b5b6000613af984828501613ac0565b9150509291505056fea2646970667358221220d8c50d9bd210740cf4695eab7ba4252314357397247f59cd9b9db6e604a8827e64736f6c63430008110033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000004000000000000000000000000f73eb54f01f86e7c58beb13dc0c6f3fcce6e5d0700000000000000000000000034e4be561ddac409b117aad02b16b15f0379ec5b0000000000000000000000006f6ff053e3b2b9b5403bca233d8a7ce8484056f900000000000000000000000081007d72f3813f37548a938d04c2ad3c7a6517b6

-----Decoded View---------------
Arg [0] : _masterminds (address[]): 0xf73Eb54F01F86e7C58bEB13dc0c6f3fcCE6E5d07,0x34e4BE561DDaC409b117AAD02B16B15f0379eC5b,0x6f6fF053e3B2B9b5403bca233D8a7Ce8484056f9,0x81007D72f3813F37548a938D04c2AD3C7A6517b6

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [2] : 000000000000000000000000f73eb54f01f86e7c58beb13dc0c6f3fcce6e5d07
Arg [3] : 00000000000000000000000034e4be561ddac409b117aad02b16b15f0379ec5b
Arg [4] : 0000000000000000000000006f6ff053e3b2b9b5403bca233d8a7ce8484056f9
Arg [5] : 00000000000000000000000081007d72f3813f37548a938d04c2ad3c7a6517b6


Deployed Bytecode Sourcemap

63938:4452:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18475:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19377:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67943:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25868:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25301:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15128:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29507:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64005:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;68196:77;;;;;;;;;;;;;:::i;:::-;;32428:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66032:444;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66482:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64379:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;67820:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20770:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64322:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64049:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16312:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54292:103;;;;;;;;;;;;;:::i;:::-;;64598:56;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53644:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64289:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19553:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26426:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67509:88;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64255:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33219:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;65044:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64944:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;66951:386;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64348:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64206:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64661:277;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26817:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54550:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64104:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65361:665;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;68279:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;67667:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;64158:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18475:639;18560:4;18899:10;18884:25;;:11;:25;;;;:102;;;;18976:10;18961:25;;:11;:25;;;;18884:102;:179;;;;19053:10;19038:25;;:11;:25;;;;18884:179;18864:199;;18475:639;;;:::o;19377:100::-;19431:13;19464:5;19457:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19377:100;:::o;67943:118::-;53530:13;:11;:13::i;:::-;68042::::1;;68027:12;:28;;;;;;;:::i;:::-;;67943:118:::0;;:::o;25868:218::-;25944:7;25969:16;25977:7;25969;:16::i;:::-;25964:64;;25994:34;;;;;;;;;;;;;;25964:64;26048:15;:24;26064:7;26048:24;;;;;;;;;;;:30;;;;;;;;;;;;26041:37;;25868:218;;;:::o;25301:408::-;25390:13;25406:16;25414:7;25406;:16::i;:::-;25390:32;;25462:5;25439:28;;:19;:17;:19::i;:::-;:28;;;25435:175;;25487:44;25504:5;25511:19;:17;:19::i;:::-;25487:16;:44::i;:::-;25482:128;;25559:35;;;;;;;;;;;;;;25482:128;25435:175;25655:2;25622:15;:24;25638:7;25622:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;25693:7;25689:2;25673:28;;25682:5;25673:28;;;;;;;;;;;;25379:330;25301:408;;:::o;15128:323::-;15189:7;15417:15;:13;:15::i;:::-;15402:12;;15386:13;;:28;:46;15379:53;;15128:323;:::o;29507:2825::-;29649:27;29679;29698:7;29679:18;:27::i;:::-;29649:57;;29764:4;29723:45;;29739:19;29723:45;;;29719:86;;29777:28;;;;;;;;;;;;;;29719:86;29819:27;29848:23;29875:35;29902:7;29875:26;:35::i;:::-;29818:92;;;;30010:68;30035:15;30052:4;30058:19;:17;:19::i;:::-;30010:24;:68::i;:::-;30005:180;;30098:43;30115:4;30121:19;:17;:19::i;:::-;30098:16;:43::i;:::-;30093:92;;30150:35;;;;;;;;;;;;;;30093:92;30005:180;30216:1;30202:16;;:2;:16;;;30198:52;;30227:23;;;;;;;;;;;;;;30198:52;30263:43;30285:4;30291:2;30295:7;30304:1;30263:21;:43::i;:::-;30399:15;30396:160;;;30539:1;30518:19;30511:30;30396:160;30936:18;:24;30955:4;30936:24;;;;;;;;;;;;;;;;30934:26;;;;;;;;;;;;31005:18;:22;31024:2;31005:22;;;;;;;;;;;;;;;;31003:24;;;;;;;;;;;31327:146;31364:2;31413:45;31428:4;31434:2;31438:19;31413:14;:45::i;:::-;11527:8;31385:73;31327:18;:146::i;:::-;31298:17;:26;31316:7;31298:26;;;;;;;;;;;:175;;;;31644:1;11527:8;31593:19;:47;:52;31589:627;;31666:19;31698:1;31688:7;:11;31666:33;;31855:1;31821:17;:30;31839:11;31821:30;;;;;;;;;;;;:35;31817:384;;31959:13;;31944:11;:28;31940:242;;32139:19;32106:17;:30;32124:11;32106:30;;;;;;;;;;;:52;;;;31940:242;31817:384;31647:569;31589:627;32263:7;32259:2;32244:27;;32253:4;32244:27;;;;;;;;;;;;32282:42;32303:4;32309:2;32313:7;32322:1;32282:20;:42::i;:::-;29638:2694;;;29507:2825;;;:::o;64005:39::-;64041:3;64005:39;:::o;68196:77::-;53530:13;:11;:13::i;:::-;68263:4:::1;68250:10;;:17;;;;;;;;;;;;;;;;;;68196:77::o:0;32428:193::-;32574:39;32591:4;32597:2;32601:7;32574:39;;;;;;;;;;;;:16;:39::i;:::-;32428:193;;;:::o;66032:444::-;66138:26;66122:42;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:42;;;;;;;;:::i;:::-;;;66114:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;66212:64;66247:12;:10;:12::i;:::-;66230:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;66220:41;;;;;;66263:5;66270;;66212:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:64::i;:::-;66204:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;66390:1;64200;66372:19;;;;:::i;:::-;66366:3;66326:37;66350:12;:10;:12::i;:::-;66326:23;:37::i;:::-;:43;;;;:::i;:::-;:65;66318:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;66449:21;66466:3;66449:16;:21::i;:::-;66032:444;;;:::o;66482:285::-;66555:22;66539:38;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:38;;;;;;;;:::i;:::-;;;66531:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;66689:1;64249;66670:20;;;;:::i;:::-;66664:3;66624:37;66648:12;:10;:12::i;:::-;66624:23;:37::i;:::-;:43;;;;:::i;:::-;:66;66616:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;66740:21;66757:3;66740:16;:21::i;:::-;66482:285;:::o;64379:30::-;;;;;;;;;;;;;:::o;67820:90::-;53530:13;:11;:13::i;:::-;67900:4:::1;;67890:7;:14;;;;;;;:::i;:::-;;67820:90:::0;;:::o;20770:152::-;20842:7;20885:27;20904:7;20885:18;:27::i;:::-;20862:52;;20770:152;;;:::o;64322:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64049:50::-;64097:2;64049:50;:::o;16312:233::-;16384:7;16425:1;16408:19;;:5;:19;;;16404:60;;16436:28;;;;;;;;;;;;;;16404:60;10471:13;16482:18;:25;16501:5;16482:25;;;;;;;;;;;;;;;;:55;16475:62;;16312:233;;;:::o;54292:103::-;53530:13;:11;:13::i;:::-;54357:30:::1;54384:1;54357:18;:30::i;:::-;54292:103::o:0;64598:56::-;;;;;;;;;;;;;:::o;53644:87::-;53690:7;53717:6;;;;;;;;;;;53710:13;;53644:87;:::o;64289:28::-;;;;:::o;19553:104::-;19609:13;19642:7;19635:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19553:104;:::o;26426:234::-;26573:8;26521:18;:39;26540:19;:17;:19::i;:::-;26521:39;;;;;;;;;;;;;;;:49;26561:8;26521:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26633:8;26597:55;;26612:19;:17;:19::i;:::-;26597:55;;;26643:8;26597:55;;;;;;:::i;:::-;;;;;;;;26426:234;;:::o;67509:88::-;67552:7;67577:14;:12;:14::i;:::-;67570:21;;67509:88;:::o;64255:29::-;;;;:::o;33219:407::-;33394:31;33407:4;33413:2;33417:7;33394:12;:31::i;:::-;33458:1;33440:2;:14;;;:19;33436:183;;33479:56;33510:4;33516:2;33520:7;33529:5;33479:30;:56::i;:::-;33474:145;;33563:40;;;;;;;;;;;;;;33474:145;33436:183;33219:407;;;;:::o;65044:102::-;53530:13;:11;:13::i;:::-;65131:9:::1;65115:13;:25;;;;65044:102:::0;:::o;64944:94::-;53530:13;:11;:13::i;:::-;65028:4:::1;65011:14;:21;;;;64944:94:::0;:::o;66951:386::-;67024:13;67056:16;67064:7;67056;:16::i;:::-;67048:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;67152:10;;;;;;;;;;;67148:39;;67172:12;67165:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67148:39;67229:1;67208:10;:8;:10::i;:::-;67202:24;:28;:129;;67319:12;67202:129;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67266:10;:8;:10::i;:::-;67278:18;67288:7;67278:9;:18::i;:::-;67249:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;67202:129;67195:136;;66951:386;;;;:::o;64348:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;64206:44::-;64249:1;64206:44;:::o;64661:277::-;64722:4;64735:15;64753:5;64735:23;;64769:6;64765:144;64785:11;:18;;;;64781:1;:22;64765:144;;;64833:11;64845:1;64833:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;64821:26;;:8;:26;;;64818:84;;64872:4;64859:17;;64887:5;;64818:84;64805:3;;;;;:::i;:::-;;;;64765:144;;;;64922:10;64915:17;;;64661:277;;;:::o;26817:164::-;26914:4;26938:18;:25;26957:5;26938:25;;;;;;;;;;;;;;;:35;26964:8;26938:35;;;;;;;;;;;;;;;;;;;;;;;;;26931:42;;26817:164;;;;:::o;54550:201::-;53530:13;:11;:13::i;:::-;54659:1:::1;54639:22;;:8;:22;;::::0;54631:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;54715:28;54734:8;54715:18;:28::i;:::-;54550:201:::0;:::o;64104:49::-;64152:1;64104:49;:::o;65361:665::-;65468:22;65452:38;;;;;;;;:::i;:::-;;:12;;;;;;;;;;;:38;;;;;;;;:::i;:::-;;;65444:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;65538:21;65562:37;65586:12;:10;:12::i;:::-;65562:23;:37::i;:::-;65538:61;;65609:26;65622:12;:10;:12::i;:::-;65609;:26::i;:::-;65606:415;;;65699:1;64097:2;65675:25;;;;:::i;:::-;65669:3;65653:13;:19;;;;:::i;:::-;:47;65645:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;65745:21;65762:3;65745:16;:21::i;:::-;65606:415;;;65797:63;65832:12;:10;:12::i;:::-;65815:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;65805:41;;;;;;65848:4;65854:5;;65797:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:7;:63::i;:::-;65789:94;;;;;;;;;;;;:::i;:::-;;;;;;;;;65946:1;64152;65922:25;;;;:::i;:::-;65916:3;65900:13;:19;;;;:::i;:::-;:47;65892:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;65992:21;66009:3;65992:16;:21::i;:::-;65606:415;65437:589;65361:665;;;:::o;68279:108::-;53530:13;:11;:13::i;:::-;68374:6:::1;68361:20;;;;;;;;:::i;:::-;;68346:12;;:35;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;68279:108:::0;:::o;67667:125::-;67738:7;67763:23;67777:8;67763:13;:23::i;:::-;67756:30;;67667:125;;;:::o;64158:43::-;64200:1;64158:43;:::o;53809:132::-;53884:12;:10;:12::i;:::-;53873:23;;:7;:5;:7::i;:::-;:23;;;53865:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53809:132::o;27239:282::-;27304:4;27360:7;27341:15;:13;:15::i;:::-;:26;;:66;;;;;27394:13;;27384:7;:23;27341:66;:153;;;;;27493:1;11247:8;27445:17;:26;27463:7;27445:26;;;;;;;;;;;;:44;:49;27341:153;27321:173;;27239:282;;;:::o;49547:105::-;49607:7;49634:10;49627:17;;49547:105;:::o;67366:89::-;67423:7;67448:1;67441:8;;67366:89;:::o;21925:1275::-;21992:7;22012:12;22027:7;22012:22;;22095:4;22076:15;:13;:15::i;:::-;:23;22072:1061;;22129:13;;22122:4;:20;22118:1015;;;22167:14;22184:17;:23;22202:4;22184:23;;;;;;;;;;;;22167:40;;22301:1;11247:8;22273:6;:24;:29;22269:845;;22938:113;22955:1;22945:6;:11;22938:113;;22998:17;:25;23016:6;;;;;;;22998:25;;;;;;;;;;;;22989:34;;22938:113;;;23084:6;23077:13;;;;;;22269:845;22144:989;22118:1015;22072:1061;23161:31;;;;;;;;;;;;;;21925:1275;;;;:::o;28402:485::-;28504:27;28533:23;28574:38;28615:15;:24;28631:7;28615:24;;;;;;;;;;;28574:65;;28792:18;28769:41;;28849:19;28843:26;28824:45;;28754:126;28402:485;;;:::o;27630:659::-;27779:11;27944:16;27937:5;27933:28;27924:37;;28104:16;28093:9;28089:32;28076:45;;28254:15;28243:9;28240:30;28232:5;28221:9;28218:20;28215:56;28205:66;;27630:659;;;;;:::o;34288:159::-;;;;;:::o;48856:311::-;48991:7;49011:16;11651:3;49037:19;:41;;49011:68;;11651:3;49105:31;49116:4;49122:2;49126:9;49105:10;:31::i;:::-;49097:40;;:62;;49090:69;;;48856:311;;;;;:::o;23748:450::-;23828:14;23996:16;23989:5;23985:28;23976:37;;24173:5;24159:11;24134:23;24130:41;24127:52;24120:5;24117:63;24107:73;;23748:450;;;;:::o;35112:158::-;;;;;:::o;52191:98::-;52244:7;52271:10;52264:17;;52191:98;:::o;65152:203::-;65250:4;65270:79;65289:5;65296:13;:46;;65329:13;;65296:46;;;65312:14;;65296:46;65344:4;65270:18;:79::i;:::-;65263:86;;65152:203;;;;;:::o;66773:172::-;66869:1;64041:3;66857:13;;;;:::i;:::-;66851:3;66835:13;:11;:13::i;:::-;:19;;;;:::i;:::-;:35;66827:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;66911:28;66921:12;:10;:12::i;:::-;66935:3;66911:9;:28::i;:::-;66773:172;:::o;54911:191::-;54985:16;55004:6;;;;;;;;;;;54985:25;;55030:8;55021:6;;:17;;;;;;;;;;;;;;;;;;55085:8;55054:40;;55075:8;55054:40;;;;;;;;;;;;54974:128;54911:191;:::o;15549:296::-;15604:7;15811:15;:13;:15::i;:::-;15795:13;;:31;15788:38;;15549:296;:::o;35710:716::-;35873:4;35919:2;35894:45;;;35940:19;:17;:19::i;:::-;35961:4;35967:7;35976:5;35894:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35890:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36194:1;36177:6;:13;:18;36173:235;;36223:40;;;;;;;;;;;;;;36173:235;36366:6;36360:13;36351:6;36347:2;36343:15;36336:38;35890:529;36063:54;;;36053:64;;;:6;:64;;;;36046:71;;;35710:716;;;;;;:::o;68086:104::-;68146:13;68177:7;68170:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68086:104;:::o;49754:1745::-;49819:17;50253:4;50246;50240:11;50236:22;50345:1;50339:4;50332:15;50420:4;50417:1;50413:12;50406:19;;50502:1;50497:3;50490:14;50606:3;50845:5;50827:428;50853:1;50827:428;;;50893:1;50888:3;50884:11;50877:18;;51064:2;51058:4;51054:13;51050:2;51046:22;51041:3;51033:36;51158:2;51152:4;51148:13;51140:21;;51225:4;50827:428;51215:25;50827:428;50831:21;51294:3;51289;51285:13;51409:4;51404:3;51400:14;51393:21;;51474:6;51469:3;51462:19;49858:1634;;;49754:1745;;;:::o;16627:178::-;16688:7;10471:13;10609:2;16716:18;:25;16735:5;16716:25;;;;;;;;;;;;;;;;:50;;16715:82;16708:89;;16627:178;;;:::o;48557:147::-;48694:6;48557:147;;;;;:::o;56334:190::-;56459:4;56512;56483:25;56496:5;56503:4;56483:12;:25::i;:::-;:33;56476:40;;56334:190;;;;;:::o;43379:112::-;43456:27;43466:2;43470:8;43456:27;;;;;;;;;;;;:9;:27::i;:::-;43379:112;;:::o;57201:296::-;57284:7;57304:20;57327:4;57304:27;;57347:9;57342:118;57366:5;:12;57362:1;:16;57342:118;;;57415:33;57425:12;57439:5;57445:1;57439:8;;;;;;;;:::i;:::-;;;;;;;;57415:9;:33::i;:::-;57400:48;;57380:3;;;;;:::i;:::-;;;;57342:118;;;;57477:12;57470:19;;;57201:296;;;;:::o;42606:689::-;42737:19;42743:2;42747:8;42737:5;:19::i;:::-;42816:1;42798:2;:14;;;:19;42794:483;;42838:11;42852:13;;42838:27;;42884:13;42906:8;42900:3;:14;42884:30;;42933:233;42964:62;43003:1;43007:2;43011:7;;;;;;43020:5;42964:30;:62::i;:::-;42959:167;;43062:40;;;;;;;;;;;;;;42959:167;43161:3;43153:5;:11;42933:233;;43248:3;43231:13;;:20;43227:34;;43253:8;;;43227:34;42819:458;;42794:483;42606:689;;;:::o;63408:149::-;63471:7;63502:1;63498;:5;:51;;63529:20;63544:1;63547;63529:14;:20::i;:::-;63498:51;;;63506:20;63521:1;63524;63506:14;:20::i;:::-;63498:51;63491:58;;63408:149;;;;:::o;36888:2966::-;36961:20;36984:13;;36961:36;;37024:1;37012:8;:13;37008:44;;37034:18;;;;;;;;;;;;;;37008:44;37065:61;37095:1;37099:2;37103:12;37117:8;37065:21;:61::i;:::-;37609:1;10609:2;37579:1;:26;;37578:32;37566:8;:45;37540:18;:22;37559:2;37540:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;37888:139;37925:2;37979:33;38002:1;38006:2;38010:1;37979:14;:33::i;:::-;37946:30;37967:8;37946:20;:30::i;:::-;:66;37888:18;:139::i;:::-;37854:17;:31;37872:12;37854:31;;;;;;;;;;;:173;;;;38044:16;38075:11;38104:8;38089:12;:23;38075:37;;38625:16;38621:2;38617:25;38605:37;;38997:12;38957:8;38916:1;38854:25;38795:1;38734;38707:335;39368:1;39354:12;39350:20;39308:346;39409:3;39400:7;39397:16;39308:346;;39627:7;39617:8;39614:1;39587:25;39584:1;39581;39576:59;39462:1;39453:7;39449:15;39438:26;;39308:346;;;39312:77;39699:1;39687:8;:13;39683:45;;39709:19;;;;;;;;;;;;;;39683:45;39761:3;39745:13;:19;;;;37314:2462;;39786:60;39815:1;39819:2;39823:12;39837:8;39786:20;:60::i;:::-;36950:2904;36888:2966;;:::o;63565:268::-;63633:13;63740:1;63734:4;63727:15;63769:1;63763:4;63756:15;63810:4;63804;63794:21;63785:30;;63565:268;;;;:::o;24300:324::-;24370:14;24603:1;24593:8;24590:15;24564:24;24560:46;24550:56;;24300:324;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:117::-;2969:1;2966;2959:12;2983:117;3092:1;3089;3082:12;3106:117;3215:1;3212;3205:12;3243:553;3301:8;3311:6;3361:3;3354:4;3346:6;3342:17;3338:27;3328:122;;3369:79;;:::i;:::-;3328:122;3482:6;3469:20;3459:30;;3512:18;3504:6;3501:30;3498:117;;;3534:79;;:::i;:::-;3498:117;3648:4;3640:6;3636:17;3624:29;;3702:3;3694:4;3686:6;3682:17;3672:8;3668:32;3665:41;3662:128;;;3709:79;;:::i;:::-;3662:128;3243:553;;;;;:::o;3802:529::-;3873:6;3881;3930:2;3918:9;3909:7;3905:23;3901:32;3898:119;;;3936:79;;:::i;:::-;3898:119;4084:1;4073:9;4069:17;4056:31;4114:18;4106:6;4103:30;4100:117;;;4136:79;;:::i;:::-;4100:117;4249:65;4306:7;4297:6;4286:9;4282:22;4249:65;:::i;:::-;4231:83;;;;4027:297;3802:529;;;;;:::o;4337:77::-;4374:7;4403:5;4392:16;;4337:77;;;:::o;4420:122::-;4493:24;4511:5;4493:24;:::i;:::-;4486:5;4483:35;4473:63;;4532:1;4529;4522:12;4473:63;4420:122;:::o;4548:139::-;4594:5;4632:6;4619:20;4610:29;;4648:33;4675:5;4648:33;:::i;:::-;4548:139;;;;:::o;4693:329::-;4752:6;4801:2;4789:9;4780:7;4776:23;4772:32;4769:119;;;4807:79;;:::i;:::-;4769:119;4927:1;4952:53;4997:7;4988:6;4977:9;4973:22;4952:53;:::i;:::-;4942:63;;4898:117;4693:329;;;;:::o;5028:126::-;5065:7;5105:42;5098:5;5094:54;5083:65;;5028:126;;;:::o;5160:96::-;5197:7;5226:24;5244:5;5226:24;:::i;:::-;5215:35;;5160:96;;;:::o;5262:118::-;5349:24;5367:5;5349:24;:::i;:::-;5344:3;5337:37;5262:118;;:::o;5386:222::-;5479:4;5517:2;5506:9;5502:18;5494:26;;5530:71;5598:1;5587:9;5583:17;5574:6;5530:71;:::i;:::-;5386:222;;;;:::o;5614:122::-;5687:24;5705:5;5687:24;:::i;:::-;5680:5;5677:35;5667:63;;5726:1;5723;5716:12;5667:63;5614:122;:::o;5742:139::-;5788:5;5826:6;5813:20;5804:29;;5842:33;5869:5;5842:33;:::i;:::-;5742:139;;;;:::o;5887:474::-;5955:6;5963;6012:2;6000:9;5991:7;5987:23;5983:32;5980:119;;;6018:79;;:::i;:::-;5980:119;6138:1;6163:53;6208:7;6199:6;6188:9;6184:22;6163:53;:::i;:::-;6153:63;;6109:117;6265:2;6291:53;6336:7;6327:6;6316:9;6312:22;6291:53;:::i;:::-;6281:63;;6236:118;5887:474;;;;;:::o;6367:118::-;6454:24;6472:5;6454:24;:::i;:::-;6449:3;6442:37;6367:118;;:::o;6491:222::-;6584:4;6622:2;6611:9;6607:18;6599:26;;6635:71;6703:1;6692:9;6688:17;6679:6;6635:71;:::i;:::-;6491:222;;;;:::o;6719:619::-;6796:6;6804;6812;6861:2;6849:9;6840:7;6836:23;6832:32;6829:119;;;6867:79;;:::i;:::-;6829:119;6987:1;7012:53;7057:7;7048:6;7037:9;7033:22;7012:53;:::i;:::-;7002:63;;6958:117;7114:2;7140:53;7185:7;7176:6;7165:9;7161:22;7140:53;:::i;:::-;7130:63;;7085:118;7242:2;7268:53;7313:7;7304:6;7293:9;7289:22;7268:53;:::i;:::-;7258:63;;7213:118;6719:619;;;;;:::o;7361:568::-;7434:8;7444:6;7494:3;7487:4;7479:6;7475:17;7471:27;7461:122;;7502:79;;:::i;:::-;7461:122;7615:6;7602:20;7592:30;;7645:18;7637:6;7634:30;7631:117;;;7667:79;;:::i;:::-;7631:117;7781:4;7773:6;7769:17;7757:29;;7835:3;7827:4;7819:6;7815:17;7805:8;7801:32;7798:41;7795:128;;;7842:79;;:::i;:::-;7795:128;7361:568;;;;;:::o;7935:704::-;8030:6;8038;8046;8095:2;8083:9;8074:7;8070:23;8066:32;8063:119;;;8101:79;;:::i;:::-;8063:119;8221:1;8246:53;8291:7;8282:6;8271:9;8267:22;8246:53;:::i;:::-;8236:63;;8192:117;8376:2;8365:9;8361:18;8348:32;8407:18;8399:6;8396:30;8393:117;;;8429:79;;:::i;:::-;8393:117;8542:80;8614:7;8605:6;8594:9;8590:22;8542:80;:::i;:::-;8524:98;;;;8319:313;7935:704;;;;;:::o;8645:329::-;8704:6;8753:2;8741:9;8732:7;8728:23;8724:32;8721:119;;;8759:79;;:::i;:::-;8721:119;8879:1;8904:53;8949:7;8940:6;8929:9;8925:22;8904:53;:::i;:::-;8894:63;;8850:117;8645:329;;;;:::o;8980:180::-;9028:77;9025:1;9018:88;9125:4;9122:1;9115:15;9149:4;9146:1;9139:15;9166:122;9256:1;9249:5;9246:12;9236:46;;9262:18;;:::i;:::-;9236:46;9166:122;:::o;9294:145::-;9348:7;9377:5;9366:16;;9383:50;9427:5;9383:50;:::i;:::-;9294:145;;;:::o;9445:::-;9510:9;9543:41;9578:5;9543:41;:::i;:::-;9530:54;;9445:145;;;:::o;9596:161::-;9698:52;9744:5;9698:52;:::i;:::-;9693:3;9686:65;9596:161;;:::o;9763:252::-;9871:4;9909:2;9898:9;9894:18;9886:26;;9922:86;10005:1;9994:9;9990:17;9981:6;9922:86;:::i;:::-;9763:252;;;;:::o;10021:77::-;10058:7;10087:5;10076:16;;10021:77;;;:::o;10104:118::-;10191:24;10209:5;10191:24;:::i;:::-;10186:3;10179:37;10104:118;;:::o;10228:222::-;10321:4;10359:2;10348:9;10344:18;10336:26;;10372:71;10440:1;10429:9;10425:17;10416:6;10372:71;:::i;:::-;10228:222;;;;:::o;10456:116::-;10526:21;10541:5;10526:21;:::i;:::-;10519:5;10516:32;10506:60;;10562:1;10559;10552:12;10506:60;10456:116;:::o;10578:133::-;10621:5;10659:6;10646:20;10637:29;;10675:30;10699:5;10675:30;:::i;:::-;10578:133;;;;:::o;10717:468::-;10782:6;10790;10839:2;10827:9;10818:7;10814:23;10810:32;10807:119;;;10845:79;;:::i;:::-;10807:119;10965:1;10990:53;11035:7;11026:6;11015:9;11011:22;10990:53;:::i;:::-;10980:63;;10936:117;11092:2;11118:50;11160:7;11151:6;11140:9;11136:22;11118:50;:::i;:::-;11108:60;;11063:115;10717:468;;;;;:::o;11191:117::-;11300:1;11297;11290:12;11314:180;11362:77;11359:1;11352:88;11459:4;11456:1;11449:15;11483:4;11480:1;11473:15;11500:281;11583:27;11605:4;11583:27;:::i;:::-;11575:6;11571:40;11713:6;11701:10;11698:22;11677:18;11665:10;11662:34;11659:62;11656:88;;;11724:18;;:::i;:::-;11656:88;11764:10;11760:2;11753:22;11543:238;11500:281;;:::o;11787:129::-;11821:6;11848:20;;:::i;:::-;11838:30;;11877:33;11905:4;11897:6;11877:33;:::i;:::-;11787:129;;;:::o;11922:307::-;11983:4;12073:18;12065:6;12062:30;12059:56;;;12095:18;;:::i;:::-;12059:56;12133:29;12155:6;12133:29;:::i;:::-;12125:37;;12217:4;12211;12207:15;12199:23;;11922:307;;;:::o;12235:146::-;12332:6;12327:3;12322;12309:30;12373:1;12364:6;12359:3;12355:16;12348:27;12235:146;;;:::o;12387:423::-;12464:5;12489:65;12505:48;12546:6;12505:48;:::i;:::-;12489:65;:::i;:::-;12480:74;;12577:6;12570:5;12563:21;12615:4;12608:5;12604:16;12653:3;12644:6;12639:3;12635:16;12632:25;12629:112;;;12660:79;;:::i;:::-;12629:112;12750:54;12797:6;12792:3;12787;12750:54;:::i;:::-;12470:340;12387:423;;;;;:::o;12829:338::-;12884:5;12933:3;12926:4;12918:6;12914:17;12910:27;12900:122;;12941:79;;:::i;:::-;12900:122;13058:6;13045:20;13083:78;13157:3;13149:6;13142:4;13134:6;13130:17;13083:78;:::i;:::-;13074:87;;12890:277;12829:338;;;;:::o;13173:943::-;13268:6;13276;13284;13292;13341:3;13329:9;13320:7;13316:23;13312:33;13309:120;;;13348:79;;:::i;:::-;13309:120;13468:1;13493:53;13538:7;13529:6;13518:9;13514:22;13493:53;:::i;:::-;13483:63;;13439:117;13595:2;13621:53;13666:7;13657:6;13646:9;13642:22;13621:53;:::i;:::-;13611:63;;13566:118;13723:2;13749:53;13794:7;13785:6;13774:9;13770:22;13749:53;:::i;:::-;13739:63;;13694:118;13879:2;13868:9;13864:18;13851:32;13910:18;13902:6;13899:30;13896:117;;;13932:79;;:::i;:::-;13896:117;14037:62;14091:7;14082:6;14071:9;14067:22;14037:62;:::i;:::-;14027:72;;13822:287;13173:943;;;;;;;:::o;14122:122::-;14195:24;14213:5;14195:24;:::i;:::-;14188:5;14185:35;14175:63;;14234:1;14231;14224:12;14175:63;14122:122;:::o;14250:139::-;14296:5;14334:6;14321:20;14312:29;;14350:33;14377:5;14350:33;:::i;:::-;14250:139;;;;:::o;14395:329::-;14454:6;14503:2;14491:9;14482:7;14478:23;14474:32;14471:119;;;14509:79;;:::i;:::-;14471:119;14629:1;14654:53;14699:7;14690:6;14679:9;14675:22;14654:53;:::i;:::-;14644:63;;14600:117;14395:329;;;;:::o;14730:474::-;14798:6;14806;14855:2;14843:9;14834:7;14830:23;14826:32;14823:119;;;14861:79;;:::i;:::-;14823:119;14981:1;15006:53;15051:7;15042:6;15031:9;15027:22;15006:53;:::i;:::-;14996:63;;14952:117;15108:2;15134:53;15179:7;15170:6;15159:9;15155:22;15134:53;:::i;:::-;15124:63;;15079:118;14730:474;;;;;:::o;15210:180::-;15258:77;15255:1;15248:88;15355:4;15352:1;15345:15;15379:4;15376:1;15369:15;15396:320;15440:6;15477:1;15471:4;15467:12;15457:22;;15524:1;15518:4;15514:12;15545:18;15535:81;;15601:4;15593:6;15589:17;15579:27;;15535:81;15663:2;15655:6;15652:14;15632:18;15629:38;15626:84;;15682:18;;:::i;:::-;15626:84;15447:269;15396:320;;;:::o;15722:97::-;15781:6;15809:3;15799:13;;15722:97;;;;:::o;15825:141::-;15874:4;15897:3;15889:11;;15920:3;15917:1;15910:14;15954:4;15951:1;15941:18;15933:26;;15825:141;;;:::o;15972:93::-;16009:6;16056:2;16051;16044:5;16040:14;16036:23;16026:33;;15972:93;;;:::o;16071:107::-;16115:8;16165:5;16159:4;16155:16;16134:37;;16071:107;;;;:::o;16184:393::-;16253:6;16303:1;16291:10;16287:18;16326:97;16356:66;16345:9;16326:97;:::i;:::-;16444:39;16474:8;16463:9;16444:39;:::i;:::-;16432:51;;16516:4;16512:9;16505:5;16501:21;16492:30;;16565:4;16555:8;16551:19;16544:5;16541:30;16531:40;;16260:317;;16184:393;;;;;:::o;16583:60::-;16611:3;16632:5;16625:12;;16583:60;;;:::o;16649:142::-;16699:9;16732:53;16750:34;16759:24;16777:5;16759:24;:::i;:::-;16750:34;:::i;:::-;16732:53;:::i;:::-;16719:66;;16649:142;;;:::o;16797:75::-;16840:3;16861:5;16854:12;;16797:75;;;:::o;16878:269::-;16988:39;17019:7;16988:39;:::i;:::-;17049:91;17098:41;17122:16;17098:41;:::i;:::-;17090:6;17083:4;17077:11;17049:91;:::i;:::-;17043:4;17036:105;16954:193;16878:269;;;:::o;17153:73::-;17198:3;17153:73;:::o;17232:189::-;17309:32;;:::i;:::-;17350:65;17408:6;17400;17394:4;17350:65;:::i;:::-;17285:136;17232:189;;:::o;17427:186::-;17487:120;17504:3;17497:5;17494:14;17487:120;;;17558:39;17595:1;17588:5;17558:39;:::i;:::-;17531:1;17524:5;17520:13;17511:22;;17487:120;;;17427:186;;:::o;17619:543::-;17720:2;17715:3;17712:11;17709:446;;;17754:38;17786:5;17754:38;:::i;:::-;17838:29;17856:10;17838:29;:::i;:::-;17828:8;17824:44;18021:2;18009:10;18006:18;18003:49;;;18042:8;18027:23;;18003:49;18065:80;18121:22;18139:3;18121:22;:::i;:::-;18111:8;18107:37;18094:11;18065:80;:::i;:::-;17724:431;;17709:446;17619:543;;;:::o;18168:117::-;18222:8;18272:5;18266:4;18262:16;18241:37;;18168:117;;;;:::o;18291:169::-;18335:6;18368:51;18416:1;18412:6;18404:5;18401:1;18397:13;18368:51;:::i;:::-;18364:56;18449:4;18443;18439:15;18429:25;;18342:118;18291:169;;;;:::o;18465:295::-;18541:4;18687:29;18712:3;18706:4;18687:29;:::i;:::-;18679:37;;18749:3;18746:1;18742:11;18736:4;18733:21;18725:29;;18465:295;;;;:::o;18765:1403::-;18889:44;18929:3;18924;18889:44;:::i;:::-;18998:18;18990:6;18987:30;18984:56;;;19020:18;;:::i;:::-;18984:56;19064:38;19096:4;19090:11;19064:38;:::i;:::-;19149:67;19209:6;19201;19195:4;19149:67;:::i;:::-;19243:1;19272:2;19264:6;19261:14;19289:1;19284:632;;;;19960:1;19977:6;19974:84;;;20033:9;20028:3;20024:19;20011:33;20002:42;;19974:84;20084:67;20144:6;20137:5;20084:67;:::i;:::-;20078:4;20071:81;19933:229;19254:908;;19284:632;19336:4;19332:9;19324:6;19320:22;19370:37;19402:4;19370:37;:::i;:::-;19429:1;19443:215;19457:7;19454:1;19451:14;19443:215;;;19543:9;19538:3;19534:19;19521:33;19513:6;19506:49;19594:1;19586:6;19582:14;19572:24;;19641:2;19630:9;19626:18;19613:31;;19480:4;19477:1;19473:12;19468:17;;19443:215;;;19686:6;19677:7;19674:19;19671:186;;;19751:9;19746:3;19742:19;19729:33;19794:48;19836:4;19828:6;19824:17;19813:9;19794:48;:::i;:::-;19786:6;19779:64;19694:163;19671:186;19903:1;19899;19891:6;19887:14;19883:22;19877:4;19870:36;19291:625;;;19254:908;;18864:1304;;;18765:1403;;;:::o;20174:178::-;20314:30;20310:1;20302:6;20298:14;20291:54;20174:178;:::o;20358:366::-;20500:3;20521:67;20585:2;20580:3;20521:67;:::i;:::-;20514:74;;20597:93;20686:3;20597:93;:::i;:::-;20715:2;20710:3;20706:12;20699:19;;20358:366;;;:::o;20730:419::-;20896:4;20934:2;20923:9;20919:18;20911:26;;20983:9;20977:4;20973:20;20969:1;20958:9;20954:17;20947:47;21011:131;21137:4;21011:131;:::i;:::-;21003:139;;20730:419;;;:::o;21155:94::-;21188:8;21236:5;21232:2;21228:14;21207:35;;21155:94;;;:::o;21255:::-;21294:7;21323:20;21337:5;21323:20;:::i;:::-;21312:31;;21255:94;;;:::o;21355:100::-;21394:7;21423:26;21443:5;21423:26;:::i;:::-;21412:37;;21355:100;;;:::o;21461:157::-;21566:45;21586:24;21604:5;21586:24;:::i;:::-;21566:45;:::i;:::-;21561:3;21554:58;21461:157;;:::o;21624:256::-;21736:3;21751:75;21822:3;21813:6;21751:75;:::i;:::-;21851:2;21846:3;21842:12;21835:19;;21871:3;21864:10;;21624:256;;;;:::o;21886:180::-;22026:32;22022:1;22014:6;22010:14;22003:56;21886:180;:::o;22072:366::-;22214:3;22235:67;22299:2;22294:3;22235:67;:::i;:::-;22228:74;;22311:93;22400:3;22311:93;:::i;:::-;22429:2;22424:3;22420:12;22413:19;;22072:366;;;:::o;22444:419::-;22610:4;22648:2;22637:9;22633:18;22625:26;;22697:9;22691:4;22687:20;22683:1;22672:9;22668:17;22661:47;22725:131;22851:4;22725:131;:::i;:::-;22717:139;;22444:419;;;:::o;22869:180::-;22917:77;22914:1;22907:88;23014:4;23011:1;23004:15;23038:4;23035:1;23028:15;23055:191;23095:3;23114:20;23132:1;23114:20;:::i;:::-;23109:25;;23148:20;23166:1;23148:20;:::i;:::-;23143:25;;23191:1;23188;23184:9;23177:16;;23212:3;23209:1;23206:10;23203:36;;;23219:18;;:::i;:::-;23203:36;23055:191;;;;:::o;23252:233::-;23392:34;23388:1;23380:6;23376:14;23369:58;23461:16;23456:2;23448:6;23444:15;23437:41;23252:233;:::o;23491:366::-;23633:3;23654:67;23718:2;23713:3;23654:67;:::i;:::-;23647:74;;23730:93;23819:3;23730:93;:::i;:::-;23848:2;23843:3;23839:12;23832:19;;23491:366;;;:::o;23863:419::-;24029:4;24067:2;24056:9;24052:18;24044:26;;24116:9;24110:4;24106:20;24102:1;24091:9;24087:17;24080:47;24144:131;24270:4;24144:131;:::i;:::-;24136:139;;23863:419;;;:::o;24288:177::-;24428:29;24424:1;24416:6;24412:14;24405:53;24288:177;:::o;24471:366::-;24613:3;24634:67;24698:2;24693:3;24634:67;:::i;:::-;24627:74;;24710:93;24799:3;24710:93;:::i;:::-;24828:2;24823:3;24819:12;24812:19;;24471:366;;;:::o;24843:419::-;25009:4;25047:2;25036:9;25032:18;25024:26;;25096:9;25090:4;25086:20;25082:1;25071:9;25067:17;25060:47;25124:131;25250:4;25124:131;:::i;:::-;25116:139;;24843:419;;;:::o;25268:225::-;25408:34;25404:1;25396:6;25392:14;25385:58;25477:8;25472:2;25464:6;25460:15;25453:33;25268:225;:::o;25499:366::-;25641:3;25662:67;25726:2;25721:3;25662:67;:::i;:::-;25655:74;;25738:93;25827:3;25738:93;:::i;:::-;25856:2;25851:3;25847:12;25840:19;;25499:366;;;:::o;25871:419::-;26037:4;26075:2;26064:9;26060:18;26052:26;;26124:9;26118:4;26114:20;26110:1;26099:9;26095:17;26088:47;26152:131;26278:4;26152:131;:::i;:::-;26144:139;;25871:419;;;:::o;26296:249::-;26436:34;26432:1;26424:6;26420:14;26413:58;26505:32;26500:2;26492:6;26488:15;26481:57;26296:249;:::o;26551:366::-;26693:3;26714:67;26778:2;26773:3;26714:67;:::i;:::-;26707:74;;26790:93;26879:3;26790:93;:::i;:::-;26908:2;26903:3;26899:12;26892:19;;26551:366;;;:::o;26923:419::-;27089:4;27127:2;27116:9;27112:18;27104:26;;27176:9;27170:4;27166:20;27162:1;27151:9;27147:17;27140:47;27204:131;27330:4;27204:131;:::i;:::-;27196:139;;26923:419;;;:::o;27348:148::-;27450:11;27487:3;27472:18;;27348:148;;;;:::o;27502:390::-;27608:3;27636:39;27669:5;27636:39;:::i;:::-;27691:89;27773:6;27768:3;27691:89;:::i;:::-;27684:96;;27789:65;27847:6;27842:3;27835:4;27828:5;27824:16;27789:65;:::i;:::-;27879:6;27874:3;27870:16;27863:23;;27612:280;27502:390;;;;:::o;27898:155::-;28038:7;28034:1;28026:6;28022:14;28015:31;27898:155;:::o;28059:400::-;28219:3;28240:84;28322:1;28317:3;28240:84;:::i;:::-;28233:91;;28333:93;28422:3;28333:93;:::i;:::-;28451:1;28446:3;28442:11;28435:18;;28059:400;;;:::o;28465:701::-;28746:3;28768:95;28859:3;28850:6;28768:95;:::i;:::-;28761:102;;28880:95;28971:3;28962:6;28880:95;:::i;:::-;28873:102;;28992:148;29136:3;28992:148;:::i;:::-;28985:155;;29157:3;29150:10;;28465:701;;;;;:::o;29172:180::-;29220:77;29217:1;29210:88;29317:4;29314:1;29307:15;29341:4;29338:1;29331:15;29358:233;29397:3;29420:24;29438:5;29420:24;:::i;:::-;29411:33;;29466:66;29459:5;29456:77;29453:103;;29536:18;;:::i;:::-;29453:103;29583:1;29576:5;29572:13;29565:20;;29358:233;;;:::o;29597:225::-;29737:34;29733:1;29725:6;29721:14;29714:58;29806:8;29801:2;29793:6;29789:15;29782:33;29597:225;:::o;29828:366::-;29970:3;29991:67;30055:2;30050:3;29991:67;:::i;:::-;29984:74;;30067:93;30156:3;30067:93;:::i;:::-;30185:2;30180:3;30176:12;30169:19;;29828:366;;;:::o;30200:419::-;30366:4;30404:2;30393:9;30389:18;30381:26;;30453:9;30447:4;30443:20;30439:1;30428:9;30424:17;30417:47;30481:131;30607:4;30481:131;:::i;:::-;30473:139;;30200:419;;;:::o;30625:223::-;30765:34;30761:1;30753:6;30749:14;30742:58;30834:6;30829:2;30821:6;30817:15;30810:31;30625:223;:::o;30854:366::-;30996:3;31017:67;31081:2;31076:3;31017:67;:::i;:::-;31010:74;;31093:93;31182:3;31093:93;:::i;:::-;31211:2;31206:3;31202:12;31195:19;;30854:366;;;:::o;31226:419::-;31392:4;31430:2;31419:9;31415:18;31407:26;;31479:9;31473:4;31469:20;31465:1;31454:9;31450:17;31443:47;31507:131;31633:4;31507:131;:::i;:::-;31499:139;;31226:419;;;:::o;31651:181::-;31791:33;31787:1;31779:6;31775:14;31768:57;31651:181;:::o;31838:366::-;31980:3;32001:67;32065:2;32060:3;32001:67;:::i;:::-;31994:74;;32077:93;32166:3;32077:93;:::i;:::-;32195:2;32190:3;32186:12;32179:19;;31838:366;;;:::o;32210:419::-;32376:4;32414:2;32403:9;32399:18;32391:26;;32463:9;32457:4;32453:20;32449:1;32438:9;32434:17;32427:47;32491:131;32617:4;32491:131;:::i;:::-;32483:139;;32210:419;;;:::o;32635:168::-;32775:20;32771:1;32763:6;32759:14;32752:44;32635:168;:::o;32809:366::-;32951:3;32972:67;33036:2;33031:3;32972:67;:::i;:::-;32965:74;;33048:93;33137:3;33048:93;:::i;:::-;33166:2;33161:3;33157:12;33150:19;;32809:366;;;:::o;33181:419::-;33347:4;33385:2;33374:9;33370:18;33362:26;;33434:9;33428:4;33424:20;33420:1;33409:9;33405:17;33398:47;33462:131;33588:4;33462:131;:::i;:::-;33454:139;;33181:419;;;:::o;33606:181::-;33746:33;33742:1;33734:6;33730:14;33723:57;33606:181;:::o;33793:366::-;33935:3;33956:67;34020:2;34015:3;33956:67;:::i;:::-;33949:74;;34032:93;34121:3;34032:93;:::i;:::-;34150:2;34145:3;34141:12;34134:19;;33793:366;;;:::o;34165:419::-;34331:4;34369:2;34358:9;34354:18;34346:26;;34418:9;34412:4;34408:20;34404:1;34393:9;34389:17;34382:47;34446:131;34572:4;34446:131;:::i;:::-;34438:139;;34165:419;;;:::o;34590:182::-;34730:34;34726:1;34718:6;34714:14;34707:58;34590:182;:::o;34778:366::-;34920:3;34941:67;35005:2;35000:3;34941:67;:::i;:::-;34934:74;;35017:93;35106:3;35017:93;:::i;:::-;35135:2;35130:3;35126:12;35119:19;;34778:366;;;:::o;35150:419::-;35316:4;35354:2;35343:9;35339:18;35331:26;;35403:9;35397:4;35393:20;35389:1;35378:9;35374:17;35367:47;35431:131;35557:4;35431:131;:::i;:::-;35423:139;;35150:419;;;:::o;35575:179::-;35715:31;35711:1;35703:6;35699:14;35692:55;35575:179;:::o;35760:366::-;35902:3;35923:67;35987:2;35982:3;35923:67;:::i;:::-;35916:74;;35999:93;36088:3;35999:93;:::i;:::-;36117:2;36112:3;36108:12;36101:19;;35760:366;;;:::o;36132:419::-;36298:4;36336:2;36325:9;36321:18;36313:26;;36385:9;36379:4;36375:20;36371:1;36360:9;36356:17;36349:47;36413:131;36539:4;36413:131;:::i;:::-;36405:139;;36132:419;;;:::o;36557:98::-;36608:6;36642:5;36636:12;36626:22;;36557:98;;;:::o;36661:168::-;36744:11;36778:6;36773:3;36766:19;36818:4;36813:3;36809:14;36794:29;;36661:168;;;;:::o;36835:373::-;36921:3;36949:38;36981:5;36949:38;:::i;:::-;37003:70;37066:6;37061:3;37003:70;:::i;:::-;36996:77;;37082:65;37140:6;37135:3;37128:4;37121:5;37117:16;37082:65;:::i;:::-;37172:29;37194:6;37172:29;:::i;:::-;37167:3;37163:39;37156:46;;36925:283;36835:373;;;;:::o;37214:640::-;37409:4;37447:3;37436:9;37432:19;37424:27;;37461:71;37529:1;37518:9;37514:17;37505:6;37461:71;:::i;:::-;37542:72;37610:2;37599:9;37595:18;37586:6;37542:72;:::i;:::-;37624;37692:2;37681:9;37677:18;37668:6;37624:72;:::i;:::-;37743:9;37737:4;37733:20;37728:2;37717:9;37713:18;37706:48;37771:76;37842:4;37833:6;37771:76;:::i;:::-;37763:84;;37214:640;;;;;;;:::o;37860:141::-;37916:5;37947:6;37941:13;37932:22;;37963:32;37989:5;37963:32;:::i;:::-;37860:141;;;;:::o;38007:349::-;38076:6;38125:2;38113:9;38104:7;38100:23;38096:32;38093:119;;;38131:79;;:::i;:::-;38093:119;38251:1;38276:63;38331:7;38322:6;38311:9;38307:22;38276:63;:::i;:::-;38266:73;;38222:127;38007:349;;;;:::o

Swarm Source

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