ETH Price: $3,427.26 (+5.27%)
Gas: 10 Gwei

Token

Codex of Evil (Codex of Evil)
 

Overview

Max Total Supply

3,256 Codex of Evil

Holders

1,530

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
6 Codex of Evil
0x07b5cdfefec4cd6d38705ca2c0163bb3d9e81e53
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:
CodexofEvil

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

/** 

  /$$$$$$                  /$$                                      /$$$$$$        /$$$$$$$$         /$$ /$$
 /$$__  $$                | $$                                     /$$__  $$      | $$_____/        |__/| $$
| $$  \__/  /$$$$$$   /$$$$$$$  /$$$$$$  /$$   /$$        /$$$$$$ | $$  \__/      | $$    /$$    /$$ /$$| $$
| $$       /$$__  $$ /$$__  $$ /$$__  $$|  $$ /$$/       /$$__  $$| $$$$          | $$$$$|  $$  /$$/| $$| $$
| $$      | $$  \ $$| $$  | $$| $$$$$$$$ \  $$$$/       | $$  \ $$| $$_/          | $$__/ \  $$/$$/ | $$| $$
| $$    $$| $$  | $$| $$  | $$| $$_____/  >$$  $$       | $$  | $$| $$            | $$     \  $$$/  | $$| $$
|  $$$$$$/|  $$$$$$/|  $$$$$$$|  $$$$$$$ /$$/\  $$      |  $$$$$$/| $$            | $$$$$$$$\  $/   | $$| $$
 \______/  \______/  \_______/ \_______/|__/  \__/       \______/ |__/            |________/ \_/    |__/|__/
                                                                                                            
                                                                                                            
                                                                                                            

                                                                                                                          
*/

/**
 *Submitted for verification at Etherscan.io on
*/
// SPDX-License-Identifier: MIT
// 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: nft.sol


pragma solidity ^0.8.7;


