ETH Price: $3,783.43 (+0.03%)
Gas: 4 Gwei

Token

Meme Gym Club (MGC)
 

Overview

Max Total Supply

3,332 MGC

Holders

456

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
offlingvault.eth
Balance
5 MGC
0x9d99b3e1dbabfd9e2de0a54554054a0b8aa7f670
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:
MemeGymClub

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-11-04
*/

// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

/**

███╗   ███╗███████╗███╗   ███╗███████╗    
████╗ ████║██╔════╝████╗ ████║██╔════╝    
██╔████╔██║█████╗  ██╔████╔██║█████╗      
██║╚██╔╝██║██╔══╝  ██║╚██╔╝██║██╔══╝      
██║ ╚═╝ ██║███████╗██║ ╚═╝ ██║███████╗    
╚═╝     ╚═╝╚══════╝╚═╝     ╚═╝╚══════╝    
                                          
 ██████╗██╗   ██╗███╗   ███╗              
██╔════╝╚██╗ ██╔╝████╗ ████║              
██║  ███╗╚████╔╝ ██╔████╔██║              
██║   ██║ ╚██╔╝  ██║╚██╔╝██║              
╚██████╔╝  ██║   ██║ ╚═╝ ██║              
 ╚═════╝   ╚═╝   ╚═╝     ╚═╝              
                                          
 ██████╗██╗     ██╗   ██╗██████╗          
██╔════╝██║     ██║   ██║██╔══██╗         
██║     ██║     ██║   ██║██████╔╝         
██║     ██║     ██║   ██║██╔══██╗         
╚██████╗███████╗╚██████╔╝██████╔╝         
 ╚═════╝╚══════╝ ╚═════╝ ╚═════╝          

License Agreement for "Meme Gym Club" NFT Collection

This License Agreement (the "Agreement") is entered into between the Licensee and the Licensor for the "Meme Gym Club" NFT collection (the "Collection"). By minting and/or using any NFT from the Collection, you (the "Licensee") agree to be bound by the following terms and conditions:

1. Supply: The Collection consists of 3333 NFTs, and each Licensee is allowed to mint up to 4 NFTs for free. Beyond this limit, additional NFTs may be obtained through a voluntary donation at a price of 0.0003 ETH per NFT.

2. License: All NFTs in the "Meme Gym Club" Collection are offered under the CC0 license. This means they are released into the public domain, and Licensee can use, share, modify, and distribute them without restrictions.

3. AS IS: The Licensor makes no representations or warranties regarding the financial, legal, or any other benefits to the Licensee resulting from the use or possession of NFTs from the Collection. The Licensor does not promise or guarantee any particular outcome, including but not limited to, financial gain, legal protections, or any other form of advantage.

4. Blockchain: The NFTs in the "Meme Gym Club" Collection are minted on the Ethereum blockchain.

5. Disclaimer of Liability: The Licensor shall not be held responsible for any financial losses, damages, or liabilities incurred by the Licensee while interacting with third parties, using the NFTs, or due to security breaches in the Licensee's electronic wallet. The Licensee understands that the Licensor cannot guarantee the security of the Licensee's digital assets or the actions of other parties in the blockchain space.

6. By minting any NFT from the "Meme Gym Club" Collection, the Licensee automatically agrees to and accepts all the terms and conditions of this Agreement. It is the Licensee's responsibility to review and understand the terms outlined herein before proceeding with minting or using any NFTs from the Collection.

7. This Agreement is a legally binding contract, and the Licensee is advised to seek legal counsel if they have any questions or concerns about its terms. The Licensor reserves the right to amend this Agreement at any time, and it is the Licensee's responsibility to stay informed about any updates or changes.

*/


interface IERC721A {

    error ApprovalCallerNotOwnerNorApproved();

    error ApprovalQueryForNonexistentToken();

    error ApproveToCaller();

    error BalanceQueryForZeroAddress();

    error MintToZeroAddress();

    error MintZeroQuantity();

    error OwnerQueryForNonexistentToken();

    error TransferCallerNotOwnerNorApproved();

    error TransferFromIncorrectOwner();

    error TransferToNonERC721ReceiverImplementer();

    error TransferToZeroAddress();

    error URIQueryForNonexistentToken();

    error MintERC2309QuantityExceedsLimit();

    error OwnershipNotInitializedForExtraData();

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}


