ETH Price: $2,267.47 (+2.28%)

Token

HolyBirdNFT (HB)
 

Overview

Max Total Supply

335 HB

Holders

166

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 HB
0x06A31c3B5B3cdD23A2B9b6A5CacB3fD3C774be63
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:
HolyBirdNFT

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-14
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol


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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;


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

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

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

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

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

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

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

    // The bit mask of the `burned` bit in packed ownership.
    uint256 private constant BITMASK_BURNED = 1 << 224;
    
    // The bit position of the `nextInitialized` bit in packed ownership.
    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

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

    // The tokenId of the next token to be minted.
    uint256 private _currentIndex;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        // The interface IDs are constants representing the first 4 bytes of the XOR of
        // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165
        // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`
        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

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

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

    /**
     * Returns the auxillary 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 auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        uint256 packed = _packedAddressData[owner];
        uint256 auxCasted;
        assembly { // Cast aux without masking.
            auxCasted := aux
        }
        packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX);
        _packedAddressData[owner] = packed;
    }

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

        unchecked {
            if (_startTokenId() <= curr)
                if (curr < _currentIndex) {
                    uint256 packed = _packedOwnerships[curr];
                    // If not burned.
                    if (packed & BITMASK_BURNED == 0) {
                        // Invariant:
                        // There will always be an ownership that has an address and is not burned
                        // before an ownership that does not have an address and is not burned.
                        // Hence, curr will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed is zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * Returns the unpacked `TokenOwnership` struct from `packed`.
     */
    function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
        ownership.addr = address(uint160(packed));
        ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP);
        ownership.burned = packed & BITMASK_BURNED != 0;
    }

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

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

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

    /**
     * @dev Casts the address to uint256 without masking.
     */
    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    /**
     * @dev Casts the boolean to uint256 without branching.
     */
    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.code.length != 0) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @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.
     */
    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            // Updates:
            // - `balance += quantity`.
            // - `numberMinted += quantity`.
            //
            // We can directly add to the balance and number minted.
            _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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

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

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

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
            isApprovedForAll(from, _msgSenderERC721A()) ||
            getApproved(tokenId) == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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] =
                _addressToUint256(to) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                getApproved(tokenId) == _msgSenderERC721A());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

        // 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] =
                _addressToUint256(from) |
                (block.timestamp << BITPOS_START_TIMESTAMP) |
                BITMASK_BURNED | 
                BITMASK_NEXT_INITIALIZED;

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

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

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

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

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

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

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), 
            // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged.
            // We will need 1 32-byte word to store the length, 
            // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128.
            ptr := add(mload(0x40), 128)
            // Update the free memory pointer to allocate.
            mstore(0x40, ptr)

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

// File: contracts/dev/HolyBird.sol



pragma solidity >= 0.8.9 < 0.9.0;