contract CodexofEvil is Ownable, ERC721A {
    uint256 public maxSupply                    = 3256;
    uint256 public maxFreeSupply                = 1000;
    
    uint256 public maxPerTxDuringMint           = 10;
    uint256 public maxPerAddressDuringMint      = 50;
    uint256 public maxPerAddressDuringFreeMint  = 5;
    
    uint256 public price                        = 0.003 ether;
    bool    public saleIsActive                 = true;

    address constant internal TEAM_ADDRESS = 0xd9a109539AC32dFcA1ef834A5682706C5b059487;

    string private _baseTokenURI="ipfs://QmeEZuCTiaP514ucjX5D21e8tDv67e4Yt5jyGffcMsAfJ3/";

    mapping(address => uint256) public freeMintedAmount;
    mapping(address => uint256) public mintedAmount;

    constructor() ERC721A("Codex of Evil", "Codex of Evil") {
        _safeMint(msg.sender, 50);
    }

    modifier mintCompliance() {
        require(saleIsActive, "Sale is not active yet.");
        require(tx.origin == msg.sender, "Caller cannot be a contract.");
        _;
    }

    function mint(uint256 _quantity) external payable mintCompliance() {
        require(
            msg.value >= price * _quantity,
            "GDZ: Insufficient Fund."
        );
        require(
            maxSupply >= totalSupply() + _quantity,
            "GDZ: Exceeds max supply."
        );
        uint256 _mintedAmount = mintedAmount[msg.sender];
        require(
            _mintedAmount + _quantity <= maxPerAddressDuringMint,
            "GDZ: Exceeds max mints per address!"
        );
        require(
            _quantity > 0 && _quantity <= maxPerTxDuringMint,
            "Invalid mint amount."
        );
        mintedAmount[msg.sender] = _mintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

    function freeMint(uint256 _quantity) external mintCompliance() {
        require(
            maxFreeSupply >= totalSupply() + _quantity,
            "GDZ: Exceeds max free supply."
        );
        uint256 _freeMintedAmount = freeMintedAmount[msg.sender];
        require(
            _freeMintedAmount + _quantity <= maxPerAddressDuringFreeMint,
            "GDZ: Exceeds max free mints per address!"
        );
        freeMintedAmount[msg.sender] = _freeMintedAmount + _quantity;
        _safeMint(msg.sender, _quantity);
    }

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

    function setMaxPerTx(uint256 _amount) external onlyOwner {
        maxPerTxDuringMint = _amount;
    }

    function setMaxPerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringMint = _amount;
    }

    function setMaxFreePerAddress(uint256 _amount) external onlyOwner {
        maxPerAddressDuringFreeMint = _amount;
    }

    function flipSale() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    function cutMaxSupply(uint256 _amount) public onlyOwner {
        require(
            maxSupply - _amount >= totalSupply(), 
            "Supply cannot fall below minted tokens."
        );
        maxSupply -= _amount;
    }

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

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

    function withdrawBalance() external payable onlyOwner {

        (bool success, ) = payable(TEAM_ADDRESS).call{
            value: address(this).balance
        }("");
        require(success, "transfer failed.");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"cutMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringFreeMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTxDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxFreePerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawBalance","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052610cb86009556103e8600a55600a600b556032600c556005600d55660aa87bee538000600e556001600f60006101000a81548160ff0219169083151502179055506040518060600160405280603681526020016200415c603691396010908051906020019062000076929190620006eb565b503480156200008457600080fd5b506040518060400160405280600d81526020017f436f646578206f66204576696c000000000000000000000000000000000000008152506040518060400160405280600d81526020017f436f646578206f66204576696c0000000000000000000000000000000000000081525062000111620001056200017460201b60201c565b6200017c60201b60201c565b816003908051906020019062000129929190620006eb565b50806004908051906020019062000142929190620006eb565b50620001536200024060201b60201c565b60018190555050506200016e3360326200024560201b60201c565b620009ec565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b620002678282604051806020016040528060008152506200026b60201b60201c565b5050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415620002da576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141562000316576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200032b60008583866200055160201b60201c565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e162000398600185146200055760201b60201c565b901b60a042901b620003b0866200056160201b60201c565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14620004c1575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46200046d60008784806001019550876200056b60201b60201c565b620004a4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210620003f6578260015414620004bb57600080fd5b6200052d565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210620004c2575b8160018190555050506200054b6000858386620006dd60201b60201c565b50505050565b50505050565b6000819050919050565b6000819050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000599620006e360201b60201c565b8786866040518563ffffffff1660e01b8152600401620005bd949392919062000847565b602060405180830381600087803b158015620005d857600080fd5b505af19250505080156200060c57506040513d601f19601f82011682018060405250810190620006099190620007b2565b60015b6200068a573d80600081146200063f576040519150601f19603f3d011682016040523d82523d6000602084013e62000644565b606091505b5060008151141562000682576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b50505050565b600033905090565b828054620006f99062000957565b90600052602060002090601f0160209004810192826200071d576000855562000769565b82601f106200073857805160ff191683800117855562000769565b8280016001018555821562000769579182015b82811115620007685782518255916020019190600101906200074b565b5b5090506200077891906200077c565b5090565b5b80821115620007975760008160009055506001016200077d565b5090565b600081519050620007ac81620009d2565b92915050565b600060208284031215620007cb57620007ca620009bc565b5b6000620007db848285016200079b565b91505092915050565b620007ef81620008b7565b82525050565b600062000802826200089b565b6200080e8185620008a6565b93506200082081856020860162000921565b6200082b81620009c1565b840191505092915050565b620008418162000917565b82525050565b60006080820190506200085e6000830187620007e4565b6200086d6020830186620007e4565b6200087c604083018562000836565b8181036060830152620008908184620007f5565b905095945050505050565b600081519050919050565b600082825260208201905092915050565b6000620008c482620008f7565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200094157808201518184015260208101905062000924565b8381111562000951576000848401525b50505050565b600060028204905060018216806200097057607f821691505b602082108114156200098757620009866200098d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b620009dd81620008cb565b8114620009e957600080fd5b50565b61376080620009fc6000396000f3fe60806040526004361061020f5760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb0114610745578063e985e9c514610770578063eb8d2444146107ad578063f2fde38b146107d8578063fbbf8cc3146108015761020f565b8063bbb643191461068b578063c6f6f216146106b4578063c87b56dd146106dd578063d3464cbd1461071a5761020f565b806396b10201116100e757806396b10201146105b5578063a035b1fe146105f2578063a0712d681461061d578063a22cb46514610639578063b88d4fde146106625761020f565b80638bc35c2f1461050b5780638da5cb5b1461053657806391b7f5ed1461056157806395d89b411461058a5761020f565b8063475133341161019b57806370a082311161016a57806370a082311461044e578063715018a61461048b5780637ba5e621146104a25780637bddd65b146104b95780637c928fe9146104e25761020f565b806347513334146103b357806355f804b3146103de5780635fd8c710146104075780636352211e146104115761020f565b80631141df20116101e25780631141df20146102e257806318160ddd1461030b57806323b872dd146103365780632e0fd6eb1461035f57806342842e0e1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612b07565b61083e565b6040516102489190612f12565b60405180910390f35b34801561025d57600080fd5b506102666108d0565b6040516102739190612f2d565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612bae565b610962565b6040516102b09190612eab565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612ac7565b6109de565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612bae565b610b85565b005b34801561031757600080fd5b50610320610c74565b60405161032d91906130cf565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906129b1565b610c8b565b005b34801561036b57600080fd5b50610374610c9b565b60405161038191906130cf565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac91906129b1565b610ca1565b005b3480156103bf57600080fd5b506103c8610cc1565b6040516103d591906130cf565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612b61565b610cc7565b005b61040f610d59565b005b34801561041d57600080fd5b5061043860048036038101906104339190612bae565b610e98565b6040516104459190612eab565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612944565b610eaa565b60405161048291906130cf565b60405180910390f35b34801561049757600080fd5b506104a0610f63565b005b3480156104ae57600080fd5b506104b7610feb565b005b3480156104c557600080fd5b506104e060048036038101906104db9190612bae565b611093565b005b3480156104ee57600080fd5b5061050960048036038101906105049190612bae565b611119565b005b34801561051757600080fd5b5061052061131e565b60405161052d91906130cf565b60405180910390f35b34801561054257600080fd5b5061054b611324565b6040516105589190612eab565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612bae565b61134d565b005b34801561059657600080fd5b5061059f6113d3565b6040516105ac9190612f2d565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612944565b611465565b6040516105e991906130cf565b60405180910390f35b3480156105fe57600080fd5b5061060761147d565b60405161061491906130cf565b60405180910390f35b61063760048036038101906106329190612bae565b611483565b005b34801561064557600080fd5b50610660600480360381019061065b9190612a87565b611729565b005b34801561066e57600080fd5b5061068960048036038101906106849190612a04565b6118a1565b005b34801561069757600080fd5b506106b260048036038101906106ad9190612bae565b611914565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612bae565b61199a565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190612bae565b611a20565b6040516107119190612f2d565b60405180910390f35b34801561072657600080fd5b5061072f611abf565b60405161073c91906130cf565b60405180910390f35b34801561075157600080fd5b5061075a611ac5565b60405161076791906130cf565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612971565b611acb565b6040516107a49190612f12565b60405180910390f35b3480156107b957600080fd5b506107c2611b5f565b6040516107cf9190612f12565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612944565b611b72565b005b34801561080d57600080fd5b5061082860048036038101906108239190612944565b611c6a565b60405161083591906130cf565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108df90613328565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90613328565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611c82565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611ce1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611daf565b73ffffffffffffffffffffffffffffffffffffffff1614610ad357610a9c81610a97611daf565b611acb565b610ad2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b8d611db7565b73ffffffffffffffffffffffffffffffffffffffff16610bab611324565b73ffffffffffffffffffffffffffffffffffffffff1614610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf8906130af565b60405180910390fd5b610c09610c74565b81600954610c17919061323e565b1015610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f9061302f565b60405180910390fd5b8060096000828254610c6a919061323e565b9250508190555050565b6000610c7e611dbf565b6002546001540303905090565b610c96838383611dc4565b505050565b600d5481565b610cbc838383604051806020016040528060008152506118a1565b505050565b600a5481565b610ccf611db7565b73ffffffffffffffffffffffffffffffffffffffff16610ced611324565b73ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906130af565b60405180910390fd5b818160109190610d54929190612772565b505050565b610d61611db7565b73ffffffffffffffffffffffffffffffffffffffff16610d7f611324565b73ffffffffffffffffffffffffffffffffffffffff1614610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc906130af565b60405180910390fd5b600073d9a109539ac32dfca1ef834a5682706c5b05948773ffffffffffffffffffffffffffffffffffffffff1647604051610e0f90612e96565b60006040518083038185875af1925050503d8060008114610e4c576040519150601f19603f3d011682016040523d82523d6000602084013e610e51565b606091505b5050905080610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c9061304f565b60405180910390fd5b50565b6000610ea382611ce1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f12576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f6b611db7565b73ffffffffffffffffffffffffffffffffffffffff16610f89611324565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd6906130af565b60405180910390fd5b610fe9600061216e565b565b610ff3611db7565b73ffffffffffffffffffffffffffffffffffffffff16611011611324565b73ffffffffffffffffffffffffffffffffffffffff1614611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e906130af565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b61109b611db7565b73ffffffffffffffffffffffffffffffffffffffff166110b9611324565b73ffffffffffffffffffffffffffffffffffffffff161461110f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611106906130af565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff16611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f90612fcf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90612f8f565b60405180910390fd5b806111df610c74565b6111e9919061318e565b600a54101561122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612f6f565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548282611280919061318e565b11156112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890612faf565b60405180910390fd5b81816112cd919061318e565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061131a3383612232565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611355611db7565b73ffffffffffffffffffffffffffffffffffffffff16611373611324565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906130af565b60405180910390fd5b80600e8190555050565b6060600480546113e290613328565b80601f016020809104026020016040519081016040528092919081815260200182805461140e90613328565b801561145b5780601f106114305761010080835404028352916020019161145b565b820191906000526020600020905b81548152906001019060200180831161143e57829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff166114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990612fcf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790612f8f565b60405180910390fd5b80600e5461154e91906131e4565b341015611590576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115879061308f565b60405180910390fd5b80611599610c74565b6115a3919061318e565b60095410156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90612fef565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c54828261163a919061318e565b111561167b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116729061300f565b60405180910390fd5b60008211801561168d5750600b548211155b6116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c39061306f565b60405180910390fd5b81816116d8919061318e565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117253383612232565b5050565b611731611daf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611796576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006117a3611daf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611850611daf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118959190612f12565b60405180910390a35050565b6118ac848484611dc4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461190e576118d784848484612250565b61190d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61191c611db7565b73ffffffffffffffffffffffffffffffffffffffff1661193a611324565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906130af565b60405180910390fd5b80600d8190555050565b6119a2611db7565b73ffffffffffffffffffffffffffffffffffffffff166119c0611324565b73ffffffffffffffffffffffffffffffffffffffff1614611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d906130af565b60405180910390fd5b80600b8190555050565b6060611a2b82611c82565b611a61576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a6b6123b0565b9050600081511415611a8c5760405180602001604052806000815250611ab7565b80611a9684612442565b604051602001611aa7929190612e72565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611b7a611db7565b73ffffffffffffffffffffffffffffffffffffffff16611b98611324565b73ffffffffffffffffffffffffffffffffffffffff1614611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be5906130af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5590612f4f565b60405180910390fd5b611c678161216e565b50565b60126020528060005260406000206000915090505481565b600081611c8d611dbf565b11158015611c9c575060015482105b8015611cda575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611cf0611dbf565b11611d7857600154811015611d775760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d75575b6000811415611d6b576005600083600190039350838152602001908152602001600020549050611d40565b8092505050611daa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611dcf82611ce1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e36576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e57611daf565b73ffffffffffffffffffffffffffffffffffffffff161480611e865750611e8585611e80611daf565b611acb565b5b80611ecb5750611e94611daf565b73ffffffffffffffffffffffffffffffffffffffff16611eb384610962565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f04576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f6b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f78858585600161249c565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612075866124a2565b1717600560008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156120ff5760006001840190506000600560008381526020019081526020016000205414156120fd5760015481146120fc578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461216785858560016124ac565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61224c8282604051806020016040528060008152506124b2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612276611daf565b8786866040518563ffffffff1660e01b81526004016122989493929190612ec6565b602060405180830381600087803b1580156122b257600080fd5b505af19250505080156122e357506040513d601f19601f820116820180604052508101906122e09190612b34565b60015b61235d573d8060008114612313576040519150601f19603f3d011682016040523d82523d6000602084013e612318565b606091505b50600081511415612355576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546123bf90613328565b80601f01602080910402602001604051908101604052809291908181526020018280546123eb90613328565b80156124385780601f1061240d57610100808354040283529160200191612438565b820191906000526020600020905b81548152906001019060200180831161241b57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561248857600183039250600a81066030018353600a81049050612468565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612520576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561255b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612568600085838661249c565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125cd60018514612768565b901b60a042901b6125dd866124a2565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146126e1575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126916000878480600101955087612250565b6126c7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106126225782600154146126dc57600080fd5b61274c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126e2575b81600181905550505061276260008583866124ac565b50505050565b6000819050919050565b82805461277e90613328565b90600052602060002090601f0160209004810192826127a057600085556127e7565b82601f106127b957803560ff19168380011785556127e7565b828001600101855582156127e7579182015b828111156127e65782358255916020019190600101906127cb565b5b5090506127f491906127f8565b5090565b5b808211156128115760008160009055506001016127f9565b5090565b60006128286128238461310f565b6130ea565b90508281526020810184848401111561284457612843613427565b5b61284f8482856132e6565b509392505050565b600081359050612866816136ce565b92915050565b60008135905061287b816136e5565b92915050565b600081359050612890816136fc565b92915050565b6000815190506128a5816136fc565b92915050565b600082601f8301126128c0576128bf61341d565b5b81356128d0848260208601612815565b91505092915050565b60008083601f8401126128ef576128ee61341d565b5b8235905067ffffffffffffffff81111561290c5761290b613418565b5b60208301915083600182028301111561292857612927613422565b5b9250929050565b60008135905061293e81613713565b92915050565b60006020828403121561295a57612959613431565b5b600061296884828501612857565b91505092915050565b6000806040838503121561298857612987613431565b5b600061299685828601612857565b92505060206129a785828601612857565b9150509250929050565b6000806000606084860312156129ca576129c9613431565b5b60006129d886828701612857565b93505060206129e986828701612857565b92505060406129fa8682870161292f565b9150509250925092565b60008060008060808587031215612a1e57612a1d613431565b5b6000612a2c87828801612857565b9450506020612a3d87828801612857565b9350506040612a4e8782880161292f565b925050606085013567ffffffffffffffff811115612a6f57612a6e61342c565b5b612a7b878288016128ab565b91505092959194509250565b60008060408385031215612a9e57612a9d613431565b5b6000612aac85828601612857565b9250506020612abd8582860161286c565b9150509250929050565b60008060408385031215612ade57612add613431565b5b6000612aec85828601612857565b9250506020612afd8582860161292f565b9150509250929050565b600060208284031215612b1d57612b1c613431565b5b6000612b2b84828501612881565b91505092915050565b600060208284031215612b4a57612b49613431565b5b6000612b5884828501612896565b91505092915050565b60008060208385031215612b7857612b77613431565b5b600083013567ffffffffffffffff811115612b9657612b9561342c565b5b612ba2858286016128d9565b92509250509250929050565b600060208284031215612bc457612bc3613431565b5b6000612bd28482850161292f565b91505092915050565b612be481613272565b82525050565b612bf381613284565b82525050565b6000612c0482613140565b612c0e8185613156565b9350612c1e8185602086016132f5565b612c2781613436565b840191505092915050565b6000612c3d8261314b565b612c478185613172565b9350612c578185602086016132f5565b612c6081613436565b840191505092915050565b6000612c768261314b565b612c808185613183565b9350612c908185602086016132f5565b80840191505092915050565b6000612ca9602683613172565b9150612cb482613447565b604082019050919050565b6000612ccc601d83613172565b9150612cd782613496565b602082019050919050565b6000612cef601c83613172565b9150612cfa826134bf565b602082019050919050565b6000612d12602883613172565b9150612d1d826134e8565b604082019050919050565b6000612d35601783613172565b9150612d4082613537565b602082019050919050565b6000612d58601883613172565b9150612d6382613560565b602082019050919050565b6000612d7b602383613172565b9150612d8682613589565b604082019050919050565b6000612d9e602783613172565b9150612da9826135d8565b604082019050919050565b6000612dc1601083613172565b9150612dcc82613627565b602082019050919050565b6000612de4601483613172565b9150612def82613650565b602082019050919050565b6000612e07601783613172565b9150612e1282613679565b602082019050919050565b6000612e2a602083613172565b9150612e35826136a2565b602082019050919050565b6000612e4d600083613167565b9150612e58826136cb565b600082019050919050565b612e6c816132dc565b82525050565b6000612e7e8285612c6b565b9150612e8a8284612c6b565b91508190509392505050565b6000612ea182612e40565b9150819050919050565b6000602082019050612ec06000830184612bdb565b92915050565b6000608082019050612edb6000830187612bdb565b612ee86020830186612bdb565b612ef56040830185612e63565b8181036060830152612f078184612bf9565b905095945050505050565b6000602082019050612f276000830184612bea565b92915050565b60006020820190508181036000830152612f478184612c32565b905092915050565b60006020820190508181036000830152612f6881612c9c565b9050919050565b60006020820190508181036000830152612f8881612cbf565b9050919050565b60006020820190508181036000830152612fa881612ce2565b9050919050565b60006020820190508181036000830152612fc881612d05565b9050919050565b60006020820190508181036000830152612fe881612d28565b9050919050565b6000602082019050818103600083015261300881612d4b565b9050919050565b6000602082019050818103600083015261302881612d6e565b9050919050565b6000602082019050818103600083015261304881612d91565b9050919050565b6000602082019050818103600083015261306881612db4565b9050919050565b6000602082019050818103600083015261308881612dd7565b9050919050565b600060208201905081810360008301526130a881612dfa565b9050919050565b600060208201905081810360008301526130c881612e1d565b9050919050565b60006020820190506130e46000830184612e63565b92915050565b60006130f4613105565b9050613100828261335a565b919050565b6000604051905090565b600067ffffffffffffffff82111561312a576131296133e9565b5b61313382613436565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613199826132dc565b91506131a4836132dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d9576131d861338b565b5b828201905092915050565b60006131ef826132dc565b91506131fa836132dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132335761323261338b565b5b828202905092915050565b6000613249826132dc565b9150613254836132dc565b9250828210156132675761326661338b565b5b828203905092915050565b600061327d826132bc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133135780820151818401526020810190506132f8565b83811115613322576000848401525b50505050565b6000600282049050600182168061334057607f821691505b60208210811415613354576133536133ba565b5b50919050565b61336382613436565b810181811067ffffffffffffffff82111715613382576133816133e9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f47445a3a2045786365656473206d6178206672656520737570706c792e000000600082015250565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b7f47445a3a2045786365656473206d61782066726565206d696e7473207065722060008201527f6164647265737321000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b7f47445a3a2045786365656473206d617820737570706c792e0000000000000000600082015250565b7f47445a3a2045786365656473206d6178206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b7f47445a3a20496e73756666696369656e742046756e642e000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6136d781613272565b81146136e257600080fd5b50565b6136ee81613284565b81146136f957600080fd5b50565b61370581613290565b811461371057600080fd5b50565b61371c816132dc565b811461372757600080fd5b5056fea2646970667358221220ab3918acc9083cea5cf35d13c052d0204ef0bb27f02045d676457f50d9093a1b64736f6c63430008070033697066733a2f2f516d65455a75435469615035313475636a58354432316538744476363765345974356a79476666634d7341664a332f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c80638bc35c2f11610118578063bbb64319116100a0578063d5abeb011161006f578063d5abeb0114610745578063e985e9c514610770578063eb8d2444146107ad578063f2fde38b146107d8578063fbbf8cc3146108015761020f565b8063bbb643191461068b578063c6f6f216146106b4578063c87b56dd146106dd578063d3464cbd1461071a5761020f565b806396b10201116100e757806396b10201146105b5578063a035b1fe146105f2578063a0712d681461061d578063a22cb46514610639578063b88d4fde146106625761020f565b80638bc35c2f1461050b5780638da5cb5b1461053657806391b7f5ed1461056157806395d89b411461058a5761020f565b8063475133341161019b57806370a082311161016a57806370a082311461044e578063715018a61461048b5780637ba5e621146104a25780637bddd65b146104b95780637c928fe9146104e25761020f565b806347513334146103b357806355f804b3146103de5780635fd8c710146104075780636352211e146104115761020f565b80631141df20116101e25780631141df20146102e257806318160ddd1461030b57806323b872dd146103365780632e0fd6eb1461035f57806342842e0e1461038a5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612b07565b61083e565b6040516102489190612f12565b60405180910390f35b34801561025d57600080fd5b506102666108d0565b6040516102739190612f2d565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e9190612bae565b610962565b6040516102b09190612eab565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612ac7565b6109de565b005b3480156102ee57600080fd5b5061030960048036038101906103049190612bae565b610b85565b005b34801561031757600080fd5b50610320610c74565b60405161032d91906130cf565b60405180910390f35b34801561034257600080fd5b5061035d600480360381019061035891906129b1565b610c8b565b005b34801561036b57600080fd5b50610374610c9b565b60405161038191906130cf565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac91906129b1565b610ca1565b005b3480156103bf57600080fd5b506103c8610cc1565b6040516103d591906130cf565b60405180910390f35b3480156103ea57600080fd5b5061040560048036038101906104009190612b61565b610cc7565b005b61040f610d59565b005b34801561041d57600080fd5b5061043860048036038101906104339190612bae565b610e98565b6040516104459190612eab565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190612944565b610eaa565b60405161048291906130cf565b60405180910390f35b34801561049757600080fd5b506104a0610f63565b005b3480156104ae57600080fd5b506104b7610feb565b005b3480156104c557600080fd5b506104e060048036038101906104db9190612bae565b611093565b005b3480156104ee57600080fd5b5061050960048036038101906105049190612bae565b611119565b005b34801561051757600080fd5b5061052061131e565b60405161052d91906130cf565b60405180910390f35b34801561054257600080fd5b5061054b611324565b6040516105589190612eab565b60405180910390f35b34801561056d57600080fd5b5061058860048036038101906105839190612bae565b61134d565b005b34801561059657600080fd5b5061059f6113d3565b6040516105ac9190612f2d565b60405180910390f35b3480156105c157600080fd5b506105dc60048036038101906105d79190612944565b611465565b6040516105e991906130cf565b60405180910390f35b3480156105fe57600080fd5b5061060761147d565b60405161061491906130cf565b60405180910390f35b61063760048036038101906106329190612bae565b611483565b005b34801561064557600080fd5b50610660600480360381019061065b9190612a87565b611729565b005b34801561066e57600080fd5b5061068960048036038101906106849190612a04565b6118a1565b005b34801561069757600080fd5b506106b260048036038101906106ad9190612bae565b611914565b005b3480156106c057600080fd5b506106db60048036038101906106d69190612bae565b61199a565b005b3480156106e957600080fd5b5061070460048036038101906106ff9190612bae565b611a20565b6040516107119190612f2d565b60405180910390f35b34801561072657600080fd5b5061072f611abf565b60405161073c91906130cf565b60405180910390f35b34801561075157600080fd5b5061075a611ac5565b60405161076791906130cf565b60405180910390f35b34801561077c57600080fd5b5061079760048036038101906107929190612971565b611acb565b6040516107a49190612f12565b60405180910390f35b3480156107b957600080fd5b506107c2611b5f565b6040516107cf9190612f12565b60405180910390f35b3480156107e457600080fd5b506107ff60048036038101906107fa9190612944565b611b72565b005b34801561080d57600080fd5b5061082860048036038101906108239190612944565b611c6a565b60405161083591906130cf565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108c95750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600380546108df90613328565b80601f016020809104026020016040519081016040528092919081815260200182805461090b90613328565b80156109585780601f1061092d57610100808354040283529160200191610958565b820191906000526020600020905b81548152906001019060200180831161093b57829003601f168201915b5050505050905090565b600061096d82611c82565b6109a3576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109e982611ce1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a51576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610a70611daf565b73ffffffffffffffffffffffffffffffffffffffff1614610ad357610a9c81610a97611daf565b611acb565b610ad2576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610b8d611db7565b73ffffffffffffffffffffffffffffffffffffffff16610bab611324565b73ffffffffffffffffffffffffffffffffffffffff1614610c01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf8906130af565b60405180910390fd5b610c09610c74565b81600954610c17919061323e565b1015610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f9061302f565b60405180910390fd5b8060096000828254610c6a919061323e565b9250508190555050565b6000610c7e611dbf565b6002546001540303905090565b610c96838383611dc4565b505050565b600d5481565b610cbc838383604051806020016040528060008152506118a1565b505050565b600a5481565b610ccf611db7565b73ffffffffffffffffffffffffffffffffffffffff16610ced611324565b73ffffffffffffffffffffffffffffffffffffffff1614610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a906130af565b60405180910390fd5b818160109190610d54929190612772565b505050565b610d61611db7565b73ffffffffffffffffffffffffffffffffffffffff16610d7f611324565b73ffffffffffffffffffffffffffffffffffffffff1614610dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcc906130af565b60405180910390fd5b600073d9a109539ac32dfca1ef834a5682706c5b05948773ffffffffffffffffffffffffffffffffffffffff1647604051610e0f90612e96565b60006040518083038185875af1925050503d8060008114610e4c576040519150601f19603f3d011682016040523d82523d6000602084013e610e51565b606091505b5050905080610e95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8c9061304f565b60405180910390fd5b50565b6000610ea382611ce1565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f12576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b610f6b611db7565b73ffffffffffffffffffffffffffffffffffffffff16610f89611324565b73ffffffffffffffffffffffffffffffffffffffff1614610fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd6906130af565b60405180910390fd5b610fe9600061216e565b565b610ff3611db7565b73ffffffffffffffffffffffffffffffffffffffff16611011611324565b73ffffffffffffffffffffffffffffffffffffffff1614611067576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105e906130af565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b61109b611db7565b73ffffffffffffffffffffffffffffffffffffffff166110b9611324565b73ffffffffffffffffffffffffffffffffffffffff161461110f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611106906130af565b60405180910390fd5b80600c8190555050565b600f60009054906101000a900460ff16611168576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115f90612fcf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146111d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cd90612f8f565b60405180910390fd5b806111df610c74565b6111e9919061318e565b600a54101561122d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122490612f6f565b60405180910390fd5b6000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600d548282611280919061318e565b11156112c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b890612faf565b60405180910390fd5b81816112cd919061318e565b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061131a3383612232565b5050565b600c5481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611355611db7565b73ffffffffffffffffffffffffffffffffffffffff16611373611324565b73ffffffffffffffffffffffffffffffffffffffff16146113c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c0906130af565b60405180910390fd5b80600e8190555050565b6060600480546113e290613328565b80601f016020809104026020016040519081016040528092919081815260200182805461140e90613328565b801561145b5780601f106114305761010080835404028352916020019161145b565b820191906000526020600020905b81548152906001019060200180831161143e57829003601f168201915b5050505050905090565b60116020528060005260406000206000915090505481565b600e5481565b600f60009054906101000a900460ff166114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990612fcf565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790612f8f565b60405180910390fd5b80600e5461154e91906131e4565b341015611590576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115879061308f565b60405180910390fd5b80611599610c74565b6115a3919061318e565b60095410156115e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115de90612fef565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600c54828261163a919061318e565b111561167b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116729061300f565b60405180910390fd5b60008211801561168d5750600b548211155b6116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c39061306f565b60405180910390fd5b81816116d8919061318e565b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506117253383612232565b5050565b611731611daf565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611796576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006117a3611daf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611850611daf565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118959190612f12565b60405180910390a35050565b6118ac848484611dc4565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461190e576118d784848484612250565b61190d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b61191c611db7565b73ffffffffffffffffffffffffffffffffffffffff1661193a611324565b73ffffffffffffffffffffffffffffffffffffffff1614611990576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611987906130af565b60405180910390fd5b80600d8190555050565b6119a2611db7565b73ffffffffffffffffffffffffffffffffffffffff166119c0611324565b73ffffffffffffffffffffffffffffffffffffffff1614611a16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0d906130af565b60405180910390fd5b80600b8190555050565b6060611a2b82611c82565b611a61576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a6b6123b0565b9050600081511415611a8c5760405180602001604052806000815250611ab7565b80611a9684612442565b604051602001611aa7929190612e72565b6040516020818303038152906040525b915050919050565b600b5481565b60095481565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60009054906101000a900460ff1681565b611b7a611db7565b73ffffffffffffffffffffffffffffffffffffffff16611b98611324565b73ffffffffffffffffffffffffffffffffffffffff1614611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be5906130af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5590612f4f565b60405180910390fd5b611c678161216e565b50565b60126020528060005260406000206000915090505481565b600081611c8d611dbf565b11158015611c9c575060015482105b8015611cda575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b60008082905080611cf0611dbf565b11611d7857600154811015611d775760006005600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611d75575b6000811415611d6b576005600083600190039350838152602001908152602001600020549050611d40565b8092505050611daa565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600033905090565b600090565b6000611dcf82611ce1565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611e36576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611e57611daf565b73ffffffffffffffffffffffffffffffffffffffff161480611e865750611e8585611e80611daf565b611acb565b5b80611ecb5750611e94611daf565b73ffffffffffffffffffffffffffffffffffffffff16611eb384610962565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611f04576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611f6b576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611f78858585600161249c565b6007600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612075866124a2565b1717600560008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156120ff5760006001840190506000600560008381526020019081526020016000205414156120fd5760015481146120fc578260056000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461216785858560016124ac565b5050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61224c8282604051806020016040528060008152506124b2565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612276611daf565b8786866040518563ffffffff1660e01b81526004016122989493929190612ec6565b602060405180830381600087803b1580156122b257600080fd5b505af19250505080156122e357506040513d601f19601f820116820180604052508101906122e09190612b34565b60015b61235d573d8060008114612313576040519150601f19603f3d011682016040523d82523d6000602084013e612318565b606091505b50600081511415612355576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546123bf90613328565b80601f01602080910402602001604051908101604052809291908181526020018280546123eb90613328565b80156124385780601f1061240d57610100808354040283529160200191612438565b820191906000526020600020905b81548152906001019060200180831161241b57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561248857600183039250600a81066030018353600a81049050612468565b508181036020830392508083525050919050565b50505050565b6000819050919050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612520576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600083141561255b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612568600085838661249c565b600160406001901b178302600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16125cd60018514612768565b901b60a042901b6125dd866124a2565b1717600560008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b146126e1575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46126916000878480600101955087612250565b6126c7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082106126225782600154146126dc57600080fd5b61274c565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106126e2575b81600181905550505061276260008583866124ac565b50505050565b6000819050919050565b82805461277e90613328565b90600052602060002090601f0160209004810192826127a057600085556127e7565b82601f106127b957803560ff19168380011785556127e7565b828001600101855582156127e7579182015b828111156127e65782358255916020019190600101906127cb565b5b5090506127f491906127f8565b5090565b5b808211156128115760008160009055506001016127f9565b5090565b60006128286128238461310f565b6130ea565b90508281526020810184848401111561284457612843613427565b5b61284f8482856132e6565b509392505050565b600081359050612866816136ce565b92915050565b60008135905061287b816136e5565b92915050565b600081359050612890816136fc565b92915050565b6000815190506128a5816136fc565b92915050565b600082601f8301126128c0576128bf61341d565b5b81356128d0848260208601612815565b91505092915050565b60008083601f8401126128ef576128ee61341d565b5b8235905067ffffffffffffffff81111561290c5761290b613418565b5b60208301915083600182028301111561292857612927613422565b5b9250929050565b60008135905061293e81613713565b92915050565b60006020828403121561295a57612959613431565b5b600061296884828501612857565b91505092915050565b6000806040838503121561298857612987613431565b5b600061299685828601612857565b92505060206129a785828601612857565b9150509250929050565b6000806000606084860312156129ca576129c9613431565b5b60006129d886828701612857565b93505060206129e986828701612857565b92505060406129fa8682870161292f565b9150509250925092565b60008060008060808587031215612a1e57612a1d613431565b5b6000612a2c87828801612857565b9450506020612a3d87828801612857565b9350506040612a4e8782880161292f565b925050606085013567ffffffffffffffff811115612a6f57612a6e61342c565b5b612a7b878288016128ab565b91505092959194509250565b60008060408385031215612a9e57612a9d613431565b5b6000612aac85828601612857565b9250506020612abd8582860161286c565b9150509250929050565b60008060408385031215612ade57612add613431565b5b6000612aec85828601612857565b9250506020612afd8582860161292f565b9150509250929050565b600060208284031215612b1d57612b1c613431565b5b6000612b2b84828501612881565b91505092915050565b600060208284031215612b4a57612b49613431565b5b6000612b5884828501612896565b91505092915050565b60008060208385031215612b7857612b77613431565b5b600083013567ffffffffffffffff811115612b9657612b9561342c565b5b612ba2858286016128d9565b92509250509250929050565b600060208284031215612bc457612bc3613431565b5b6000612bd28482850161292f565b91505092915050565b612be481613272565b82525050565b612bf381613284565b82525050565b6000612c0482613140565b612c0e8185613156565b9350612c1e8185602086016132f5565b612c2781613436565b840191505092915050565b6000612c3d8261314b565b612c478185613172565b9350612c578185602086016132f5565b612c6081613436565b840191505092915050565b6000612c768261314b565b612c808185613183565b9350612c908185602086016132f5565b80840191505092915050565b6000612ca9602683613172565b9150612cb482613447565b604082019050919050565b6000612ccc601d83613172565b9150612cd782613496565b602082019050919050565b6000612cef601c83613172565b9150612cfa826134bf565b602082019050919050565b6000612d12602883613172565b9150612d1d826134e8565b604082019050919050565b6000612d35601783613172565b9150612d4082613537565b602082019050919050565b6000612d58601883613172565b9150612d6382613560565b602082019050919050565b6000612d7b602383613172565b9150612d8682613589565b604082019050919050565b6000612d9e602783613172565b9150612da9826135d8565b604082019050919050565b6000612dc1601083613172565b9150612dcc82613627565b602082019050919050565b6000612de4601483613172565b9150612def82613650565b602082019050919050565b6000612e07601783613172565b9150612e1282613679565b602082019050919050565b6000612e2a602083613172565b9150612e35826136a2565b602082019050919050565b6000612e4d600083613167565b9150612e58826136cb565b600082019050919050565b612e6c816132dc565b82525050565b6000612e7e8285612c6b565b9150612e8a8284612c6b565b91508190509392505050565b6000612ea182612e40565b9150819050919050565b6000602082019050612ec06000830184612bdb565b92915050565b6000608082019050612edb6000830187612bdb565b612ee86020830186612bdb565b612ef56040830185612e63565b8181036060830152612f078184612bf9565b905095945050505050565b6000602082019050612f276000830184612bea565b92915050565b60006020820190508181036000830152612f478184612c32565b905092915050565b60006020820190508181036000830152612f6881612c9c565b9050919050565b60006020820190508181036000830152612f8881612cbf565b9050919050565b60006020820190508181036000830152612fa881612ce2565b9050919050565b60006020820190508181036000830152612fc881612d05565b9050919050565b60006020820190508181036000830152612fe881612d28565b9050919050565b6000602082019050818103600083015261300881612d4b565b9050919050565b6000602082019050818103600083015261302881612d6e565b9050919050565b6000602082019050818103600083015261304881612d91565b9050919050565b6000602082019050818103600083015261306881612db4565b9050919050565b6000602082019050818103600083015261308881612dd7565b9050919050565b600060208201905081810360008301526130a881612dfa565b9050919050565b600060208201905081810360008301526130c881612e1d565b9050919050565b60006020820190506130e46000830184612e63565b92915050565b60006130f4613105565b9050613100828261335a565b919050565b6000604051905090565b600067ffffffffffffffff82111561312a576131296133e9565b5b61313382613436565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613199826132dc565b91506131a4836132dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156131d9576131d861338b565b5b828201905092915050565b60006131ef826132dc565b91506131fa836132dc565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132335761323261338b565b5b828202905092915050565b6000613249826132dc565b9150613254836132dc565b9250828210156132675761326661338b565b5b828203905092915050565b600061327d826132bc565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133135780820151818401526020810190506132f8565b83811115613322576000848401525b50505050565b6000600282049050600182168061334057607f821691505b60208210811415613354576133536133ba565b5b50919050565b61336382613436565b810181811067ffffffffffffffff82111715613382576133816133e9565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f47445a3a2045786365656473206d6178206672656520737570706c792e000000600082015250565b7f43616c6c65722063616e6e6f74206265206120636f6e74726163742e00000000600082015250565b7f47445a3a2045786365656473206d61782066726565206d696e7473207065722060008201527f6164647265737321000000000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f7420616374697665207965742e000000000000000000600082015250565b7f47445a3a2045786365656473206d617820737570706c792e0000000000000000600082015250565b7f47445a3a2045786365656473206d6178206d696e74732070657220616464726560008201527f7373210000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c792063616e6e6f742066616c6c2062656c6f77206d696e7465642060008201527f746f6b656e732e00000000000000000000000000000000000000000000000000602082015250565b7f7472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f496e76616c6964206d696e7420616d6f756e742e000000000000000000000000600082015250565b7f47445a3a20496e73756666696369656e742046756e642e000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b50565b6136d781613272565b81146136e257600080fd5b50565b6136ee81613284565b81146136f957600080fd5b50565b61370581613290565b811461371057600080fd5b50565b61371c816132dc565b811461372757600080fd5b5056fea2646970667358221220ab3918acc9083cea5cf35d13c052d0204ef0bb27f02045d676457f50d9093a1b64736f6c63430008070033

Deployed Bytecode Sourcemap

43250:3626:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17925:615;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22938:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25006:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24466:474;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46172:232;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16979:315;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25892:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43528:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26133:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43355:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46412:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46648:225;;;:::i;:::-;;22727:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18604:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4041:103;;;;;;;;;;;;;:::i;:::-;;46080:84;;;;;;;;;;;;;:::i;:::-;;45828:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45069:545;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43473:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3390:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45622:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23107:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43897:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43588:57;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44307:754;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25282:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26389:396;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45950:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45716:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23282:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43418:48;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43298:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25661:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43652:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4299:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43955:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17925:615;18010:4;18325:10;18310:25;;:11;:25;;;;:102;;;;18402:10;18387:25;;:11;:25;;;;18310:102;:179;;;;18479:10;18464:25;;:11;:25;;;;18310:179;18290:199;;17925:615;;;:::o;22938:100::-;22992:13;23025:5;23018:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22938:100;:::o;25006:204::-;25074:7;25099:16;25107:7;25099;:16::i;:::-;25094:64;;25124:34;;;;;;;;;;;;;;25094:64;25178:15;:24;25194:7;25178:24;;;;;;;;;;;;;;;;;;;;;25171:31;;25006:204;;;:::o;24466:474::-;24539:13;24571:27;24590:7;24571:18;:27::i;:::-;24539:61;;24621:5;24615:11;;:2;:11;;;24611:48;;;24635:24;;;;;;;;;;;;;;24611:48;24699:5;24676:28;;:19;:17;:19::i;:::-;:28;;;24672:175;;24724:44;24741:5;24748:19;:17;:19::i;:::-;24724:16;:44::i;:::-;24719:128;;24796:35;;;;;;;;;;;;;;24719:128;24672:175;24886:2;24859:15;:24;24875:7;24859:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;24924:7;24920:2;24904:28;;24913:5;24904:28;;;;;;;;;;;;24528:412;24466:474;;:::o;46172:232::-;3621:12;:10;:12::i;:::-;3610:23;;:7;:5;:7::i;:::-;:23;;;3602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46284:13:::1;:11;:13::i;:::-;46273:7;46261:9;;:19;;;;:::i;:::-;:36;;46239:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;46389:7;46376:9;;:20;;;;;;;:::i;:::-;;;;;;;;46172:232:::0;:::o;16979:315::-;17032:7;17260:15;:13;:15::i;:::-;17245:12;;17229:13;;:28;:46;17222:53;;16979:315;:::o;25892:170::-;26026:28;26036:4;26042:2;26046:7;26026:9;:28::i;:::-;25892:170;;;:::o;43528:47::-;;;;:::o;26133:185::-;26271:39;26288:4;26294:2;26298:7;26271:39;;;;;;;;;;;;:16;:39::i;:::-;26133:185;;;:::o;43355:50::-;;;;:::o;46412:106::-;3621:12;:10;:12::i;:::-;3610:23;;:7;:5;:7::i;:::-;:23;;;3602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46503:7:::1;;46487:13;:23;;;;;;;:::i;:::-;;46412:106:::0;;:::o;46648:225::-;3621:12;:10;:12::i;:::-;3610:23;;:7;:5;:7::i;:::-;:23;;;3602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46716:12:::1;43752:42;46734:26;;46782:21;46734:84;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46715:103;;;46837:7;46829:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;46702:171;46648:225::o:0;22727:144::-;22791:7;22834:27;22853:7;22834:18;:27::i;:::-;22811:52;;22727:144;;;:::o;18604:224::-;18668:7;18709:1;18692:19;;:5;:19;;;18688:60;;;18720:28;;;;;;;;;;;;;;18688:60;13943:13;18766:18;:25;18785:5;18766:25;;;;;;;;;;;;;;;;:54;18759:61;;18604:224;;;:::o;4041:103::-;3621:12;:10;:12::i;:::-;3610:23;;:7;:5;:7::i;:::-;:23;;;3602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4106:30:::1;4133:1;4106:18;:30::i;:::-;4041:103::o:0;46080:84::-;3621:12;:10;:12::i;:::-;3610:23;;:7;:5;:7::i;:::-;:23;;;3602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46144:12:::1;;;;;;;;;;;46143:13;46128:12;;:28;;;;;;;;;;;;;;;;;;46080:84::o:0;45828:114::-;3621:12;:10;:12::i;:::-;3610:23;;:7;:5;:7::i;:::-;:23;;;3602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45927:7:::1;45901:23;:33;;;;45828:114:::0;:::o;45069:545::-;44164:12;;;;;;;;;;;44156:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;44236:10;44223:23;;:9;:23;;;44215:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;45198:9:::1;45182:13;:11;:13::i;:::-;:25;;;;:::i;:::-;45165:13;;:42;;45143:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;45275:25;45303:16;:28;45320:10;45303:28;;;;;;;;;;;;;;;;45275:56;;45397:27;;45384:9;45364:17;:29;;;;:::i;:::-;:60;;45342:150;;;;;;;;;;;;:::i;:::-;;;;;;;;;45554:9;45534:17;:29;;;;:::i;:::-;45503:16;:28;45520:10;45503:28;;;;;;;;;;;;;;;:60;;;;45574:32;45584:10;45596:9;45574;:32::i;:::-;45132:482;45069:545:::0;:::o;43473:48::-;;;;:::o;3390:87::-;3436:7;3463:6;;;;;;;;;;;3456:13;;3390:87;:::o;45622:86::-;3621:12;:10;:12::i;:::-;3610:23;;:7;:5;:7::i;:::-;:23;;;3602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45694:6:::1;45686:5;:14;;;;45622:86:::0;:::o;23107:104::-;23163:13;23196:7;23189:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23107:104;:::o;43897:51::-;;;;;;;;;;;;;;;;;:::o;43588:57::-;;;;:::o;44307:754::-;44164:12;;;;;;;;;;;44156:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;44236:10;44223:23;;:9;:23;;;44215:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;44428:9:::1;44420:5;;:17;;;;:::i;:::-;44407:9;:30;;44385:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;44550:9;44534:13;:11;:13::i;:::-;:25;;;;:::i;:::-;44521:9;;:38;;44499:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;44622:21;44646:12;:24;44659:10;44646:24;;;;;;;;;;;;;;;;44622:48;;44732:23;;44719:9;44703:13;:25;;;;:::i;:::-;:52;;44681:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;44863:1;44851:9;:13;:48;;;;;44881:18;;44868:9;:31;;44851:48;44829:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;45001:9;44985:13;:25;;;;:::i;:::-;44958:12;:24;44971:10;44958:24;;;;;;;;;;;;;;;:52;;;;45021:32;45031:10;45043:9;45021;:32::i;:::-;44374:687;44307:754:::0;:::o;25282:308::-;25393:19;:17;:19::i;:::-;25381:31;;:8;:31;;;25377:61;;;25421:17;;;;;;;;;;;;;;25377:61;25503:8;25451:18;:39;25470:19;:17;:19::i;:::-;25451:39;;;;;;;;;;;;;;;:49;25491:8;25451:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;25563:8;25527:55;;25542:19;:17;:19::i;:::-;25527:55;;;25573:8;25527:55;;;;;;:::i;:::-;;;;;;;;25282:308;;:::o;26389:396::-;26556:28;26566:4;26572:2;26576:7;26556:9;:28::i;:::-;26617:1;26599:2;:14;;;:19;26595:183;;26638:56;26669:4;26675:2;26679:7;26688:5;26638:30;:56::i;:::-;26633:145;;26722:40;;;;;;;;;;;;;;26633:145;26595:183;26389:396;;;;:::o;45950:122::-;3621:12;:10;:12::i;:::-;3610:23;;:7;:5;:7::i;:::-;:23;;;3602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46057:7:::1;46027:27;:37;;;;45950:122:::0;:::o;45716:104::-;3621:12;:10;:12::i;:::-;3610:23;;:7;:5;:7::i;:::-;:23;;;3602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45805:7:::1;45784:18;:28;;;;45716:104:::0;:::o;23282:318::-;23355:13;23386:16;23394:7;23386;:16::i;:::-;23381:59;;23411:29;;;;;;;;;;;;;;23381:59;23453:21;23477:10;:8;:10::i;:::-;23453:34;;23530:1;23511:7;23505:21;:26;;:87;;;;;;;;;;;;;;;;;23558:7;23567:18;23577:7;23567:9;:18::i;:::-;23541:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23505:87;23498:94;;;23282:318;;;:::o;43418:48::-;;;;:::o;43298:50::-;;;;:::o;25661:164::-;25758:4;25782:18;:25;25801:5;25782:25;;;;;;;;;;;;;;;:35;25808:8;25782:35;;;;;;;;;;;;;;;;;;;;;;;;;25775:42;;25661:164;;;;:::o;43652:50::-;;;;;;;;;;;;;:::o;4299:201::-;3621:12;:10;:12::i;:::-;3610:23;;:7;:5;:7::i;:::-;:23;;;3602:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4408:1:::1;4388:22;;:8;:22;;;;4380:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4464:28;4483:8;4464:18;:28::i;:::-;4299:201:::0;:::o;43955:47::-;;;;;;;;;;;;;;;;;:::o;27040:273::-;27097:4;27153:7;27134:15;:13;:15::i;:::-;:26;;:66;;;;;27187:13;;27177:7;:23;27134:66;:152;;;;;27285:1;14713:8;27238:17;:26;27256:7;27238:26;;;;;;;;;;;;:43;:48;27134:152;27114:172;;27040:273;;;:::o;20242:1129::-;20309:7;20329:12;20344:7;20329:22;;20412:4;20393:15;:13;:15::i;:::-;:23;20389:915;;20446:13;;20439:4;:20;20435:869;;;20484:14;20501:17;:23;20519:4;20501:23;;;;;;;;;;;;20484:40;;20617:1;14713:8;20590:6;:23;:28;20586:699;;;21109:113;21126:1;21116:6;:11;21109:113;;;21169:17;:25;21187:6;;;;;;;21169:25;;;;;;;;;;;;21160:34;;21109:113;;;21255:6;21248:13;;;;;;20586:699;20461:843;20435:869;20389:915;21332:31;;;;;;;;;;;;;;20242:1129;;;;:::o;41022:105::-;41082:7;41109:10;41102:17;;41022:105;:::o;2118:98::-;2171:7;2198:10;2191:17;;2118:98;:::o;16502:92::-;16558:7;16502:92;:::o;32279:2515::-;32394:27;32424;32443:7;32424:18;:27::i;:::-;32394:57;;32509:4;32468:45;;32484:19;32468:45;;;32464:86;;32522:28;;;;;;;;;;;;;;32464:86;32563:22;32612:4;32589:27;;:19;:17;:19::i;:::-;:27;;;:87;;;;32633:43;32650:4;32656:19;:17;:19::i;:::-;32633:16;:43::i;:::-;32589:87;:147;;;;32717:19;:17;:19::i;:::-;32693:43;;:20;32705:7;32693:11;:20::i;:::-;:43;;;32589:147;32563:174;;32755:17;32750:66;;32781:35;;;;;;;;;;;;;;32750:66;32845:1;32831:16;;:2;:16;;;32827:52;;;32856:23;;;;;;;;;;;;;;32827:52;32892:43;32914:4;32920:2;32924:7;32933:1;32892:21;:43::i;:::-;33008:15;:24;33024:7;33008:24;;;;;;;;;;;;33001:31;;;;;;;;;;;33400:18;:24;33419:4;33400:24;;;;;;;;;;;;;;;;33398:26;;;;;;;;;;;;33469:18;:22;33488:2;33469:22;;;;;;;;;;;;;;;;33467:24;;;;;;;;;;;14995:8;14597:3;33850:15;:41;;33808:21;33826:2;33808:17;:21::i;:::-;:84;:128;33762:17;:26;33780:7;33762:26;;;;;;;;;;;:174;;;;34106:1;14995:8;34056:19;:46;:51;34052:626;;;34128:19;34160:1;34150:7;:11;34128:33;;34317:1;34283:17;:30;34301:11;34283:30;;;;;;;;;;;;:35;34279:384;;;34421:13;;34406:11;:28;34402:242;;34601:19;34568:17;:30;34586:11;34568:30;;;;;;;;;;;:52;;;;34402:242;34279:384;34109:569;34052:626;34725:7;34721:2;34706:27;;34715:4;34706:27;;;;;;;;;;;;34744:42;34765:4;34771:2;34775:7;34784:1;34744:20;:42::i;:::-;32383:2411;;32279:2515;;;:::o;4660:191::-;4734:16;4753:6;;;;;;;;;;;4734:25;;4779:8;4770:6;;:17;;;;;;;;;;;;;;;;;;4834:8;4803:40;;4824:8;4803:40;;;;;;;;;;;;4723:128;4660:191;:::o;27397:104::-;27466:27;27476:2;27480:8;27466:27;;;;;;;;;;;;:9;:27::i;:::-;27397:104;;:::o;38491:716::-;38654:4;38700:2;38675:45;;;38721:19;:17;:19::i;:::-;38742:4;38748:7;38757:5;38675:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;38671:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38975:1;38958:6;:13;:18;38954:235;;;39004:40;;;;;;;;;;;;;;38954:235;39147:6;39141:13;39132:6;39128:2;39124:15;39117:38;38671:529;38844:54;;;38834:64;;;:6;:64;;;;38827:71;;;38491:716;;;;;;:::o;46526:114::-;46586:13;46619;46612:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46526:114;:::o;41233:1959::-;41290:17;41711:3;41704:4;41698:11;41694:21;41687:28;;41802:3;41796:4;41789:17;41908:3;42365:5;42495:1;42490:3;42486:11;42479:18;;42632:2;42626:4;42622:13;42618:2;42614:22;42609:3;42601:36;42673:2;42667:4;42663:13;42655:21;;42256:682;42692:4;42256:682;;;42867:1;42862:3;42858:11;42851:18;;42918:2;42912:4;42908:13;42904:2;42900:22;42895:3;42887:36;42788:2;42782:4;42778:13;42770:21;;42256:682;;;42260:431;42989:3;42984;42980:13;43104:2;43099:3;43095:12;43088:19;;43167:6;43162:3;43155:19;41329:1856;;41233:1959;;;:::o;39855:159::-;;;;;:::o;24027:148::-;24091:14;24152:5;24142:15;;24027:148;;;:::o;40673:158::-;;;;;:::o;27874:2236::-;27997:20;28020:13;;27997:36;;28062:1;28048:16;;:2;:16;;;28044:48;;;28073:19;;;;;;;;;;;;;;28044:48;28119:1;28107:8;:13;28103:44;;;28129:18;;;;;;;;;;;;;;28103:44;28160:61;28190:1;28194:2;28198:12;28212:8;28160:21;:61::i;:::-;28764:1;14080:2;28735:1;:25;;28734:31;28722:8;:44;28696:18;:22;28715:2;28696:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;14860:3;29165:29;29192:1;29180:8;:13;29165:14;:29::i;:::-;:56;;14597:3;29102:15;:41;;29060:21;29078:2;29060:17;:21::i;:::-;:84;:162;29009:17;:31;29027:12;29009:31;;;;;;;;;;;:213;;;;29239:20;29262:12;29239:35;;29289:11;29318:8;29303:12;:23;29289:37;;29365:1;29347:2;:14;;;:19;29343:635;;29387:313;29443:12;29439:2;29418:38;;29435:1;29418:38;;;;;;;;;;;;29484:69;29523:1;29527:2;29531:14;;;;;;29547:5;29484:30;:69::i;:::-;29479:174;;29589:40;;;;;;;;;;;;;;29479:174;29695:3;29680:12;:18;29387:313;;29781:12;29764:13;;:29;29760:43;;29795:8;;;29760:43;29343:635;;;29844:119;29900:14;;;;;;29896:2;29875:40;;29892:1;29875:40;;;;;;;;;;;;29958:3;29943:12;:18;29844:119;;29343:635;30008:12;29992:13;:28;;;;28473:1559;;30042:60;30071:1;30075:2;30079:12;30093:8;30042:20;:60::i;:::-;27986:2124;27874:2236;;;:::o;24262:142::-;24320:14;24381:5;24371:15;;24262: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:139::-;469:5;507:6;494:20;485:29;;523:33;550:5;523:33;:::i;:::-;423:139;;;;:::o;568:133::-;611:5;649:6;636:20;627:29;;665:30;689:5;665:30;:::i;:::-;568:133;;;;:::o;707:137::-;752:5;790:6;777:20;768:29;;806:32;832:5;806:32;:::i;:::-;707:137;;;;:::o;850:141::-;906:5;937:6;931:13;922:22;;953:32;979:5;953:32;:::i;:::-;850:141;;;;:::o;1010:338::-;1065:5;1114:3;1107:4;1099:6;1095:17;1091:27;1081:122;;1122:79;;:::i;:::-;1081:122;1239:6;1226:20;1264:78;1338:3;1330:6;1323:4;1315:6;1311:17;1264:78;:::i;:::-;1255:87;;1071:277;1010:338;;;;:::o;1368:553::-;1426:8;1436:6;1486:3;1479:4;1471:6;1467:17;1463:27;1453:122;;1494:79;;:::i;:::-;1453:122;1607:6;1594:20;1584:30;;1637:18;1629:6;1626:30;1623:117;;;1659:79;;:::i;:::-;1623:117;1773:4;1765:6;1761:17;1749:29;;1827:3;1819:4;1811:6;1807:17;1797:8;1793:32;1790:41;1787:128;;;1834:79;;:::i;:::-;1787:128;1368:553;;;;;:::o;1927:139::-;1973:5;2011:6;1998:20;1989:29;;2027:33;2054:5;2027:33;:::i;:::-;1927:139;;;;:::o;2072:329::-;2131:6;2180:2;2168:9;2159:7;2155:23;2151:32;2148:119;;;2186:79;;:::i;:::-;2148:119;2306:1;2331:53;2376:7;2367:6;2356:9;2352:22;2331:53;:::i;:::-;2321:63;;2277:117;2072:329;;;;:::o;2407:474::-;2475:6;2483;2532:2;2520:9;2511:7;2507:23;2503:32;2500:119;;;2538:79;;:::i;:::-;2500:119;2658:1;2683:53;2728:7;2719:6;2708:9;2704:22;2683:53;:::i;:::-;2673:63;;2629:117;2785:2;2811:53;2856:7;2847:6;2836:9;2832:22;2811:53;:::i;:::-;2801:63;;2756:118;2407:474;;;;;:::o;2887:619::-;2964:6;2972;2980;3029:2;3017:9;3008:7;3004:23;3000:32;2997:119;;;3035:79;;:::i;:::-;2997:119;3155:1;3180:53;3225:7;3216:6;3205:9;3201:22;3180:53;:::i;:::-;3170:63;;3126:117;3282:2;3308:53;3353:7;3344:6;3333:9;3329:22;3308:53;:::i;:::-;3298:63;;3253:118;3410:2;3436:53;3481:7;3472:6;3461:9;3457:22;3436:53;:::i;:::-;3426:63;;3381:118;2887:619;;;;;:::o;3512:943::-;3607:6;3615;3623;3631;3680:3;3668:9;3659:7;3655:23;3651:33;3648:120;;;3687:79;;:::i;:::-;3648:120;3807:1;3832:53;3877:7;3868:6;3857:9;3853:22;3832:53;:::i;:::-;3822:63;;3778:117;3934:2;3960:53;4005:7;3996:6;3985:9;3981:22;3960:53;:::i;:::-;3950:63;;3905:118;4062:2;4088:53;4133:7;4124:6;4113:9;4109:22;4088:53;:::i;:::-;4078:63;;4033:118;4218:2;4207:9;4203:18;4190:32;4249:18;4241:6;4238:30;4235:117;;;4271:79;;:::i;:::-;4235:117;4376:62;4430:7;4421:6;4410:9;4406:22;4376:62;:::i;:::-;4366:72;;4161:287;3512:943;;;;;;;:::o;4461:468::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:50;4904:7;4895:6;4884:9;4880:22;4862:50;:::i;:::-;4852:60;;4807:115;4461:468;;;;;:::o;4935:474::-;5003:6;5011;5060:2;5048:9;5039:7;5035:23;5031:32;5028:119;;;5066:79;;:::i;:::-;5028:119;5186:1;5211:53;5256:7;5247:6;5236:9;5232:22;5211:53;:::i;:::-;5201:63;;5157:117;5313:2;5339:53;5384:7;5375:6;5364:9;5360:22;5339:53;:::i;:::-;5329:63;;5284:118;4935:474;;;;;:::o;5415:327::-;5473:6;5522:2;5510:9;5501:7;5497:23;5493:32;5490:119;;;5528:79;;:::i;:::-;5490:119;5648:1;5673:52;5717:7;5708:6;5697:9;5693:22;5673:52;:::i;:::-;5663:62;;5619:116;5415:327;;;;:::o;5748:349::-;5817:6;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:63;6072:7;6063:6;6052:9;6048:22;6017:63;:::i;:::-;6007:73;;5963:127;5748:349;;;;:::o;6103:529::-;6174:6;6182;6231:2;6219:9;6210:7;6206:23;6202:32;6199:119;;;6237:79;;:::i;:::-;6199:119;6385:1;6374:9;6370:17;6357:31;6415:18;6407:6;6404:30;6401:117;;;6437:79;;:::i;:::-;6401:117;6550:65;6607:7;6598:6;6587:9;6583:22;6550:65;:::i;:::-;6532:83;;;;6328:297;6103:529;;;;;:::o;6638:329::-;6697:6;6746:2;6734:9;6725:7;6721:23;6717:32;6714:119;;;6752:79;;:::i;:::-;6714:119;6872:1;6897:53;6942:7;6933:6;6922:9;6918:22;6897:53;:::i;:::-;6887:63;;6843:117;6638:329;;;;:::o;6973:118::-;7060:24;7078:5;7060:24;:::i;:::-;7055:3;7048:37;6973:118;;:::o;7097:109::-;7178:21;7193:5;7178:21;:::i;:::-;7173:3;7166:34;7097:109;;:::o;7212:360::-;7298:3;7326:38;7358:5;7326:38;:::i;:::-;7380:70;7443:6;7438:3;7380:70;:::i;:::-;7373:77;;7459:52;7504:6;7499:3;7492:4;7485:5;7481:16;7459:52;:::i;:::-;7536:29;7558:6;7536:29;:::i;:::-;7531:3;7527:39;7520:46;;7302:270;7212:360;;;;:::o;7578:364::-;7666:3;7694:39;7727:5;7694:39;:::i;:::-;7749:71;7813:6;7808:3;7749:71;:::i;:::-;7742:78;;7829:52;7874:6;7869:3;7862:4;7855:5;7851:16;7829:52;:::i;:::-;7906:29;7928:6;7906:29;:::i;:::-;7901:3;7897:39;7890:46;;7670:272;7578:364;;;;:::o;7948:377::-;8054:3;8082:39;8115:5;8082:39;:::i;:::-;8137:89;8219:6;8214:3;8137:89;:::i;:::-;8130:96;;8235:52;8280:6;8275:3;8268:4;8261:5;8257:16;8235:52;:::i;:::-;8312:6;8307:3;8303:16;8296:23;;8058:267;7948:377;;;;:::o;8331:366::-;8473:3;8494:67;8558:2;8553:3;8494:67;:::i;:::-;8487:74;;8570:93;8659:3;8570:93;:::i;:::-;8688:2;8683:3;8679:12;8672:19;;8331:366;;;:::o;8703:::-;8845:3;8866:67;8930:2;8925:3;8866:67;:::i;:::-;8859:74;;8942:93;9031:3;8942:93;:::i;:::-;9060:2;9055:3;9051:12;9044:19;;8703:366;;;:::o;9075:::-;9217:3;9238:67;9302:2;9297:3;9238:67;:::i;:::-;9231:74;;9314:93;9403:3;9314:93;:::i;:::-;9432:2;9427:3;9423:12;9416:19;;9075:366;;;:::o;9447:::-;9589:3;9610:67;9674:2;9669:3;9610:67;:::i;:::-;9603:74;;9686:93;9775:3;9686:93;:::i;:::-;9804:2;9799:3;9795:12;9788:19;;9447:366;;;:::o;9819:::-;9961:3;9982:67;10046:2;10041:3;9982:67;:::i;:::-;9975:74;;10058:93;10147:3;10058:93;:::i;:::-;10176:2;10171:3;10167:12;10160:19;;9819:366;;;:::o;10191:::-;10333:3;10354:67;10418:2;10413:3;10354:67;:::i;:::-;10347:74;;10430:93;10519:3;10430:93;:::i;:::-;10548:2;10543:3;10539:12;10532:19;;10191:366;;;:::o;10563:::-;10705:3;10726:67;10790:2;10785:3;10726:67;:::i;:::-;10719:74;;10802:93;10891:3;10802:93;:::i;:::-;10920:2;10915:3;10911:12;10904:19;;10563:366;;;:::o;10935:::-;11077:3;11098:67;11162:2;11157:3;11098:67;:::i;:::-;11091:74;;11174:93;11263:3;11174:93;:::i;:::-;11292:2;11287:3;11283:12;11276:19;;10935:366;;;:::o;11307:::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:::-;11821:3;11842:67;11906:2;11901:3;11842:67;:::i;:::-;11835:74;;11918:93;12007:3;11918:93;:::i;:::-;12036:2;12031:3;12027:12;12020:19;;11679:366;;;:::o;12051:::-;12193:3;12214:67;12278:2;12273:3;12214:67;:::i;:::-;12207:74;;12290:93;12379:3;12290:93;:::i;:::-;12408:2;12403:3;12399:12;12392:19;;12051:366;;;:::o;12423:::-;12565:3;12586:67;12650:2;12645:3;12586:67;:::i;:::-;12579:74;;12662:93;12751:3;12662:93;:::i;:::-;12780:2;12775:3;12771:12;12764:19;;12423:366;;;:::o;12795:398::-;12954:3;12975:83;13056:1;13051:3;12975:83;:::i;:::-;12968:90;;13067:93;13156:3;13067:93;:::i;:::-;13185:1;13180:3;13176:11;13169:18;;12795:398;;;:::o;13199:118::-;13286:24;13304:5;13286:24;:::i;:::-;13281:3;13274:37;13199:118;;:::o;13323:435::-;13503:3;13525:95;13616:3;13607:6;13525:95;:::i;:::-;13518:102;;13637:95;13728:3;13719:6;13637:95;:::i;:::-;13630:102;;13749:3;13742:10;;13323:435;;;;;:::o;13764:379::-;13948:3;13970:147;14113:3;13970:147;:::i;:::-;13963:154;;14134:3;14127:10;;13764:379;;;:::o;14149:222::-;14242:4;14280:2;14269:9;14265:18;14257:26;;14293:71;14361:1;14350:9;14346:17;14337:6;14293:71;:::i;:::-;14149:222;;;;:::o;14377:640::-;14572:4;14610:3;14599:9;14595:19;14587:27;;14624:71;14692:1;14681:9;14677:17;14668:6;14624:71;:::i;:::-;14705:72;14773:2;14762:9;14758:18;14749:6;14705:72;:::i;:::-;14787;14855:2;14844:9;14840:18;14831:6;14787:72;:::i;:::-;14906:9;14900:4;14896:20;14891:2;14880:9;14876:18;14869:48;14934:76;15005:4;14996:6;14934:76;:::i;:::-;14926:84;;14377:640;;;;;;;:::o;15023:210::-;15110:4;15148:2;15137:9;15133:18;15125:26;;15161:65;15223:1;15212:9;15208:17;15199:6;15161:65;:::i;:::-;15023:210;;;;:::o;15239:313::-;15352:4;15390:2;15379:9;15375:18;15367:26;;15439:9;15433:4;15429:20;15425:1;15414:9;15410:17;15403:47;15467:78;15540:4;15531:6;15467:78;:::i;:::-;15459:86;;15239:313;;;;:::o;15558:419::-;15724:4;15762:2;15751:9;15747:18;15739:26;;15811:9;15805:4;15801:20;15797:1;15786:9;15782:17;15775:47;15839:131;15965:4;15839:131;:::i;:::-;15831:139;;15558:419;;;:::o;15983:::-;16149:4;16187:2;16176:9;16172:18;16164:26;;16236:9;16230:4;16226:20;16222:1;16211:9;16207:17;16200:47;16264:131;16390:4;16264:131;:::i;:::-;16256:139;;15983:419;;;:::o;16408:::-;16574:4;16612:2;16601:9;16597:18;16589:26;;16661:9;16655:4;16651:20;16647:1;16636:9;16632:17;16625:47;16689:131;16815:4;16689:131;:::i;:::-;16681:139;;16408:419;;;:::o;16833:::-;16999:4;17037:2;17026:9;17022:18;17014:26;;17086:9;17080:4;17076:20;17072:1;17061:9;17057:17;17050:47;17114:131;17240:4;17114:131;:::i;:::-;17106:139;;16833:419;;;:::o;17258:::-;17424:4;17462:2;17451:9;17447:18;17439:26;;17511:9;17505:4;17501:20;17497:1;17486:9;17482:17;17475:47;17539:131;17665:4;17539:131;:::i;:::-;17531:139;;17258:419;;;:::o;17683:::-;17849:4;17887:2;17876:9;17872:18;17864:26;;17936:9;17930:4;17926:20;17922:1;17911:9;17907:17;17900:47;17964:131;18090:4;17964:131;:::i;:::-;17956:139;;17683:419;;;:::o;18108:::-;18274:4;18312:2;18301:9;18297:18;18289:26;;18361:9;18355:4;18351:20;18347:1;18336:9;18332:17;18325:47;18389:131;18515:4;18389:131;:::i;:::-;18381:139;;18108:419;;;:::o;18533:::-;18699:4;18737:2;18726:9;18722:18;18714:26;;18786:9;18780:4;18776:20;18772:1;18761:9;18757:17;18750:47;18814:131;18940:4;18814:131;:::i;:::-;18806:139;;18533:419;;;:::o;18958:::-;19124:4;19162:2;19151:9;19147:18;19139:26;;19211:9;19205:4;19201:20;19197:1;19186:9;19182:17;19175:47;19239:131;19365:4;19239:131;:::i;:::-;19231:139;;18958:419;;;:::o;19383:::-;19549:4;19587:2;19576:9;19572:18;19564:26;;19636:9;19630:4;19626:20;19622:1;19611:9;19607:17;19600:47;19664:131;19790:4;19664:131;:::i;:::-;19656:139;;19383:419;;;:::o;19808:::-;19974:4;20012:2;20001:9;19997:18;19989:26;;20061:9;20055:4;20051:20;20047:1;20036:9;20032:17;20025:47;20089:131;20215:4;20089:131;:::i;:::-;20081:139;;19808:419;;;:::o;20233:::-;20399:4;20437:2;20426:9;20422:18;20414:26;;20486:9;20480:4;20476:20;20472:1;20461:9;20457:17;20450:47;20514:131;20640:4;20514:131;:::i;:::-;20506:139;;20233:419;;;:::o;20658:222::-;20751:4;20789:2;20778:9;20774:18;20766:26;;20802:71;20870:1;20859:9;20855:17;20846:6;20802:71;:::i;:::-;20658:222;;;;:::o;20886:129::-;20920:6;20947:20;;:::i;:::-;20937:30;;20976:33;21004:4;20996:6;20976:33;:::i;:::-;20886:129;;;:::o;21021:75::-;21054:6;21087:2;21081:9;21071:19;;21021:75;:::o;21102:307::-;21163:4;21253:18;21245:6;21242:30;21239:56;;;21275:18;;:::i;:::-;21239:56;21313:29;21335:6;21313:29;:::i;:::-;21305:37;;21397:4;21391;21387:15;21379:23;;21102:307;;;:::o;21415:98::-;21466:6;21500:5;21494:12;21484:22;;21415:98;;;:::o;21519:99::-;21571:6;21605:5;21599:12;21589:22;;21519:99;;;:::o;21624:168::-;21707:11;21741:6;21736:3;21729:19;21781:4;21776:3;21772:14;21757:29;;21624:168;;;;:::o;21798:147::-;21899:11;21936:3;21921:18;;21798:147;;;;:::o;21951:169::-;22035:11;22069:6;22064:3;22057:19;22109:4;22104:3;22100:14;22085:29;;21951:169;;;;:::o;22126:148::-;22228:11;22265:3;22250:18;;22126:148;;;;:::o;22280:305::-;22320:3;22339:20;22357:1;22339:20;:::i;:::-;22334:25;;22373:20;22391:1;22373:20;:::i;:::-;22368:25;;22527:1;22459:66;22455:74;22452:1;22449:81;22446:107;;;22533:18;;:::i;:::-;22446:107;22577:1;22574;22570:9;22563:16;;22280:305;;;;:::o;22591:348::-;22631:7;22654:20;22672:1;22654:20;:::i;:::-;22649:25;;22688:20;22706:1;22688:20;:::i;:::-;22683:25;;22876:1;22808:66;22804:74;22801:1;22798:81;22793:1;22786:9;22779:17;22775:105;22772:131;;;22883:18;;:::i;:::-;22772:131;22931:1;22928;22924:9;22913:20;;22591:348;;;;:::o;22945:191::-;22985:4;23005:20;23023:1;23005:20;:::i;:::-;23000:25;;23039:20;23057:1;23039:20;:::i;:::-;23034:25;;23078:1;23075;23072:8;23069:34;;;23083:18;;:::i;:::-;23069:34;23128:1;23125;23121:9;23113:17;;22945:191;;;;:::o;23142:96::-;23179:7;23208:24;23226:5;23208:24;:::i;:::-;23197:35;;23142:96;;;:::o;23244:90::-;23278:7;23321:5;23314:13;23307:21;23296:32;;23244:90;;;:::o;23340:149::-;23376:7;23416:66;23409:5;23405:78;23394:89;;23340:149;;;:::o;23495:126::-;23532:7;23572:42;23565:5;23561:54;23550:65;;23495:126;;;:::o;23627:77::-;23664:7;23693:5;23682:16;;23627:77;;;:::o;23710:154::-;23794:6;23789:3;23784;23771:30;23856:1;23847:6;23842:3;23838:16;23831:27;23710:154;;;:::o;23870:307::-;23938:1;23948:113;23962:6;23959:1;23956:13;23948:113;;;24047:1;24042:3;24038:11;24032:18;24028:1;24023:3;24019:11;24012:39;23984:2;23981:1;23977:10;23972:15;;23948:113;;;24079:6;24076:1;24073:13;24070:101;;;24159:1;24150:6;24145:3;24141:16;24134:27;24070:101;23919:258;23870:307;;;:::o;24183:320::-;24227:6;24264:1;24258:4;24254:12;24244:22;;24311:1;24305:4;24301:12;24332:18;24322:81;;24388:4;24380:6;24376:17;24366:27;;24322:81;24450:2;24442:6;24439:14;24419:18;24416:38;24413:84;;;24469:18;;:::i;:::-;24413:84;24234:269;24183:320;;;:::o;24509:281::-;24592:27;24614:4;24592:27;:::i;:::-;24584:6;24580:40;24722:6;24710:10;24707:22;24686:18;24674:10;24671:34;24668:62;24665:88;;;24733:18;;:::i;:::-;24665:88;24773:10;24769:2;24762:22;24552:238;24509:281;;:::o;24796:180::-;24844:77;24841:1;24834:88;24941:4;24938:1;24931:15;24965:4;24962:1;24955:15;24982:180;25030:77;25027:1;25020:88;25127:4;25124:1;25117:15;25151:4;25148:1;25141:15;25168:180;25216:77;25213:1;25206:88;25313:4;25310:1;25303:15;25337:4;25334:1;25327:15;25354:117;25463:1;25460;25453:12;25477:117;25586:1;25583;25576:12;25600:117;25709:1;25706;25699:12;25723:117;25832:1;25829;25822:12;25846:117;25955:1;25952;25945:12;25969:117;26078:1;26075;26068:12;26092:102;26133:6;26184:2;26180:7;26175:2;26168:5;26164:14;26160:28;26150:38;;26092:102;;;:::o;26200:225::-;26340:34;26336:1;26328:6;26324:14;26317:58;26409:8;26404:2;26396:6;26392:15;26385:33;26200:225;:::o;26431:179::-;26571:31;26567:1;26559:6;26555:14;26548:55;26431:179;:::o;26616:178::-;26756:30;26752:1;26744:6;26740:14;26733:54;26616:178;:::o;26800:227::-;26940:34;26936:1;26928:6;26924:14;26917:58;27009:10;27004:2;26996:6;26992:15;26985:35;26800:227;:::o;27033:173::-;27173:25;27169:1;27161:6;27157:14;27150:49;27033:173;:::o;27212:174::-;27352:26;27348:1;27340:6;27336:14;27329:50;27212:174;:::o;27392:222::-;27532:34;27528:1;27520:6;27516:14;27509:58;27601:5;27596:2;27588:6;27584:15;27577:30;27392:222;:::o;27620:226::-;27760:34;27756:1;27748:6;27744:14;27737:58;27829:9;27824:2;27816:6;27812:15;27805:34;27620:226;:::o;27852:166::-;27992:18;27988:1;27980:6;27976:14;27969:42;27852:166;:::o;28024:170::-;28164:22;28160:1;28152:6;28148:14;28141:46;28024:170;:::o;28200:173::-;28340:25;28336:1;28328:6;28324:14;28317:49;28200:173;:::o;28379:182::-;28519:34;28515:1;28507:6;28503:14;28496:58;28379:182;:::o;28567:114::-;;:::o;28687:122::-;28760:24;28778:5;28760:24;:::i;:::-;28753:5;28750:35;28740:63;;28799:1;28796;28789:12;28740:63;28687:122;:::o;28815:116::-;28885:21;28900:5;28885:21;:::i;:::-;28878:5;28875:32;28865:60;;28921:1;28918;28911:12;28865:60;28815:116;:::o;28937:120::-;29009:23;29026:5;29009:23;:::i;:::-;29002:5;28999:34;28989:62;;29047:1;29044;29037:12;28989:62;28937:120;:::o;29063:122::-;29136:24;29154:5;29136:24;:::i;:::-;29129:5;29126:35;29116:63;;29175:1;29172;29165:12;29116:63;29063:122;:::o

Swarm Source

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