contract MemeGymClub is IERC721A { 

    address private _owner;
    function owner() public view returns(address){
        return _owner;
    }

    uint256 public constant MAX_SUPPLY = 3333; // Total collection supply

    uint256 public MAX_FREE = 3333; // Free mint supply

    uint256 public MAX_FREE_PER_WALLET = 4; // Free mint limit per wallet

    uint256 public COST = 0.0003 ether; // Donation per wallet

    string private constant _name = "Meme Gym Club";
    string private constant _symbol = "MGC";

    string private _baseURI = "bafybeihjj2ygw3q66ej5rffb7foe73ocs5l5yb7zzi4kg2gzqy44yeg6t4";

    constructor() {
        _owner = msg.sender;
    }

    function mint(uint256 amount) external payable{
        address _caller = _msgSenderERC721A();

        require(totalSupply() + amount <= MAX_SUPPLY, "Sold Out");
        require(amount*COST <= msg.value, "Value to Low");

        _mint(_caller, amount);
    }

    function freeMint() external nob{
        address _caller = _msgSenderERC721A();
        uint256 amount = MAX_FREE_PER_WALLET;

        require(totalSupply() + amount <= MAX_FREE, "Freemint Sold Out");
        require(amount + _numberMinted(_caller) <= MAX_FREE_PER_WALLET, "Max per Wallet");

        _mint(_caller, amount);
    }

    uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;

    uint256 private constant BITPOS_NUMBER_MINTED = 64;

    uint256 private constant BITPOS_NUMBER_BURNED = 128;

    uint256 private constant BITPOS_AUX = 192;

    uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;

    uint256 private constant BITPOS_START_TIMESTAMP = 160;

    uint256 private constant BITMASK_BURNED = 1 << 224;

    uint256 private constant BITPOS_NEXT_INITIALIZED = 225;

    uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225;

    uint256 private _currentIndex = 0;

    mapping(uint256 => uint256) private _packedOwnerships;

    mapping(address => uint256) private _packedAddressData;

    mapping(uint256 => address) private _tokenApprovals;

    mapping(address => mapping(address => bool)) private _operatorApprovals;

    function setConfig(uint _MAX_FREE, uint _COST, uint _MAX_FREE_PER_WALLET) external onlyOwner{
        MAX_FREE = _MAX_FREE;
        COST = _COST;
        MAX_FREE_PER_WALLET = _MAX_FREE_PER_WALLET;
    }

    function setData(string memory _base) external onlyOwner{
        _baseURI = _base;
    }

    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    function _nextTokenId() internal view returns (uint256) {
        return _currentIndex;
    }

    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than `_currentIndex - _startTokenId()` times.
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    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();
        }
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {

        return
            interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
            interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
            interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
    }

    function balanceOf(address owner) public view override returns (uint256) {
        if (_addressToUint256(owner) == 0) revert BalanceQueryForZeroAddress();
        return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY;
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY;
    }

    function _getAux(address owner) internal view returns (uint64) {
        return uint64(_packedAddressData[owner] >> BITPOS_AUX);
    }

    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) {

                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

    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;
    }

    function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnerships[index]);
    }

    function _initializeOwnershipAt(uint256 index) internal {
        if (_packedOwnerships[index] == 0) {
            _packedOwnerships[index] = _packedOwnershipOf(index);
        }
    }

    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        return _unpackedOwnership(_packedOwnershipOf(tokenId));
    }

    function ownerOf(uint256 tokenId) public view override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    
    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("ipfs://", baseURI, "/", _toString(tokenId), ".json")) : "";
    }

    function _addressToUint256(address value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    function _boolToUint256(bool value) private pure returns (uint256 result) {
        assembly {
            result := value
        }
    }

    function approve(address to, uint256 tokenId) public override {
        address owner = address(uint160(_packedOwnershipOf(tokenId)));
        if (to == owner) revert();

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

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

    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        if (operator == _msgSenderERC721A()) revert ApproveToCaller();

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

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    function transferFrom(
            address from,
            address to,
            uint256 tokenId
            ) public virtual override {
        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(
            address from,
            address to,
            uint256 tokenId
            ) public virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    function safeTransferFrom(
            address from,
            address to,
            uint256 tokenId,
            bytes memory _data
            ) public virtual override {
        _transfer(from, to, tokenId);
    }

    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex;
    }

    function _mint(address to, uint256 quantity) internal {
        uint256 startTokenId = _currentIndex;
        if (_addressToUint256(to) == 0) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        unchecked {

            _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 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);
    }

    function _transfer(
            address from,
            address to,
            uint256 tokenId
            ) private {

        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

        address approvedAddress = _tokenApprovals[tokenId];

        bool isApprovedOrOwner = (_msgSenderERC721A() == from ||
                isApprovedForAll(from, _msgSenderERC721A()) ||
                approvedAddress == _msgSenderERC721A());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();


        // Clear approvals from the previous owner.
        if (_addressToUint256(approvedAddress) != 0) {
            delete _tokenApprovals[tokenId];
        }

        unchecked {

            --_packedAddressData[from]; // Updates: `balance -= 1`.
            ++_packedAddressData[to]; // Updates: `balance += 1`.

            _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);
    }

    function _afterTokenTransfers(
            address from,
            address to,
            uint256 startTokenId,
            uint256 quantity
            ) internal virtual {}

    function _msgSenderERC721A() internal view virtual returns (address) {
        return msg.sender;
    }

    function _toString(uint256 value) internal pure returns (string memory ptr) {
        assembly {

            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

         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)
        }
    }

    modifier onlyOwner() { 
        require(_owner==msg.sender, "not Owner");
        _; 
    }

    modifier nob() {
        require(tx.origin==msg.sender, "no Script");
        _;
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_MAX_FREE","type":"uint256"},{"internalType":"uint256","name":"_COST","type":"uint256"},{"internalType":"uint256","name":"_MAX_FREE_PER_WALLET","type":"uint256"}],"name":"setConfig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setData","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052610d056001556004600255660110d9316ec0006003556040518060600160405280603b815260200162002a95603b91396004908162000044919062000318565b5060006005553480156200005757600080fd5b50336000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620003ff565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200012057607f821691505b602082108103620001365762000135620000d8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620001a07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000161565b620001ac868362000161565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620001f9620001f3620001ed84620001c4565b620001ce565b620001c4565b9050919050565b6000819050919050565b6200021583620001d8565b6200022d620002248262000200565b8484546200016e565b825550505050565b600090565b6200024462000235565b620002518184846200020a565b505050565b5b8181101562000279576200026d6000826200023a565b60018101905062000257565b5050565b601f821115620002c85762000292816200013c565b6200029d8462000151565b81016020851015620002ad578190505b620002c5620002bc8562000151565b83018262000256565b50505b505050565b600082821c905092915050565b6000620002ed60001984600802620002cd565b1980831691505092915050565b6000620003088383620002da565b9150826002028217905092915050565b62000323826200009e565b67ffffffffffffffff8111156200033f576200033e620000a9565b5b6200034b825462000107565b620003588282856200027d565b600060209050601f8311600181146200039057600084156200037b578287015190505b620003878582620002fa565b865550620003f7565b601f198416620003a0866200013c565b60005b82811015620003ca57848901518255600182019150602085019450602081019050620003a3565b86831015620003ea5784890151620003e6601f891682620002da565b8355505b6001600288020188555050505b505050505050565b612686806200040f6000396000f3fe60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461045d578063b88d4fde14610486578063bf8fbbd2146104af578063c87b56dd146104da578063e985e9c514610517578063ed6661c2146105545761014b565b80636352211e1461034657806370a08231146103835780638da5cb5b146103c057806395d89b41146103eb57806398710d1e14610416578063a0712d68146104415761014b565b806323b872dd1161010857806323b872dd1461027257806332cb6b0c1461029b5780633ccfd60b146102c657806342842e0e146102dd57806347064d6a146103065780635b70ea9f1461032f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f5578063129ee21a1461021e57806318160ddd14610247575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611855565b61057f565b604051610184919061189d565b60405180910390f35b34801561019957600080fd5b506101a2610611565b6040516101af9190611948565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906119a0565b61064e565b6040516101ec9190611a0e565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190611a55565b6106ca565b005b34801561022a57600080fd5b5061024560048036038101906102409190611a95565b610843565b005b34801561025357600080fd5b5061025c6108eb565b6040516102699190611af7565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190611b12565b6108fe565b005b3480156102a757600080fd5b506102b061090e565b6040516102bd9190611af7565b60405180910390f35b3480156102d257600080fd5b506102db610914565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190611b12565b6109f1565b005b34801561031257600080fd5b5061032d60048036038101906103289190611c9a565b610a11565b005b34801561033b57600080fd5b50610344610ab2565b005b34801561035257600080fd5b5061036d600480360381019061036891906119a0565b610bf0565b60405161037a9190611a0e565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190611ce3565b610c02565b6040516103b79190611af7565b60405180910390f35b3480156103cc57600080fd5b506103d5610c96565b6040516103e29190611a0e565b60405180910390f35b3480156103f757600080fd5b50610400610cbf565b60405161040d9190611948565b60405180910390f35b34801561042257600080fd5b5061042b610cfc565b6040516104389190611af7565b60405180910390f35b61045b600480360381019061045691906119a0565b610d02565b005b34801561046957600080fd5b50610484600480360381019061047f9190611d3c565b610dc3565b005b34801561049257600080fd5b506104ad60048036038101906104a89190611e1d565b610f3a565b005b3480156104bb57600080fd5b506104c4610f4b565b6040516104d19190611af7565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906119a0565b610f51565b60405161050e9190611948565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190611ea0565b611072565b60405161054b919061189d565b60405180910390f35b34801561056057600080fd5b50610569611106565b6040516105769190611af7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600d81526020017f4d656d652047796d20436c756200000000000000000000000000000000000000815250905090565b60006106598261110c565b61068f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d58261112d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361070f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e6111f9565b73ffffffffffffffffffffffffffffffffffffffff16146107915761075a816107556111f9565b611072565b610790576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c890611f2c565b60405180910390fd5b826001819055508160038190555080600281905550505050565b60006108f5611201565b60055403905090565b610909838383611206565b505050565b610d0581565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990611f2c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156109ed573d6000803e3d6000fd5b5050565b610a0c83838360405180602001604052806000815250610f3a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690611f2c565b60405180910390fd5b8060049081610aae9190612158565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790612276565b60405180910390fd5b6000610b2a6111f9565b90506000600254905060015481610b3f6108eb565b610b4991906122c5565b1115610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190612345565b60405180910390fd5b600254610b968361157c565b82610ba191906122c5565b1115610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906123b1565b60405180910390fd5b610bec82826115d3565b5050565b6000610bfb8261112d565b9050919050565b600080610c0e83611775565b03610c45576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4d47430000000000000000000000000000000000000000000000000000000000815250905090565b60025481565b6000610d0c6111f9565b9050610d0582610d1a6108eb565b610d2491906122c5565b1115610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c9061241d565b60405180910390fd5b3460035483610d74919061243d565b1115610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac906124cb565b60405180910390fd5b610dbf81836115d3565b5050565b610dcb6111f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000610e3c6111f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ee96111f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f2e919061189d565b60405180910390a35050565b610f45848484611206565b50505050565b60035481565b6060610f5c8261110c565b610f92576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060048054610fa190611f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcd90611f7b565b801561101a5780601f10610fef5761010080835404028352916020019161101a565b820191906000526020600020905b815481529060010190602001808311610ffd57829003601f168201915b50505050509050600081510361103f576040518060200160405280600081525061106a565b806110498461177f565b60405160200161105a92919061260b565b6040516020818303038152906040525b915050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60015481565b600081611117611201565b11158015611126575060055482105b9050919050565b6000808290508061113c611201565b116111c2576005548110156111c15760006006600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036111bf575b600081036111b557600660008360019003935083815260200190815260200160002054905061118b565b80925050506111f4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006112118261112d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611278576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166112d16111f9565b73ffffffffffffffffffffffffffffffffffffffff16148061130057506112ff866112fa6111f9565b611072565b5b8061133d575061130e6111f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611376576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061138183611775565b146113bd576008600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61148487611775565b1717600660008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361150c576000600185019050600060066000838152602001908152602001600020540361150a576005548114611509578360066000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461157486868660016117d9565b505050505050565b600067ffffffffffffffff6040600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600554905060006115e584611775565b0361161c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611656576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16116bb600184146117df565b901b60a042901b6116cb85611775565b171760066000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106116f15781600581905550505061177060008483856117d9565b505050565b6000819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156117c557600183039250600a81066030018353600a810490506117a5565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611832816117fd565b811461183d57600080fd5b50565b60008135905061184f81611829565b92915050565b60006020828403121561186b5761186a6117f3565b5b600061187984828501611840565b91505092915050565b60008115159050919050565b61189781611882565b82525050565b60006020820190506118b2600083018461188e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118f25780820151818401526020810190506118d7565b60008484015250505050565b6000601f19601f8301169050919050565b600061191a826118b8565b61192481856118c3565b93506119348185602086016118d4565b61193d816118fe565b840191505092915050565b60006020820190508181036000830152611962818461190f565b905092915050565b6000819050919050565b61197d8161196a565b811461198857600080fd5b50565b60008135905061199a81611974565b92915050565b6000602082840312156119b6576119b56117f3565b5b60006119c48482850161198b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119f8826119cd565b9050919050565b611a08816119ed565b82525050565b6000602082019050611a2360008301846119ff565b92915050565b611a32816119ed565b8114611a3d57600080fd5b50565b600081359050611a4f81611a29565b92915050565b60008060408385031215611a6c57611a6b6117f3565b5b6000611a7a85828601611a40565b9250506020611a8b8582860161198b565b9150509250929050565b600080600060608486031215611aae57611aad6117f3565b5b6000611abc8682870161198b565b9350506020611acd8682870161198b565b9250506040611ade8682870161198b565b9150509250925092565b611af18161196a565b82525050565b6000602082019050611b0c6000830184611ae8565b92915050565b600080600060608486031215611b2b57611b2a6117f3565b5b6000611b3986828701611a40565b9350506020611b4a86828701611a40565b9250506040611b5b8682870161198b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ba7826118fe565b810181811067ffffffffffffffff82111715611bc657611bc5611b6f565b5b80604052505050565b6000611bd96117e9565b9050611be58282611b9e565b919050565b600067ffffffffffffffff821115611c0557611c04611b6f565b5b611c0e826118fe565b9050602081019050919050565b82818337600083830152505050565b6000611c3d611c3884611bea565b611bcf565b905082815260208101848484011115611c5957611c58611b6a565b5b611c64848285611c1b565b509392505050565b600082601f830112611c8157611c80611b65565b5b8135611c91848260208601611c2a565b91505092915050565b600060208284031215611cb057611caf6117f3565b5b600082013567ffffffffffffffff811115611cce57611ccd6117f8565b5b611cda84828501611c6c565b91505092915050565b600060208284031215611cf957611cf86117f3565b5b6000611d0784828501611a40565b91505092915050565b611d1981611882565b8114611d2457600080fd5b50565b600081359050611d3681611d10565b92915050565b60008060408385031215611d5357611d526117f3565b5b6000611d6185828601611a40565b9250506020611d7285828601611d27565b9150509250929050565b600067ffffffffffffffff821115611d9757611d96611b6f565b5b611da0826118fe565b9050602081019050919050565b6000611dc0611dbb84611d7c565b611bcf565b905082815260208101848484011115611ddc57611ddb611b6a565b5b611de7848285611c1b565b509392505050565b600082601f830112611e0457611e03611b65565b5b8135611e14848260208601611dad565b91505092915050565b60008060008060808587031215611e3757611e366117f3565b5b6000611e4587828801611a40565b9450506020611e5687828801611a40565b9350506040611e678782880161198b565b925050606085013567ffffffffffffffff811115611e8857611e876117f8565b5b611e9487828801611def565b91505092959194509250565b60008060408385031215611eb757611eb66117f3565b5b6000611ec585828601611a40565b9250506020611ed685828601611a40565b9150509250929050565b7f6e6f74204f776e65720000000000000000000000000000000000000000000000600082015250565b6000611f166009836118c3565b9150611f2182611ee0565b602082019050919050565b60006020820190508181036000830152611f4581611f09565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f9357607f821691505b602082108103611fa657611fa5611f4c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261200e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611fd1565b6120188683611fd1565b95508019841693508086168417925050509392505050565b6000819050919050565b600061205561205061204b8461196a565b612030565b61196a565b9050919050565b6000819050919050565b61206f8361203a565b61208361207b8261205c565b848454611fde565b825550505050565b600090565b61209861208b565b6120a3818484612066565b505050565b5b818110156120c7576120bc600082612090565b6001810190506120a9565b5050565b601f82111561210c576120dd81611fac565b6120e684611fc1565b810160208510156120f5578190505b61210961210185611fc1565b8301826120a8565b50505b505050565b600082821c905092915050565b600061212f60001984600802612111565b1980831691505092915050565b6000612148838361211e565b9150826002028217905092915050565b612161826118b8565b67ffffffffffffffff81111561217a57612179611b6f565b5b6121848254611f7b565b61218f8282856120cb565b600060209050601f8311600181146121c257600084156121b0578287015190505b6121ba858261213c565b865550612222565b601f1984166121d086611fac565b60005b828110156121f8578489015182556001820191506020850194506020810190506121d3565b868310156122155784890151612211601f89168261211e565b8355505b6001600288020188555050505b505050505050565b7f6e6f205363726970740000000000000000000000000000000000000000000000600082015250565b60006122606009836118c3565b915061226b8261222a565b602082019050919050565b6000602082019050818103600083015261228f81612253565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122d08261196a565b91506122db8361196a565b92508282019050808211156122f3576122f2612296565b5b92915050565b7f467265656d696e7420536f6c64204f7574000000000000000000000000000000600082015250565b600061232f6011836118c3565b915061233a826122f9565b602082019050919050565b6000602082019050818103600083015261235e81612322565b9050919050565b7f4d6178207065722057616c6c6574000000000000000000000000000000000000600082015250565b600061239b600e836118c3565b91506123a682612365565b602082019050919050565b600060208201905081810360008301526123ca8161238e565b9050919050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b60006124076008836118c3565b9150612412826123d1565b602082019050919050565b60006020820190508181036000830152612436816123fa565b9050919050565b60006124488261196a565b91506124538361196a565b92508282026124618161196a565b9150828204841483151761247857612477612296565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b60006124b5600c836118c3565b91506124c08261247f565b602082019050919050565b600060208201905081810360008301526124e4816124a8565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b600061252c6007836124eb565b9150612537826124f6565b600782019050919050565b600061254d826118b8565b61255781856124eb565b93506125678185602086016118d4565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006125a96001836124eb565b91506125b482612573565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006125f56005836124eb565b9150612600826125bf565b600582019050919050565b60006126168261251f565b91506126228285612542565b915061262d8261259c565b91506126398284612542565b9150612644826125e8565b9150819050939250505056fea2646970667358221220c920d74fb4a73bcb1c7c0c6cbf48e8a78894f2c3c7a6eff178cc512ecc2ad13464736f6c6343000811003362616679626569686a6a3279677733713636656a357266666237666f6537336f6373356c357962377a7a69346b6732677a71793434796567367434

Deployed Bytecode

0x60806040526004361061014b5760003560e01c80636352211e116100b6578063a22cb4651161006f578063a22cb4651461045d578063b88d4fde14610486578063bf8fbbd2146104af578063c87b56dd146104da578063e985e9c514610517578063ed6661c2146105545761014b565b80636352211e1461034657806370a08231146103835780638da5cb5b146103c057806395d89b41146103eb57806398710d1e14610416578063a0712d68146104415761014b565b806323b872dd1161010857806323b872dd1461027257806332cb6b0c1461029b5780633ccfd60b146102c657806342842e0e146102dd57806347064d6a146103065780635b70ea9f1461032f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f5578063129ee21a1461021e57806318160ddd14610247575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190611855565b61057f565b604051610184919061189d565b60405180910390f35b34801561019957600080fd5b506101a2610611565b6040516101af9190611948565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da91906119a0565b61064e565b6040516101ec9190611a0e565b60405180910390f35b34801561020157600080fd5b5061021c60048036038101906102179190611a55565b6106ca565b005b34801561022a57600080fd5b5061024560048036038101906102409190611a95565b610843565b005b34801561025357600080fd5b5061025c6108eb565b6040516102699190611af7565b60405180910390f35b34801561027e57600080fd5b5061029960048036038101906102949190611b12565b6108fe565b005b3480156102a757600080fd5b506102b061090e565b6040516102bd9190611af7565b60405180910390f35b3480156102d257600080fd5b506102db610914565b005b3480156102e957600080fd5b5061030460048036038101906102ff9190611b12565b6109f1565b005b34801561031257600080fd5b5061032d60048036038101906103289190611c9a565b610a11565b005b34801561033b57600080fd5b50610344610ab2565b005b34801561035257600080fd5b5061036d600480360381019061036891906119a0565b610bf0565b60405161037a9190611a0e565b60405180910390f35b34801561038f57600080fd5b506103aa60048036038101906103a59190611ce3565b610c02565b6040516103b79190611af7565b60405180910390f35b3480156103cc57600080fd5b506103d5610c96565b6040516103e29190611a0e565b60405180910390f35b3480156103f757600080fd5b50610400610cbf565b60405161040d9190611948565b60405180910390f35b34801561042257600080fd5b5061042b610cfc565b6040516104389190611af7565b60405180910390f35b61045b600480360381019061045691906119a0565b610d02565b005b34801561046957600080fd5b50610484600480360381019061047f9190611d3c565b610dc3565b005b34801561049257600080fd5b506104ad60048036038101906104a89190611e1d565b610f3a565b005b3480156104bb57600080fd5b506104c4610f4b565b6040516104d19190611af7565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906119a0565b610f51565b60405161050e9190611948565b60405180910390f35b34801561052357600080fd5b5061053e60048036038101906105399190611ea0565b611072565b60405161054b919061189d565b60405180910390f35b34801561056057600080fd5b50610569611106565b6040516105769190611af7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105da57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061060a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606040518060400160405280600d81526020017f4d656d652047796d20436c756200000000000000000000000000000000000000815250905090565b60006106598261110c565b61068f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106d58261112d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361070f57600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1661072e6111f9565b73ffffffffffffffffffffffffffffffffffffffff16146107915761075a816107556111f9565b611072565b610790576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146108d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c890611f2c565b60405180910390fd5b826001819055508160038190555080600281905550505050565b60006108f5611201565b60055403905090565b610909838383611206565b505050565b610d0581565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099990611f2c565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156109ed573d6000803e3d6000fd5b5050565b610a0c83838360405180602001604052806000815250610f3a565b505050565b3373ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a9690611f2c565b60405180910390fd5b8060049081610aae9190612158565b5050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790612276565b60405180910390fd5b6000610b2a6111f9565b90506000600254905060015481610b3f6108eb565b610b4991906122c5565b1115610b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8190612345565b60405180910390fd5b600254610b968361157c565b82610ba191906122c5565b1115610be2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd9906123b1565b60405180910390fd5b610bec82826115d3565b5050565b6000610bfb8261112d565b9050919050565b600080610c0e83611775565b03610c45576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606040518060400160405280600381526020017f4d47430000000000000000000000000000000000000000000000000000000000815250905090565b60025481565b6000610d0c6111f9565b9050610d0582610d1a6108eb565b610d2491906122c5565b1115610d65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5c9061241d565b60405180910390fd5b3460035483610d74919061243d565b1115610db5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dac906124cb565b60405180910390fd5b610dbf81836115d3565b5050565b610dcb6111f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e2f576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060096000610e3c6111f9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610ee96111f9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f2e919061189d565b60405180910390a35050565b610f45848484611206565b50505050565b60035481565b6060610f5c8261110c565b610f92576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600060048054610fa190611f7b565b80601f0160208091040260200160405190810160405280929190818152602001828054610fcd90611f7b565b801561101a5780601f10610fef5761010080835404028352916020019161101a565b820191906000526020600020905b815481529060010190602001808311610ffd57829003601f168201915b50505050509050600081510361103f576040518060200160405280600081525061106a565b806110498461177f565b60405160200161105a92919061260b565b6040516020818303038152906040525b915050919050565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60015481565b600081611117611201565b11158015611126575060055482105b9050919050565b6000808290508061113c611201565b116111c2576005548110156111c15760006006600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216036111bf575b600081036111b557600660008360019003935083815260200190815260200160002054905061118b565b80925050506111f4565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006112118261112d565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611278576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60006008600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008573ffffffffffffffffffffffffffffffffffffffff166112d16111f9565b73ffffffffffffffffffffffffffffffffffffffff16148061130057506112ff866112fa6111f9565b611072565b5b8061133d575061130e6111f9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b905080611376576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061138183611775565b146113bd576008600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61148487611775565b1717600660008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084160361150c576000600185019050600060066000838152602001908152602001600020540361150a576005548114611509578360066000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461157486868660016117d9565b505050505050565b600067ffffffffffffffff6040600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6000600554905060006115e584611775565b0361161c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203611656576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600160406001901b178202600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e16116bb600184146117df565b901b60a042901b6116cb85611775565b171760066000838152602001908152602001600020819055506000819050600083820190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082106116f15781600581905550505061177060008483856117d9565b505050565b6000819050919050565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b80156117c557600183039250600a81066030018353600a810490506117a5565b508181036020830392508083525050919050565b50505050565b6000819050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611832816117fd565b811461183d57600080fd5b50565b60008135905061184f81611829565b92915050565b60006020828403121561186b5761186a6117f3565b5b600061187984828501611840565b91505092915050565b60008115159050919050565b61189781611882565b82525050565b60006020820190506118b2600083018461188e565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156118f25780820151818401526020810190506118d7565b60008484015250505050565b6000601f19601f8301169050919050565b600061191a826118b8565b61192481856118c3565b93506119348185602086016118d4565b61193d816118fe565b840191505092915050565b60006020820190508181036000830152611962818461190f565b905092915050565b6000819050919050565b61197d8161196a565b811461198857600080fd5b50565b60008135905061199a81611974565b92915050565b6000602082840312156119b6576119b56117f3565b5b60006119c48482850161198b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006119f8826119cd565b9050919050565b611a08816119ed565b82525050565b6000602082019050611a2360008301846119ff565b92915050565b611a32816119ed565b8114611a3d57600080fd5b50565b600081359050611a4f81611a29565b92915050565b60008060408385031215611a6c57611a6b6117f3565b5b6000611a7a85828601611a40565b9250506020611a8b8582860161198b565b9150509250929050565b600080600060608486031215611aae57611aad6117f3565b5b6000611abc8682870161198b565b9350506020611acd8682870161198b565b9250506040611ade8682870161198b565b9150509250925092565b611af18161196a565b82525050565b6000602082019050611b0c6000830184611ae8565b92915050565b600080600060608486031215611b2b57611b2a6117f3565b5b6000611b3986828701611a40565b9350506020611b4a86828701611a40565b9250506040611b5b8682870161198b565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b611ba7826118fe565b810181811067ffffffffffffffff82111715611bc657611bc5611b6f565b5b80604052505050565b6000611bd96117e9565b9050611be58282611b9e565b919050565b600067ffffffffffffffff821115611c0557611c04611b6f565b5b611c0e826118fe565b9050602081019050919050565b82818337600083830152505050565b6000611c3d611c3884611bea565b611bcf565b905082815260208101848484011115611c5957611c58611b6a565b5b611c64848285611c1b565b509392505050565b600082601f830112611c8157611c80611b65565b5b8135611c91848260208601611c2a565b91505092915050565b600060208284031215611cb057611caf6117f3565b5b600082013567ffffffffffffffff811115611cce57611ccd6117f8565b5b611cda84828501611c6c565b91505092915050565b600060208284031215611cf957611cf86117f3565b5b6000611d0784828501611a40565b91505092915050565b611d1981611882565b8114611d2457600080fd5b50565b600081359050611d3681611d10565b92915050565b60008060408385031215611d5357611d526117f3565b5b6000611d6185828601611a40565b9250506020611d7285828601611d27565b9150509250929050565b600067ffffffffffffffff821115611d9757611d96611b6f565b5b611da0826118fe565b9050602081019050919050565b6000611dc0611dbb84611d7c565b611bcf565b905082815260208101848484011115611ddc57611ddb611b6a565b5b611de7848285611c1b565b509392505050565b600082601f830112611e0457611e03611b65565b5b8135611e14848260208601611dad565b91505092915050565b60008060008060808587031215611e3757611e366117f3565b5b6000611e4587828801611a40565b9450506020611e5687828801611a40565b9350506040611e678782880161198b565b925050606085013567ffffffffffffffff811115611e8857611e876117f8565b5b611e9487828801611def565b91505092959194509250565b60008060408385031215611eb757611eb66117f3565b5b6000611ec585828601611a40565b9250506020611ed685828601611a40565b9150509250929050565b7f6e6f74204f776e65720000000000000000000000000000000000000000000000600082015250565b6000611f166009836118c3565b9150611f2182611ee0565b602082019050919050565b60006020820190508181036000830152611f4581611f09565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611f9357607f821691505b602082108103611fa657611fa5611f4c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261200e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82611fd1565b6120188683611fd1565b95508019841693508086168417925050509392505050565b6000819050919050565b600061205561205061204b8461196a565b612030565b61196a565b9050919050565b6000819050919050565b61206f8361203a565b61208361207b8261205c565b848454611fde565b825550505050565b600090565b61209861208b565b6120a3818484612066565b505050565b5b818110156120c7576120bc600082612090565b6001810190506120a9565b5050565b601f82111561210c576120dd81611fac565b6120e684611fc1565b810160208510156120f5578190505b61210961210185611fc1565b8301826120a8565b50505b505050565b600082821c905092915050565b600061212f60001984600802612111565b1980831691505092915050565b6000612148838361211e565b9150826002028217905092915050565b612161826118b8565b67ffffffffffffffff81111561217a57612179611b6f565b5b6121848254611f7b565b61218f8282856120cb565b600060209050601f8311600181146121c257600084156121b0578287015190505b6121ba858261213c565b865550612222565b601f1984166121d086611fac565b60005b828110156121f8578489015182556001820191506020850194506020810190506121d3565b868310156122155784890151612211601f89168261211e565b8355505b6001600288020188555050505b505050505050565b7f6e6f205363726970740000000000000000000000000000000000000000000000600082015250565b60006122606009836118c3565b915061226b8261222a565b602082019050919050565b6000602082019050818103600083015261228f81612253565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006122d08261196a565b91506122db8361196a565b92508282019050808211156122f3576122f2612296565b5b92915050565b7f467265656d696e7420536f6c64204f7574000000000000000000000000000000600082015250565b600061232f6011836118c3565b915061233a826122f9565b602082019050919050565b6000602082019050818103600083015261235e81612322565b9050919050565b7f4d6178207065722057616c6c6574000000000000000000000000000000000000600082015250565b600061239b600e836118c3565b91506123a682612365565b602082019050919050565b600060208201905081810360008301526123ca8161238e565b9050919050565b7f536f6c64204f7574000000000000000000000000000000000000000000000000600082015250565b60006124076008836118c3565b9150612412826123d1565b602082019050919050565b60006020820190508181036000830152612436816123fa565b9050919050565b60006124488261196a565b91506124538361196a565b92508282026124618161196a565b9150828204841483151761247857612477612296565b5b5092915050565b7f56616c756520746f204c6f770000000000000000000000000000000000000000600082015250565b60006124b5600c836118c3565b91506124c08261247f565b602082019050919050565b600060208201905081810360008301526124e4816124a8565b9050919050565b600081905092915050565b7f697066733a2f2f00000000000000000000000000000000000000000000000000600082015250565b600061252c6007836124eb565b9150612537826124f6565b600782019050919050565b600061254d826118b8565b61255781856124eb565b93506125678185602086016118d4565b80840191505092915050565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b60006125a96001836124eb565b91506125b482612573565b600182019050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006125f56005836124eb565b9150612600826125bf565b600582019050919050565b60006126168261251f565b91506126228285612542565b915061262d8261259c565b91506126398284612542565b9150612644826125e8565b9150819050939250505056fea2646970667358221220c920d74fb4a73bcb1c7c0c6cbf48e8a78894f2c3c7a6eff178cc512ecc2ad13464736f6c63430008110033

Deployed Bytecode Sourcemap

11654:13593:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14966:354;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17553:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18891:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18432:451;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13848:207;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14365:300;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19591:190;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11811:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25099:145;;;;;;;;;;;;;:::i;:::-;;19789:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14063:91;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12623:339;;;;;;;;;;;;;:::i;:::-;;17401:144;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15328:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11726:77;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17661:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11947:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12348:267;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19103:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20002:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12024:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17779:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19419:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11888:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14966:354;15051:4;15105:10;15090:25;;:11;:25;;;;:102;;;;15182:10;15167:25;;:11;:25;;;;15090:102;:179;;;;15259:10;15244:25;;:11;:25;;;;15090:179;15070:199;;14966:354;;;:::o;17553:100::-;17607:13;17640:5;;;;;;;;;;;;;;;;;17633:12;;17553:100;:::o;18891:204::-;18959:7;18984:16;18992:7;18984;:16::i;:::-;18979:64;;19009:34;;;;;;;;;;;;;;18979:64;19063:15;:24;19079:7;19063:24;;;;;;;;;;;;;;;;;;;;;19056:31;;18891:204;;;:::o;18432:451::-;18505:13;18537:27;18556:7;18537:18;:27::i;:::-;18505:61;;18587:5;18581:11;;:2;:11;;;18577:25;;18594:8;;;18577:25;18642:5;18619:28;;:19;:17;:19::i;:::-;:28;;;18615:175;;18667:44;18684:5;18691:19;:17;:19::i;:::-;18667:16;:44::i;:::-;18662:128;;18739:35;;;;;;;;;;;;;;18662:128;18615:175;18829:2;18802:15;:24;18818:7;18802:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;18867:7;18863:2;18847:28;;18856:5;18847:28;;;;;;;;;;;;18494:389;18432:451;;:::o;13848:207::-;24949:10;24941:18;;:6;;;;;;;;;;:18;;;24933:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;13962:9:::1;13951:8;:20;;;;13989:5;13982:4;:12;;;;14027:20;14005:19;:42;;;;13848:207:::0;;;:::o;14365:300::-;14418:7;14631:15;:13;:15::i;:::-;14615:13;;:31;14608:38;;14365:300;:::o;19591:190::-;19745:28;19755:4;19761:2;19765:7;19745:9;:28::i;:::-;19591:190;;;:::o;11811:41::-;11848:4;11811:41;:::o;25099:145::-;24949:10;24941:18;;:6;;;;;;;;;;:18;;;24933:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;25149:15:::1;25167:21;25149:39;;25207:10;25199:28;;:37;25228:7;25199:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;25138:106;25099:145::o:0;19789:205::-;19947:39;19964:4;19970:2;19974:7;19947:39;;;;;;;;;;;;:16;:39::i;:::-;19789:205;;;:::o;14063:91::-;24949:10;24941:18;;:6;;;;;;;;;;:18;;;24933:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;14141:5:::1;14130:8;:16;;;;;;:::i;:::-;;14063:91:::0;:::o;12623:339::-;25047:10;25036:21;;:9;:21;;;25028:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;12666:15:::1;12684:19;:17;:19::i;:::-;12666:37;;12714:14;12731:19;;12714:36;;12797:8;;12787:6;12771:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:34;;12763:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12881:19;;12855:22;12869:7;12855:13;:22::i;:::-;12846:6;:31;;;;:::i;:::-;:54;;12838:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;12932:22;12938:7;12947:6;12932:5;:22::i;:::-;12655:307;;12623:339::o:0;17401:144::-;17465:7;17508:27;17527:7;17508:18;:27::i;:::-;17485:52;;17401:144;;;:::o;15328:234::-;15392:7;15444:1;15416:24;15434:5;15416:17;:24::i;:::-;:29;15412:70;;15454:28;;;;;;;;;;;;;;15412:70;13024:13;15500:18;:25;15519:5;15500:25;;;;;;;;;;;;;;;;:54;15493:61;;15328:234;;;:::o;11726:77::-;11763:7;11789:6;;;;;;;;;;;11782:13;;11726:77;:::o;17661:104::-;17717:13;17750:7;;;;;;;;;;;;;;;;;17743:14;;17661:104;:::o;11947:38::-;;;;:::o;12348:267::-;12405:15;12423:19;:17;:19::i;:::-;12405:37;;11848:4;12479:6;12463:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:36;;12455:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;12546:9;12538:4;;12531:6;:11;;;;:::i;:::-;:24;;12523:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;12585:22;12591:7;12600:6;12585:5;:22::i;:::-;12394:221;12348:267;:::o;19103:308::-;19214:19;:17;:19::i;:::-;19202:31;;:8;:31;;;19198:61;;19242:17;;;;;;;;;;;;;;19198:61;19324:8;19272:18;:39;19291:19;:17;:19::i;:::-;19272:39;;;;;;;;;;;;;;;:49;19312:8;19272:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;19384:8;19348:55;;19363:19;:17;:19::i;:::-;19348:55;;;19394:8;19348:55;;;;;;:::i;:::-;;;;;;;;19103:308;;:::o;20002:227::-;20193:28;20203:4;20209:2;20213:7;20193:9;:28::i;:::-;20002:227;;;;:::o;12024:34::-;;;;:::o;17779:339::-;17852:13;17883:16;17891:7;17883;:16::i;:::-;17878:59;;17908:29;;;;;;;;;;;;;;17878:59;17948:21;17972:8;17948:32;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18023:1;18004:7;17998:21;:26;:112;;;;;;;;;;;;;;;;;18062:7;18076:18;18086:7;18076:9;:18::i;:::-;18034:70;;;;;;;;;:::i;:::-;;;;;;;;;;;;;17998:112;17991:119;;;17779:339;;;:::o;19419:164::-;19516:4;19540:18;:25;19559:5;19540:25;;;;;;;;;;;;;;;:35;19566:8;19540:35;;;;;;;;;;;;;;;;;;;;;;;;;19533:42;;19419:164;;;;:::o;11888:30::-;;;;:::o;20237:168::-;20294:4;20350:7;20331:15;:13;:15::i;:::-;:26;;:66;;;;;20384:13;;20374:7;:23;20331:66;20311:86;;20237:168;;;:::o;15898:669::-;15965:7;15985:12;16000:7;15985:22;;16068:4;16049:15;:13;:15::i;:::-;:23;16045:455;;16102:13;;16095:4;:20;16091:409;;;16140:14;16157:17;:23;16175:4;16157:23;;;;;;;;;;;;16140:40;;16273:1;13392:8;16246:6;:23;:28;16242:239;;16305:113;16322:1;16312:6;:11;16305:113;;16365:17;:25;16383:6;;;;;;;16365:25;;;;;;;;;;;;16356:34;;16305:113;;;16451:6;16444:13;;;;;;16242:239;16117:383;16091:409;16045:455;16528:31;;;;;;;;;;;;;;15898:669;;;;:::o;23555:105::-;23615:7;23642:10;23635:17;;23555:105;:::o;14162:92::-;14218:7;14162:92;:::o;21352:2005::-;21489:27;21519;21538:7;21519:18;:27::i;:::-;21489:57;;21604:4;21563:45;;21579:19;21563:45;;;21559:86;;21617:28;;;;;;;;;;;;;;21559:86;21658:23;21684:15;:24;21700:7;21684:24;;;;;;;;;;;;;;;;;;;;;21658:50;;21721:22;21770:4;21747:27;;:19;:17;:19::i;:::-;:27;;;:91;;;;21795:43;21812:4;21818:19;:17;:19::i;:::-;21795:16;:43::i;:::-;21747:91;:150;;;;21878:19;:17;:19::i;:::-;21859:38;;:15;:38;;;21747:150;21721:177;;21916:17;21911:66;;21942:35;;;;;;;;;;;;;;21911:66;22087:1;22049:34;22067:15;22049:17;:34::i;:::-;:39;22045:103;;22112:15;:24;22128:7;22112:24;;;;;;;;;;;;22105:31;;;;;;;;;;;22045:103;22189:18;:24;22208:4;22189:24;;;;;;;;;;;;;;;;22187:26;;;;;;;;;;;;22258:18;:22;22277:2;22258:22;;;;;;;;;;;;;;;;22256:24;;;;;;;;;;;13524:8;13338:3;22413:15;:41;;22371:21;22389:2;22371:17;:21::i;:::-;:84;:128;22325:17;:26;22343:7;22325:26;;;;;;;;;;;:174;;;;22669:1;13524:8;22619:19;:46;:51;22615:626;;22691:19;22723:1;22713:7;:11;22691:33;;22880:1;22846:17;:30;22864:11;22846:30;;;;;;;;;;;;:35;22842:384;;22984:13;;22969:11;:28;22965:242;;23164:19;23131:17;:30;23149:11;23131:30;;;;;;;;;;;:52;;;;22965:242;22842:384;22672:569;22615:626;23288:7;23284:2;23269:27;;23278:4;23269:27;;;;;;;;;;;;23307:42;23328:4;23334:2;23338:7;23347:1;23307:20;:42::i;:::-;21476:1881;;;21352:2005;;;:::o;15570:176::-;15631:7;13024:13;13094:2;15659:18;:25;15678:5;15659:25;;;;;;;;;;;;;;;;:49;;15658:80;15651:87;;15570:176;;;:::o;20413:931::-;20478:20;20501:13;;20478:36;;20554:1;20529:21;20547:2;20529:17;:21::i;:::-;:26;20525:58;;20564:19;;;;;;;;;;;;;;20525:58;20610:1;20598:8;:13;20594:44;;20620:18;;;;;;;;;;;;;;20594:44;20746:1;13094:2;20717:1;:25;;20716:31;20704:8;:44;20678:18;:22;20697:2;20678:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;13460:3;20921:29;20948:1;20936:8;:13;20921:14;:29::i;:::-;:56;;13338:3;20858:15;:41;;20816:21;20834:2;20816:17;:21::i;:::-;:84;:162;20765:17;:31;20783:12;20765:31;;;;;;;;;;;:213;;;;20995:20;21018:12;20995:35;;21045:11;21074:8;21059:12;:23;21045:37;;21099:111;21151:14;;;;;;21147:2;21126:40;;21143:1;21126:40;;;;;;;;;;;;21205:3;21190:12;:18;21099:111;;21242:12;21226:13;:28;;;;20651:615;;21276:60;21305:1;21309:2;21313:12;21327:8;21276:20;:60::i;:::-;20467:877;20413:931;;:::o;18126:148::-;18190:14;18251:5;18241:15;;18126:148;;;:::o;23668:1224::-;23725:17;23805:3;23798:4;23792:11;23788:21;23781:28;;23892:3;23886:4;23879:17;23992:3;24111:5;24243:1;24238:3;24234:11;24227:18;;24382:2;24376:4;24372:13;24368:2;24364:22;24359:3;24351:36;24424:2;24418:4;24414:13;24406:21;;24008:661;24440:4;24008:661;;;24608:1;24603:3;24599:11;24592:18;;24652:2;24646:4;24642:13;24638:2;24634:22;24629:3;24621:36;24525:2;24519:4;24515:13;24507:21;;24008:661;;;24012:427;24701:3;24696;24692:13;24810:2;24805:3;24801:12;24794:19;;24867:6;24862:3;24855:19;23764:1121;;23668:1224;;;:::o;23365:182::-;;;;;:::o;18282:142::-;18340:14;18401:5;18391:15;;18282:142;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:246::-;1879:1;1889:113;1903:6;1900:1;1897:13;1889:113;;;1988:1;1983:3;1979:11;1973:18;1969:1;1964:3;1960:11;1953:39;1925:2;1922:1;1918:10;1913:15;;1889:113;;;2036:1;2027:6;2022:3;2018:16;2011:27;1860:184;1798:246;;;:::o;2050:102::-;2091:6;2142:2;2138:7;2133:2;2126:5;2122:14;2118:28;2108:38;;2050:102;;;:::o;2158:377::-;2246:3;2274:39;2307:5;2274:39;:::i;:::-;2329:71;2393:6;2388:3;2329:71;:::i;:::-;2322:78;;2409:65;2467:6;2462:3;2455:4;2448:5;2444:16;2409:65;:::i;:::-;2499:29;2521:6;2499:29;:::i;:::-;2494:3;2490:39;2483:46;;2250:285;2158:377;;;;:::o;2541:313::-;2654:4;2692:2;2681:9;2677:18;2669:26;;2741:9;2735:4;2731:20;2727:1;2716:9;2712:17;2705:47;2769:78;2842:4;2833:6;2769:78;:::i;:::-;2761:86;;2541:313;;;;:::o;2860:77::-;2897:7;2926:5;2915:16;;2860:77;;;:::o;2943:122::-;3016:24;3034:5;3016:24;:::i;:::-;3009:5;3006:35;2996:63;;3055:1;3052;3045:12;2996:63;2943:122;:::o;3071:139::-;3117:5;3155:6;3142:20;3133:29;;3171:33;3198:5;3171:33;:::i;:::-;3071:139;;;;:::o;3216:329::-;3275:6;3324:2;3312:9;3303:7;3299:23;3295:32;3292:119;;;3330:79;;:::i;:::-;3292:119;3450:1;3475:53;3520:7;3511:6;3500:9;3496:22;3475:53;:::i;:::-;3465:63;;3421:117;3216:329;;;;:::o;3551:126::-;3588:7;3628:42;3621:5;3617:54;3606:65;;3551:126;;;:::o;3683:96::-;3720:7;3749:24;3767:5;3749:24;:::i;:::-;3738:35;;3683:96;;;:::o;3785:118::-;3872:24;3890:5;3872:24;:::i;:::-;3867:3;3860:37;3785:118;;:::o;3909:222::-;4002:4;4040:2;4029:9;4025:18;4017:26;;4053:71;4121:1;4110:9;4106:17;4097:6;4053:71;:::i;:::-;3909:222;;;;:::o;4137:122::-;4210:24;4228:5;4210:24;:::i;:::-;4203:5;4200:35;4190:63;;4249:1;4246;4239:12;4190:63;4137:122;:::o;4265:139::-;4311:5;4349:6;4336:20;4327:29;;4365:33;4392:5;4365:33;:::i;:::-;4265:139;;;;:::o;4410:474::-;4478:6;4486;4535:2;4523:9;4514:7;4510:23;4506:32;4503:119;;;4541:79;;:::i;:::-;4503:119;4661:1;4686:53;4731:7;4722:6;4711:9;4707:22;4686:53;:::i;:::-;4676:63;;4632:117;4788:2;4814:53;4859:7;4850:6;4839:9;4835:22;4814:53;:::i;:::-;4804:63;;4759:118;4410:474;;;;;:::o;4890:619::-;4967:6;4975;4983;5032:2;5020:9;5011:7;5007:23;5003:32;5000:119;;;5038:79;;:::i;:::-;5000:119;5158:1;5183:53;5228:7;5219:6;5208:9;5204:22;5183:53;:::i;:::-;5173:63;;5129:117;5285:2;5311:53;5356:7;5347:6;5336:9;5332:22;5311:53;:::i;:::-;5301:63;;5256:118;5413:2;5439:53;5484:7;5475:6;5464:9;5460:22;5439:53;:::i;:::-;5429:63;;5384:118;4890:619;;;;;:::o;5515:118::-;5602:24;5620:5;5602:24;:::i;:::-;5597:3;5590:37;5515:118;;:::o;5639:222::-;5732:4;5770:2;5759:9;5755:18;5747:26;;5783:71;5851:1;5840:9;5836:17;5827:6;5783:71;:::i;:::-;5639:222;;;;:::o;5867:619::-;5944:6;5952;5960;6009:2;5997:9;5988:7;5984:23;5980:32;5977:119;;;6015:79;;:::i;:::-;5977:119;6135:1;6160:53;6205:7;6196:6;6185:9;6181:22;6160:53;:::i;:::-;6150:63;;6106:117;6262:2;6288:53;6333:7;6324:6;6313:9;6309:22;6288:53;:::i;:::-;6278:63;;6233:118;6390:2;6416:53;6461:7;6452:6;6441:9;6437:22;6416:53;:::i;:::-;6406:63;;6361:118;5867:619;;;;;:::o;6492:117::-;6601:1;6598;6591:12;6615:117;6724:1;6721;6714:12;6738:180;6786:77;6783:1;6776:88;6883:4;6880:1;6873:15;6907:4;6904:1;6897:15;6924:281;7007:27;7029:4;7007:27;:::i;:::-;6999:6;6995:40;7137:6;7125:10;7122:22;7101:18;7089:10;7086:34;7083:62;7080:88;;;7148:18;;:::i;:::-;7080:88;7188:10;7184:2;7177:22;6967:238;6924:281;;:::o;7211:129::-;7245:6;7272:20;;:::i;:::-;7262:30;;7301:33;7329:4;7321:6;7301:33;:::i;:::-;7211:129;;;:::o;7346:308::-;7408:4;7498:18;7490:6;7487:30;7484:56;;;7520:18;;:::i;:::-;7484:56;7558:29;7580:6;7558:29;:::i;:::-;7550:37;;7642:4;7636;7632:15;7624:23;;7346:308;;;:::o;7660:146::-;7757:6;7752:3;7747;7734:30;7798:1;7789:6;7784:3;7780:16;7773:27;7660:146;;;:::o;7812:425::-;7890:5;7915:66;7931:49;7973:6;7931:49;:::i;:::-;7915:66;:::i;:::-;7906:75;;8004:6;7997:5;7990:21;8042:4;8035:5;8031:16;8080:3;8071:6;8066:3;8062:16;8059:25;8056:112;;;8087:79;;:::i;:::-;8056:112;8177:54;8224:6;8219:3;8214;8177:54;:::i;:::-;7896:341;7812:425;;;;;:::o;8257:340::-;8313:5;8362:3;8355:4;8347:6;8343:17;8339:27;8329:122;;8370:79;;:::i;:::-;8329:122;8487:6;8474:20;8512:79;8587:3;8579:6;8572:4;8564:6;8560:17;8512:79;:::i;:::-;8503:88;;8319:278;8257:340;;;;:::o;8603:509::-;8672:6;8721:2;8709:9;8700:7;8696:23;8692:32;8689:119;;;8727:79;;:::i;:::-;8689:119;8875:1;8864:9;8860:17;8847:31;8905:18;8897:6;8894:30;8891:117;;;8927:79;;:::i;:::-;8891:117;9032:63;9087:7;9078:6;9067:9;9063:22;9032:63;:::i;:::-;9022:73;;8818:287;8603:509;;;;:::o;9118:329::-;9177:6;9226:2;9214:9;9205:7;9201:23;9197:32;9194:119;;;9232:79;;:::i;:::-;9194:119;9352:1;9377:53;9422:7;9413:6;9402:9;9398:22;9377:53;:::i;:::-;9367:63;;9323:117;9118:329;;;;:::o;9453:116::-;9523:21;9538:5;9523:21;:::i;:::-;9516:5;9513:32;9503:60;;9559:1;9556;9549:12;9503:60;9453:116;:::o;9575:133::-;9618:5;9656:6;9643:20;9634:29;;9672:30;9696:5;9672:30;:::i;:::-;9575:133;;;;:::o;9714:468::-;9779:6;9787;9836:2;9824:9;9815:7;9811:23;9807:32;9804:119;;;9842:79;;:::i;:::-;9804:119;9962:1;9987:53;10032:7;10023:6;10012:9;10008:22;9987:53;:::i;:::-;9977:63;;9933:117;10089:2;10115:50;10157:7;10148:6;10137:9;10133:22;10115:50;:::i;:::-;10105:60;;10060:115;9714:468;;;;;:::o;10188:307::-;10249:4;10339:18;10331:6;10328:30;10325:56;;;10361:18;;:::i;:::-;10325:56;10399:29;10421:6;10399:29;:::i;:::-;10391:37;;10483:4;10477;10473:15;10465:23;;10188:307;;;:::o;10501:423::-;10578:5;10603:65;10619:48;10660:6;10619:48;:::i;:::-;10603:65;:::i;:::-;10594:74;;10691:6;10684:5;10677:21;10729:4;10722:5;10718:16;10767:3;10758:6;10753:3;10749:16;10746:25;10743:112;;;10774:79;;:::i;:::-;10743:112;10864:54;10911:6;10906:3;10901;10864:54;:::i;:::-;10584:340;10501:423;;;;;:::o;10943:338::-;10998:5;11047:3;11040:4;11032:6;11028:17;11024:27;11014:122;;11055:79;;:::i;:::-;11014:122;11172:6;11159:20;11197:78;11271:3;11263:6;11256:4;11248:6;11244:17;11197:78;:::i;:::-;11188:87;;11004:277;10943:338;;;;:::o;11287:943::-;11382:6;11390;11398;11406;11455:3;11443:9;11434:7;11430:23;11426:33;11423:120;;;11462:79;;:::i;:::-;11423:120;11582:1;11607:53;11652:7;11643:6;11632:9;11628:22;11607:53;:::i;:::-;11597:63;;11553:117;11709:2;11735:53;11780:7;11771:6;11760:9;11756:22;11735:53;:::i;:::-;11725:63;;11680:118;11837:2;11863:53;11908:7;11899:6;11888:9;11884:22;11863:53;:::i;:::-;11853:63;;11808:118;11993:2;11982:9;11978:18;11965:32;12024:18;12016:6;12013:30;12010:117;;;12046:79;;:::i;:::-;12010:117;12151:62;12205:7;12196:6;12185:9;12181:22;12151:62;:::i;:::-;12141:72;;11936:287;11287:943;;;;;;;:::o;12236:474::-;12304:6;12312;12361:2;12349:9;12340:7;12336:23;12332:32;12329:119;;;12367:79;;:::i;:::-;12329:119;12487:1;12512:53;12557:7;12548:6;12537:9;12533:22;12512:53;:::i;:::-;12502:63;;12458:117;12614:2;12640:53;12685:7;12676:6;12665:9;12661:22;12640:53;:::i;:::-;12630:63;;12585:118;12236:474;;;;;:::o;12716:159::-;12856:11;12852:1;12844:6;12840:14;12833:35;12716:159;:::o;12881:365::-;13023:3;13044:66;13108:1;13103:3;13044:66;:::i;:::-;13037:73;;13119:93;13208:3;13119:93;:::i;:::-;13237:2;13232:3;13228:12;13221:19;;12881:365;;;:::o;13252:419::-;13418:4;13456:2;13445:9;13441:18;13433:26;;13505:9;13499:4;13495:20;13491:1;13480:9;13476:17;13469:47;13533:131;13659:4;13533:131;:::i;:::-;13525:139;;13252:419;;;:::o;13677:180::-;13725:77;13722:1;13715:88;13822:4;13819:1;13812:15;13846:4;13843:1;13836:15;13863:320;13907:6;13944:1;13938:4;13934:12;13924:22;;13991:1;13985:4;13981:12;14012:18;14002:81;;14068:4;14060:6;14056:17;14046:27;;14002:81;14130:2;14122:6;14119:14;14099:18;14096:38;14093:84;;14149:18;;:::i;:::-;14093:84;13914:269;13863:320;;;:::o;14189:141::-;14238:4;14261:3;14253:11;;14284:3;14281:1;14274:14;14318:4;14315:1;14305:18;14297:26;;14189:141;;;:::o;14336:93::-;14373:6;14420:2;14415;14408:5;14404:14;14400:23;14390:33;;14336:93;;;:::o;14435:107::-;14479:8;14529:5;14523:4;14519:16;14498:37;;14435:107;;;;:::o;14548:393::-;14617:6;14667:1;14655:10;14651:18;14690:97;14720:66;14709:9;14690:97;:::i;:::-;14808:39;14838:8;14827:9;14808:39;:::i;:::-;14796:51;;14880:4;14876:9;14869:5;14865:21;14856:30;;14929:4;14919:8;14915:19;14908:5;14905:30;14895:40;;14624:317;;14548:393;;;;;:::o;14947:60::-;14975:3;14996:5;14989:12;;14947:60;;;:::o;15013:142::-;15063:9;15096:53;15114:34;15123:24;15141:5;15123:24;:::i;:::-;15114:34;:::i;:::-;15096:53;:::i;:::-;15083:66;;15013:142;;;:::o;15161:75::-;15204:3;15225:5;15218:12;;15161:75;;;:::o;15242:269::-;15352:39;15383:7;15352:39;:::i;:::-;15413:91;15462:41;15486:16;15462:41;:::i;:::-;15454:6;15447:4;15441:11;15413:91;:::i;:::-;15407:4;15400:105;15318:193;15242:269;;;:::o;15517:73::-;15562:3;15517:73;:::o;15596:189::-;15673:32;;:::i;:::-;15714:65;15772:6;15764;15758:4;15714:65;:::i;:::-;15649:136;15596:189;;:::o;15791:186::-;15851:120;15868:3;15861:5;15858:14;15851:120;;;15922:39;15959:1;15952:5;15922:39;:::i;:::-;15895:1;15888:5;15884:13;15875:22;;15851:120;;;15791:186;;:::o;15983:543::-;16084:2;16079:3;16076:11;16073:446;;;16118:38;16150:5;16118:38;:::i;:::-;16202:29;16220:10;16202:29;:::i;:::-;16192:8;16188:44;16385:2;16373:10;16370:18;16367:49;;;16406:8;16391:23;;16367:49;16429:80;16485:22;16503:3;16485:22;:::i;:::-;16475:8;16471:37;16458:11;16429:80;:::i;:::-;16088:431;;16073:446;15983:543;;;:::o;16532:117::-;16586:8;16636:5;16630:4;16626:16;16605:37;;16532:117;;;;:::o;16655:169::-;16699:6;16732:51;16780:1;16776:6;16768:5;16765:1;16761:13;16732:51;:::i;:::-;16728:56;16813:4;16807;16803:15;16793:25;;16706:118;16655:169;;;;:::o;16829:295::-;16905:4;17051:29;17076:3;17070:4;17051:29;:::i;:::-;17043:37;;17113:3;17110:1;17106:11;17100:4;17097:21;17089:29;;16829:295;;;;:::o;17129:1395::-;17246:37;17279:3;17246:37;:::i;:::-;17348:18;17340:6;17337:30;17334:56;;;17370:18;;:::i;:::-;17334:56;17414:38;17446:4;17440:11;17414:38;:::i;:::-;17499:67;17559:6;17551;17545:4;17499:67;:::i;:::-;17593:1;17617:4;17604:17;;17649:2;17641:6;17638:14;17666:1;17661:618;;;;18323:1;18340:6;18337:77;;;18389:9;18384:3;18380:19;18374:26;18365:35;;18337:77;18440:67;18500:6;18493:5;18440:67;:::i;:::-;18434:4;18427:81;18296:222;17631:887;;17661:618;17713:4;17709:9;17701:6;17697:22;17747:37;17779:4;17747:37;:::i;:::-;17806:1;17820:208;17834:7;17831:1;17828:14;17820:208;;;17913:9;17908:3;17904:19;17898:26;17890:6;17883:42;17964:1;17956:6;17952:14;17942:24;;18011:2;18000:9;17996:18;17983:31;;17857:4;17854:1;17850:12;17845:17;;17820:208;;;18056:6;18047:7;18044:19;18041:179;;;18114:9;18109:3;18105:19;18099:26;18157:48;18199:4;18191:6;18187:17;18176:9;18157:48;:::i;:::-;18149:6;18142:64;18064:156;18041:179;18266:1;18262;18254:6;18250:14;18246:22;18240:4;18233:36;17668:611;;;17631:887;;17221:1303;;;17129:1395;;:::o;18530:159::-;18670:11;18666:1;18658:6;18654:14;18647:35;18530:159;:::o;18695:365::-;18837:3;18858:66;18922:1;18917:3;18858:66;:::i;:::-;18851:73;;18933:93;19022:3;18933:93;:::i;:::-;19051:2;19046:3;19042:12;19035:19;;18695:365;;;:::o;19066:419::-;19232:4;19270:2;19259:9;19255:18;19247:26;;19319:9;19313:4;19309:20;19305:1;19294:9;19290:17;19283:47;19347:131;19473:4;19347:131;:::i;:::-;19339:139;;19066:419;;;:::o;19491:180::-;19539:77;19536:1;19529:88;19636:4;19633:1;19626:15;19660:4;19657:1;19650:15;19677:191;19717:3;19736:20;19754:1;19736:20;:::i;:::-;19731:25;;19770:20;19788:1;19770:20;:::i;:::-;19765:25;;19813:1;19810;19806:9;19799:16;;19834:3;19831:1;19828:10;19825:36;;;19841:18;;:::i;:::-;19825:36;19677:191;;;;:::o;19874:167::-;20014:19;20010:1;20002:6;19998:14;19991:43;19874:167;:::o;20047:366::-;20189:3;20210:67;20274:2;20269:3;20210:67;:::i;:::-;20203:74;;20286:93;20375:3;20286:93;:::i;:::-;20404:2;20399:3;20395:12;20388:19;;20047:366;;;:::o;20419:419::-;20585:4;20623:2;20612:9;20608:18;20600:26;;20672:9;20666:4;20662:20;20658:1;20647:9;20643:17;20636:47;20700:131;20826:4;20700:131;:::i;:::-;20692:139;;20419:419;;;:::o;20844:164::-;20984:16;20980:1;20972:6;20968:14;20961:40;20844:164;:::o;21014:366::-;21156:3;21177:67;21241:2;21236:3;21177:67;:::i;:::-;21170:74;;21253:93;21342:3;21253:93;:::i;:::-;21371:2;21366:3;21362:12;21355:19;;21014:366;;;:::o;21386:419::-;21552:4;21590:2;21579:9;21575:18;21567:26;;21639:9;21633:4;21629:20;21625:1;21614:9;21610:17;21603:47;21667:131;21793:4;21667:131;:::i;:::-;21659:139;;21386:419;;;:::o;21811:158::-;21951:10;21947:1;21939:6;21935:14;21928:34;21811:158;:::o;21975:365::-;22117:3;22138:66;22202:1;22197:3;22138:66;:::i;:::-;22131:73;;22213:93;22302:3;22213:93;:::i;:::-;22331:2;22326:3;22322:12;22315:19;;21975:365;;;:::o;22346:419::-;22512:4;22550:2;22539:9;22535:18;22527:26;;22599:9;22593:4;22589:20;22585:1;22574:9;22570:17;22563:47;22627:131;22753:4;22627:131;:::i;:::-;22619:139;;22346:419;;;:::o;22771:410::-;22811:7;22834:20;22852:1;22834:20;:::i;:::-;22829:25;;22868:20;22886:1;22868:20;:::i;:::-;22863:25;;22923:1;22920;22916:9;22945:30;22963:11;22945:30;:::i;:::-;22934:41;;23124:1;23115:7;23111:15;23108:1;23105:22;23085:1;23078:9;23058:83;23035:139;;23154:18;;:::i;:::-;23035:139;22819:362;22771:410;;;;:::o;23187:162::-;23327:14;23323:1;23315:6;23311:14;23304:38;23187:162;:::o;23355:366::-;23497:3;23518:67;23582:2;23577:3;23518:67;:::i;:::-;23511:74;;23594:93;23683:3;23594:93;:::i;:::-;23712:2;23707:3;23703:12;23696:19;;23355:366;;;:::o;23727:419::-;23893:4;23931:2;23920:9;23916:18;23908:26;;23980:9;23974:4;23970:20;23966:1;23955:9;23951:17;23944:47;24008:131;24134:4;24008:131;:::i;:::-;24000:139;;23727:419;;;:::o;24152:148::-;24254:11;24291:3;24276:18;;24152:148;;;;:::o;24306:161::-;24446:9;24442:1;24434:6;24430:14;24423:33;24306:161;:::o;24477:416::-;24637:3;24662:84;24744:1;24739:3;24662:84;:::i;:::-;24655:91;;24759:93;24848:3;24759:93;:::i;:::-;24881:1;24876:3;24872:11;24865:18;;24477:416;;;:::o;24903:410::-;25009:3;25041:39;25074:5;25041:39;:::i;:::-;25100:89;25182:6;25177:3;25100:89;:::i;:::-;25093:96;;25202:65;25260:6;25255:3;25248:4;25241:5;25237:16;25202:65;:::i;:::-;25296:6;25291:3;25287:16;25280:23;;25013:300;24903:410;;;;:::o;25323:159::-;25467:3;25463:1;25455:6;25451:14;25444:27;25323:159;:::o;25492:416::-;25652:3;25677:84;25759:1;25754:3;25677:84;:::i;:::-;25670:91;;25774:93;25863:3;25774:93;:::i;:::-;25896:1;25891:3;25887:11;25880:18;;25492:416;;;:::o;25918:163::-;26062:7;26058:1;26050:6;26046:14;26039:31;25918:163;:::o;26091:416::-;26251:3;26276:84;26358:1;26353:3;26276:84;:::i;:::-;26269:91;;26373:93;26462:3;26373:93;:::i;:::-;26495:1;26490:3;26486:11;26479:18;;26091:416;;;:::o;26517:1261::-;27000:3;27026:148;27170:3;27026:148;:::i;:::-;27019:155;;27195:95;27286:3;27277:6;27195:95;:::i;:::-;27188:102;;27311:148;27455:3;27311:148;:::i;:::-;27304:155;;27480:95;27571:3;27562:6;27480:95;:::i;:::-;27473:102;;27596:148;27740:3;27596:148;:::i;:::-;27589:155;;27765:3;27758:10;;26517:1261;;;;;:::o

Swarm Source

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