contract HolyBirdNFT is ERC721A, Ownable {

    using Strings for uint256;

    string private _baseTokenURI;

    uint256 public price = 0.003 ether;

    uint256 public maxPerTx = 5;

    uint256 public maxFreePerWallet = 2;

    uint256 public totalFree = 300;

    uint256 public maxSupply = 1042;

    bool public mintEnabled = true;

    mapping(address => uint256) private _mintedFreeAmount;

    constructor() ERC721A("HolyBirdNFT", "HB") {
        _safeMint(msg.sender, 1);
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    function mint(uint256 count) external payable {
        uint256 cost = price;
        bool isFree = ((totalSupply() + count < totalFree + 1) &&
            (_mintedFreeAmount[msg.sender] + count <= maxFreePerWallet));

        if (isFree) {
            cost = 0;
        }

        require(msg.value >= count * cost, "Please send the exact amount.");
        require(totalSupply() + count < maxSupply + 1, "No more");
        require(mintEnabled, "Minting is not live yet");
        require(count < maxPerTx + 1, "Max per TX reached.");

        if (isFree) {
            _mintedFreeAmount[msg.sender] += count;
        }

        _safeMint(msg.sender, count);
    }


     function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }


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


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


    function devMint(address mintAddress,uint8 numberTokens)external onlyOwner{
        _safeMint(mintAddress, numberTokens);
        
    } 

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"mintAddress","type":"address"},{"internalType":"uint8","name":"numberTokens","type":"uint8"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreePerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","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":"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","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":"totalFree","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052660aa87bee538000600a556005600b556002600c5561012c600d55610412600e556001600f60006101000a81548160ff0219169083151502179055503480156200004d57600080fd5b506040518060400160405280600b81526020017f486f6c79426972644e46540000000000000000000000000000000000000000008152506040518060400160405280600281526020017f48420000000000000000000000000000000000000000000000000000000000008152508160029081620000cb91906200090e565b508060039081620000dd91906200090e565b50620000ee6200012f60201b60201c565b6000819055505050620001166200010a6200013460201b60201c565b6200013c60201b60201c565b620001293360016200020260201b60201c565b62000bcd565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002248282604051806020016040528060008152506200022860201b60201c565b5050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160362000295576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303620002d0576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b620002e560008583866200050b60201b60201c565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000352600185146200051160201b60201c565b901b60a042901b6200036a866200051b60201b60201c565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146200047b575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200042760008784806001019550876200052560201b60201c565b6200045e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620003b05782600054146200047557600080fd5b620004e7565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106200047c575b8160008190555050506200050560008583866200068660201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02620005536200068c60201b60201c565b8786866040518563ffffffff1660e01b815260040162000577949392919062000ae5565b6020604051808303816000875af1925050508015620005b657506040513d601f19601f82011682018060405250810190620005b3919062000b9b565b60015b62000633573d8060008114620005e9576040519150601f19603f3d011682016040523d82523d6000602084013e620005ee565b606091505b5060008151036200062b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200071657607f821691505b6020821081036200072c576200072b620006ce565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007967fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000757565b620007a2868362000757565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007ef620007e9620007e384620007ba565b620007c4565b620007ba565b9050919050565b6000819050919050565b6200080b83620007ce565b620008236200081a82620007f6565b84845462000764565b825550505050565b600090565b6200083a6200082b565b6200084781848462000800565b505050565b5b818110156200086f576200086360008262000830565b6001810190506200084d565b5050565b601f821115620008be57620008888162000732565b620008938462000747565b81016020851015620008a3578190505b620008bb620008b28562000747565b8301826200084c565b50505b505050565b600082821c905092915050565b6000620008e360001984600802620008c3565b1980831691505092915050565b6000620008fe8383620008d0565b9150826002028217905092915050565b620009198262000694565b67ffffffffffffffff8111156200093557620009346200069f565b5b620009418254620006fd565b6200094e82828562000873565b600060209050601f83116001811462000986576000841562000971578287015190505b6200097d8582620008f0565b865550620009ed565b601f198416620009968662000732565b60005b82811015620009c05784890151825560018201915060208501945060208101905062000999565b86831015620009e05784890151620009dc601f891682620008d0565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000a2282620009f5565b9050919050565b62000a348162000a15565b82525050565b62000a4581620007ba565b82525050565b600081519050919050565b600082825260208201905092915050565b60005b8381101562000a8757808201518184015260208101905062000a6a565b60008484015250505050565b6000601f19601f8301169050919050565b600062000ab18262000a4b565b62000abd818562000a56565b935062000acf81856020860162000a67565b62000ada8162000a93565b840191505092915050565b600060808201905062000afc600083018762000a29565b62000b0b602083018662000a29565b62000b1a604083018562000a3a565b818103606083015262000b2e818462000aa4565b905095945050505050565b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b62000b758162000b3e565b811462000b8157600080fd5b50565b60008151905062000b958162000b6a565b92915050565b60006020828403121562000bb45762000bb362000b39565b5b600062000bc48482850162000b84565b91505092915050565b612fc58062000bdd6000396000f3fe6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146105d7578063e985e9c514610602578063f2fde38b1461063f578063f968adbe14610668576101b7565b8063b88d4fde14610546578063c87b56dd1461056f578063d1239730146105ac576101b7565b8063a035b1fe116100c6578063a035b1fe146104ab578063a0712d68146104d6578063a22cb465146104f2578063a70273571461051b576101b7565b80638da5cb5b1461042c57806391b7f5ed1461045757806395d89b4114610480576101b7565b80633ccfd60b116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec5780637d2c88db14610403576101b7565b80633ccfd60b1461030957806342842e0e1461032057806355f804b314610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b5578063333e44e6146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906120d4565b610693565b6040516101f0919061211c565b60405180910390f35b34801561020557600080fd5b5061020e610725565b60405161021b91906121c7565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061221f565b6107b7565b604051610258919061228d565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906122d4565b610833565b005b34801561029657600080fd5b5061029f6109d9565b6040516102ac9190612323565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061233e565b6109f0565b005b3480156102ea57600080fd5b506102f3610a00565b6040516103009190612323565b60405180910390f35b34801561031557600080fd5b5061031e610a06565b005b34801561032c57600080fd5b506103476004803603810190610342919061233e565b610b31565b005b34801561035557600080fd5b50610370600480360381019061036b91906123f6565b610b51565b005b34801561037e57600080fd5b506103996004803603810190610394919061221f565b610be3565b6040516103a6919061228d565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612443565b610bf5565b6040516103e39190612323565b60405180910390f35b3480156103f857600080fd5b50610401610cad565b005b34801561040f57600080fd5b5061042a600480360381019061042591906124a9565b610d35565b005b34801561043857600080fd5b50610441610dc2565b60405161044e919061228d565b60405180910390f35b34801561046357600080fd5b5061047e6004803603810190610479919061221f565b610dec565b005b34801561048c57600080fd5b50610495610e72565b6040516104a291906121c7565b60405180910390f35b3480156104b757600080fd5b506104c0610f04565b6040516104cd9190612323565b60405180910390f35b6104f060048036038101906104eb919061221f565b610f0a565b005b3480156104fe57600080fd5b5061051960048036038101906105149190612515565b611156565b005b34801561052757600080fd5b506105306112cd565b60405161053d9190612323565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612685565b6112d3565b005b34801561057b57600080fd5b506105966004803603810190610591919061221f565b611346565b6040516105a391906121c7565b60405180910390f35b3480156105b857600080fd5b506105c16113e4565b6040516105ce919061211c565b60405180910390f35b3480156105e357600080fd5b506105ec6113f7565b6040516105f99190612323565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190612708565b6113fd565b604051610636919061211c565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612443565b611491565b005b34801561067457600080fd5b5061067d611588565b60405161068a9190612323565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ee57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073490612777565b80601f016020809104026020016040519081016040528092919081815260200182805461076090612777565b80156107ad5780601f10610782576101008083540402835291602001916107ad565b820191906000526020600020905b81548152906001019060200180831161079057829003601f168201915b5050505050905090565b60006107c28261158e565b6107f8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083e826115ed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c46116b9565b73ffffffffffffffffffffffffffffffffffffffff1614610927576108f0816108eb6116b9565b6113fd565b610926576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109e36116c1565b6001546000540303905090565b6109fb8383836116c6565b505050565b600d5481565b610a0e611a6d565b73ffffffffffffffffffffffffffffffffffffffff16610a2c610dc2565b73ffffffffffffffffffffffffffffffffffffffff1614610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a79906127f4565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610aa890612845565b60006040518083038185875af1925050503d8060008114610ae5576040519150601f19603f3d011682016040523d82523d6000602084013e610aea565b606091505b5050905080610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b25906128a6565b60405180910390fd5b50565b610b4c838383604051806020016040528060008152506112d3565b505050565b610b59611a6d565b73ffffffffffffffffffffffffffffffffffffffff16610b77610dc2565b73ffffffffffffffffffffffffffffffffffffffff1614610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc4906127f4565b60405180910390fd5b818160099182610bde929190612a7d565b505050565b6000610bee826115ed565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cb5611a6d565b73ffffffffffffffffffffffffffffffffffffffff16610cd3610dc2565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906127f4565b60405180910390fd5b610d336000611a75565b565b610d3d611a6d565b73ffffffffffffffffffffffffffffffffffffffff16610d5b610dc2565b73ffffffffffffffffffffffffffffffffffffffff1614610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da8906127f4565b60405180910390fd5b610dbe828260ff16611b3b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610df4611a6d565b73ffffffffffffffffffffffffffffffffffffffff16610e12610dc2565b73ffffffffffffffffffffffffffffffffffffffff1614610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f906127f4565b60405180910390fd5b80600a8190555050565b606060038054610e8190612777565b80601f0160208091040260200160405190810160405280929190818152602001828054610ead90612777565b8015610efa5780601f10610ecf57610100808354040283529160200191610efa565b820191906000526020600020905b815481529060010190602001808311610edd57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610f229190612b7c565b83610f2b6109d9565b610f359190612b7c565b108015610f8e5750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8b9190612b7c565b11155b90508015610f9b57600091505b8183610fa79190612bb0565b341015610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090612c56565b60405180910390fd5b6001600e54610ff89190612b7c565b836110016109d9565b61100b9190612b7c565b1061104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290612cc2565b60405180910390fd5b600f60009054906101000a900460ff1661109a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109190612d2e565b60405180910390fd5b6001600b546110a99190612b7c565b83106110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e190612d9a565b60405180910390fd5b80156111475782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461113f9190612b7c565b925050819055505b6111513384611b3b565b505050565b61115e6116b9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111cf6116b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661127c6116b9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112c1919061211c565b60405180910390a35050565b600c5481565b6112de8484846116c6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113405761130984848484611b59565b61133f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113518261158e565b611387576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611391611ca9565b905060008151036113b157604051806020016040528060008152506113dc565b806113bb84611d3b565b6040516020016113cc929190612df6565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611499611a6d565b73ffffffffffffffffffffffffffffffffffffffff166114b7610dc2565b73ffffffffffffffffffffffffffffffffffffffff161461150d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611504906127f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390612e8c565b60405180910390fd5b61158581611a75565b50565b600b5481565b6000816115996116c1565b111580156115a8575060005482105b80156115e6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806115fc6116c1565b11611682576000548110156116815760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361167f575b6000810361167557600460008360019003935083815260200190815260200160002054905061164b565b80925050506116b4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006116d1826115ed565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611738576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166117596116b9565b73ffffffffffffffffffffffffffffffffffffffff1614806117885750611787856117826116b9565b6113fd565b5b806117cd57506117966116b9565b73ffffffffffffffffffffffffffffffffffffffff166117b5846107b7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611806576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361186c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118798585856001611d95565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61197686611d9b565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036119fe57600060018401905060006004600083815260200190815260200160002054036119fc5760005481146119fb578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a668585856001611da5565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b55828260405180602001604052806000815250611dab565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b7f6116b9565b8786866040518563ffffffff1660e01b8152600401611ba19493929190612f01565b6020604051808303816000875af1925050508015611bdd57506040513d601f19601f82011682018060405250810190611bda9190612f62565b60015b611c56573d8060008114611c0d576040519150601f19603f3d011682016040523d82523d6000602084013e611c12565b606091505b506000815103611c4e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611cb890612777565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce490612777565b8015611d315780601f10611d0657610100808354040283529160200191611d31565b820191906000526020600020905b815481529060010190602001808311611d1457829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611d8157600183039250600a81066030018353600a81049050611d61565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e17576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611e51576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e5e6000858386611d95565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611ec36001851461205e565b901b60a042901b611ed386611d9b565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611fd7575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f876000878480600101955087611b59565b611fbd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611f18578260005414611fd257600080fd5b612042565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611fd8575b8160008190555050506120586000858386611da5565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120b18161207c565b81146120bc57600080fd5b50565b6000813590506120ce816120a8565b92915050565b6000602082840312156120ea576120e9612072565b5b60006120f8848285016120bf565b91505092915050565b60008115159050919050565b61211681612101565b82525050565b6000602082019050612131600083018461210d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612171578082015181840152602081019050612156565b60008484015250505050565b6000601f19601f8301169050919050565b600061219982612137565b6121a38185612142565b93506121b3818560208601612153565b6121bc8161217d565b840191505092915050565b600060208201905081810360008301526121e1818461218e565b905092915050565b6000819050919050565b6121fc816121e9565b811461220757600080fd5b50565b600081359050612219816121f3565b92915050565b60006020828403121561223557612234612072565b5b60006122438482850161220a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122778261224c565b9050919050565b6122878161226c565b82525050565b60006020820190506122a2600083018461227e565b92915050565b6122b18161226c565b81146122bc57600080fd5b50565b6000813590506122ce816122a8565b92915050565b600080604083850312156122eb576122ea612072565b5b60006122f9858286016122bf565b925050602061230a8582860161220a565b9150509250929050565b61231d816121e9565b82525050565b60006020820190506123386000830184612314565b92915050565b60008060006060848603121561235757612356612072565b5b6000612365868287016122bf565b9350506020612376868287016122bf565b92505060406123878682870161220a565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126123b6576123b5612391565b5b8235905067ffffffffffffffff8111156123d3576123d2612396565b5b6020830191508360018202830111156123ef576123ee61239b565b5b9250929050565b6000806020838503121561240d5761240c612072565b5b600083013567ffffffffffffffff81111561242b5761242a612077565b5b612437858286016123a0565b92509250509250929050565b60006020828403121561245957612458612072565b5b6000612467848285016122bf565b91505092915050565b600060ff82169050919050565b61248681612470565b811461249157600080fd5b50565b6000813590506124a38161247d565b92915050565b600080604083850312156124c0576124bf612072565b5b60006124ce858286016122bf565b92505060206124df85828601612494565b9150509250929050565b6124f281612101565b81146124fd57600080fd5b50565b60008135905061250f816124e9565b92915050565b6000806040838503121561252c5761252b612072565b5b600061253a858286016122bf565b925050602061254b85828601612500565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125928261217d565b810181811067ffffffffffffffff821117156125b1576125b061255a565b5b80604052505050565b60006125c4612068565b90506125d08282612589565b919050565b600067ffffffffffffffff8211156125f0576125ef61255a565b5b6125f98261217d565b9050602081019050919050565b82818337600083830152505050565b6000612628612623846125d5565b6125ba565b90508281526020810184848401111561264457612643612555565b5b61264f848285612606565b509392505050565b600082601f83011261266c5761266b612391565b5b813561267c848260208601612615565b91505092915050565b6000806000806080858703121561269f5761269e612072565b5b60006126ad878288016122bf565b94505060206126be878288016122bf565b93505060406126cf8782880161220a565b925050606085013567ffffffffffffffff8111156126f0576126ef612077565b5b6126fc87828801612657565b91505092959194509250565b6000806040838503121561271f5761271e612072565b5b600061272d858286016122bf565b925050602061273e858286016122bf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061278f57607f821691505b6020821081036127a2576127a1612748565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127de602083612142565b91506127e9826127a8565b602082019050919050565b6000602082019050818103600083015261280d816127d1565b9050919050565b600081905092915050565b50565b600061282f600083612814565b915061283a8261281f565b600082019050919050565b600061285082612822565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612890601083612142565b915061289b8261285a565b602082019050919050565b600060208201905081810360008301526128bf81612883565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826128f6565b61293d86836128f6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061297a612975612970846121e9565b612955565b6121e9565b9050919050565b6000819050919050565b6129948361295f565b6129a86129a082612981565b848454612903565b825550505050565b600090565b6129bd6129b0565b6129c881848461298b565b505050565b5b818110156129ec576129e16000826129b5565b6001810190506129ce565b5050565b601f821115612a3157612a02816128d1565b612a0b846128e6565b81016020851015612a1a578190505b612a2e612a26856128e6565b8301826129cd565b50505b505050565b600082821c905092915050565b6000612a5460001984600802612a36565b1980831691505092915050565b6000612a6d8383612a43565b9150826002028217905092915050565b612a8783836128c6565b67ffffffffffffffff811115612aa057612a9f61255a565b5b612aaa8254612777565b612ab58282856129f0565b6000601f831160018114612ae45760008415612ad2578287013590505b612adc8582612a61565b865550612b44565b601f198416612af2866128d1565b60005b82811015612b1a57848901358255600182019150602085019450602081019050612af5565b86831015612b375784890135612b33601f891682612a43565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b87826121e9565b9150612b92836121e9565b9250828201905080821115612baa57612ba9612b4d565b5b92915050565b6000612bbb826121e9565b9150612bc6836121e9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bff57612bfe612b4d565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612c40601d83612142565b9150612c4b82612c0a565b602082019050919050565b60006020820190508181036000830152612c6f81612c33565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000612cac600783612142565b9150612cb782612c76565b602082019050919050565b60006020820190508181036000830152612cdb81612c9f565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000612d18601783612142565b9150612d2382612ce2565b602082019050919050565b60006020820190508181036000830152612d4781612d0b565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612d84601383612142565b9150612d8f82612d4e565b602082019050919050565b60006020820190508181036000830152612db381612d77565b9050919050565b600081905092915050565b6000612dd082612137565b612dda8185612dba565b9350612dea818560208601612153565b80840191505092915050565b6000612e028285612dc5565b9150612e0e8284612dc5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e76602683612142565b9150612e8182612e1a565b604082019050919050565b60006020820190508181036000830152612ea581612e69565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ed382612eac565b612edd8185612eb7565b9350612eed818560208601612153565b612ef68161217d565b840191505092915050565b6000608082019050612f16600083018761227e565b612f23602083018661227e565b612f306040830185612314565b8181036060830152612f428184612ec8565b905095945050505050565b600081519050612f5c816120a8565b92915050565b600060208284031215612f7857612f77612072565b5b6000612f8684828501612f4d565b9150509291505056fea26469706673582212200c4e742668c5597088f6a663d700e2957091f9dd9bc75b9930962cf5b180a1d864736f6c63430008100033

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80638da5cb5b116100ec578063b88d4fde1161008a578063d5abeb0111610064578063d5abeb01146105d7578063e985e9c514610602578063f2fde38b1461063f578063f968adbe14610668576101b7565b8063b88d4fde14610546578063c87b56dd1461056f578063d1239730146105ac576101b7565b8063a035b1fe116100c6578063a035b1fe146104ab578063a0712d68146104d6578063a22cb465146104f2578063a70273571461051b576101b7565b80638da5cb5b1461042c57806391b7f5ed1461045757806395d89b4114610480576101b7565b80633ccfd60b116101595780636352211e116101335780636352211e1461037257806370a08231146103af578063715018a6146103ec5780637d2c88db14610403576101b7565b80633ccfd60b1461030957806342842e0e1461032057806355f804b314610349576101b7565b8063095ea7b311610195578063095ea7b31461026157806318160ddd1461028a57806323b872dd146102b5578063333e44e6146102de576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de91906120d4565b610693565b6040516101f0919061211c565b60405180910390f35b34801561020557600080fd5b5061020e610725565b60405161021b91906121c7565b60405180910390f35b34801561023057600080fd5b5061024b6004803603810190610246919061221f565b6107b7565b604051610258919061228d565b60405180910390f35b34801561026d57600080fd5b50610288600480360381019061028391906122d4565b610833565b005b34801561029657600080fd5b5061029f6109d9565b6040516102ac9190612323565b60405180910390f35b3480156102c157600080fd5b506102dc60048036038101906102d7919061233e565b6109f0565b005b3480156102ea57600080fd5b506102f3610a00565b6040516103009190612323565b60405180910390f35b34801561031557600080fd5b5061031e610a06565b005b34801561032c57600080fd5b506103476004803603810190610342919061233e565b610b31565b005b34801561035557600080fd5b50610370600480360381019061036b91906123f6565b610b51565b005b34801561037e57600080fd5b506103996004803603810190610394919061221f565b610be3565b6040516103a6919061228d565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190612443565b610bf5565b6040516103e39190612323565b60405180910390f35b3480156103f857600080fd5b50610401610cad565b005b34801561040f57600080fd5b5061042a600480360381019061042591906124a9565b610d35565b005b34801561043857600080fd5b50610441610dc2565b60405161044e919061228d565b60405180910390f35b34801561046357600080fd5b5061047e6004803603810190610479919061221f565b610dec565b005b34801561048c57600080fd5b50610495610e72565b6040516104a291906121c7565b60405180910390f35b3480156104b757600080fd5b506104c0610f04565b6040516104cd9190612323565b60405180910390f35b6104f060048036038101906104eb919061221f565b610f0a565b005b3480156104fe57600080fd5b5061051960048036038101906105149190612515565b611156565b005b34801561052757600080fd5b506105306112cd565b60405161053d9190612323565b60405180910390f35b34801561055257600080fd5b5061056d60048036038101906105689190612685565b6112d3565b005b34801561057b57600080fd5b506105966004803603810190610591919061221f565b611346565b6040516105a391906121c7565b60405180910390f35b3480156105b857600080fd5b506105c16113e4565b6040516105ce919061211c565b60405180910390f35b3480156105e357600080fd5b506105ec6113f7565b6040516105f99190612323565b60405180910390f35b34801561060e57600080fd5b5061062960048036038101906106249190612708565b6113fd565b604051610636919061211c565b60405180910390f35b34801561064b57600080fd5b5061066660048036038101906106619190612443565b611491565b005b34801561067457600080fd5b5061067d611588565b60405161068a9190612323565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106ee57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061071e5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461073490612777565b80601f016020809104026020016040519081016040528092919081815260200182805461076090612777565b80156107ad5780601f10610782576101008083540402835291602001916107ad565b820191906000526020600020905b81548152906001019060200180831161079057829003601f168201915b5050505050905090565b60006107c28261158e565b6107f8576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061083e826115ed565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036108a5576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108c46116b9565b73ffffffffffffffffffffffffffffffffffffffff1614610927576108f0816108eb6116b9565b6113fd565b610926576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006109e36116c1565b6001546000540303905090565b6109fb8383836116c6565b505050565b600d5481565b610a0e611a6d565b73ffffffffffffffffffffffffffffffffffffffff16610a2c610dc2565b73ffffffffffffffffffffffffffffffffffffffff1614610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a79906127f4565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610aa890612845565b60006040518083038185875af1925050503d8060008114610ae5576040519150601f19603f3d011682016040523d82523d6000602084013e610aea565b606091505b5050905080610b2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b25906128a6565b60405180910390fd5b50565b610b4c838383604051806020016040528060008152506112d3565b505050565b610b59611a6d565b73ffffffffffffffffffffffffffffffffffffffff16610b77610dc2565b73ffffffffffffffffffffffffffffffffffffffff1614610bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc4906127f4565b60405180910390fd5b818160099182610bde929190612a7d565b505050565b6000610bee826115ed565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c5c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610cb5611a6d565b73ffffffffffffffffffffffffffffffffffffffff16610cd3610dc2565b73ffffffffffffffffffffffffffffffffffffffff1614610d29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d20906127f4565b60405180910390fd5b610d336000611a75565b565b610d3d611a6d565b73ffffffffffffffffffffffffffffffffffffffff16610d5b610dc2565b73ffffffffffffffffffffffffffffffffffffffff1614610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da8906127f4565b60405180910390fd5b610dbe828260ff16611b3b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610df4611a6d565b73ffffffffffffffffffffffffffffffffffffffff16610e12610dc2565b73ffffffffffffffffffffffffffffffffffffffff1614610e68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5f906127f4565b60405180910390fd5b80600a8190555050565b606060038054610e8190612777565b80601f0160208091040260200160405190810160405280929190818152602001828054610ead90612777565b8015610efa5780601f10610ecf57610100808354040283529160200191610efa565b820191906000526020600020905b815481529060010190602001808311610edd57829003601f168201915b5050505050905090565b600a5481565b6000600a54905060006001600d54610f229190612b7c565b83610f2b6109d9565b610f359190612b7c565b108015610f8e5750600c5483601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8b9190612b7c565b11155b90508015610f9b57600091505b8183610fa79190612bb0565b341015610fe9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe090612c56565b60405180910390fd5b6001600e54610ff89190612b7c565b836110016109d9565b61100b9190612b7c565b1061104b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104290612cc2565b60405180910390fd5b600f60009054906101000a900460ff1661109a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109190612d2e565b60405180910390fd5b6001600b546110a99190612b7c565b83106110ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e190612d9a565b60405180910390fd5b80156111475782601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461113f9190612b7c565b925050819055505b6111513384611b3b565b505050565b61115e6116b9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111c2576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006111cf6116b9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661127c6116b9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112c1919061211c565b60405180910390a35050565b600c5481565b6112de8484846116c6565b60008373ffffffffffffffffffffffffffffffffffffffff163b146113405761130984848484611b59565b61133f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60606113518261158e565b611387576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611391611ca9565b905060008151036113b157604051806020016040528060008152506113dc565b806113bb84611d3b565b6040516020016113cc929190612df6565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1681565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611499611a6d565b73ffffffffffffffffffffffffffffffffffffffff166114b7610dc2565b73ffffffffffffffffffffffffffffffffffffffff161461150d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611504906127f4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361157c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157390612e8c565b60405180910390fd5b61158581611a75565b50565b600b5481565b6000816115996116c1565b111580156115a8575060005482105b80156115e6575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806115fc6116c1565b11611682576000548110156116815760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082160361167f575b6000810361167557600460008360019003935083815260200190815260200160002054905061164b565b80925050506116b4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006116d1826115ed565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611738576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166117596116b9565b73ffffffffffffffffffffffffffffffffffffffff1614806117885750611787856117826116b9565b6113fd565b5b806117cd57506117966116b9565b73ffffffffffffffffffffffffffffffffffffffff166117b5846107b7565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611806576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361186c576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6118798585856001611d95565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61197686611d9b565b1717600460008581526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008316036119fe57600060018401905060006004600083815260200190815260200160002054036119fc5760005481146119fb578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a668585856001611da5565b5050505050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611b55828260405180602001604052806000815250611dab565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611b7f6116b9565b8786866040518563ffffffff1660e01b8152600401611ba19493929190612f01565b6020604051808303816000875af1925050508015611bdd57506040513d601f19601f82011682018060405250810190611bda9190612f62565b60015b611c56573d8060008114611c0d576040519150601f19603f3d011682016040523d82523d6000602084013e611c12565b606091505b506000815103611c4e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b606060098054611cb890612777565b80601f0160208091040260200160405190810160405280929190818152602001828054611ce490612777565b8015611d315780601f10611d0657610100808354040283529160200191611d31565b820191906000526020600020905b815481529060010190602001808311611d1457829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015611d8157600183039250600a81066030018353600a81049050611d61565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e17576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303611e51576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e5e6000858386611d95565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1611ec36001851461205e565b901b60a042901b611ed386611d9b565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14611fd7575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611f876000878480600101955087611b59565b611fbd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210611f18578260005414611fd257600080fd5b612042565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210611fd8575b8160008190555050506120586000858386611da5565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6120b18161207c565b81146120bc57600080fd5b50565b6000813590506120ce816120a8565b92915050565b6000602082840312156120ea576120e9612072565b5b60006120f8848285016120bf565b91505092915050565b60008115159050919050565b61211681612101565b82525050565b6000602082019050612131600083018461210d565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612171578082015181840152602081019050612156565b60008484015250505050565b6000601f19601f8301169050919050565b600061219982612137565b6121a38185612142565b93506121b3818560208601612153565b6121bc8161217d565b840191505092915050565b600060208201905081810360008301526121e1818461218e565b905092915050565b6000819050919050565b6121fc816121e9565b811461220757600080fd5b50565b600081359050612219816121f3565b92915050565b60006020828403121561223557612234612072565b5b60006122438482850161220a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006122778261224c565b9050919050565b6122878161226c565b82525050565b60006020820190506122a2600083018461227e565b92915050565b6122b18161226c565b81146122bc57600080fd5b50565b6000813590506122ce816122a8565b92915050565b600080604083850312156122eb576122ea612072565b5b60006122f9858286016122bf565b925050602061230a8582860161220a565b9150509250929050565b61231d816121e9565b82525050565b60006020820190506123386000830184612314565b92915050565b60008060006060848603121561235757612356612072565b5b6000612365868287016122bf565b9350506020612376868287016122bf565b92505060406123878682870161220a565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f8401126123b6576123b5612391565b5b8235905067ffffffffffffffff8111156123d3576123d2612396565b5b6020830191508360018202830111156123ef576123ee61239b565b5b9250929050565b6000806020838503121561240d5761240c612072565b5b600083013567ffffffffffffffff81111561242b5761242a612077565b5b612437858286016123a0565b92509250509250929050565b60006020828403121561245957612458612072565b5b6000612467848285016122bf565b91505092915050565b600060ff82169050919050565b61248681612470565b811461249157600080fd5b50565b6000813590506124a38161247d565b92915050565b600080604083850312156124c0576124bf612072565b5b60006124ce858286016122bf565b92505060206124df85828601612494565b9150509250929050565b6124f281612101565b81146124fd57600080fd5b50565b60008135905061250f816124e9565b92915050565b6000806040838503121561252c5761252b612072565b5b600061253a858286016122bf565b925050602061254b85828601612500565b9150509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6125928261217d565b810181811067ffffffffffffffff821117156125b1576125b061255a565b5b80604052505050565b60006125c4612068565b90506125d08282612589565b919050565b600067ffffffffffffffff8211156125f0576125ef61255a565b5b6125f98261217d565b9050602081019050919050565b82818337600083830152505050565b6000612628612623846125d5565b6125ba565b90508281526020810184848401111561264457612643612555565b5b61264f848285612606565b509392505050565b600082601f83011261266c5761266b612391565b5b813561267c848260208601612615565b91505092915050565b6000806000806080858703121561269f5761269e612072565b5b60006126ad878288016122bf565b94505060206126be878288016122bf565b93505060406126cf8782880161220a565b925050606085013567ffffffffffffffff8111156126f0576126ef612077565b5b6126fc87828801612657565b91505092959194509250565b6000806040838503121561271f5761271e612072565b5b600061272d858286016122bf565b925050602061273e858286016122bf565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061278f57607f821691505b6020821081036127a2576127a1612748565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006127de602083612142565b91506127e9826127a8565b602082019050919050565b6000602082019050818103600083015261280d816127d1565b9050919050565b600081905092915050565b50565b600061282f600083612814565b915061283a8261281f565b600082019050919050565b600061285082612822565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000612890601083612142565b915061289b8261285a565b602082019050919050565b600060208201905081810360008301526128bf81612883565b9050919050565b600082905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026129337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826128f6565b61293d86836128f6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061297a612975612970846121e9565b612955565b6121e9565b9050919050565b6000819050919050565b6129948361295f565b6129a86129a082612981565b848454612903565b825550505050565b600090565b6129bd6129b0565b6129c881848461298b565b505050565b5b818110156129ec576129e16000826129b5565b6001810190506129ce565b5050565b601f821115612a3157612a02816128d1565b612a0b846128e6565b81016020851015612a1a578190505b612a2e612a26856128e6565b8301826129cd565b50505b505050565b600082821c905092915050565b6000612a5460001984600802612a36565b1980831691505092915050565b6000612a6d8383612a43565b9150826002028217905092915050565b612a8783836128c6565b67ffffffffffffffff811115612aa057612a9f61255a565b5b612aaa8254612777565b612ab58282856129f0565b6000601f831160018114612ae45760008415612ad2578287013590505b612adc8582612a61565b865550612b44565b601f198416612af2866128d1565b60005b82811015612b1a57848901358255600182019150602085019450602081019050612af5565b86831015612b375784890135612b33601f891682612a43565b8355505b6001600288020188555050505b50505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612b87826121e9565b9150612b92836121e9565b9250828201905080821115612baa57612ba9612b4d565b5b92915050565b6000612bbb826121e9565b9150612bc6836121e9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612bff57612bfe612b4d565b5b828202905092915050565b7f506c656173652073656e642074686520657861637420616d6f756e742e000000600082015250565b6000612c40601d83612142565b9150612c4b82612c0a565b602082019050919050565b60006020820190508181036000830152612c6f81612c33565b9050919050565b7f4e6f206d6f726500000000000000000000000000000000000000000000000000600082015250565b6000612cac600783612142565b9150612cb782612c76565b602082019050919050565b60006020820190508181036000830152612cdb81612c9f565b9050919050565b7f4d696e74696e67206973206e6f74206c69766520796574000000000000000000600082015250565b6000612d18601783612142565b9150612d2382612ce2565b602082019050919050565b60006020820190508181036000830152612d4781612d0b565b9050919050565b7f4d61782070657220545820726561636865642e00000000000000000000000000600082015250565b6000612d84601383612142565b9150612d8f82612d4e565b602082019050919050565b60006020820190508181036000830152612db381612d77565b9050919050565b600081905092915050565b6000612dd082612137565b612dda8185612dba565b9350612dea818560208601612153565b80840191505092915050565b6000612e028285612dc5565b9150612e0e8284612dc5565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e76602683612142565b9150612e8182612e1a565b604082019050919050565b60006020820190508181036000830152612ea581612e69565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000612ed382612eac565b612edd8185612eb7565b9350612eed818560208601612153565b612ef68161217d565b840191505092915050565b6000608082019050612f16600083018761227e565b612f23602083018661227e565b612f306040830185612314565b8181036060830152612f428184612ec8565b905095945050505050565b600081519050612f5c816120a8565b92915050565b600060208284031215612f7857612f77612072565b5b6000612f8684828501612f4d565b9150509291505056fea26469706673582212200c4e742668c5597088f6a663d700e2957091f9dd9bc75b9930962cf5b180a1d864736f6c63430008100033

Deployed Bytecode Sourcemap

44015:2048:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15230:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20243:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22311:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21771:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14284:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23197:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44259:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45854:206;;;;;;;;;;;;;:::i;:::-;;23438:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45358:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20032:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15909:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43110:103;;;;;;;;;;;;;:::i;:::-;;45706:139;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42459:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45604:92;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20412:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44136:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44662:685;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22587:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44215:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23694:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20587:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44338:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44298:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22966:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43368:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44179:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15230:615;15315:4;15630:10;15615:25;;:11;:25;;;;:102;;;;15707:10;15692:25;;:11;:25;;;;15615:102;:179;;;;15784:10;15769:25;;:11;:25;;;;15615:179;15595:199;;15230:615;;;:::o;20243:100::-;20297:13;20330:5;20323:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20243:100;:::o;22311:204::-;22379:7;22404:16;22412:7;22404;:16::i;:::-;22399:64;;22429:34;;;;;;;;;;;;;;22399:64;22483:15;:24;22499:7;22483:24;;;;;;;;;;;;;;;;;;;;;22476:31;;22311:204;;;:::o;21771:474::-;21844:13;21876:27;21895:7;21876:18;:27::i;:::-;21844:61;;21926:5;21920:11;;:2;:11;;;21916:48;;21940:24;;;;;;;;;;;;;;21916:48;22004:5;21981:28;;:19;:17;:19::i;:::-;:28;;;21977:175;;22029:44;22046:5;22053:19;:17;:19::i;:::-;22029:16;:44::i;:::-;22024:128;;22101:35;;;;;;;;;;;;;;22024:128;21977:175;22191:2;22164:15;:24;22180:7;22164:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;22229:7;22225:2;22209:28;;22218:5;22209:28;;;;;;;;;;;;21833:412;21771:474;;:::o;14284:315::-;14337:7;14565:15;:13;:15::i;:::-;14550:12;;14534:13;;:28;:46;14527:53;;14284:315;:::o;23197:170::-;23331:28;23341:4;23347:2;23351:7;23331:9;:28::i;:::-;23197:170;;;:::o;44259:30::-;;;;:::o;45854:206::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45905:12:::1;45931:10;45923:24;;45969:21;45923:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45904:101;;;46024:7;46016:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45893:167;45854:206::o:0;23438:185::-;23576:39;23593:4;23599:2;23603:7;23576:39;;;;;;;;;;;;:16;:39::i;:::-;23438:185;;;:::o;45358:106::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45449:7:::1;;45433:13;:23;;;;;;;:::i;:::-;;45358:106:::0;;:::o;20032:144::-;20096:7;20139:27;20158:7;20139:18;:27::i;:::-;20116:52;;20032:144;;;:::o;15909:224::-;15973:7;16014:1;15997:19;;:5;:19;;;15993:60;;16025:28;;;;;;;;;;;;;;15993:60;11248:13;16071:18;:25;16090:5;16071:25;;;;;;;;;;;;;;;;:54;16064:61;;15909:224;;;:::o;43110:103::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43175:30:::1;43202:1;43175:18;:30::i;:::-;43110:103::o:0;45706:139::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45791:36:::1;45801:11;45814:12;45791:36;;:9;:36::i;:::-;45706:139:::0;;:::o;42459:87::-;42505:7;42532:6;;;;;;;;;;;42525:13;;42459:87;:::o;45604:92::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45679:9:::1;45671:5;:17;;;;45604:92:::0;:::o;20412:104::-;20468:13;20501:7;20494:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20412:104;:::o;44136:34::-;;;;:::o;44662:685::-;44719:12;44734:5;;44719:20;;44750:11;44802:1;44790:9;;:13;;;;:::i;:::-;44782:5;44766:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;44765:115;;;;;44863:16;;44854:5;44822:17;:29;44840:10;44822:29;;;;;;;;;;;;;;;;:37;;;;:::i;:::-;:57;;44765:115;44750:131;;44898:6;44894:47;;;44928:1;44921:8;;44894:47;44982:4;44974:5;:12;;;;:::i;:::-;44961:9;:25;;44953:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;45075:1;45063:9;;:13;;;;:::i;:::-;45055:5;45039:13;:11;:13::i;:::-;:21;;;;:::i;:::-;:37;45031:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;45107:11;;;;;;;;;;;45099:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;45184:1;45173:8;;:12;;;;:::i;:::-;45165:5;:20;45157:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;45226:6;45222:77;;;45282:5;45249:17;:29;45267:10;45249:29;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;45222:77;45311:28;45321:10;45333:5;45311:9;:28::i;:::-;44708:639;;44662:685;:::o;22587:308::-;22698:19;:17;:19::i;:::-;22686:31;;:8;:31;;;22682:61;;22726:17;;;;;;;;;;;;;;22682:61;22808:8;22756:18;:39;22775:19;:17;:19::i;:::-;22756:39;;;;;;;;;;;;;;;:49;22796:8;22756:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;22868:8;22832:55;;22847:19;:17;:19::i;:::-;22832:55;;;22878:8;22832:55;;;;;;:::i;:::-;;;;;;;;22587:308;;:::o;44215:35::-;;;;:::o;23694:396::-;23861:28;23871:4;23877:2;23881:7;23861:9;:28::i;:::-;23922:1;23904:2;:14;;;:19;23900:183;;23943:56;23974:4;23980:2;23984:7;23993:5;23943:30;:56::i;:::-;23938:145;;24027:40;;;;;;;;;;;;;;23938:145;23900:183;23694:396;;;;:::o;20587:318::-;20660:13;20691:16;20699:7;20691;:16::i;:::-;20686:59;;20716:29;;;;;;;;;;;;;;20686:59;20758:21;20782:10;:8;:10::i;:::-;20758:34;;20835:1;20816:7;20810:21;:26;:87;;;;;;;;;;;;;;;;;20863:7;20872:18;20882:7;20872:9;:18::i;:::-;20846:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20810:87;20803:94;;;20587:318;;;:::o;44338:30::-;;;;;;;;;;;;;:::o;44298:31::-;;;;:::o;22966:164::-;23063:4;23087:18;:25;23106:5;23087:25;;;;;;;;;;;;;;;:35;23113:8;23087:35;;;;;;;;;;;;;;;;;;;;;;;;;23080:42;;22966:164;;;;:::o;43368:201::-;42690:12;:10;:12::i;:::-;42679:23;;:7;:5;:7::i;:::-;:23;;;42671:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43477:1:::1;43457:22;;:8;:22;;::::0;43449:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;43533:28;43552:8;43533:18;:28::i;:::-;43368:201:::0;:::o;44179:27::-;;;;:::o;24345:273::-;24402:4;24458:7;24439:15;:13;:15::i;:::-;:26;;:66;;;;;24492:13;;24482:7;:23;24439:66;:152;;;;;24590:1;12018:8;24543:17;:26;24561:7;24543:26;;;;;;;;;;;;:43;:48;24439:152;24419:172;;24345:273;;;:::o;17547:1129::-;17614:7;17634:12;17649:7;17634:22;;17717:4;17698:15;:13;:15::i;:::-;:23;17694:915;;17751:13;;17744:4;:20;17740:869;;;17789:14;17806:17;:23;17824:4;17806:23;;;;;;;;;;;;17789:40;;17922:1;12018:8;17895:6;:23;:28;17891:699;;18414:113;18431:1;18421:6;:11;18414:113;;18474:17;:25;18492:6;;;;;;;18474:25;;;;;;;;;;;;18465:34;;18414:113;;;18560:6;18553:13;;;;;;17891:699;17766:843;17740:869;17694:915;18637:31;;;;;;;;;;;;;;17547:1129;;;;:::o;38327:105::-;38387:7;38414:10;38407:17;;38327:105;:::o;13807:92::-;13863:7;13807:92;:::o;29584:2515::-;29699:27;29729;29748:7;29729:18;:27::i;:::-;29699:57;;29814:4;29773:45;;29789:19;29773:45;;;29769:86;;29827:28;;;;;;;;;;;;;;29769:86;29868:22;29917:4;29894:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;29938:43;29955:4;29961:19;:17;:19::i;:::-;29938:16;:43::i;:::-;29894:87;:147;;;;30022:19;:17;:19::i;:::-;29998:43;;:20;30010:7;29998:11;:20::i;:::-;:43;;;29894:147;29868:174;;30060:17;30055:66;;30086:35;;;;;;;;;;;;;;30055:66;30150:1;30136:16;;:2;:16;;;30132:52;;30161:23;;;;;;;;;;;;;;30132:52;30197:43;30219:4;30225:2;30229:7;30238:1;30197:21;:43::i;:::-;30313:15;:24;30329:7;30313:24;;;;;;;;;;;;30306:31;;;;;;;;;;;30705:18;:24;30724:4;30705:24;;;;;;;;;;;;;;;;30703:26;;;;;;;;;;;;30774:18;:22;30793:2;30774:22;;;;;;;;;;;;;;;;30772:24;;;;;;;;;;;12300:8;11902:3;31155:15;:41;;31113:21;31131:2;31113:17;:21::i;:::-;:84;:128;31067:17;:26;31085:7;31067:26;;;;;;;;;;;:174;;;;31411:1;12300:8;31361:19;:46;:51;31357:626;;31433:19;31465:1;31455:7;:11;31433:33;;31622:1;31588:17;:30;31606:11;31588:30;;;;;;;;;;;;:35;31584:384;;31726:13;;31711:11;:28;31707:242;;31906:19;31873:17;:30;31891:11;31873:30;;;;;;;;;;;:52;;;;31707:242;31584:384;31414:569;31357:626;32030:7;32026:2;32011:27;;32020:4;32011:27;;;;;;;;;;;;32049:42;32070:4;32076:2;32080:7;32089:1;32049:20;:42::i;:::-;29688:2411;;29584:2515;;;:::o;41183:98::-;41236:7;41263:10;41256:17;;41183:98;:::o;43729:191::-;43803:16;43822:6;;;;;;;;;;;43803:25;;43848:8;43839:6;;:17;;;;;;;;;;;;;;;;;;43903:8;43872:40;;43893:8;43872:40;;;;;;;;;;;;43792:128;43729:191;:::o;24702:104::-;24771:27;24781:2;24785:8;24771:27;;;;;;;;;;;;:9;:27::i;:::-;24702:104;;:::o;35796:716::-;35959:4;36005:2;35980:45;;;36026:19;:17;:19::i;:::-;36047:4;36053:7;36062:5;35980:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;35976:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36280:1;36263:6;:13;:18;36259:235;;36309:40;;;;;;;;;;;;;;36259:235;36452:6;36446:13;36437:6;36433:2;36429:15;36422:38;35976:529;36149:54;;;36139:64;;;:6;:64;;;;36132:71;;;35796:716;;;;;;:::o;45475:113::-;45534:13;45567;45560:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45475:113;:::o;38538:1959::-;38595:17;39016:3;39009:4;39003:11;38999:21;38992:28;;39107:3;39101:4;39094:17;39213:3;39670:5;39800:1;39795:3;39791:11;39784:18;;39937:2;39931:4;39927:13;39923:2;39919:22;39914:3;39906:36;39978:2;39972:4;39968:13;39960:21;;39561:682;39997:4;39561:682;;;40172:1;40167:3;40163:11;40156:18;;40223:2;40217:4;40213:13;40209:2;40205:22;40200:3;40192:36;40093:2;40087:4;40083:13;40075:21;;39561:682;;;39565:431;40294:3;40289;40285:13;40409:2;40404:3;40400:12;40393:19;;40472:6;40467:3;40460:19;38634:1856;;38538:1959;;;:::o;37160:159::-;;;;;:::o;21332:148::-;21396:14;21457:5;21447:15;;21332:148;;;:::o;37978:158::-;;;;;:::o;25179:2236::-;25302:20;25325:13;;25302:36;;25367:1;25353:16;;:2;:16;;;25349:48;;25378:19;;;;;;;;;;;;;;25349:48;25424:1;25412:8;:13;25408:44;;25434:18;;;;;;;;;;;;;;25408:44;25465:61;25495:1;25499:2;25503:12;25517:8;25465:21;:61::i;:::-;26069:1;11385:2;26040:1;:25;;26039:31;26027:8;:44;26001:18;:22;26020:2;26001:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;12165:3;26470:29;26497:1;26485:8;:13;26470:14;:29::i;:::-;:56;;11902:3;26407:15;:41;;26365:21;26383:2;26365:17;:21::i;:::-;:84;:162;26314:17;:31;26332:12;26314:31;;;;;;;;;;;:213;;;;26544:20;26567:12;26544:35;;26594:11;26623:8;26608:12;:23;26594:37;;26670:1;26652:2;:14;;;:19;26648:635;;26692:313;26748:12;26744:2;26723:38;;26740:1;26723:38;;;;;;;;;;;;26789:69;26828:1;26832:2;26836:14;;;;;;26852:5;26789:30;:69::i;:::-;26784:174;;26894:40;;;;;;;;;;;;;;26784:174;27000:3;26985:12;:18;26692:313;;27086:12;27069:13;;:29;27065:43;;27100:8;;;27065:43;26648:635;;;27149:119;27205:14;;;;;;27201:2;27180:40;;27197:1;27180:40;;;;;;;;;;;;27263:3;27248:12;:18;27149:119;;26648:635;27313:12;27297:13;:28;;;;25778:1559;;27347:60;27376:1;27380:2;27384:12;27398:8;27347:20;:60::i;:::-;25291:2124;25179:2236;;;:::o;21567:142::-;21625:14;21686:5;21676:15;;21567:142;;;:::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:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:118::-;4977:24;4995:5;4977:24;:::i;:::-;4972:3;4965:37;4890:118;;:::o;5014:222::-;5107:4;5145:2;5134:9;5130:18;5122:26;;5158:71;5226:1;5215:9;5211:17;5202:6;5158:71;:::i;:::-;5014:222;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:117::-;5976:1;5973;5966:12;5990:117;6099:1;6096;6089:12;6113:117;6222:1;6219;6212:12;6250:553;6308:8;6318:6;6368:3;6361:4;6353:6;6349:17;6345:27;6335:122;;6376:79;;:::i;:::-;6335:122;6489:6;6476:20;6466:30;;6519:18;6511:6;6508:30;6505:117;;;6541:79;;:::i;:::-;6505:117;6655:4;6647:6;6643:17;6631:29;;6709:3;6701:4;6693:6;6689:17;6679:8;6675:32;6672:41;6669:128;;;6716:79;;:::i;:::-;6669:128;6250:553;;;;;:::o;6809:529::-;6880:6;6888;6937:2;6925:9;6916:7;6912:23;6908:32;6905:119;;;6943:79;;:::i;:::-;6905:119;7091:1;7080:9;7076:17;7063:31;7121:18;7113:6;7110:30;7107:117;;;7143:79;;:::i;:::-;7107:117;7256:65;7313:7;7304:6;7293:9;7289:22;7256:65;:::i;:::-;7238:83;;;;7034:297;6809:529;;;;;:::o;7344:329::-;7403:6;7452:2;7440:9;7431:7;7427:23;7423:32;7420:119;;;7458:79;;:::i;:::-;7420:119;7578:1;7603:53;7648:7;7639:6;7628:9;7624:22;7603:53;:::i;:::-;7593:63;;7549:117;7344:329;;;;:::o;7679:86::-;7714:7;7754:4;7747:5;7743:16;7732:27;;7679:86;;;:::o;7771:118::-;7842:22;7858:5;7842:22;:::i;:::-;7835:5;7832:33;7822:61;;7879:1;7876;7869:12;7822:61;7771:118;:::o;7895:135::-;7939:5;7977:6;7964:20;7955:29;;7993:31;8018:5;7993:31;:::i;:::-;7895:135;;;;:::o;8036:470::-;8102:6;8110;8159:2;8147:9;8138:7;8134:23;8130:32;8127:119;;;8165:79;;:::i;:::-;8127:119;8285:1;8310:53;8355:7;8346:6;8335:9;8331:22;8310:53;:::i;:::-;8300:63;;8256:117;8412:2;8438:51;8481:7;8472:6;8461:9;8457:22;8438:51;:::i;:::-;8428:61;;8383:116;8036:470;;;;;:::o;8512:116::-;8582:21;8597:5;8582:21;:::i;:::-;8575:5;8572:32;8562:60;;8618:1;8615;8608:12;8562:60;8512:116;:::o;8634:133::-;8677:5;8715:6;8702:20;8693:29;;8731:30;8755:5;8731:30;:::i;:::-;8634:133;;;;:::o;8773:468::-;8838:6;8846;8895:2;8883:9;8874:7;8870:23;8866:32;8863:119;;;8901:79;;:::i;:::-;8863:119;9021:1;9046:53;9091:7;9082:6;9071:9;9067:22;9046:53;:::i;:::-;9036:63;;8992:117;9148:2;9174:50;9216:7;9207:6;9196:9;9192:22;9174:50;:::i;:::-;9164:60;;9119:115;8773:468;;;;;:::o;9247:117::-;9356:1;9353;9346:12;9370:180;9418:77;9415:1;9408:88;9515:4;9512:1;9505:15;9539:4;9536:1;9529:15;9556:281;9639:27;9661:4;9639:27;:::i;:::-;9631:6;9627:40;9769:6;9757:10;9754:22;9733:18;9721:10;9718:34;9715:62;9712:88;;;9780:18;;:::i;:::-;9712:88;9820:10;9816:2;9809:22;9599:238;9556:281;;:::o;9843:129::-;9877:6;9904:20;;:::i;:::-;9894:30;;9933:33;9961:4;9953:6;9933:33;:::i;:::-;9843:129;;;:::o;9978:307::-;10039:4;10129:18;10121:6;10118:30;10115:56;;;10151:18;;:::i;:::-;10115:56;10189:29;10211:6;10189:29;:::i;:::-;10181:37;;10273:4;10267;10263:15;10255:23;;9978:307;;;:::o;10291:146::-;10388:6;10383:3;10378;10365:30;10429:1;10420:6;10415:3;10411:16;10404:27;10291:146;;;:::o;10443:423::-;10520:5;10545:65;10561:48;10602:6;10561:48;:::i;:::-;10545:65;:::i;:::-;10536:74;;10633:6;10626:5;10619:21;10671:4;10664:5;10660:16;10709:3;10700:6;10695:3;10691:16;10688:25;10685:112;;;10716:79;;:::i;:::-;10685:112;10806:54;10853:6;10848:3;10843;10806:54;:::i;:::-;10526:340;10443:423;;;;;:::o;10885:338::-;10940:5;10989:3;10982:4;10974:6;10970:17;10966:27;10956:122;;10997:79;;:::i;:::-;10956:122;11114:6;11101:20;11139:78;11213:3;11205:6;11198:4;11190:6;11186:17;11139:78;:::i;:::-;11130:87;;10946:277;10885:338;;;;:::o;11229:943::-;11324:6;11332;11340;11348;11397:3;11385:9;11376:7;11372:23;11368:33;11365:120;;;11404:79;;:::i;:::-;11365:120;11524:1;11549:53;11594:7;11585:6;11574:9;11570:22;11549:53;:::i;:::-;11539:63;;11495:117;11651:2;11677:53;11722:7;11713:6;11702:9;11698:22;11677:53;:::i;:::-;11667:63;;11622:118;11779:2;11805:53;11850:7;11841:6;11830:9;11826:22;11805:53;:::i;:::-;11795:63;;11750:118;11935:2;11924:9;11920:18;11907:32;11966:18;11958:6;11955:30;11952:117;;;11988:79;;:::i;:::-;11952:117;12093:62;12147:7;12138:6;12127:9;12123:22;12093:62;:::i;:::-;12083:72;;11878:287;11229:943;;;;;;;:::o;12178:474::-;12246:6;12254;12303:2;12291:9;12282:7;12278:23;12274:32;12271:119;;;12309:79;;:::i;:::-;12271:119;12429:1;12454:53;12499:7;12490:6;12479:9;12475:22;12454:53;:::i;:::-;12444:63;;12400:117;12556:2;12582:53;12627:7;12618:6;12607:9;12603:22;12582:53;:::i;:::-;12572:63;;12527:118;12178:474;;;;;:::o;12658:180::-;12706:77;12703:1;12696:88;12803:4;12800:1;12793:15;12827:4;12824:1;12817:15;12844:320;12888:6;12925:1;12919:4;12915:12;12905:22;;12972:1;12966:4;12962:12;12993:18;12983:81;;13049:4;13041:6;13037:17;13027:27;;12983:81;13111:2;13103:6;13100:14;13080:18;13077:38;13074:84;;13130:18;;:::i;:::-;13074:84;12895:269;12844:320;;;:::o;13170:182::-;13310:34;13306:1;13298:6;13294:14;13287:58;13170:182;:::o;13358:366::-;13500:3;13521:67;13585:2;13580:3;13521:67;:::i;:::-;13514:74;;13597:93;13686:3;13597:93;:::i;:::-;13715:2;13710:3;13706:12;13699:19;;13358:366;;;:::o;13730:419::-;13896:4;13934:2;13923:9;13919:18;13911:26;;13983:9;13977:4;13973:20;13969:1;13958:9;13954:17;13947:47;14011:131;14137:4;14011:131;:::i;:::-;14003:139;;13730:419;;;:::o;14155:147::-;14256:11;14293:3;14278:18;;14155:147;;;;:::o;14308:114::-;;:::o;14428:398::-;14587:3;14608:83;14689:1;14684:3;14608:83;:::i;:::-;14601:90;;14700:93;14789:3;14700:93;:::i;:::-;14818:1;14813:3;14809:11;14802:18;;14428:398;;;:::o;14832:379::-;15016:3;15038:147;15181:3;15038:147;:::i;:::-;15031:154;;15202:3;15195:10;;14832:379;;;:::o;15217:166::-;15357:18;15353:1;15345:6;15341:14;15334:42;15217:166;:::o;15389:366::-;15531:3;15552:67;15616:2;15611:3;15552:67;:::i;:::-;15545:74;;15628:93;15717:3;15628:93;:::i;:::-;15746:2;15741:3;15737:12;15730:19;;15389:366;;;:::o;15761:419::-;15927:4;15965:2;15954:9;15950:18;15942:26;;16014:9;16008:4;16004:20;16000:1;15989:9;15985:17;15978:47;16042:131;16168:4;16042:131;:::i;:::-;16034:139;;15761:419;;;:::o;16186:97::-;16245:6;16273:3;16263:13;;16186:97;;;;:::o;16289:141::-;16338:4;16361:3;16353:11;;16384:3;16381:1;16374:14;16418:4;16415:1;16405:18;16397:26;;16289:141;;;:::o;16436:93::-;16473:6;16520:2;16515;16508:5;16504:14;16500:23;16490:33;;16436:93;;;:::o;16535:107::-;16579:8;16629:5;16623:4;16619:16;16598:37;;16535:107;;;;:::o;16648:393::-;16717:6;16767:1;16755:10;16751:18;16790:97;16820:66;16809:9;16790:97;:::i;:::-;16908:39;16938:8;16927:9;16908:39;:::i;:::-;16896:51;;16980:4;16976:9;16969:5;16965:21;16956:30;;17029:4;17019:8;17015:19;17008:5;17005:30;16995:40;;16724:317;;16648:393;;;;;:::o;17047:60::-;17075:3;17096:5;17089:12;;17047:60;;;:::o;17113:142::-;17163:9;17196:53;17214:34;17223:24;17241:5;17223:24;:::i;:::-;17214:34;:::i;:::-;17196:53;:::i;:::-;17183:66;;17113:142;;;:::o;17261:75::-;17304:3;17325:5;17318:12;;17261:75;;;:::o;17342:269::-;17452:39;17483:7;17452:39;:::i;:::-;17513:91;17562:41;17586:16;17562:41;:::i;:::-;17554:6;17547:4;17541:11;17513:91;:::i;:::-;17507:4;17500:105;17418:193;17342:269;;;:::o;17617:73::-;17662:3;17617:73;:::o;17696:189::-;17773:32;;:::i;:::-;17814:65;17872:6;17864;17858:4;17814:65;:::i;:::-;17749:136;17696:189;;:::o;17891:186::-;17951:120;17968:3;17961:5;17958:14;17951:120;;;18022:39;18059:1;18052:5;18022:39;:::i;:::-;17995:1;17988:5;17984:13;17975:22;;17951:120;;;17891:186;;:::o;18083:543::-;18184:2;18179:3;18176:11;18173:446;;;18218:38;18250:5;18218:38;:::i;:::-;18302:29;18320:10;18302:29;:::i;:::-;18292:8;18288:44;18485:2;18473:10;18470:18;18467:49;;;18506:8;18491:23;;18467:49;18529:80;18585:22;18603:3;18585:22;:::i;:::-;18575:8;18571:37;18558:11;18529:80;:::i;:::-;18188:431;;18173:446;18083:543;;;:::o;18632:117::-;18686:8;18736:5;18730:4;18726:16;18705:37;;18632:117;;;;:::o;18755:169::-;18799:6;18832:51;18880:1;18876:6;18868:5;18865:1;18861:13;18832:51;:::i;:::-;18828:56;18913:4;18907;18903:15;18893:25;;18806:118;18755:169;;;;:::o;18929:295::-;19005:4;19151:29;19176:3;19170:4;19151:29;:::i;:::-;19143:37;;19213:3;19210:1;19206:11;19200:4;19197:21;19189:29;;18929:295;;;;:::o;19229:1403::-;19353:44;19393:3;19388;19353:44;:::i;:::-;19462:18;19454:6;19451:30;19448:56;;;19484:18;;:::i;:::-;19448:56;19528:38;19560:4;19554:11;19528:38;:::i;:::-;19613:67;19673:6;19665;19659:4;19613:67;:::i;:::-;19707:1;19736:2;19728:6;19725:14;19753:1;19748:632;;;;20424:1;20441:6;20438:84;;;20497:9;20492:3;20488:19;20475:33;20466:42;;20438:84;20548:67;20608:6;20601:5;20548:67;:::i;:::-;20542:4;20535:81;20397:229;19718:908;;19748:632;19800:4;19796:9;19788:6;19784:22;19834:37;19866:4;19834:37;:::i;:::-;19893:1;19907:215;19921:7;19918:1;19915:14;19907:215;;;20007:9;20002:3;19998:19;19985:33;19977:6;19970:49;20058:1;20050:6;20046:14;20036:24;;20105:2;20094:9;20090:18;20077:31;;19944:4;19941:1;19937:12;19932:17;;19907:215;;;20150:6;20141:7;20138:19;20135:186;;;20215:9;20210:3;20206:19;20193:33;20258:48;20300:4;20292:6;20288:17;20277:9;20258:48;:::i;:::-;20250:6;20243:64;20158:163;20135:186;20367:1;20363;20355:6;20351:14;20347:22;20341:4;20334:36;19755:625;;;19718:908;;19328:1304;;;19229:1403;;;:::o;20638:180::-;20686:77;20683:1;20676:88;20783:4;20780:1;20773:15;20807:4;20804:1;20797:15;20824:191;20864:3;20883:20;20901:1;20883:20;:::i;:::-;20878:25;;20917:20;20935:1;20917:20;:::i;:::-;20912:25;;20960:1;20957;20953:9;20946:16;;20981:3;20978:1;20975:10;20972:36;;;20988:18;;:::i;:::-;20972:36;20824:191;;;;:::o;21021:348::-;21061:7;21084:20;21102:1;21084:20;:::i;:::-;21079:25;;21118:20;21136:1;21118:20;:::i;:::-;21113:25;;21306:1;21238:66;21234:74;21231:1;21228:81;21223:1;21216:9;21209:17;21205:105;21202:131;;;21313:18;;:::i;:::-;21202:131;21361:1;21358;21354:9;21343:20;;21021:348;;;;:::o;21375:179::-;21515:31;21511:1;21503:6;21499:14;21492:55;21375:179;:::o;21560:366::-;21702:3;21723:67;21787:2;21782:3;21723:67;:::i;:::-;21716:74;;21799:93;21888:3;21799:93;:::i;:::-;21917:2;21912:3;21908:12;21901:19;;21560:366;;;:::o;21932:419::-;22098:4;22136:2;22125:9;22121:18;22113:26;;22185:9;22179:4;22175:20;22171:1;22160:9;22156:17;22149:47;22213:131;22339:4;22213:131;:::i;:::-;22205:139;;21932:419;;;:::o;22357:157::-;22497:9;22493:1;22485:6;22481:14;22474:33;22357:157;:::o;22520:365::-;22662:3;22683:66;22747:1;22742:3;22683:66;:::i;:::-;22676:73;;22758:93;22847:3;22758:93;:::i;:::-;22876:2;22871:3;22867:12;22860:19;;22520:365;;;:::o;22891:419::-;23057:4;23095:2;23084:9;23080:18;23072:26;;23144:9;23138:4;23134:20;23130:1;23119:9;23115:17;23108:47;23172:131;23298:4;23172:131;:::i;:::-;23164:139;;22891:419;;;:::o;23316:173::-;23456:25;23452:1;23444:6;23440:14;23433:49;23316:173;:::o;23495:366::-;23637:3;23658:67;23722:2;23717:3;23658:67;:::i;:::-;23651:74;;23734:93;23823:3;23734:93;:::i;:::-;23852:2;23847:3;23843:12;23836:19;;23495:366;;;:::o;23867:419::-;24033:4;24071:2;24060:9;24056:18;24048:26;;24120:9;24114:4;24110:20;24106:1;24095:9;24091:17;24084:47;24148:131;24274:4;24148:131;:::i;:::-;24140:139;;23867:419;;;:::o;24292:169::-;24432:21;24428:1;24420:6;24416:14;24409:45;24292:169;:::o;24467:366::-;24609:3;24630:67;24694:2;24689:3;24630:67;:::i;:::-;24623:74;;24706:93;24795:3;24706:93;:::i;:::-;24824:2;24819:3;24815:12;24808:19;;24467:366;;;:::o;24839:419::-;25005:4;25043:2;25032:9;25028:18;25020:26;;25092:9;25086:4;25082:20;25078:1;25067:9;25063:17;25056:47;25120:131;25246:4;25120:131;:::i;:::-;25112:139;;24839:419;;;:::o;25264:148::-;25366:11;25403:3;25388:18;;25264:148;;;;:::o;25418:390::-;25524:3;25552:39;25585:5;25552:39;:::i;:::-;25607:89;25689:6;25684:3;25607:89;:::i;:::-;25600:96;;25705:65;25763:6;25758:3;25751:4;25744:5;25740:16;25705:65;:::i;:::-;25795:6;25790:3;25786:16;25779:23;;25528:280;25418:390;;;;:::o;25814:435::-;25994:3;26016:95;26107:3;26098:6;26016:95;:::i;:::-;26009:102;;26128:95;26219:3;26210:6;26128:95;:::i;:::-;26121:102;;26240:3;26233:10;;25814:435;;;;;:::o;26255:225::-;26395:34;26391:1;26383:6;26379:14;26372:58;26464:8;26459:2;26451:6;26447:15;26440:33;26255:225;:::o;26486:366::-;26628:3;26649:67;26713:2;26708:3;26649:67;:::i;:::-;26642:74;;26725:93;26814:3;26725:93;:::i;:::-;26843:2;26838:3;26834:12;26827:19;;26486:366;;;:::o;26858:419::-;27024:4;27062:2;27051:9;27047:18;27039:26;;27111:9;27105:4;27101:20;27097:1;27086:9;27082:17;27075:47;27139:131;27265:4;27139:131;:::i;:::-;27131:139;;26858:419;;;:::o;27283:98::-;27334:6;27368:5;27362:12;27352:22;;27283:98;;;:::o;27387:168::-;27470:11;27504:6;27499:3;27492:19;27544:4;27539:3;27535:14;27520:29;;27387:168;;;;:::o;27561:373::-;27647:3;27675:38;27707:5;27675:38;:::i;:::-;27729:70;27792:6;27787:3;27729:70;:::i;:::-;27722:77;;27808:65;27866:6;27861:3;27854:4;27847:5;27843:16;27808:65;:::i;:::-;27898:29;27920:6;27898:29;:::i;:::-;27893:3;27889:39;27882:46;;27651:283;27561:373;;;;:::o;27940:640::-;28135:4;28173:3;28162:9;28158:19;28150:27;;28187:71;28255:1;28244:9;28240:17;28231:6;28187:71;:::i;:::-;28268:72;28336:2;28325:9;28321:18;28312:6;28268:72;:::i;:::-;28350;28418:2;28407:9;28403:18;28394:6;28350:72;:::i;:::-;28469:9;28463:4;28459:20;28454:2;28443:9;28439:18;28432:48;28497:76;28568:4;28559:6;28497:76;:::i;:::-;28489:84;;27940:640;;;;;;;:::o;28586:141::-;28642:5;28673:6;28667:13;28658:22;;28689:32;28715:5;28689:32;:::i;:::-;28586:141;;;;:::o;28733:349::-;28802:6;28851:2;28839:9;28830:7;28826:23;28822:32;28819:119;;;28857:79;;:::i;:::-;28819:119;28977:1;29002:63;29057:7;29048:6;29037:9;29033:22;29002:63;:::i;:::-;28992:73;;28948:127;28733:349;;;;:::o

Swarm Source

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