ETH Price: $3,171.70 (-7.86%)
Gas: 3 Gwei

Token

UNDEADMONSTERTOWN (UMT)
 

Overview

Max Total Supply

707 UMT

Holders

121

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
5 UMT
0xda3888467e28643dfb77273f76257beee05f1810
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:
UndeadMonsterTown

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// 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: @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: 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: contracts/undeadmonstertown.sol

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




contract UndeadMonsterTown is Ownable, ERC721A {
    uint256 constant public MAX_SUPPLY = 7000;
    uint256 public TEAM_MINT_MAX = 10;

    uint256 public publicPrice = 0.003 ether;

    uint256 constant public PUBLIC_MINT_LIMIT_TXN = 20;
    uint256 constant public PUBLIC_MINT_LIMIT = 100;

    uint256 public TOTAL_SUPPLY_TEAM;

    string public revealedURI;
    
    string public hiddenURI = "ipfs://QmNjSPTcz9Pk8S68xBFU7Z6m32X4NHNGPgAsMNAhY1YeTg";

    // OpenSea CONTRACT_URI - https://docs.opensea.io/docs/contract-level-metadata
    string public CONTRACT_URI = "ipfs://QmNjSPTcz9Pk8S68xBFU7Z6m32X4NHNGPgAsMNAhY1YeTg";

    bool public paused = true;
    bool public revealed = false;

    bool public freeSale = true;
    bool public publicSale = false;

    address constant internal ARTIST_ADDRESS = 0xbD3153d8D6564969189d3f1a3bFB84fAbbc082E8;
    address constant internal DEV_ADDRESS = 0x009F2B3C1698aE320c5EdD71cBF151d86C3dfc8a;
    address constant internal WEB_ADDRESS = 0xAf824dD7F47b740AEe3010C1bcC91D804eCAA91A;
    address public teamWallet = 0x41a93d6f081F9E81DE90660341E0eAC091328C94;

    mapping(address => bool) public userMintedFree;
    mapping(address => uint256) public numUserMints;

    constructor() ERC721A("UNDEADMONSTERTOWN", "UMT") { }

    

    // This function is if you want to override the first Token ID# for ERC721A
    // Note: Fun fact - by overloading this method you save a small amount of gas for minting (technically just the first mint)
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function refundOverpay(uint256 price) private {
        if (msg.value > price) {
            (bool succ, ) = payable(msg.sender).call{
                value: (msg.value - price)
            }("");
            require(succ, "Transfer failed");
        }
        else if (msg.value < price) {
            revert("Not enough ETH sent");
        }
    }

  

    function teamMint(uint256 quantity) public payable mintCompliance(quantity) {
        require(msg.sender == teamWallet, "Team minting only");
        require(TOTAL_SUPPLY_TEAM + quantity <= TEAM_MINT_MAX, "No team mints left");
        require(totalSupply() >= 700, "Team mints after free");

        TOTAL_SUPPLY_TEAM += quantity;

        _safeMint(msg.sender, quantity);
    }
    
    function freeMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(freeSale, "Free sale inactive");
        require(msg.value == 0, "This phase is free");
        require(quantity <= 7, "Only 7 free");

        uint256 newSupply = totalSupply() + quantity;
        
        require(newSupply <= 700, "Not enough free supply");

        require(!userMintedFree[msg.sender], "User max free limit");
        
        userMintedFree[msg.sender] = true;

        if(newSupply == 700) {
            freeSale = false;
            publicSale = true;
        }

        _safeMint(msg.sender, quantity);
    }

    function publicMint(uint256 quantity) external payable mintCompliance(quantity) {
        require(publicSale, "Public sale inactive");
        require(quantity <= PUBLIC_MINT_LIMIT_TXN, "Quantity too high");

        uint256 price = publicPrice;
        uint256 currMints = numUserMints[msg.sender];
                
        require(currMints + quantity <= PUBLIC_MINT_LIMIT, "User max mint limit");
        
        refundOverpay(price * quantity);

        numUserMints[msg.sender] = (currMints + quantity);

        _safeMint(msg.sender, quantity);
    }

   
    
    function walletOfOwner(address _owner) public view returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (ownedTokenIndex < ownerTokenCount && currentTokenId <= MAX_SUPPLY) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

        currentTokenId++;
        }

        return ownedTokenIds;
    }

    function tokenURI(uint256 _tokenId) public view override returns (string memory) {
        // Note: You don't REALLY need this require statement since nothing should be querying for non-existing tokens after reveal.
            // That said, it's a public view method so gas efficiency shouldn't come into play.
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");
        
        if (revealed) {
            return string(abi.encodePacked(revealedURI, Strings.toString(_tokenId), ".json"));
        }
        else {
            return hiddenURI;
        }
    }

    // https://docs.opensea.io/docs/contract-level-metadata
    // https://ethereum.stackexchange.com/questions/110924/how-to-properly-implement-a-contracturi-for-on-chain-nfts
    function contractURI() public view returns (string memory) {
        return CONTRACT_URI;
    }

   

    function setTeamMintMax(uint256 _teamMintMax) public onlyOwner {
        TEAM_MINT_MAX = _teamMintMax;
    }

    function setPublicPrice(uint256 _publicPrice) public onlyOwner {
        publicPrice = _publicPrice;
    }

    function setBaseURI(string memory _baseUri) public onlyOwner {
        revealedURI = _baseUri;
    }

    // Note: This method can be hidden/removed if this is a constant.
    function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
        hiddenURI = _hiddenMetadataUri;
    }

    function revealCollection(bool _revealed, string memory _baseUri) public onlyOwner {
        revealed = _revealed;
        revealedURI = _baseUri;
    }

    // https://docs.opensea.io/docs/contract-level-metadata
    function setContractURI(string memory _contractURI) public onlyOwner {
        CONTRACT_URI = _contractURI;
    }

    // Note: Another option is to inherit Pausable without implementing the logic yourself.
        // https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/Pausable.sol
    function setPaused(bool _state) public onlyOwner {
        paused = _state;
    }

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setPublicEnabled(bool _state) public onlyOwner {
        publicSale = _state;
        freeSale = !_state;
    }
    function setFreeEnabled(bool _state) public onlyOwner {
        freeSale = _state;
        publicSale = !_state;
    }

    function setTeamWalletAddress(address _teamWallet) public onlyOwner {
        teamWallet = _teamWallet;
    }

    function withdraw() external payable onlyOwner {
        // Get the current funds to calculate initial percentages
        uint256 currBalance = address(this).balance;

        (bool succ, ) = payable(DEV_ADDRESS).call{
            value: (currBalance * 2833) / 10000
        }("");
        require(succ, "Dev transfer failed");

        (succ, ) = payable(WEB_ADDRESS).call{
            value: (currBalance * 2833) / 10000
        }("");
        require(succ, "Web transfer failed");

        (succ, ) = payable(ARTIST_ADDRESS).call{
            value: (currBalance * 1500) / 10000
        }("");
        require(succ, "Artist transfer failed");

        // Withdraw the ENTIRE remaining balance to the team wallet
        (succ, ) = payable(teamWallet).call{
            value: address(this).balance
        }("");
        require(succ, "Team (remaining) transfer failed");
    }

    // Owner-only mint functionality to "Airdrop" mints to specific users
        // Note: These will likely end up hidden on OpenSea
    function mintToUser(uint256 quantity, address receiver) public onlyOwner mintCompliance(quantity) {
        _safeMint(receiver, quantity);
    }

   

    modifier mintCompliance(uint256 quantity) {
        require(!paused, "Contract is paused");
        require(totalSupply() + quantity <= MAX_SUPPLY, "Not enough mints left");
        require(tx.origin == msg.sender, "No contract minting");
        _;
    }
}

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":[],"name":"CONTRACT_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_MINT_LIMIT_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_MINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY_TEAM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"freeSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"receiver","type":"address"}],"name":"mintToUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numUserMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_revealed","type":"bool"},{"internalType":"string","name":"_baseUri","type":"string"}],"name":"revealCollection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setFreeEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamMintMax","type":"uint256"}],"name":"setTeamMintMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_teamWallet","type":"address"}],"name":"setTeamWalletAddress","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":"quantity","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userMintedFree","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600a600955660aa87bee538000600a556040518060600160405280603581526020016200578a60359139600d908051906020019062000045929190620002f8565b506040518060600160405280603581526020016200578a60359139600e908051906020019062000077929190620002f8565b506001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506001600f60026101000a81548160ff0219169083151502179055506000600f60036101000a81548160ff0219169083151502179055507341a93d6f081f9e81de90660341e0eac091328c94600f60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200014657600080fd5b506040518060400160405280601181526020017f554e444541444d4f4e53544552544f574e0000000000000000000000000000008152506040518060400160405280600381526020017f554d540000000000000000000000000000000000000000000000000000000000815250620001d3620001c76200022360201b60201c565b6200022b60201b60201c565b8160039080519060200190620001eb929190620002f8565b50806004908051906020019062000204929190620002f8565b5062000215620002ef60201b60201c565b60018190555050506200040d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b8280546200030690620003a8565b90600052602060002090601f0160209004810192826200032a576000855562000376565b82601f106200034557805160ff191683800117855562000376565b8280016001018555821562000376579182015b828111156200037557825182559160200191906001019062000358565b5b50905062000385919062000389565b5090565b5b80821115620003a45760008160009055506001016200038a565b5090565b60006002820490506001821680620003c157607f821691505b60208210811415620003d857620003d7620003de565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61536d806200041d6000396000f3fe6080604052600436106102e45760003560e01c806364f640761161019057806395d89b41116100dc578063c627525511610095578063e8a3d4851161006f578063e8a3d48514610ada578063e985e9c514610b05578063f2fde38b14610b42578063f7e8d6ea14610b6b576102e4565b8063c627525514610a4b578063c87b56dd14610a74578063e0a8085314610ab1576102e4565b806395d89b411461094d578063a22cb46514610978578063a4b41a15146109a1578063a945bf80146109cc578063b88d4fde146109f7578063bceae77b14610a20576102e4565b80637af3a1af116101495780638cc54e7f116101235780638cc54e7f146108a55780638da5cb5b146108d05780639007bd72146108fb578063938e3d7b14610924576102e4565b80637af3a1af146108375780637c928fe91461086057806388dedc141461087c576102e4565b806364f64076146107135780636b39fca41461075057806370a082311461077b578063715018a6146107b8578063763ea95f146107cf5780637aeb7242146107fa576102e4565b806332cb6b0c1161024f578063518302271161020857806359927044116101e257806359927044146106575780635c975abb146106825780635ed3e25e146106ad5780636352211e146106d6576102e4565b806351830227146105d857806355f804b31461060357806356b4f6731461062c576102e4565b806332cb6b0c146104e957806333bc1c5c146105145780633ccfd60b1461053f57806342842e0e14610549578063438b6300146105725780634fdd43cb146105af576102e4565b806318160ddd116102a157806318160ddd1461040957806323b872dd146104345780632c4b23341461045d5780632db11544146104865780632fbba115146104a25780632fecf20b146104be576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc14610351578063095ea7b31461038e5780630f15ad8d146103b757806316c38b3c146103e0575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613f85565b610b96565b60405161031d91906146a1565b60405180910390f35b34801561033257600080fd5b5061033b610c28565b60405161034891906146bc565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190614028565b610cba565b6040516103859190614618565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613ebc565b610d36565b005b3480156103c357600080fd5b506103de60048036038101906103d99190614028565b610edd565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613efc565b610f63565b005b34801561041557600080fd5b5061041e610ffc565b60405161042b91906149be565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613da6565b611013565b005b34801561046957600080fd5b50610484600480360381019061047f9190613d39565b611023565b005b6104a0600480360381019061049b9190614028565b6110e3565b005b6104bc60048036038101906104b79190614028565b611399565b005b3480156104ca57600080fd5b506104d3611604565b6040516104e091906149be565b60405180910390f35b3480156104f557600080fd5b506104fe611609565b60405161050b91906149be565b60405180910390f35b34801561052057600080fd5b5061052961160f565b60405161053691906146a1565b60405180910390f35b610547611622565b005b34801561055557600080fd5b50610570600480360381019061056b9190613da6565b611a02565b005b34801561057e57600080fd5b5061059960048036038101906105949190613d39565b611a22565b6040516105a6919061467f565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613fdf565b611b2d565b005b3480156105e457600080fd5b506105ed611bc3565b6040516105fa91906146a1565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190613fdf565b611bd6565b005b34801561063857600080fd5b50610641611c6c565b60405161064e91906146bc565b60405180910390f35b34801561066357600080fd5b5061066c611cfa565b6040516106799190614618565b60405180910390f35b34801561068e57600080fd5b50610697611d20565b6040516106a491906146a1565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190613f29565b611d33565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190614028565b611de4565b60405161070a9190614618565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190613d39565b611df6565b60405161074791906146a1565b60405180910390f35b34801561075c57600080fd5b50610765611e16565b60405161077291906149be565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d9190613d39565b611e1c565b6040516107af91906149be565b60405180910390f35b3480156107c457600080fd5b506107cd611ed5565b005b3480156107db57600080fd5b506107e4611f5d565b6040516107f191906149be565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190613d39565b611f63565b60405161082e91906149be565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613efc565b611f7b565b005b61087a60048036038101906108759190614028565b61202f565b005b34801561088857600080fd5b506108a3600480360381019061089e9190613efc565b6123ac565b005b3480156108b157600080fd5b506108ba612460565b6040516108c791906146bc565b60405180910390f35b3480156108dc57600080fd5b506108e56124ee565b6040516108f29190614618565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190614055565b612517565b005b34801561093057600080fd5b5061094b60048036038101906109469190613fdf565b6126b8565b005b34801561095957600080fd5b5061096261274e565b60405161096f91906146bc565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190613e7c565b6127e0565b005b3480156109ad57600080fd5b506109b6612958565b6040516109c391906146a1565b60405180910390f35b3480156109d857600080fd5b506109e161296b565b6040516109ee91906149be565b60405180910390f35b348015610a0357600080fd5b50610a1e6004803603810190610a199190613df9565b612971565b005b348015610a2c57600080fd5b50610a356129e4565b604051610a4291906149be565b60405180910390f35b348015610a5757600080fd5b50610a726004803603810190610a6d9190614028565b6129e9565b005b348015610a8057600080fd5b50610a9b6004803603810190610a969190614028565b612a6f565b604051610aa891906146bc565b60405180910390f35b348015610abd57600080fd5b50610ad86004803603810190610ad39190613efc565b612b93565b005b348015610ae657600080fd5b50610aef612c2c565b604051610afc91906146bc565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b279190613d66565b612cbe565b604051610b3991906146a1565b60405180910390f35b348015610b4e57600080fd5b50610b696004803603810190610b649190613d39565b612d52565b005b348015610b7757600080fd5b50610b80612e4a565b604051610b8d91906146bc565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bf157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c215750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610c3790614cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6390614cc7565b8015610cb05780601f10610c8557610100808354040283529160200191610cb0565b820191906000526020600020905b815481529060010190602001808311610c9357829003601f168201915b5050505050905090565b6000610cc582612ed8565b610cfb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d4182612f37565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610da9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dc8613005565b73ffffffffffffffffffffffffffffffffffffffff1614610e2b57610df481610def613005565b612cbe565b610e2a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ee561300d565b73ffffffffffffffffffffffffffffffffffffffff16610f036124ee565b73ffffffffffffffffffffffffffffffffffffffff1614610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f509061481e565b60405180910390fd5b8060098190555050565b610f6b61300d565b73ffffffffffffffffffffffffffffffffffffffff16610f896124ee565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd69061481e565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000611006613015565b6002546001540303905090565b61101e83838361301e565b505050565b61102b61300d565b73ffffffffffffffffffffffffffffffffffffffff166110496124ee565b73ffffffffffffffffffffffffffffffffffffffff161461109f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110969061481e565b60405180910390fd5b80600f60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80600f60009054906101000a900460ff1615611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b9061495e565b60405180910390fd5b611b5881611140610ffc565b61114a9190614afc565b111561118b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111829061499e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f09061475e565b60405180910390fd5b600f60039054906101000a900460ff16611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f906148de565b60405180910390fd5b601482111561128c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611283906148fe565b60405180910390fd5b6000600a5490506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050606484826112e59190614afc565b1115611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d906147be565b60405180910390fd5b61133a84836113359190614b83565b6133c8565b83816113469190614afc565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061139333856134d4565b50505050565b80600f60009054906101000a900460ff16156113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e19061495e565b60405180910390fd5b611b58816113f6610ffc565b6114009190614afc565b1115611441576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114389061499e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a69061475e565b60405180910390fd5b600f60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461153f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115369061473e565b60405180910390fd5b60095482600b546115509190614afc565b1115611591576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115889061487e565b60405180910390fd5b6102bc61159c610ffc565b10156115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d49061479e565b60405180910390fd5b81600b60008282546115ef9190614afc565b9250508190555061160033836134d4565b5050565b601481565b611b5881565b600f60039054906101000a900460ff1681565b61162a61300d565b73ffffffffffffffffffffffffffffffffffffffff166116486124ee565b73ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116959061481e565b60405180910390fd5b60004790506000729f2b3c1698ae320c5edd71cbf151d86c3dfc8a73ffffffffffffffffffffffffffffffffffffffff16612710610b11846116e09190614b83565b6116ea9190614b52565b6040516116f690614603565b60006040518083038185875af1925050503d8060008114611733576040519150601f19603f3d011682016040523d82523d6000602084013e611738565b606091505b505090508061177c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117739061493e565b60405180910390fd5b73af824dd7f47b740aee3010c1bcc91d804ecaa91a73ffffffffffffffffffffffffffffffffffffffff16612710610b11846117b89190614b83565b6117c29190614b52565b6040516117ce90614603565b60006040518083038185875af1925050503d806000811461180b576040519150601f19603f3d011682016040523d82523d6000602084013e611810565b606091505b50508091505080611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d9061491e565b60405180910390fd5b73bd3153d8d6564969189d3f1a3bfb84fabbc082e873ffffffffffffffffffffffffffffffffffffffff166127106105dc846118929190614b83565b61189c9190614b52565b6040516118a890614603565b60006040518083038185875af1925050503d80600081146118e5576040519150601f19603f3d011682016040523d82523d6000602084013e6118ea565b606091505b50508091505080611930576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119279061477e565b60405180910390fd5b600f60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161197690614603565b60006040518083038185875af1925050503d80600081146119b3576040519150601f19603f3d011682016040523d82523d6000602084013e6119b8565b606091505b505080915050806119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f5906147de565b60405180910390fd5b5050565b611a1d83838360405180602001604052806000815250612971565b505050565b60606000611a2f83611e1c565b905060008167ffffffffffffffff811115611a4d57611a4c614e60565b5b604051908082528060200260200182016040528015611a7b5781602001602082028036833780820191505090505b50905060006001905060005b8381108015611a985750611b588211155b15611b21576000611aa883611de4565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b0d5782848381518110611af257611af1614e31565b5b6020026020010181815250508180611b0990614d2a565b9250505b8280611b1890614d2a565b93505050611a87565b82945050505050919050565b611b3561300d565b73ffffffffffffffffffffffffffffffffffffffff16611b536124ee565b73ffffffffffffffffffffffffffffffffffffffff1614611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba09061481e565b60405180910390fd5b80600d9080519060200190611bbf929190613b4d565b5050565b600f60019054906101000a900460ff1681565b611bde61300d565b73ffffffffffffffffffffffffffffffffffffffff16611bfc6124ee565b73ffffffffffffffffffffffffffffffffffffffff1614611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c499061481e565b60405180910390fd5b80600c9080519060200190611c68929190613b4d565b5050565b600e8054611c7990614cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca590614cc7565b8015611cf25780601f10611cc757610100808354040283529160200191611cf2565b820191906000526020600020905b815481529060010190602001808311611cd557829003601f168201915b505050505081565b600f60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900460ff1681565b611d3b61300d565b73ffffffffffffffffffffffffffffffffffffffff16611d596124ee565b73ffffffffffffffffffffffffffffffffffffffff1614611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da69061481e565b60405180910390fd5b81600f60016101000a81548160ff02191690831515021790555080600c9080519060200190611ddf929190613b4d565b505050565b6000611def82612f37565b9050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e84576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611edd61300d565b73ffffffffffffffffffffffffffffffffffffffff16611efb6124ee565b73ffffffffffffffffffffffffffffffffffffffff1614611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f489061481e565b60405180910390fd5b611f5b60006134f2565b565b600b5481565b60116020528060005260406000206000915090505481565b611f8361300d565b73ffffffffffffffffffffffffffffffffffffffff16611fa16124ee565b73ffffffffffffffffffffffffffffffffffffffff1614611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee9061481e565b60405180910390fd5b80600f60036101000a81548160ff0219169083151502179055508015600f60026101000a81548160ff02191690831515021790555050565b80600f60009054906101000a900460ff1615612080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120779061495e565b60405180910390fd5b611b588161208c610ffc565b6120969190614afc565b11156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce9061499e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c9061475e565b60405180910390fd5b600f60029054906101000a900460ff16612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b906147fe565b60405180910390fd5b600034146121d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ce9061489e565b60405180910390fd5b600782111561221b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122129061471e565b60405180910390fd5b600082612226610ffc565b6122309190614afc565b90506102bc811115612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e9061497e565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb9061483e565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506102bc81141561239d576000600f60026101000a81548160ff0219169083151502179055506001600f60036101000a81548160ff0219169083151502179055505b6123a733846134d4565b505050565b6123b461300d565b73ffffffffffffffffffffffffffffffffffffffff166123d26124ee565b73ffffffffffffffffffffffffffffffffffffffff1614612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f9061481e565b60405180910390fd5b80600f60026101000a81548160ff0219169083151502179055508015600f60036101000a81548160ff02191690831515021790555050565b600d805461246d90614cc7565b80601f016020809104026020016040519081016040528092919081815260200182805461249990614cc7565b80156124e65780601f106124bb576101008083540402835291602001916124e6565b820191906000526020600020905b8154815290600101906020018083116124c957829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61251f61300d565b73ffffffffffffffffffffffffffffffffffffffff1661253d6124ee565b73ffffffffffffffffffffffffffffffffffffffff1614612593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258a9061481e565b60405180910390fd5b81600f60009054906101000a900460ff16156125e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125db9061495e565b60405180910390fd5b611b58816125f0610ffc565b6125fa9190614afc565b111561263b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126329061499e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a09061475e565b60405180910390fd5b6126b382846134d4565b505050565b6126c061300d565b73ffffffffffffffffffffffffffffffffffffffff166126de6124ee565b73ffffffffffffffffffffffffffffffffffffffff1614612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b9061481e565b60405180910390fd5b80600e908051906020019061274a929190613b4d565b5050565b60606004805461275d90614cc7565b80601f016020809104026020016040519081016040528092919081815260200182805461278990614cc7565b80156127d65780601f106127ab576101008083540402835291602001916127d6565b820191906000526020600020905b8154815290600101906020018083116127b957829003601f168201915b5050505050905090565b6127e8613005565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561284d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061285a613005565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612907613005565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161294c91906146a1565b60405180910390a35050565b600f60029054906101000a900460ff1681565b600a5481565b61297c84848461301e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146129de576129a7848484846135b6565b6129dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606481565b6129f161300d565b73ffffffffffffffffffffffffffffffffffffffff16612a0f6124ee565b73ffffffffffffffffffffffffffffffffffffffff1614612a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5c9061481e565b60405180910390fd5b80600a8190555050565b6060612a7a82612ed8565b612ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab09061485e565b60405180910390fd5b600f60019054906101000a900460ff1615612b0057600c612ad983613716565b604051602001612aea9291906145d4565b6040516020818303038152906040529050612b8e565b600d8054612b0d90614cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3990614cc7565b8015612b865780601f10612b5b57610100808354040283529160200191612b86565b820191906000526020600020905b815481529060010190602001808311612b6957829003601f168201915b505050505090505b919050565b612b9b61300d565b73ffffffffffffffffffffffffffffffffffffffff16612bb96124ee565b73ffffffffffffffffffffffffffffffffffffffff1614612c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c069061481e565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6060600e8054612c3b90614cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054612c6790614cc7565b8015612cb45780601f10612c8957610100808354040283529160200191612cb4565b820191906000526020600020905b815481529060010190602001808311612c9757829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d5a61300d565b73ffffffffffffffffffffffffffffffffffffffff16612d786124ee565b73ffffffffffffffffffffffffffffffffffffffff1614612dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc59061481e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e35906146de565b60405180910390fd5b612e47816134f2565b50565b600c8054612e5790614cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054612e8390614cc7565b8015612ed05780601f10612ea557610100808354040283529160200191612ed0565b820191906000526020600020905b815481529060010190602001808311612eb357829003601f168201915b505050505081565b600081612ee3613015565b11158015612ef2575060015482105b8015612f30575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080612f46613015565b11612fce57600154811015612fcd5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612fcb575b6000811415612fc1576005600083600190039350838152602001908152602001600020549050612f96565b8092505050613000565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b600061302982612f37565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614613090576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166130b1613005565b73ffffffffffffffffffffffffffffffffffffffff1614806130e057506130df856130da613005565b612cbe565b5b8061312557506130ee613005565b73ffffffffffffffffffffffffffffffffffffffff1661310d84610cba565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061315e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156131c5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131d28585856001613877565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6132cf8661387d565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415613359576000600184019050600060056000838152602001908152602001600020541415613357576001548114613356578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133c18585856001613887565b5050505050565b8034111561348d5760003373ffffffffffffffffffffffffffffffffffffffff1682346133f59190614bdd565b60405161340190614603565b60006040518083038185875af1925050503d806000811461343e576040519150601f19603f3d011682016040523d82523d6000602084013e613443565b606091505b5050905080613487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347e906146fe565b60405180910390fd5b506134d1565b803410156134d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c7906148be565b60405180910390fd5b5b50565b6134ee82826040518060200160405280600081525061388d565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135dc613005565b8786866040518563ffffffff1660e01b81526004016135fe9493929190614633565b602060405180830381600087803b15801561361857600080fd5b505af192505050801561364957506040513d601f19601f820116820180604052508101906136469190613fb2565b60015b6136c3573d8060008114613679576040519150601f19603f3d011682016040523d82523d6000602084013e61367e565b606091505b506000815114156136bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561375e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613872565b600082905060005b6000821461379057808061377990614d2a565b915050600a826137899190614b52565b9150613766565b60008167ffffffffffffffff8111156137ac576137ab614e60565b5b6040519080825280601f01601f1916602001820160405280156137de5781602001600182028036833780820191505090505b5090505b6000851461386b576001826137f79190614bdd565b9150600a856138069190614d73565b60306138129190614afc565b60f81b81838151811061382857613827614e31565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138649190614b52565b94506137e2565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156138fb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613936576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139436000858386613877565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16139a860018514613b43565b901b60a042901b6139b88661387d565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613abc575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a6c60008784806001019550876135b6565b613aa2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106139fd578260015414613ab757600080fd5b613b27565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613abd575b816001819055505050613b3d6000858386613887565b50505050565b6000819050919050565b828054613b5990614cc7565b90600052602060002090601f016020900481019282613b7b5760008555613bc2565b82601f10613b9457805160ff1916838001178555613bc2565b82800160010185558215613bc2579182015b82811115613bc1578251825591602001919060010190613ba6565b5b509050613bcf9190613bd3565b5090565b5b80821115613bec576000816000905550600101613bd4565b5090565b6000613c03613bfe846149fe565b6149d9565b905082815260208101848484011115613c1f57613c1e614e94565b5b613c2a848285614c85565b509392505050565b6000613c45613c4084614a2f565b6149d9565b905082815260208101848484011115613c6157613c60614e94565b5b613c6c848285614c85565b509392505050565b600081359050613c83816152db565b92915050565b600081359050613c98816152f2565b92915050565b600081359050613cad81615309565b92915050565b600081519050613cc281615309565b92915050565b600082601f830112613cdd57613cdc614e8f565b5b8135613ced848260208601613bf0565b91505092915050565b600082601f830112613d0b57613d0a614e8f565b5b8135613d1b848260208601613c32565b91505092915050565b600081359050613d3381615320565b92915050565b600060208284031215613d4f57613d4e614e9e565b5b6000613d5d84828501613c74565b91505092915050565b60008060408385031215613d7d57613d7c614e9e565b5b6000613d8b85828601613c74565b9250506020613d9c85828601613c74565b9150509250929050565b600080600060608486031215613dbf57613dbe614e9e565b5b6000613dcd86828701613c74565b9350506020613dde86828701613c74565b9250506040613def86828701613d24565b9150509250925092565b60008060008060808587031215613e1357613e12614e9e565b5b6000613e2187828801613c74565b9450506020613e3287828801613c74565b9350506040613e4387828801613d24565b925050606085013567ffffffffffffffff811115613e6457613e63614e99565b5b613e7087828801613cc8565b91505092959194509250565b60008060408385031215613e9357613e92614e9e565b5b6000613ea185828601613c74565b9250506020613eb285828601613c89565b9150509250929050565b60008060408385031215613ed357613ed2614e9e565b5b6000613ee185828601613c74565b9250506020613ef285828601613d24565b9150509250929050565b600060208284031215613f1257613f11614e9e565b5b6000613f2084828501613c89565b91505092915050565b60008060408385031215613f4057613f3f614e9e565b5b6000613f4e85828601613c89565b925050602083013567ffffffffffffffff811115613f6f57613f6e614e99565b5b613f7b85828601613cf6565b9150509250929050565b600060208284031215613f9b57613f9a614e9e565b5b6000613fa984828501613c9e565b91505092915050565b600060208284031215613fc857613fc7614e9e565b5b6000613fd684828501613cb3565b91505092915050565b600060208284031215613ff557613ff4614e9e565b5b600082013567ffffffffffffffff81111561401357614012614e99565b5b61401f84828501613cf6565b91505092915050565b60006020828403121561403e5761403d614e9e565b5b600061404c84828501613d24565b91505092915050565b6000806040838503121561406c5761406b614e9e565b5b600061407a85828601613d24565b925050602061408b85828601613c74565b9150509250929050565b60006140a183836145b6565b60208301905092915050565b6140b681614c11565b82525050565b60006140c782614a85565b6140d18185614ab3565b93506140dc83614a60565b8060005b8381101561410d5781516140f48882614095565b97506140ff83614aa6565b9250506001810190506140e0565b5085935050505092915050565b61412381614c23565b82525050565b600061413482614a90565b61413e8185614ac4565b935061414e818560208601614c94565b61415781614ea3565b840191505092915050565b600061416d82614a9b565b6141778185614ae0565b9350614187818560208601614c94565b61419081614ea3565b840191505092915050565b60006141a682614a9b565b6141b08185614af1565b93506141c0818560208601614c94565b80840191505092915050565b600081546141d981614cc7565b6141e38186614af1565b945060018216600081146141fe576001811461420f57614242565b60ff19831686528186019350614242565b61421885614a70565b60005b8381101561423a5781548189015260018201915060208101905061421b565b838801955050505b50505092915050565b6000614258602683614ae0565b915061426382614eb4565b604082019050919050565b600061427b600f83614ae0565b915061428682614f03565b602082019050919050565b600061429e600b83614ae0565b91506142a982614f2c565b602082019050919050565b60006142c1601183614ae0565b91506142cc82614f55565b602082019050919050565b60006142e4601383614ae0565b91506142ef82614f7e565b602082019050919050565b6000614307601683614ae0565b915061431282614fa7565b602082019050919050565b600061432a601583614ae0565b915061433582614fd0565b602082019050919050565b600061434d601383614ae0565b915061435882614ff9565b602082019050919050565b6000614370602083614ae0565b915061437b82615022565b602082019050919050565b6000614393601283614ae0565b915061439e8261504b565b602082019050919050565b60006143b6600583614af1565b91506143c182615074565b600582019050919050565b60006143d9602083614ae0565b91506143e48261509d565b602082019050919050565b60006143fc601383614ae0565b9150614407826150c6565b602082019050919050565b600061441f602f83614ae0565b915061442a826150ef565b604082019050919050565b6000614442601283614ae0565b915061444d8261513e565b602082019050919050565b6000614465601283614ae0565b915061447082615167565b602082019050919050565b6000614488601383614ae0565b915061449382615190565b602082019050919050565b60006144ab601483614ae0565b91506144b6826151b9565b602082019050919050565b60006144ce601183614ae0565b91506144d9826151e2565b602082019050919050565b60006144f1600083614ad5565b91506144fc8261520b565b600082019050919050565b6000614514601383614ae0565b915061451f8261520e565b602082019050919050565b6000614537601383614ae0565b915061454282615237565b602082019050919050565b600061455a601283614ae0565b915061456582615260565b602082019050919050565b600061457d601683614ae0565b915061458882615289565b602082019050919050565b60006145a0601583614ae0565b91506145ab826152b2565b602082019050919050565b6145bf81614c7b565b82525050565b6145ce81614c7b565b82525050565b60006145e082856141cc565b91506145ec828461419b565b91506145f7826143a9565b91508190509392505050565b600061460e826144e4565b9150819050919050565b600060208201905061462d60008301846140ad565b92915050565b600060808201905061464860008301876140ad565b61465560208301866140ad565b61466260408301856145c5565b81810360608301526146748184614129565b905095945050505050565b6000602082019050818103600083015261469981846140bc565b905092915050565b60006020820190506146b6600083018461411a565b92915050565b600060208201905081810360008301526146d68184614162565b905092915050565b600060208201905081810360008301526146f78161424b565b9050919050565b600060208201905081810360008301526147178161426e565b9050919050565b6000602082019050818103600083015261473781614291565b9050919050565b60006020820190508181036000830152614757816142b4565b9050919050565b60006020820190508181036000830152614777816142d7565b9050919050565b60006020820190508181036000830152614797816142fa565b9050919050565b600060208201905081810360008301526147b78161431d565b9050919050565b600060208201905081810360008301526147d781614340565b9050919050565b600060208201905081810360008301526147f781614363565b9050919050565b6000602082019050818103600083015261481781614386565b9050919050565b60006020820190508181036000830152614837816143cc565b9050919050565b60006020820190508181036000830152614857816143ef565b9050919050565b6000602082019050818103600083015261487781614412565b9050919050565b6000602082019050818103600083015261489781614435565b9050919050565b600060208201905081810360008301526148b781614458565b9050919050565b600060208201905081810360008301526148d78161447b565b9050919050565b600060208201905081810360008301526148f78161449e565b9050919050565b60006020820190508181036000830152614917816144c1565b9050919050565b6000602082019050818103600083015261493781614507565b9050919050565b600060208201905081810360008301526149578161452a565b9050919050565b600060208201905081810360008301526149778161454d565b9050919050565b6000602082019050818103600083015261499781614570565b9050919050565b600060208201905081810360008301526149b781614593565b9050919050565b60006020820190506149d360008301846145c5565b92915050565b60006149e36149f4565b90506149ef8282614cf9565b919050565b6000604051905090565b600067ffffffffffffffff821115614a1957614a18614e60565b5b614a2282614ea3565b9050602081019050919050565b600067ffffffffffffffff821115614a4a57614a49614e60565b5b614a5382614ea3565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b0782614c7b565b9150614b1283614c7b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b4757614b46614da4565b5b828201905092915050565b6000614b5d82614c7b565b9150614b6883614c7b565b925082614b7857614b77614dd3565b5b828204905092915050565b6000614b8e82614c7b565b9150614b9983614c7b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bd257614bd1614da4565b5b828202905092915050565b6000614be882614c7b565b9150614bf383614c7b565b925082821015614c0657614c05614da4565b5b828203905092915050565b6000614c1c82614c5b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cb2578082015181840152602081019050614c97565b83811115614cc1576000848401525b50505050565b60006002820490506001821680614cdf57607f821691505b60208210811415614cf357614cf2614e02565b5b50919050565b614d0282614ea3565b810181811067ffffffffffffffff82111715614d2157614d20614e60565b5b80604052505050565b6000614d3582614c7b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d6857614d67614da4565b5b600182019050919050565b6000614d7e82614c7b565b9150614d8983614c7b565b925082614d9957614d98614dd3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4f6e6c7920372066726565000000000000000000000000000000000000000000600082015250565b7f5465616d206d696e74696e67206f6e6c79000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f417274697374207472616e73666572206661696c656400000000000000000000600082015250565b7f5465616d206d696e747320616674657220667265650000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f5465616d202872656d61696e696e6729207472616e73666572206661696c6564600082015250565b7f467265652073616c6520696e6163746976650000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f55736572206d61782066726565206c696d697400000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f207465616d206d696e7473206c6566740000000000000000000000000000600082015250565b7f5468697320706861736520697320667265650000000000000000000000000000600082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f576562207472616e73666572206661696c656400000000000000000000000000600082015250565b7f446576207472616e73666572206661696c656400000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206672656520737570706c7900000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b6152e481614c11565b81146152ef57600080fd5b50565b6152fb81614c23565b811461530657600080fd5b50565b61531281614c2f565b811461531d57600080fd5b50565b61532981614c7b565b811461533457600080fd5b5056fea2646970667358221220aec884b6fd6b71b672a2a3eba24c3db7d445f648cb105179091a62a14b16820a64736f6c63430008070033697066733a2f2f516d4e6a535054637a39506b3853363878424655375a366d333258344e484e47506741734d4e4168593159655467

Deployed Bytecode

0x6080604052600436106102e45760003560e01c806364f640761161019057806395d89b41116100dc578063c627525511610095578063e8a3d4851161006f578063e8a3d48514610ada578063e985e9c514610b05578063f2fde38b14610b42578063f7e8d6ea14610b6b576102e4565b8063c627525514610a4b578063c87b56dd14610a74578063e0a8085314610ab1576102e4565b806395d89b411461094d578063a22cb46514610978578063a4b41a15146109a1578063a945bf80146109cc578063b88d4fde146109f7578063bceae77b14610a20576102e4565b80637af3a1af116101495780638cc54e7f116101235780638cc54e7f146108a55780638da5cb5b146108d05780639007bd72146108fb578063938e3d7b14610924576102e4565b80637af3a1af146108375780637c928fe91461086057806388dedc141461087c576102e4565b806364f64076146107135780636b39fca41461075057806370a082311461077b578063715018a6146107b8578063763ea95f146107cf5780637aeb7242146107fa576102e4565b806332cb6b0c1161024f578063518302271161020857806359927044116101e257806359927044146106575780635c975abb146106825780635ed3e25e146106ad5780636352211e146106d6576102e4565b806351830227146105d857806355f804b31461060357806356b4f6731461062c576102e4565b806332cb6b0c146104e957806333bc1c5c146105145780633ccfd60b1461053f57806342842e0e14610549578063438b6300146105725780634fdd43cb146105af576102e4565b806318160ddd116102a157806318160ddd1461040957806323b872dd146104345780632c4b23341461045d5780632db11544146104865780632fbba115146104a25780632fecf20b146104be576102e4565b806301ffc9a7146102e957806306fdde0314610326578063081812fc14610351578063095ea7b31461038e5780630f15ad8d146103b757806316c38b3c146103e0575b600080fd5b3480156102f557600080fd5b50610310600480360381019061030b9190613f85565b610b96565b60405161031d91906146a1565b60405180910390f35b34801561033257600080fd5b5061033b610c28565b60405161034891906146bc565b60405180910390f35b34801561035d57600080fd5b5061037860048036038101906103739190614028565b610cba565b6040516103859190614618565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613ebc565b610d36565b005b3480156103c357600080fd5b506103de60048036038101906103d99190614028565b610edd565b005b3480156103ec57600080fd5b5061040760048036038101906104029190613efc565b610f63565b005b34801561041557600080fd5b5061041e610ffc565b60405161042b91906149be565b60405180910390f35b34801561044057600080fd5b5061045b60048036038101906104569190613da6565b611013565b005b34801561046957600080fd5b50610484600480360381019061047f9190613d39565b611023565b005b6104a0600480360381019061049b9190614028565b6110e3565b005b6104bc60048036038101906104b79190614028565b611399565b005b3480156104ca57600080fd5b506104d3611604565b6040516104e091906149be565b60405180910390f35b3480156104f557600080fd5b506104fe611609565b60405161050b91906149be565b60405180910390f35b34801561052057600080fd5b5061052961160f565b60405161053691906146a1565b60405180910390f35b610547611622565b005b34801561055557600080fd5b50610570600480360381019061056b9190613da6565b611a02565b005b34801561057e57600080fd5b5061059960048036038101906105949190613d39565b611a22565b6040516105a6919061467f565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613fdf565b611b2d565b005b3480156105e457600080fd5b506105ed611bc3565b6040516105fa91906146a1565b60405180910390f35b34801561060f57600080fd5b5061062a60048036038101906106259190613fdf565b611bd6565b005b34801561063857600080fd5b50610641611c6c565b60405161064e91906146bc565b60405180910390f35b34801561066357600080fd5b5061066c611cfa565b6040516106799190614618565b60405180910390f35b34801561068e57600080fd5b50610697611d20565b6040516106a491906146a1565b60405180910390f35b3480156106b957600080fd5b506106d460048036038101906106cf9190613f29565b611d33565b005b3480156106e257600080fd5b506106fd60048036038101906106f89190614028565b611de4565b60405161070a9190614618565b60405180910390f35b34801561071f57600080fd5b5061073a60048036038101906107359190613d39565b611df6565b60405161074791906146a1565b60405180910390f35b34801561075c57600080fd5b50610765611e16565b60405161077291906149be565b60405180910390f35b34801561078757600080fd5b506107a2600480360381019061079d9190613d39565b611e1c565b6040516107af91906149be565b60405180910390f35b3480156107c457600080fd5b506107cd611ed5565b005b3480156107db57600080fd5b506107e4611f5d565b6040516107f191906149be565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190613d39565b611f63565b60405161082e91906149be565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613efc565b611f7b565b005b61087a60048036038101906108759190614028565b61202f565b005b34801561088857600080fd5b506108a3600480360381019061089e9190613efc565b6123ac565b005b3480156108b157600080fd5b506108ba612460565b6040516108c791906146bc565b60405180910390f35b3480156108dc57600080fd5b506108e56124ee565b6040516108f29190614618565b60405180910390f35b34801561090757600080fd5b50610922600480360381019061091d9190614055565b612517565b005b34801561093057600080fd5b5061094b60048036038101906109469190613fdf565b6126b8565b005b34801561095957600080fd5b5061096261274e565b60405161096f91906146bc565b60405180910390f35b34801561098457600080fd5b5061099f600480360381019061099a9190613e7c565b6127e0565b005b3480156109ad57600080fd5b506109b6612958565b6040516109c391906146a1565b60405180910390f35b3480156109d857600080fd5b506109e161296b565b6040516109ee91906149be565b60405180910390f35b348015610a0357600080fd5b50610a1e6004803603810190610a199190613df9565b612971565b005b348015610a2c57600080fd5b50610a356129e4565b604051610a4291906149be565b60405180910390f35b348015610a5757600080fd5b50610a726004803603810190610a6d9190614028565b6129e9565b005b348015610a8057600080fd5b50610a9b6004803603810190610a969190614028565b612a6f565b604051610aa891906146bc565b60405180910390f35b348015610abd57600080fd5b50610ad86004803603810190610ad39190613efc565b612b93565b005b348015610ae657600080fd5b50610aef612c2c565b604051610afc91906146bc565b60405180910390f35b348015610b1157600080fd5b50610b2c6004803603810190610b279190613d66565b612cbe565b604051610b3991906146a1565b60405180910390f35b348015610b4e57600080fd5b50610b696004803603810190610b649190613d39565b612d52565b005b348015610b7757600080fd5b50610b80612e4a565b604051610b8d91906146bc565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610bf157506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c215750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060038054610c3790614cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6390614cc7565b8015610cb05780601f10610c8557610100808354040283529160200191610cb0565b820191906000526020600020905b815481529060010190602001808311610c9357829003601f168201915b5050505050905090565b6000610cc582612ed8565b610cfb576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d4182612f37565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610da9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610dc8613005565b73ffffffffffffffffffffffffffffffffffffffff1614610e2b57610df481610def613005565b612cbe565b610e2a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610ee561300d565b73ffffffffffffffffffffffffffffffffffffffff16610f036124ee565b73ffffffffffffffffffffffffffffffffffffffff1614610f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f509061481e565b60405180910390fd5b8060098190555050565b610f6b61300d565b73ffffffffffffffffffffffffffffffffffffffff16610f896124ee565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd69061481e565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000611006613015565b6002546001540303905090565b61101e83838361301e565b505050565b61102b61300d565b73ffffffffffffffffffffffffffffffffffffffff166110496124ee565b73ffffffffffffffffffffffffffffffffffffffff161461109f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110969061481e565b60405180910390fd5b80600f60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b80600f60009054906101000a900460ff1615611134576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112b9061495e565b60405180910390fd5b611b5881611140610ffc565b61114a9190614afc565b111561118b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111829061499e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f09061475e565b60405180910390fd5b600f60039054906101000a900460ff16611248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123f906148de565b60405180910390fd5b601482111561128c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611283906148fe565b60405180910390fd5b6000600a5490506000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050606484826112e59190614afc565b1115611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d906147be565b60405180910390fd5b61133a84836113359190614b83565b6133c8565b83816113469190614afc565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061139333856134d4565b50505050565b80600f60009054906101000a900460ff16156113ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e19061495e565b60405180910390fd5b611b58816113f6610ffc565b6114009190614afc565b1115611441576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114389061499e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146114af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a69061475e565b60405180910390fd5b600f60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461153f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115369061473e565b60405180910390fd5b60095482600b546115509190614afc565b1115611591576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115889061487e565b60405180910390fd5b6102bc61159c610ffc565b10156115dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d49061479e565b60405180910390fd5b81600b60008282546115ef9190614afc565b9250508190555061160033836134d4565b5050565b601481565b611b5881565b600f60039054906101000a900460ff1681565b61162a61300d565b73ffffffffffffffffffffffffffffffffffffffff166116486124ee565b73ffffffffffffffffffffffffffffffffffffffff161461169e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116959061481e565b60405180910390fd5b60004790506000729f2b3c1698ae320c5edd71cbf151d86c3dfc8a73ffffffffffffffffffffffffffffffffffffffff16612710610b11846116e09190614b83565b6116ea9190614b52565b6040516116f690614603565b60006040518083038185875af1925050503d8060008114611733576040519150601f19603f3d011682016040523d82523d6000602084013e611738565b606091505b505090508061177c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117739061493e565b60405180910390fd5b73af824dd7f47b740aee3010c1bcc91d804ecaa91a73ffffffffffffffffffffffffffffffffffffffff16612710610b11846117b89190614b83565b6117c29190614b52565b6040516117ce90614603565b60006040518083038185875af1925050503d806000811461180b576040519150601f19603f3d011682016040523d82523d6000602084013e611810565b606091505b50508091505080611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d9061491e565b60405180910390fd5b73bd3153d8d6564969189d3f1a3bfb84fabbc082e873ffffffffffffffffffffffffffffffffffffffff166127106105dc846118929190614b83565b61189c9190614b52565b6040516118a890614603565b60006040518083038185875af1925050503d80600081146118e5576040519150601f19603f3d011682016040523d82523d6000602084013e6118ea565b606091505b50508091505080611930576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119279061477e565b60405180910390fd5b600f60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161197690614603565b60006040518083038185875af1925050503d80600081146119b3576040519150601f19603f3d011682016040523d82523d6000602084013e6119b8565b606091505b505080915050806119fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f5906147de565b60405180910390fd5b5050565b611a1d83838360405180602001604052806000815250612971565b505050565b60606000611a2f83611e1c565b905060008167ffffffffffffffff811115611a4d57611a4c614e60565b5b604051908082528060200260200182016040528015611a7b5781602001602082028036833780820191505090505b50905060006001905060005b8381108015611a985750611b588211155b15611b21576000611aa883611de4565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b0d5782848381518110611af257611af1614e31565b5b6020026020010181815250508180611b0990614d2a565b9250505b8280611b1890614d2a565b93505050611a87565b82945050505050919050565b611b3561300d565b73ffffffffffffffffffffffffffffffffffffffff16611b536124ee565b73ffffffffffffffffffffffffffffffffffffffff1614611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba09061481e565b60405180910390fd5b80600d9080519060200190611bbf929190613b4d565b5050565b600f60019054906101000a900460ff1681565b611bde61300d565b73ffffffffffffffffffffffffffffffffffffffff16611bfc6124ee565b73ffffffffffffffffffffffffffffffffffffffff1614611c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c499061481e565b60405180910390fd5b80600c9080519060200190611c68929190613b4d565b5050565b600e8054611c7990614cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054611ca590614cc7565b8015611cf25780601f10611cc757610100808354040283529160200191611cf2565b820191906000526020600020905b815481529060010190602001808311611cd557829003601f168201915b505050505081565b600f60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900460ff1681565b611d3b61300d565b73ffffffffffffffffffffffffffffffffffffffff16611d596124ee565b73ffffffffffffffffffffffffffffffffffffffff1614611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da69061481e565b60405180910390fd5b81600f60016101000a81548160ff02191690831515021790555080600c9080519060200190611ddf929190613b4d565b505050565b6000611def82612f37565b9050919050565b60106020528060005260406000206000915054906101000a900460ff1681565b60095481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e84576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611edd61300d565b73ffffffffffffffffffffffffffffffffffffffff16611efb6124ee565b73ffffffffffffffffffffffffffffffffffffffff1614611f51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f489061481e565b60405180910390fd5b611f5b60006134f2565b565b600b5481565b60116020528060005260406000206000915090505481565b611f8361300d565b73ffffffffffffffffffffffffffffffffffffffff16611fa16124ee565b73ffffffffffffffffffffffffffffffffffffffff1614611ff7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fee9061481e565b60405180910390fd5b80600f60036101000a81548160ff0219169083151502179055508015600f60026101000a81548160ff02191690831515021790555050565b80600f60009054906101000a900460ff1615612080576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120779061495e565b60405180910390fd5b611b588161208c610ffc565b6120969190614afc565b11156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce9061499e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213c9061475e565b60405180910390fd5b600f60029054906101000a900460ff16612194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218b906147fe565b60405180910390fd5b600034146121d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ce9061489e565b60405180910390fd5b600782111561221b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122129061471e565b60405180910390fd5b600082612226610ffc565b6122309190614afc565b90506102bc811115612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e9061497e565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615612304576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122fb9061483e565b60405180910390fd5b6001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506102bc81141561239d576000600f60026101000a81548160ff0219169083151502179055506001600f60036101000a81548160ff0219169083151502179055505b6123a733846134d4565b505050565b6123b461300d565b73ffffffffffffffffffffffffffffffffffffffff166123d26124ee565b73ffffffffffffffffffffffffffffffffffffffff1614612428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241f9061481e565b60405180910390fd5b80600f60026101000a81548160ff0219169083151502179055508015600f60036101000a81548160ff02191690831515021790555050565b600d805461246d90614cc7565b80601f016020809104026020016040519081016040528092919081815260200182805461249990614cc7565b80156124e65780601f106124bb576101008083540402835291602001916124e6565b820191906000526020600020905b8154815290600101906020018083116124c957829003601f168201915b505050505081565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61251f61300d565b73ffffffffffffffffffffffffffffffffffffffff1661253d6124ee565b73ffffffffffffffffffffffffffffffffffffffff1614612593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258a9061481e565b60405180910390fd5b81600f60009054906101000a900460ff16156125e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125db9061495e565b60405180910390fd5b611b58816125f0610ffc565b6125fa9190614afc565b111561263b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126329061499e565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146126a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a09061475e565b60405180910390fd5b6126b382846134d4565b505050565b6126c061300d565b73ffffffffffffffffffffffffffffffffffffffff166126de6124ee565b73ffffffffffffffffffffffffffffffffffffffff1614612734576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272b9061481e565b60405180910390fd5b80600e908051906020019061274a929190613b4d565b5050565b60606004805461275d90614cc7565b80601f016020809104026020016040519081016040528092919081815260200182805461278990614cc7565b80156127d65780601f106127ab576101008083540402835291602001916127d6565b820191906000526020600020905b8154815290600101906020018083116127b957829003601f168201915b5050505050905090565b6127e8613005565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561284d576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806008600061285a613005565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612907613005565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161294c91906146a1565b60405180910390a35050565b600f60029054906101000a900460ff1681565b600a5481565b61297c84848461301e565b60008373ffffffffffffffffffffffffffffffffffffffff163b146129de576129a7848484846135b6565b6129dd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b606481565b6129f161300d565b73ffffffffffffffffffffffffffffffffffffffff16612a0f6124ee565b73ffffffffffffffffffffffffffffffffffffffff1614612a65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5c9061481e565b60405180910390fd5b80600a8190555050565b6060612a7a82612ed8565b612ab9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab09061485e565b60405180910390fd5b600f60019054906101000a900460ff1615612b0057600c612ad983613716565b604051602001612aea9291906145d4565b6040516020818303038152906040529050612b8e565b600d8054612b0d90614cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3990614cc7565b8015612b865780601f10612b5b57610100808354040283529160200191612b86565b820191906000526020600020905b815481529060010190602001808311612b6957829003601f168201915b505050505090505b919050565b612b9b61300d565b73ffffffffffffffffffffffffffffffffffffffff16612bb96124ee565b73ffffffffffffffffffffffffffffffffffffffff1614612c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c069061481e565b60405180910390fd5b80600f60016101000a81548160ff02191690831515021790555050565b6060600e8054612c3b90614cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054612c6790614cc7565b8015612cb45780601f10612c8957610100808354040283529160200191612cb4565b820191906000526020600020905b815481529060010190602001808311612c9757829003601f168201915b5050505050905090565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612d5a61300d565b73ffffffffffffffffffffffffffffffffffffffff16612d786124ee565b73ffffffffffffffffffffffffffffffffffffffff1614612dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc59061481e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e35906146de565b60405180910390fd5b612e47816134f2565b50565b600c8054612e5790614cc7565b80601f0160208091040260200160405190810160405280929190818152602001828054612e8390614cc7565b8015612ed05780601f10612ea557610100808354040283529160200191612ed0565b820191906000526020600020905b815481529060010190602001808311612eb357829003601f168201915b505050505081565b600081612ee3613015565b11158015612ef2575060015482105b8015612f30575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080612f46613015565b11612fce57600154811015612fcd5760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612fcb575b6000811415612fc1576005600083600190039350838152602001908152602001600020549050612f96565b8092505050613000565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b60006001905090565b600061302982612f37565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614613090576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166130b1613005565b73ffffffffffffffffffffffffffffffffffffffff1614806130e057506130df856130da613005565b612cbe565b5b8061312557506130ee613005565b73ffffffffffffffffffffffffffffffffffffffff1661310d84610cba565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061315e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156131c5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6131d28585856001613877565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b6132cf8661387d565b1717600560008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415613359576000600184019050600060056000838152602001908152602001600020541415613357576001548114613356578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46133c18585856001613887565b5050505050565b8034111561348d5760003373ffffffffffffffffffffffffffffffffffffffff1682346133f59190614bdd565b60405161340190614603565b60006040518083038185875af1925050503d806000811461343e576040519150601f19603f3d011682016040523d82523d6000602084013e613443565b606091505b5050905080613487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347e906146fe565b60405180910390fd5b506134d1565b803410156134d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c7906148be565b60405180910390fd5b5b50565b6134ee82826040518060200160405280600081525061388d565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026135dc613005565b8786866040518563ffffffff1660e01b81526004016135fe9493929190614633565b602060405180830381600087803b15801561361857600080fd5b505af192505050801561364957506040513d601f19601f820116820180604052508101906136469190613fb2565b60015b6136c3573d8060008114613679576040519150601f19603f3d011682016040523d82523d6000602084013e61367e565b606091505b506000815114156136bb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600082141561375e576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613872565b600082905060005b6000821461379057808061377990614d2a565b915050600a826137899190614b52565b9150613766565b60008167ffffffffffffffff8111156137ac576137ab614e60565b5b6040519080825280601f01601f1916602001820160405280156137de5781602001600182028036833780820191505090505b5090505b6000851461386b576001826137f79190614bdd565b9150600a856138069190614d73565b60306138129190614afc565b60f81b81838151811061382857613827614e31565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138649190614b52565b94506137e2565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156138fb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613936576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139436000858386613877565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16139a860018514613b43565b901b60a042901b6139b88661387d565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613abc575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613a6c60008784806001019550876135b6565b613aa2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106139fd578260015414613ab757600080fd5b613b27565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613abd575b816001819055505050613b3d6000858386613887565b50505050565b6000819050919050565b828054613b5990614cc7565b90600052602060002090601f016020900481019282613b7b5760008555613bc2565b82601f10613b9457805160ff1916838001178555613bc2565b82800160010185558215613bc2579182015b82811115613bc1578251825591602001919060010190613ba6565b5b509050613bcf9190613bd3565b5090565b5b80821115613bec576000816000905550600101613bd4565b5090565b6000613c03613bfe846149fe565b6149d9565b905082815260208101848484011115613c1f57613c1e614e94565b5b613c2a848285614c85565b509392505050565b6000613c45613c4084614a2f565b6149d9565b905082815260208101848484011115613c6157613c60614e94565b5b613c6c848285614c85565b509392505050565b600081359050613c83816152db565b92915050565b600081359050613c98816152f2565b92915050565b600081359050613cad81615309565b92915050565b600081519050613cc281615309565b92915050565b600082601f830112613cdd57613cdc614e8f565b5b8135613ced848260208601613bf0565b91505092915050565b600082601f830112613d0b57613d0a614e8f565b5b8135613d1b848260208601613c32565b91505092915050565b600081359050613d3381615320565b92915050565b600060208284031215613d4f57613d4e614e9e565b5b6000613d5d84828501613c74565b91505092915050565b60008060408385031215613d7d57613d7c614e9e565b5b6000613d8b85828601613c74565b9250506020613d9c85828601613c74565b9150509250929050565b600080600060608486031215613dbf57613dbe614e9e565b5b6000613dcd86828701613c74565b9350506020613dde86828701613c74565b9250506040613def86828701613d24565b9150509250925092565b60008060008060808587031215613e1357613e12614e9e565b5b6000613e2187828801613c74565b9450506020613e3287828801613c74565b9350506040613e4387828801613d24565b925050606085013567ffffffffffffffff811115613e6457613e63614e99565b5b613e7087828801613cc8565b91505092959194509250565b60008060408385031215613e9357613e92614e9e565b5b6000613ea185828601613c74565b9250506020613eb285828601613c89565b9150509250929050565b60008060408385031215613ed357613ed2614e9e565b5b6000613ee185828601613c74565b9250506020613ef285828601613d24565b9150509250929050565b600060208284031215613f1257613f11614e9e565b5b6000613f2084828501613c89565b91505092915050565b60008060408385031215613f4057613f3f614e9e565b5b6000613f4e85828601613c89565b925050602083013567ffffffffffffffff811115613f6f57613f6e614e99565b5b613f7b85828601613cf6565b9150509250929050565b600060208284031215613f9b57613f9a614e9e565b5b6000613fa984828501613c9e565b91505092915050565b600060208284031215613fc857613fc7614e9e565b5b6000613fd684828501613cb3565b91505092915050565b600060208284031215613ff557613ff4614e9e565b5b600082013567ffffffffffffffff81111561401357614012614e99565b5b61401f84828501613cf6565b91505092915050565b60006020828403121561403e5761403d614e9e565b5b600061404c84828501613d24565b91505092915050565b6000806040838503121561406c5761406b614e9e565b5b600061407a85828601613d24565b925050602061408b85828601613c74565b9150509250929050565b60006140a183836145b6565b60208301905092915050565b6140b681614c11565b82525050565b60006140c782614a85565b6140d18185614ab3565b93506140dc83614a60565b8060005b8381101561410d5781516140f48882614095565b97506140ff83614aa6565b9250506001810190506140e0565b5085935050505092915050565b61412381614c23565b82525050565b600061413482614a90565b61413e8185614ac4565b935061414e818560208601614c94565b61415781614ea3565b840191505092915050565b600061416d82614a9b565b6141778185614ae0565b9350614187818560208601614c94565b61419081614ea3565b840191505092915050565b60006141a682614a9b565b6141b08185614af1565b93506141c0818560208601614c94565b80840191505092915050565b600081546141d981614cc7565b6141e38186614af1565b945060018216600081146141fe576001811461420f57614242565b60ff19831686528186019350614242565b61421885614a70565b60005b8381101561423a5781548189015260018201915060208101905061421b565b838801955050505b50505092915050565b6000614258602683614ae0565b915061426382614eb4565b604082019050919050565b600061427b600f83614ae0565b915061428682614f03565b602082019050919050565b600061429e600b83614ae0565b91506142a982614f2c565b602082019050919050565b60006142c1601183614ae0565b91506142cc82614f55565b602082019050919050565b60006142e4601383614ae0565b91506142ef82614f7e565b602082019050919050565b6000614307601683614ae0565b915061431282614fa7565b602082019050919050565b600061432a601583614ae0565b915061433582614fd0565b602082019050919050565b600061434d601383614ae0565b915061435882614ff9565b602082019050919050565b6000614370602083614ae0565b915061437b82615022565b602082019050919050565b6000614393601283614ae0565b915061439e8261504b565b602082019050919050565b60006143b6600583614af1565b91506143c182615074565b600582019050919050565b60006143d9602083614ae0565b91506143e48261509d565b602082019050919050565b60006143fc601383614ae0565b9150614407826150c6565b602082019050919050565b600061441f602f83614ae0565b915061442a826150ef565b604082019050919050565b6000614442601283614ae0565b915061444d8261513e565b602082019050919050565b6000614465601283614ae0565b915061447082615167565b602082019050919050565b6000614488601383614ae0565b915061449382615190565b602082019050919050565b60006144ab601483614ae0565b91506144b6826151b9565b602082019050919050565b60006144ce601183614ae0565b91506144d9826151e2565b602082019050919050565b60006144f1600083614ad5565b91506144fc8261520b565b600082019050919050565b6000614514601383614ae0565b915061451f8261520e565b602082019050919050565b6000614537601383614ae0565b915061454282615237565b602082019050919050565b600061455a601283614ae0565b915061456582615260565b602082019050919050565b600061457d601683614ae0565b915061458882615289565b602082019050919050565b60006145a0601583614ae0565b91506145ab826152b2565b602082019050919050565b6145bf81614c7b565b82525050565b6145ce81614c7b565b82525050565b60006145e082856141cc565b91506145ec828461419b565b91506145f7826143a9565b91508190509392505050565b600061460e826144e4565b9150819050919050565b600060208201905061462d60008301846140ad565b92915050565b600060808201905061464860008301876140ad565b61465560208301866140ad565b61466260408301856145c5565b81810360608301526146748184614129565b905095945050505050565b6000602082019050818103600083015261469981846140bc565b905092915050565b60006020820190506146b6600083018461411a565b92915050565b600060208201905081810360008301526146d68184614162565b905092915050565b600060208201905081810360008301526146f78161424b565b9050919050565b600060208201905081810360008301526147178161426e565b9050919050565b6000602082019050818103600083015261473781614291565b9050919050565b60006020820190508181036000830152614757816142b4565b9050919050565b60006020820190508181036000830152614777816142d7565b9050919050565b60006020820190508181036000830152614797816142fa565b9050919050565b600060208201905081810360008301526147b78161431d565b9050919050565b600060208201905081810360008301526147d781614340565b9050919050565b600060208201905081810360008301526147f781614363565b9050919050565b6000602082019050818103600083015261481781614386565b9050919050565b60006020820190508181036000830152614837816143cc565b9050919050565b60006020820190508181036000830152614857816143ef565b9050919050565b6000602082019050818103600083015261487781614412565b9050919050565b6000602082019050818103600083015261489781614435565b9050919050565b600060208201905081810360008301526148b781614458565b9050919050565b600060208201905081810360008301526148d78161447b565b9050919050565b600060208201905081810360008301526148f78161449e565b9050919050565b60006020820190508181036000830152614917816144c1565b9050919050565b6000602082019050818103600083015261493781614507565b9050919050565b600060208201905081810360008301526149578161452a565b9050919050565b600060208201905081810360008301526149778161454d565b9050919050565b6000602082019050818103600083015261499781614570565b9050919050565b600060208201905081810360008301526149b781614593565b9050919050565b60006020820190506149d360008301846145c5565b92915050565b60006149e36149f4565b90506149ef8282614cf9565b919050565b6000604051905090565b600067ffffffffffffffff821115614a1957614a18614e60565b5b614a2282614ea3565b9050602081019050919050565b600067ffffffffffffffff821115614a4a57614a49614e60565b5b614a5382614ea3565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b0782614c7b565b9150614b1283614c7b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614b4757614b46614da4565b5b828201905092915050565b6000614b5d82614c7b565b9150614b6883614c7b565b925082614b7857614b77614dd3565b5b828204905092915050565b6000614b8e82614c7b565b9150614b9983614c7b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614bd257614bd1614da4565b5b828202905092915050565b6000614be882614c7b565b9150614bf383614c7b565b925082821015614c0657614c05614da4565b5b828203905092915050565b6000614c1c82614c5b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614cb2578082015181840152602081019050614c97565b83811115614cc1576000848401525b50505050565b60006002820490506001821680614cdf57607f821691505b60208210811415614cf357614cf2614e02565b5b50919050565b614d0282614ea3565b810181811067ffffffffffffffff82111715614d2157614d20614e60565b5b80604052505050565b6000614d3582614c7b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614d6857614d67614da4565b5b600182019050919050565b6000614d7e82614c7b565b9150614d8983614c7b565b925082614d9957614d98614dd3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65640000000000000000000000000000000000600082015250565b7f4f6e6c7920372066726565000000000000000000000000000000000000000000600082015250565b7f5465616d206d696e74696e67206f6e6c79000000000000000000000000000000600082015250565b7f4e6f20636f6e7472616374206d696e74696e6700000000000000000000000000600082015250565b7f417274697374207472616e73666572206661696c656400000000000000000000600082015250565b7f5465616d206d696e747320616674657220667265650000000000000000000000600082015250565b7f55736572206d6178206d696e74206c696d697400000000000000000000000000600082015250565b7f5465616d202872656d61696e696e6729207472616e73666572206661696c6564600082015250565b7f467265652073616c6520696e6163746976650000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f55736572206d61782066726565206c696d697400000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4e6f207465616d206d696e7473206c6566740000000000000000000000000000600082015250565b7f5468697320706861736520697320667265650000000000000000000000000000600082015250565b7f4e6f7420656e6f756768204554482073656e7400000000000000000000000000600082015250565b7f5075626c69632073616c6520696e616374697665000000000000000000000000600082015250565b7f5175616e7469747920746f6f2068696768000000000000000000000000000000600082015250565b50565b7f576562207472616e73666572206661696c656400000000000000000000000000600082015250565b7f446576207472616e73666572206661696c656400000000000000000000000000600082015250565b7f436f6e7472616374206973207061757365640000000000000000000000000000600082015250565b7f4e6f7420656e6f756768206672656520737570706c7900000000000000000000600082015250565b7f4e6f7420656e6f756768206d696e7473206c6566740000000000000000000000600082015250565b6152e481614c11565b81146152ef57600080fd5b50565b6152fb81614c23565b811461530657600080fd5b50565b61531281614c2f565b811461531d57600080fd5b50565b61532981614c7b565b811461533457600080fd5b5056fea2646970667358221220aec884b6fd6b71b672a2a3eba24c3db7d445f648cb105179091a62a14b16820a64736f6c63430008070033

Deployed Bytecode Sourcemap

44003:8401:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18620:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23633:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25701:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25161:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49264:110;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50368:83;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17674:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26587:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50812:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47070:571;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46016:387;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44196:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44057:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44758:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50931:905;;;:::i;:::-;;26828:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47660:689;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49679:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44687:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49498:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44562:84;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45067:70;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44655:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49817:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23422:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45146:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44105:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19299:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4730:103;;;;;;;;;;;;;:::i;:::-;;44309:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45199:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50554:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46415:647;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50683:121;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44388:81;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4079:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51980:146;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50041:115;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23802:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25977:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44724:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44147:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27084:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44253:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49382:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48357:608;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50459:87;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49152:97;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26356:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4988:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44350:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18620:615;18705:4;19020:10;19005:25;;:11;:25;;;;:102;;;;19097:10;19082:25;;:11;:25;;;;19005:102;:179;;;;19174:10;19159:25;;:11;:25;;;;19005:179;18985:199;;18620:615;;;:::o;23633:100::-;23687:13;23720:5;23713:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23633:100;:::o;25701:204::-;25769:7;25794:16;25802:7;25794;:16::i;:::-;25789:64;;25819:34;;;;;;;;;;;;;;25789:64;25873:15;:24;25889:7;25873:24;;;;;;;;;;;;;;;;;;;;;25866:31;;25701:204;;;:::o;25161:474::-;25234:13;25266:27;25285:7;25266:18;:27::i;:::-;25234:61;;25316:5;25310:11;;:2;:11;;;25306:48;;;25330:24;;;;;;;;;;;;;;25306:48;25394:5;25371:28;;:19;:17;:19::i;:::-;:28;;;25367:175;;25419:44;25436:5;25443:19;:17;:19::i;:::-;25419:16;:44::i;:::-;25414:128;;25491:35;;;;;;;;;;;;;;25414:128;25367:175;25581:2;25554:15;:24;25570:7;25554:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;25619:7;25615:2;25599:28;;25608:5;25599:28;;;;;;;;;;;;25223:412;25161:474;;:::o;49264:110::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49354:12:::1;49338:13;:28;;;;49264:110:::0;:::o;50368:83::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50437:6:::1;50428;;:15;;;;;;;;;;;;;;;;;;50368:83:::0;:::o;17674:315::-;17727:7;17955:15;:13;:15::i;:::-;17940:12;;17924:13;;:28;:46;17917:53;;17674:315;:::o;26587:170::-;26721:28;26731:4;26737:2;26741:7;26721:9;:28::i;:::-;26587:170;;;:::o;50812:111::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50904:11:::1;50891:10;;:24;;;;;;;;;;;;;;;;;;50812:111:::0;:::o;47070:571::-;47140:8;52203:6;;;;;;;;;;;52202:7;52194:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44094:4;52267:8;52251:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;52243:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;52347:10;52334:23;;:9;:23;;;52326:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;47169:10:::1;;;;;;;;;;;47161:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;44244:2;47223:8;:33;;47215:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;47291:13;47307:11;;47291:27;;47329:17;47349:12;:24;47362:10;47349:24;;;;;;;;;;;;;;;;47329:44;;44297:3;47422:8;47410:9;:20;;;;:::i;:::-;:41;;47402:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;47496:31;47518:8;47510:5;:16;;;;:::i;:::-;47496:13;:31::i;:::-;47580:8;47568:9;:20;;;;:::i;:::-;47540:12;:24;47553:10;47540:24;;;;;;;;;;;;;;;:49;;;;47602:31;47612:10;47624:8;47602:9;:31::i;:::-;47150:491;;47070:571:::0;;:::o;46016:387::-;46082:8;52203:6;;;;;;;;;;;52202:7;52194:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44094:4;52267:8;52251:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;52243:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;52347:10;52334:23;;:9;:23;;;52326:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46125:10:::1;;;;;;;;;;;46111:24;;:10;:24;;;46103:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;46208:13;;46196:8;46176:17;;:28;;;;:::i;:::-;:45;;46168:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;46280:3;46263:13;:11;:13::i;:::-;:20;;46255:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;46343:8;46322:17;;:29;;;;;;;:::i;:::-;;;;;;;;46364:31;46374:10;46386:8;46364:9;:31::i;:::-;46016:387:::0;;:::o;44196:50::-;44244:2;44196:50;:::o;44057:41::-;44094:4;44057:41;:::o;44758:30::-;;;;;;;;;;;;;:::o;50931:905::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51056:19:::1;51078:21;51056:43;;51113:9;44929:42;51128:25;;51198:5;51190:4;51176:11;:18;;;;:::i;:::-;51175:28;;;;:::i;:::-;51128:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51112:106;;;51237:4;51229:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;45018:42;51289:25;;51359:5;51351:4;51337:11;:18;;;;:::i;:::-;51336:28;;;;:::i;:::-;51289:90;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51278:101;;;;;51398:4;51390:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;44840:42;51450:28;;51523:5;51515:4;51501:11;:18;;;;:::i;:::-;51500:28;;;;:::i;:::-;51450:93;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51439:104;;;;;51562:4;51554:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;51694:10;;;;;;;;;;;51686:24;;51732:21;51686:82;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51675:93;;;;;51787:4;51779:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;50978:858;;50931:905::o:0;26828:185::-;26966:39;26983:4;26989:2;26993:7;26966:39;;;;;;;;;;;;:16;:39::i;:::-;26828:185;;;:::o;47660:689::-;47720:16;47754:23;47780:17;47790:6;47780:9;:17::i;:::-;47754:43;;47808:30;47855:15;47841:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47808:63;;47882:22;47907:1;47882:26;;47919:23;47959:350;47984:15;47966;:33;:65;;;;;44094:4;48003:14;:28;;47966:65;47959:350;;;48048:25;48076:23;48084:14;48076:7;:23::i;:::-;48048:51;;48141:6;48120:27;;:17;:27;;;48116:153;;;48201:14;48168:13;48182:15;48168:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;48236:17;;;;;:::i;:::-;;;;48116:153;48281:16;;;;;:::i;:::-;;;;48033:276;47959:350;;;48328:13;48321:20;;;;;;47660:689;;;:::o;49679:130::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49783:18:::1;49771:9;:30;;;;;;;;;;;;:::i;:::-;;49679:130:::0;:::o;44687:28::-;;;;;;;;;;;;;:::o;49498:102::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49584:8:::1;49570:11;:22;;;;;;;;;;;;:::i;:::-;;49498:102:::0;:::o;44562:84::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45067:70::-;;;;;;;;;;;;;:::o;44655:25::-;;;;;;;;;;;;;:::o;49817:155::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49922:9:::1;49911:8;;:20;;;;;;;;;;;;;;;;;;49956:8;49942:11;:22;;;;;;;;;;;;:::i;:::-;;49817:155:::0;;:::o;23422:144::-;23486:7;23529:27;23548:7;23529:18;:27::i;:::-;23506:52;;23422:144;;;:::o;45146:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;44105:33::-;;;;:::o;19299:224::-;19363:7;19404:1;19387:19;;:5;:19;;;19383:60;;;19415:28;;;;;;;;;;;;;;19383:60;14638:13;19461:18;:25;19480:5;19461:25;;;;;;;;;;;;;;;;:54;19454:61;;19299:224;;;:::o;4730:103::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4795:30:::1;4822:1;4795:18;:30::i;:::-;4730:103::o:0;44309:32::-;;;;:::o;45199:47::-;;;;;;;;;;;;;;;;;:::o;50554:123::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50634:6:::1;50621:10;;:19;;;;;;;;;;;;;;;;;;50663:6;50662:7;50651:8;;:18;;;;;;;;;;;;;;;;;;50554:123:::0;:::o;46415:647::-;46483:8;52203:6;;;;;;;;;;;52202:7;52194:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44094:4;52267:8;52251:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;52243:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;52347:10;52334:23;;:9;:23;;;52326:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46512:8:::1;;;;;;;;;;;46504:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;46575:1;46562:9;:14;46554:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;46630:1;46618:8;:13;;46610:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;46660:17;46696:8;46680:13;:11;:13::i;:::-;:24;;;;:::i;:::-;46660:44;;46746:3;46733:9;:16;;46725:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;46798:14;:26;46813:10;46798:26;;;;;;;;;;;;;;;;;;;;;;;;;46797:27;46789:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;46898:4;46869:14;:26;46884:10;46869:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;46931:3;46918:9;:16;46915:96;;;46962:5;46951:8;;:16;;;;;;;;;;;;;;;;;;46995:4;46982:10;;:17;;;;;;;;;;;;;;;;;;46915:96;47023:31;47033:10;47045:8;47023:9;:31::i;:::-;46493:569;46415:647:::0;;:::o;50683:121::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50759:6:::1;50748:8;;:17;;;;;;;;;;;;;;;;;;50790:6;50789:7;50776:10;;:20;;;;;;;;;;;;;;;;;;50683:121:::0;:::o;44388:81::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4079:87::-;4125:7;4152:6;;;;;;;;;;;4145:13;;4079:87;:::o;51980:146::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52068:8:::1;52203:6;;;;;;;;;;;52202:7;52194:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;44094:4;52267:8;52251:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:38;;52243:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;52347:10;52334:23;;:9;:23;;;52326:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;52089:29:::2;52099:8;52109;52089:9;:29::i;:::-;4370:1:::1;51980:146:::0;;:::o;50041:115::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50136:12:::1;50121;:27;;;;;;;;;;;;:::i;:::-;;50041:115:::0;:::o;23802:104::-;23858:13;23891:7;23884:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23802:104;:::o;25977:308::-;26088:19;:17;:19::i;:::-;26076:31;;:8;:31;;;26072:61;;;26116:17;;;;;;;;;;;;;;26072:61;26198:8;26146:18;:39;26165:19;:17;:19::i;:::-;26146:39;;;;;;;;;;;;;;;:49;26186:8;26146:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;26258:8;26222:55;;26237:19;:17;:19::i;:::-;26222:55;;;26268:8;26222:55;;;;;;:::i;:::-;;;;;;;;25977:308;;:::o;44724:27::-;;;;;;;;;;;;;:::o;44147:40::-;;;;:::o;27084:396::-;27251:28;27261:4;27267:2;27271:7;27251:9;:28::i;:::-;27312:1;27294:2;:14;;;:19;27290:183;;27333:56;27364:4;27370:2;27374:7;27383:5;27333:30;:56::i;:::-;27328:145;;27417:40;;;;;;;;;;;;;;27328:145;27290:183;27084:396;;;;:::o;44253:47::-;44297:3;44253:47;:::o;49382:108::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49470:12:::1;49456:11;:26;;;;49382:108:::0;:::o;48357:608::-;48423:13;48688:17;48696:8;48688:7;:17::i;:::-;48680:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;48782:8;;;;;;;;;;;48778:180;;;48838:11;48851:26;48868:8;48851:16;:26::i;:::-;48821:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48807:81;;;;48778:180;48937:9;48930:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48357:608;;;;:::o;50459:87::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50532:6:::1;50521:8;;:17;;;;;;;;;;;;;;;;;;50459:87:::0;:::o;49152:97::-;49196:13;49229:12;49222:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49152:97;:::o;26356:164::-;26453:4;26477:18;:25;26496:5;26477:25;;;;;;;;;;;;;;;:35;26503:8;26477:35;;;;;;;;;;;;;;;;;;;;;;;;;26470:42;;26356:164;;;;:::o;4988:201::-;4310:12;:10;:12::i;:::-;4299:23;;:7;:5;:7::i;:::-;:23;;;4291:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:1:::1;5077:22;;:8;:22;;;;5069:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5153:28;5172:8;5153:18;:28::i;:::-;4988:201:::0;:::o;44350:25::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27735:273::-;27792:4;27848:7;27829:15;:13;:15::i;:::-;:26;;:66;;;;;27882:13;;27872:7;:23;27829:66;:152;;;;;27980:1;15408:8;27933:17;:26;27951:7;27933:26;;;;;;;;;;;;:43;:48;27829:152;27809:172;;27735:273;;;:::o;20937:1129::-;21004:7;21024:12;21039:7;21024:22;;21107:4;21088:15;:13;:15::i;:::-;:23;21084:915;;21141:13;;21134:4;:20;21130:869;;;21179:14;21196:17;:23;21214:4;21196:23;;;;;;;;;;;;21179:40;;21312:1;15408:8;21285:6;:23;:28;21281:699;;;21804:113;21821:1;21811:6;:11;21804:113;;;21864:17;:25;21882:6;;;;;;;21864:25;;;;;;;;;;;;21855:34;;21804:113;;;21950:6;21943:13;;;;;;21281:699;21156:843;21130:869;21084:915;22027:31;;;;;;;;;;;;;;20937:1129;;;;:::o;41717:105::-;41777:7;41804:10;41797:17;;41717:105;:::o;2803:98::-;2856:7;2883:10;2876:17;;2803:98;:::o;45534:101::-;45599:7;45626:1;45619:8;;45534:101;:::o;32974:2515::-;33089:27;33119;33138:7;33119:18;:27::i;:::-;33089:57;;33204:4;33163:45;;33179:19;33163:45;;;33159:86;;33217:28;;;;;;;;;;;;;;33159:86;33258:22;33307:4;33284:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;33328:43;33345:4;33351:19;:17;:19::i;:::-;33328:16;:43::i;:::-;33284:87;:147;;;;33412:19;:17;:19::i;:::-;33388:43;;:20;33400:7;33388:11;:20::i;:::-;:43;;;33284:147;33258:174;;33450:17;33445:66;;33476:35;;;;;;;;;;;;;;33445:66;33540:1;33526:16;;:2;:16;;;33522:52;;;33551:23;;;;;;;;;;;;;;33522:52;33587:43;33609:4;33615:2;33619:7;33628:1;33587:21;:43::i;:::-;33703:15;:24;33719:7;33703:24;;;;;;;;;;;;33696:31;;;;;;;;;;;34095:18;:24;34114:4;34095:24;;;;;;;;;;;;;;;;34093:26;;;;;;;;;;;;34164:18;:22;34183:2;34164:22;;;;;;;;;;;;;;;;34162:24;;;;;;;;;;;15690:8;15292:3;34545:15;:41;;34503:21;34521:2;34503:17;:21::i;:::-;:84;:128;34457:17;:26;34475:7;34457:26;;;;;;;;;;;:174;;;;34801:1;15690:8;34751:19;:46;:51;34747:626;;;34823:19;34855:1;34845:7;:11;34823:33;;35012:1;34978:17;:30;34996:11;34978:30;;;;;;;;;;;;:35;34974:384;;;35116:13;;35101:11;:28;35097:242;;35296:19;35263:17;:30;35281:11;35263:30;;;;;;;;;;;:52;;;;35097:242;34974:384;34804:569;34747:626;35420:7;35416:2;35401:27;;35410:4;35401:27;;;;;;;;;;;;35439:42;35460:4;35466:2;35470:7;35479:1;35439:20;:42::i;:::-;33078:2411;;32974:2515;;;:::o;45643:359::-;45716:5;45704:9;:17;45700:295;;;45739:9;45762:10;45754:24;;45817:5;45805:9;:17;;;;:::i;:::-;45754:88;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45738:104;;;45865:4;45857:32;;;;;;;;;;;;:::i;:::-;;;;;;;;;45723:178;45700:295;;;45932:5;45920:9;:17;45916:79;;;45954:29;;;;;;;;;;:::i;:::-;;;;;;;;45916:79;45700:295;45643:359;:::o;28092:104::-;28161:27;28171:2;28175:8;28161:27;;;;;;;;;;;;:9;:27::i;:::-;28092:104;;:::o;5349:191::-;5423:16;5442:6;;;;;;;;;;;5423:25;;5468:8;5459:6;;:17;;;;;;;;;;;;;;;;;;5523:8;5492:40;;5513:8;5492:40;;;;;;;;;;;;5412:128;5349:191;:::o;39186:716::-;39349:4;39395:2;39370:45;;;39416:19;:17;:19::i;:::-;39437:4;39443:7;39452:5;39370:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;39366:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39670:1;39653:6;:13;:18;39649:235;;;39699:40;;;;;;;;;;;;;;39649:235;39842:6;39836:13;39827:6;39823:2;39819:15;39812:38;39366:529;39539:54;;;39529:64;;;:6;:64;;;;39522:71;;;39186:716;;;;;;:::o;365:723::-;421:13;651:1;642:5;:10;638:53;;;669:10;;;;;;;;;;;;;;;;;;;;;638:53;701:12;716:5;701:20;;732:14;757:78;772:1;764:4;:9;757:78;;790:8;;;;;:::i;:::-;;;;821:2;813:10;;;;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;845:39;;895:154;911:1;902:5;:10;895:154;;939:1;929:11;;;;;:::i;:::-;;;1006:2;998:5;:10;;;;:::i;:::-;985:2;:24;;;;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1035:2;1026:11;;;;;:::i;:::-;;;895:154;;;1073:6;1059:21;;;;;365:723;;;;:::o;40550:159::-;;;;;:::o;24722:148::-;24786:14;24847:5;24837:15;;24722:148;;;:::o;41368:158::-;;;;;:::o;28569:2236::-;28692:20;28715:13;;28692:36;;28757:1;28743:16;;:2;:16;;;28739:48;;;28768:19;;;;;;;;;;;;;;28739:48;28814:1;28802:8;:13;28798:44;;;28824:18;;;;;;;;;;;;;;28798:44;28855:61;28885:1;28889:2;28893:12;28907:8;28855:21;:61::i;:::-;29459:1;14775:2;29430:1;:25;;29429:31;29417:8;:44;29391:18;:22;29410:2;29391:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;15555:3;29860:29;29887:1;29875:8;:13;29860:14;:29::i;:::-;:56;;15292:3;29797:15;:41;;29755:21;29773:2;29755:17;:21::i;:::-;:84;:162;29704:17;:31;29722:12;29704:31;;;;;;;;;;;:213;;;;29934:20;29957:12;29934:35;;29984:11;30013:8;29998:12;:23;29984:37;;30060:1;30042:2;:14;;;:19;30038:635;;30082:313;30138:12;30134:2;30113:38;;30130:1;30113:38;;;;;;;;;;;;30179:69;30218:1;30222:2;30226:14;;;;;;30242:5;30179:30;:69::i;:::-;30174:174;;30284:40;;;;;;;;;;;;;;30174:174;30390:3;30375:12;:18;30082:313;;30476:12;30459:13;;:29;30455:43;;30490:8;;;30455:43;30038:635;;;30539:119;30595:14;;;;;;30591:2;30570:40;;30587:1;30570:40;;;;;;;;;;;;30653:3;30638:12;:18;30539:119;;30038:635;30703:12;30687:13;:28;;;;29168:1559;;30737:60;30766:1;30770:2;30774:12;30788:8;30737:20;:60::i;:::-;28681:2124;28569:2236;;;:::o;24957:142::-;25015:14;25076:5;25066:15;;24957:142;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:648::-;6024:6;6032;6081:2;6069:9;6060:7;6056:23;6052:32;6049:119;;;6087:79;;:::i;:::-;6049:119;6207:1;6232:50;6274:7;6265:6;6254:9;6250:22;6232:50;:::i;:::-;6222:60;;6178:114;6359:2;6348:9;6344:18;6331:32;6390:18;6382:6;6379:30;6376:117;;;6412:79;;:::i;:::-;6376:117;6517:63;6572:7;6563:6;6552:9;6548:22;6517:63;:::i;:::-;6507:73;;6302:288;5949:648;;;;;:::o;6603:327::-;6661:6;6710:2;6698:9;6689:7;6685:23;6681:32;6678:119;;;6716:79;;:::i;:::-;6678:119;6836:1;6861:52;6905:7;6896:6;6885:9;6881:22;6861:52;:::i;:::-;6851:62;;6807:116;6603:327;;;;:::o;6936:349::-;7005:6;7054:2;7042:9;7033:7;7029:23;7025:32;7022:119;;;7060:79;;:::i;:::-;7022:119;7180:1;7205:63;7260:7;7251:6;7240:9;7236:22;7205:63;:::i;:::-;7195:73;;7151:127;6936:349;;;;:::o;7291:509::-;7360:6;7409:2;7397:9;7388:7;7384:23;7380:32;7377:119;;;7415:79;;:::i;:::-;7377:119;7563:1;7552:9;7548:17;7535:31;7593:18;7585:6;7582:30;7579:117;;;7615:79;;:::i;:::-;7579:117;7720:63;7775:7;7766:6;7755:9;7751:22;7720:63;:::i;:::-;7710:73;;7506:287;7291:509;;;;:::o;7806:329::-;7865:6;7914:2;7902:9;7893:7;7889:23;7885:32;7882:119;;;7920:79;;:::i;:::-;7882:119;8040:1;8065:53;8110:7;8101:6;8090:9;8086:22;8065:53;:::i;:::-;8055:63;;8011:117;7806:329;;;;:::o;8141:474::-;8209:6;8217;8266:2;8254:9;8245:7;8241:23;8237:32;8234:119;;;8272:79;;:::i;:::-;8234:119;8392:1;8417:53;8462:7;8453:6;8442:9;8438:22;8417:53;:::i;:::-;8407:63;;8363:117;8519:2;8545:53;8590:7;8581:6;8570:9;8566:22;8545:53;:::i;:::-;8535:63;;8490:118;8141:474;;;;;:::o;8621:179::-;8690:10;8711:46;8753:3;8745:6;8711:46;:::i;:::-;8789:4;8784:3;8780:14;8766:28;;8621:179;;;;:::o;8806:118::-;8893:24;8911:5;8893:24;:::i;:::-;8888:3;8881:37;8806:118;;:::o;8960:732::-;9079:3;9108:54;9156:5;9108:54;:::i;:::-;9178:86;9257:6;9252:3;9178:86;:::i;:::-;9171:93;;9288:56;9338:5;9288:56;:::i;:::-;9367:7;9398:1;9383:284;9408:6;9405:1;9402:13;9383:284;;;9484:6;9478:13;9511:63;9570:3;9555:13;9511:63;:::i;:::-;9504:70;;9597:60;9650:6;9597:60;:::i;:::-;9587:70;;9443:224;9430:1;9427;9423:9;9418:14;;9383:284;;;9387:14;9683:3;9676:10;;9084:608;;;8960:732;;;;:::o;9698:109::-;9779:21;9794:5;9779:21;:::i;:::-;9774:3;9767:34;9698:109;;:::o;9813:360::-;9899:3;9927:38;9959:5;9927:38;:::i;:::-;9981:70;10044:6;10039:3;9981:70;:::i;:::-;9974:77;;10060:52;10105:6;10100:3;10093:4;10086:5;10082:16;10060:52;:::i;:::-;10137:29;10159:6;10137:29;:::i;:::-;10132:3;10128:39;10121:46;;9903:270;9813:360;;;;:::o;10179:364::-;10267:3;10295:39;10328:5;10295:39;:::i;:::-;10350:71;10414:6;10409:3;10350:71;:::i;:::-;10343:78;;10430:52;10475:6;10470:3;10463:4;10456:5;10452:16;10430:52;:::i;:::-;10507:29;10529:6;10507:29;:::i;:::-;10502:3;10498:39;10491:46;;10271:272;10179:364;;;;:::o;10549:377::-;10655:3;10683:39;10716:5;10683:39;:::i;:::-;10738:89;10820:6;10815:3;10738:89;:::i;:::-;10731:96;;10836:52;10881:6;10876:3;10869:4;10862:5;10858:16;10836:52;:::i;:::-;10913:6;10908:3;10904:16;10897:23;;10659:267;10549:377;;;;:::o;10956:845::-;11059:3;11096:5;11090:12;11125:36;11151:9;11125:36;:::i;:::-;11177:89;11259:6;11254:3;11177:89;:::i;:::-;11170:96;;11297:1;11286:9;11282:17;11313:1;11308:137;;;;11459:1;11454:341;;;;11275:520;;11308:137;11392:4;11388:9;11377;11373:25;11368:3;11361:38;11428:6;11423:3;11419:16;11412:23;;11308:137;;11454:341;11521:38;11553:5;11521:38;:::i;:::-;11581:1;11595:154;11609:6;11606:1;11603:13;11595:154;;;11683:7;11677:14;11673:1;11668:3;11664:11;11657:35;11733:1;11724:7;11720:15;11709:26;;11631:4;11628:1;11624:12;11619:17;;11595:154;;;11778:6;11773:3;11769:16;11762:23;;11461:334;;11275:520;;11063:738;;10956:845;;;;:::o;11807:366::-;11949:3;11970:67;12034:2;12029:3;11970:67;:::i;:::-;11963:74;;12046:93;12135:3;12046:93;:::i;:::-;12164:2;12159:3;12155:12;12148:19;;11807:366;;;:::o;12179:::-;12321:3;12342:67;12406:2;12401:3;12342:67;:::i;:::-;12335:74;;12418:93;12507:3;12418:93;:::i;:::-;12536:2;12531:3;12527:12;12520:19;;12179:366;;;:::o;12551:::-;12693:3;12714:67;12778:2;12773:3;12714:67;:::i;:::-;12707:74;;12790:93;12879:3;12790:93;:::i;:::-;12908:2;12903:3;12899:12;12892:19;;12551:366;;;:::o;12923:::-;13065:3;13086:67;13150:2;13145:3;13086:67;:::i;:::-;13079:74;;13162:93;13251:3;13162:93;:::i;:::-;13280:2;13275:3;13271:12;13264:19;;12923:366;;;:::o;13295:::-;13437:3;13458:67;13522:2;13517:3;13458:67;:::i;:::-;13451:74;;13534:93;13623:3;13534:93;:::i;:::-;13652:2;13647:3;13643:12;13636:19;;13295:366;;;:::o;13667:::-;13809:3;13830:67;13894:2;13889:3;13830:67;:::i;:::-;13823:74;;13906:93;13995:3;13906:93;:::i;:::-;14024:2;14019:3;14015:12;14008:19;;13667:366;;;:::o;14039:::-;14181:3;14202:67;14266:2;14261:3;14202:67;:::i;:::-;14195:74;;14278:93;14367:3;14278:93;:::i;:::-;14396:2;14391:3;14387:12;14380:19;;14039:366;;;:::o;14411:::-;14553:3;14574:67;14638:2;14633:3;14574:67;:::i;:::-;14567:74;;14650:93;14739:3;14650:93;:::i;:::-;14768:2;14763:3;14759:12;14752:19;;14411:366;;;:::o;14783:::-;14925:3;14946:67;15010:2;15005:3;14946:67;:::i;:::-;14939:74;;15022:93;15111:3;15022:93;:::i;:::-;15140:2;15135:3;15131:12;15124:19;;14783:366;;;:::o;15155:::-;15297:3;15318:67;15382:2;15377:3;15318:67;:::i;:::-;15311:74;;15394:93;15483:3;15394:93;:::i;:::-;15512:2;15507:3;15503:12;15496:19;;15155:366;;;:::o;15527:400::-;15687:3;15708:84;15790:1;15785:3;15708:84;:::i;:::-;15701:91;;15801:93;15890:3;15801:93;:::i;:::-;15919:1;15914:3;15910:11;15903:18;;15527:400;;;:::o;15933:366::-;16075:3;16096:67;16160:2;16155:3;16096:67;:::i;:::-;16089:74;;16172:93;16261:3;16172:93;:::i;:::-;16290:2;16285:3;16281:12;16274:19;;15933:366;;;:::o;16305:::-;16447:3;16468:67;16532:2;16527:3;16468:67;:::i;:::-;16461:74;;16544:93;16633:3;16544:93;:::i;:::-;16662:2;16657:3;16653:12;16646:19;;16305:366;;;:::o;16677:::-;16819:3;16840:67;16904:2;16899:3;16840:67;:::i;:::-;16833:74;;16916:93;17005:3;16916:93;:::i;:::-;17034:2;17029:3;17025:12;17018:19;;16677:366;;;:::o;17049:::-;17191:3;17212:67;17276:2;17271:3;17212:67;:::i;:::-;17205:74;;17288:93;17377:3;17288:93;:::i;:::-;17406:2;17401:3;17397:12;17390:19;;17049:366;;;:::o;17421:::-;17563:3;17584:67;17648:2;17643:3;17584:67;:::i;:::-;17577:74;;17660:93;17749:3;17660:93;:::i;:::-;17778:2;17773:3;17769:12;17762:19;;17421:366;;;:::o;17793:::-;17935:3;17956:67;18020:2;18015:3;17956:67;:::i;:::-;17949:74;;18032:93;18121:3;18032:93;:::i;:::-;18150:2;18145:3;18141:12;18134:19;;17793:366;;;:::o;18165:::-;18307:3;18328:67;18392:2;18387:3;18328:67;:::i;:::-;18321:74;;18404:93;18493:3;18404:93;:::i;:::-;18522:2;18517:3;18513:12;18506:19;;18165:366;;;:::o;18537:::-;18679:3;18700:67;18764:2;18759:3;18700:67;:::i;:::-;18693:74;;18776:93;18865:3;18776:93;:::i;:::-;18894:2;18889:3;18885:12;18878:19;;18537:366;;;:::o;18909:398::-;19068:3;19089:83;19170:1;19165:3;19089:83;:::i;:::-;19082:90;;19181:93;19270:3;19181:93;:::i;:::-;19299:1;19294:3;19290:11;19283:18;;18909:398;;;:::o;19313:366::-;19455:3;19476:67;19540:2;19535:3;19476:67;:::i;:::-;19469:74;;19552:93;19641:3;19552:93;:::i;:::-;19670:2;19665:3;19661:12;19654:19;;19313:366;;;:::o;19685:::-;19827:3;19848:67;19912:2;19907:3;19848:67;:::i;:::-;19841:74;;19924:93;20013:3;19924:93;:::i;:::-;20042:2;20037:3;20033:12;20026:19;;19685:366;;;:::o;20057:::-;20199:3;20220:67;20284:2;20279:3;20220:67;:::i;:::-;20213:74;;20296:93;20385:3;20296:93;:::i;:::-;20414:2;20409:3;20405:12;20398:19;;20057:366;;;:::o;20429:::-;20571:3;20592:67;20656:2;20651:3;20592:67;:::i;:::-;20585:74;;20668:93;20757:3;20668:93;:::i;:::-;20786:2;20781:3;20777:12;20770:19;;20429:366;;;:::o;20801:::-;20943:3;20964:67;21028:2;21023:3;20964:67;:::i;:::-;20957:74;;21040:93;21129:3;21040:93;:::i;:::-;21158:2;21153:3;21149:12;21142:19;;20801:366;;;:::o;21173:108::-;21250:24;21268:5;21250:24;:::i;:::-;21245:3;21238:37;21173:108;;:::o;21287:118::-;21374:24;21392:5;21374:24;:::i;:::-;21369:3;21362:37;21287:118;;:::o;21411:695::-;21689:3;21711:92;21799:3;21790:6;21711:92;:::i;:::-;21704:99;;21820:95;21911:3;21902:6;21820:95;:::i;:::-;21813:102;;21932:148;22076:3;21932:148;:::i;:::-;21925:155;;22097:3;22090:10;;21411:695;;;;;:::o;22112:379::-;22296:3;22318:147;22461:3;22318:147;:::i;:::-;22311:154;;22482:3;22475:10;;22112:379;;;:::o;22497:222::-;22590:4;22628:2;22617:9;22613:18;22605:26;;22641:71;22709:1;22698:9;22694:17;22685:6;22641:71;:::i;:::-;22497:222;;;;:::o;22725:640::-;22920:4;22958:3;22947:9;22943:19;22935:27;;22972:71;23040:1;23029:9;23025:17;23016:6;22972:71;:::i;:::-;23053:72;23121:2;23110:9;23106:18;23097:6;23053:72;:::i;:::-;23135;23203:2;23192:9;23188:18;23179:6;23135:72;:::i;:::-;23254:9;23248:4;23244:20;23239:2;23228:9;23224:18;23217:48;23282:76;23353:4;23344:6;23282:76;:::i;:::-;23274:84;;22725:640;;;;;;;:::o;23371:373::-;23514:4;23552:2;23541:9;23537:18;23529:26;;23601:9;23595:4;23591:20;23587:1;23576:9;23572:17;23565:47;23629:108;23732:4;23723:6;23629:108;:::i;:::-;23621:116;;23371:373;;;;:::o;23750:210::-;23837:4;23875:2;23864:9;23860:18;23852:26;;23888:65;23950:1;23939:9;23935:17;23926:6;23888:65;:::i;:::-;23750:210;;;;:::o;23966:313::-;24079:4;24117:2;24106:9;24102:18;24094:26;;24166:9;24160:4;24156:20;24152:1;24141:9;24137:17;24130:47;24194:78;24267:4;24258:6;24194:78;:::i;:::-;24186:86;;23966:313;;;;:::o;24285:419::-;24451:4;24489:2;24478:9;24474:18;24466:26;;24538:9;24532:4;24528:20;24524:1;24513:9;24509:17;24502:47;24566:131;24692:4;24566:131;:::i;:::-;24558:139;;24285:419;;;:::o;24710:::-;24876:4;24914:2;24903:9;24899:18;24891:26;;24963:9;24957:4;24953:20;24949:1;24938:9;24934:17;24927:47;24991:131;25117:4;24991:131;:::i;:::-;24983:139;;24710:419;;;:::o;25135:::-;25301:4;25339:2;25328:9;25324:18;25316:26;;25388:9;25382:4;25378:20;25374:1;25363:9;25359:17;25352:47;25416:131;25542:4;25416:131;:::i;:::-;25408:139;;25135:419;;;:::o;25560:::-;25726:4;25764:2;25753:9;25749:18;25741:26;;25813:9;25807:4;25803:20;25799:1;25788:9;25784:17;25777:47;25841:131;25967:4;25841:131;:::i;:::-;25833:139;;25560:419;;;:::o;25985:::-;26151:4;26189:2;26178:9;26174:18;26166:26;;26238:9;26232:4;26228:20;26224:1;26213:9;26209:17;26202:47;26266:131;26392:4;26266:131;:::i;:::-;26258:139;;25985:419;;;:::o;26410:::-;26576:4;26614:2;26603:9;26599:18;26591:26;;26663:9;26657:4;26653:20;26649:1;26638:9;26634:17;26627:47;26691:131;26817:4;26691:131;:::i;:::-;26683:139;;26410:419;;;:::o;26835:::-;27001:4;27039:2;27028:9;27024:18;27016:26;;27088:9;27082:4;27078:20;27074:1;27063:9;27059:17;27052:47;27116:131;27242:4;27116:131;:::i;:::-;27108:139;;26835:419;;;:::o;27260:::-;27426:4;27464:2;27453:9;27449:18;27441:26;;27513:9;27507:4;27503:20;27499:1;27488:9;27484:17;27477:47;27541:131;27667:4;27541:131;:::i;:::-;27533:139;;27260:419;;;:::o;27685:::-;27851:4;27889:2;27878:9;27874:18;27866:26;;27938:9;27932:4;27928:20;27924:1;27913:9;27909:17;27902:47;27966:131;28092:4;27966:131;:::i;:::-;27958:139;;27685:419;;;:::o;28110:::-;28276:4;28314:2;28303:9;28299:18;28291:26;;28363:9;28357:4;28353:20;28349:1;28338:9;28334:17;28327:47;28391:131;28517:4;28391:131;:::i;:::-;28383:139;;28110:419;;;:::o;28535:::-;28701:4;28739:2;28728:9;28724:18;28716:26;;28788:9;28782:4;28778:20;28774:1;28763:9;28759:17;28752:47;28816:131;28942:4;28816:131;:::i;:::-;28808:139;;28535:419;;;:::o;28960:::-;29126:4;29164:2;29153:9;29149:18;29141:26;;29213:9;29207:4;29203:20;29199:1;29188:9;29184:17;29177:47;29241:131;29367:4;29241:131;:::i;:::-;29233:139;;28960:419;;;:::o;29385:::-;29551:4;29589:2;29578:9;29574:18;29566:26;;29638:9;29632:4;29628:20;29624:1;29613:9;29609:17;29602:47;29666:131;29792:4;29666:131;:::i;:::-;29658:139;;29385:419;;;:::o;29810:::-;29976:4;30014:2;30003:9;29999:18;29991:26;;30063:9;30057:4;30053:20;30049:1;30038:9;30034:17;30027:47;30091:131;30217:4;30091:131;:::i;:::-;30083:139;;29810:419;;;:::o;30235:::-;30401:4;30439:2;30428:9;30424:18;30416:26;;30488:9;30482:4;30478:20;30474:1;30463:9;30459:17;30452:47;30516:131;30642:4;30516:131;:::i;:::-;30508:139;;30235:419;;;:::o;30660:::-;30826:4;30864:2;30853:9;30849:18;30841:26;;30913:9;30907:4;30903:20;30899:1;30888:9;30884:17;30877:47;30941:131;31067:4;30941:131;:::i;:::-;30933:139;;30660:419;;;:::o;31085:::-;31251:4;31289:2;31278:9;31274:18;31266:26;;31338:9;31332:4;31328:20;31324:1;31313:9;31309:17;31302:47;31366:131;31492:4;31366:131;:::i;:::-;31358:139;;31085:419;;;:::o;31510:::-;31676:4;31714:2;31703:9;31699:18;31691:26;;31763:9;31757:4;31753:20;31749:1;31738:9;31734:17;31727:47;31791:131;31917:4;31791:131;:::i;:::-;31783:139;;31510:419;;;:::o;31935:::-;32101:4;32139:2;32128:9;32124:18;32116:26;;32188:9;32182:4;32178:20;32174:1;32163:9;32159:17;32152:47;32216:131;32342:4;32216:131;:::i;:::-;32208:139;;31935:419;;;:::o;32360:::-;32526:4;32564:2;32553:9;32549:18;32541:26;;32613:9;32607:4;32603:20;32599:1;32588:9;32584:17;32577:47;32641:131;32767:4;32641:131;:::i;:::-;32633:139;;32360:419;;;:::o;32785:::-;32951:4;32989:2;32978:9;32974:18;32966:26;;33038:9;33032:4;33028:20;33024:1;33013:9;33009:17;33002:47;33066:131;33192:4;33066:131;:::i;:::-;33058:139;;32785:419;;;:::o;33210:::-;33376:4;33414:2;33403:9;33399:18;33391:26;;33463:9;33457:4;33453:20;33449:1;33438:9;33434:17;33427:47;33491:131;33617:4;33491:131;:::i;:::-;33483:139;;33210:419;;;:::o;33635:::-;33801:4;33839:2;33828:9;33824:18;33816:26;;33888:9;33882:4;33878:20;33874:1;33863:9;33859:17;33852:47;33916:131;34042:4;33916:131;:::i;:::-;33908:139;;33635:419;;;:::o;34060:222::-;34153:4;34191:2;34180:9;34176:18;34168:26;;34204:71;34272:1;34261:9;34257:17;34248:6;34204:71;:::i;:::-;34060:222;;;;:::o;34288:129::-;34322:6;34349:20;;:::i;:::-;34339:30;;34378:33;34406:4;34398:6;34378:33;:::i;:::-;34288:129;;;:::o;34423:75::-;34456:6;34489:2;34483:9;34473:19;;34423:75;:::o;34504:307::-;34565:4;34655:18;34647:6;34644:30;34641:56;;;34677:18;;:::i;:::-;34641:56;34715:29;34737:6;34715:29;:::i;:::-;34707:37;;34799:4;34793;34789:15;34781:23;;34504:307;;;:::o;34817:308::-;34879:4;34969:18;34961:6;34958:30;34955:56;;;34991:18;;:::i;:::-;34955:56;35029:29;35051:6;35029:29;:::i;:::-;35021:37;;35113:4;35107;35103:15;35095:23;;34817:308;;;:::o;35131:132::-;35198:4;35221:3;35213:11;;35251:4;35246:3;35242:14;35234:22;;35131:132;;;:::o;35269:141::-;35318:4;35341:3;35333:11;;35364:3;35361:1;35354:14;35398:4;35395:1;35385:18;35377:26;;35269:141;;;:::o;35416:114::-;35483:6;35517:5;35511:12;35501:22;;35416:114;;;:::o;35536:98::-;35587:6;35621:5;35615:12;35605:22;;35536:98;;;:::o;35640:99::-;35692:6;35726:5;35720:12;35710:22;;35640:99;;;:::o;35745:113::-;35815:4;35847;35842:3;35838:14;35830:22;;35745:113;;;:::o;35864:184::-;35963:11;35997:6;35992:3;35985:19;36037:4;36032:3;36028:14;36013:29;;35864:184;;;;:::o;36054:168::-;36137:11;36171:6;36166:3;36159:19;36211:4;36206:3;36202:14;36187:29;;36054:168;;;;:::o;36228:147::-;36329:11;36366:3;36351:18;;36228:147;;;;:::o;36381:169::-;36465:11;36499:6;36494:3;36487:19;36539:4;36534:3;36530:14;36515:29;;36381:169;;;;:::o;36556:148::-;36658:11;36695:3;36680:18;;36556:148;;;;:::o;36710:305::-;36750:3;36769:20;36787:1;36769:20;:::i;:::-;36764:25;;36803:20;36821:1;36803:20;:::i;:::-;36798:25;;36957:1;36889:66;36885:74;36882:1;36879:81;36876:107;;;36963:18;;:::i;:::-;36876:107;37007:1;37004;37000:9;36993:16;;36710:305;;;;:::o;37021:185::-;37061:1;37078:20;37096:1;37078:20;:::i;:::-;37073:25;;37112:20;37130:1;37112:20;:::i;:::-;37107:25;;37151:1;37141:35;;37156:18;;:::i;:::-;37141:35;37198:1;37195;37191:9;37186:14;;37021:185;;;;:::o;37212:348::-;37252:7;37275:20;37293:1;37275:20;:::i;:::-;37270:25;;37309:20;37327:1;37309:20;:::i;:::-;37304:25;;37497:1;37429:66;37425:74;37422:1;37419:81;37414:1;37407:9;37400:17;37396:105;37393:131;;;37504:18;;:::i;:::-;37393:131;37552:1;37549;37545:9;37534:20;;37212:348;;;;:::o;37566:191::-;37606:4;37626:20;37644:1;37626:20;:::i;:::-;37621:25;;37660:20;37678:1;37660:20;:::i;:::-;37655:25;;37699:1;37696;37693:8;37690:34;;;37704:18;;:::i;:::-;37690:34;37749:1;37746;37742:9;37734:17;;37566:191;;;;:::o;37763:96::-;37800:7;37829:24;37847:5;37829:24;:::i;:::-;37818:35;;37763:96;;;:::o;37865:90::-;37899:7;37942:5;37935:13;37928:21;37917:32;;37865:90;;;:::o;37961:149::-;37997:7;38037:66;38030:5;38026:78;38015:89;;37961:149;;;:::o;38116:126::-;38153:7;38193:42;38186:5;38182:54;38171:65;;38116:126;;;:::o;38248:77::-;38285:7;38314:5;38303:16;;38248:77;;;:::o;38331:154::-;38415:6;38410:3;38405;38392:30;38477:1;38468:6;38463:3;38459:16;38452:27;38331:154;;;:::o;38491:307::-;38559:1;38569:113;38583:6;38580:1;38577:13;38569:113;;;38668:1;38663:3;38659:11;38653:18;38649:1;38644:3;38640:11;38633:39;38605:2;38602:1;38598:10;38593:15;;38569:113;;;38700:6;38697:1;38694:13;38691:101;;;38780:1;38771:6;38766:3;38762:16;38755:27;38691:101;38540:258;38491:307;;;:::o;38804:320::-;38848:6;38885:1;38879:4;38875:12;38865:22;;38932:1;38926:4;38922:12;38953:18;38943:81;;39009:4;39001:6;38997:17;38987:27;;38943:81;39071:2;39063:6;39060:14;39040:18;39037:38;39034:84;;;39090:18;;:::i;:::-;39034:84;38855:269;38804:320;;;:::o;39130:281::-;39213:27;39235:4;39213:27;:::i;:::-;39205:6;39201:40;39343:6;39331:10;39328:22;39307:18;39295:10;39292:34;39289:62;39286:88;;;39354:18;;:::i;:::-;39286:88;39394:10;39390:2;39383:22;39173:238;39130:281;;:::o;39417:233::-;39456:3;39479:24;39497:5;39479:24;:::i;:::-;39470:33;;39525:66;39518:5;39515:77;39512:103;;;39595:18;;:::i;:::-;39512:103;39642:1;39635:5;39631:13;39624:20;;39417:233;;;:::o;39656:176::-;39688:1;39705:20;39723:1;39705:20;:::i;:::-;39700:25;;39739:20;39757:1;39739:20;:::i;:::-;39734:25;;39778:1;39768:35;;39783:18;;:::i;:::-;39768:35;39824:1;39821;39817:9;39812:14;;39656:176;;;;:::o;39838:180::-;39886:77;39883:1;39876:88;39983:4;39980:1;39973:15;40007:4;40004:1;39997:15;40024:180;40072:77;40069:1;40062:88;40169:4;40166:1;40159:15;40193:4;40190:1;40183:15;40210:180;40258:77;40255:1;40248:88;40355:4;40352:1;40345:15;40379:4;40376:1;40369:15;40396:180;40444:77;40441:1;40434:88;40541:4;40538:1;40531:15;40565:4;40562:1;40555:15;40582:180;40630:77;40627:1;40620:88;40727:4;40724:1;40717:15;40751:4;40748:1;40741:15;40768:117;40877:1;40874;40867:12;40891:117;41000:1;40997;40990:12;41014:117;41123:1;41120;41113:12;41137:117;41246:1;41243;41236:12;41260:102;41301:6;41352:2;41348:7;41343:2;41336:5;41332:14;41328:28;41318:38;;41260:102;;;:::o;41368:225::-;41508:34;41504:1;41496:6;41492:14;41485:58;41577:8;41572:2;41564:6;41560:15;41553:33;41368:225;:::o;41599:165::-;41739:17;41735:1;41727:6;41723:14;41716:41;41599:165;:::o;41770:161::-;41910:13;41906:1;41898:6;41894:14;41887:37;41770:161;:::o;41937:167::-;42077:19;42073:1;42065:6;42061:14;42054:43;41937:167;:::o;42110:169::-;42250:21;42246:1;42238:6;42234:14;42227:45;42110:169;:::o;42285:172::-;42425:24;42421:1;42413:6;42409:14;42402:48;42285:172;:::o;42463:171::-;42603:23;42599:1;42591:6;42587:14;42580:47;42463:171;:::o;42640:169::-;42780:21;42776:1;42768:6;42764:14;42757:45;42640:169;:::o;42815:182::-;42955:34;42951:1;42943:6;42939:14;42932:58;42815:182;:::o;43003:168::-;43143:20;43139:1;43131:6;43127:14;43120:44;43003:168;:::o;43177:155::-;43317:7;43313:1;43305:6;43301:14;43294:31;43177:155;:::o;43338:182::-;43478:34;43474:1;43466:6;43462:14;43455:58;43338:182;:::o;43526:169::-;43666:21;43662:1;43654:6;43650:14;43643:45;43526:169;:::o;43701:234::-;43841:34;43837:1;43829:6;43825:14;43818:58;43910:17;43905:2;43897:6;43893:15;43886:42;43701:234;:::o;43941:168::-;44081:20;44077:1;44069:6;44065:14;44058:44;43941:168;:::o;44115:::-;44255:20;44251:1;44243:6;44239:14;44232:44;44115:168;:::o;44289:169::-;44429:21;44425:1;44417:6;44413:14;44406:45;44289:169;:::o;44464:170::-;44604:22;44600:1;44592:6;44588:14;44581:46;44464:170;:::o;44640:167::-;44780:19;44776:1;44768:6;44764:14;44757:43;44640:167;:::o;44813:114::-;;:::o;44933:169::-;45073:21;45069:1;45061:6;45057:14;45050:45;44933:169;:::o;45108:::-;45248:21;45244:1;45236:6;45232:14;45225:45;45108:169;:::o;45283:168::-;45423:20;45419:1;45411:6;45407:14;45400:44;45283:168;:::o;45457:172::-;45597:24;45593:1;45585:6;45581:14;45574:48;45457:172;:::o;45635:171::-;45775:23;45771:1;45763:6;45759:14;45752:47;45635:171;:::o;45812:122::-;45885:24;45903:5;45885:24;:::i;:::-;45878:5;45875:35;45865:63;;45924:1;45921;45914:12;45865:63;45812:122;:::o;45940:116::-;46010:21;46025:5;46010:21;:::i;:::-;46003:5;46000:32;45990:60;;46046:1;46043;46036:12;45990:60;45940:116;:::o;46062:120::-;46134:23;46151:5;46134:23;:::i;:::-;46127:5;46124:34;46114:62;;46172:1;46169;46162:12;46114:62;46062:120;:::o;46188:122::-;46261:24;46279:5;46261:24;:::i;:::-;46254:5;46251:35;46241:63;;46300:1;46297;46290:12;46241:63;46188:122;:::o

Swarm Source

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