ETH Price: $2,605.28 (+1.17%)

Token

Pixelsoccer (PIXELSOCCER)
 

Overview

Max Total Supply

612 PIXELSOCCER

Holders

162

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 PIXELSOCCER
0x0000000000000000000000000000000000000000
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:
Pixelsoccer

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 5 of 6: Pixelsoccer.sol
//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721A.sol";

contract Pixelsoccer is Ownable, ERC721A, ReentrancyGuard {
    string private _tokenBaseURI = "https://ipfs.io/ipfs/QmVN6ULVipVGMF6qvovnT15UVviLL7KQYBGtB5hbfhTG4p/";

    constructor() ERC721A("Pixelsoccer", "PIXELSOCCER") {}

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

    function setBaseURI(string memory newURI) external onlyOwner {
        _tokenBaseURI = newURI;
    }

    function requireErrorKey(string memory key) internal pure returns (string memory){
        return string(abi.encodePacked('errorKey', key, 'errorKeyEnd'));
    }

    modifier checkOverflow(uint amount, uint value){
        require(amount + value >= amount, 'value can\'t overflow');
        _;
    }
    uint public startTime = block.timestamp;// + 5 minutes;

    function setStartTime(uint start) public onlyOwner {
        startTime = start;
    }

    uint public teamCurrentSupply = 232;

    uint public teamSoldSupply = 0;

    function setTeamCurrentSupply(uint count) public onlyOwner {
        teamCurrentSupply = count;
    }

    mapping(address => uint) public freeWhiteList;

    uint public freeCurrentSupply = 120;

    uint public freeSoldSupply = 0;

    function setFreeCurrentSupply(uint count) public onlyOwner {
        freeCurrentSupply = count;
    }

    uint public freeWhiteListPrice = 0 ether;

    uint public freeWhiteListStart = 1668654000;// 1668654000;
    uint public freeWhiteListEnd = 1668740400;// 1668740400;

    function setFreeWhiteListTime(uint start, uint end) public onlyOwner {
        freeWhiteListStart = start;
        freeWhiteListEnd = end;
    }

    event AddFreeWhiteList(address to, uint quota);

    function addFreeWhiteList(address[] memory addresses, uint[] memory tokenCounts) public onlyOwner returns (bool){
        for (uint i = 0; i < addresses.length; i++) {
            address to = addresses[i];
            uint tokenCount = tokenCounts[i];
            freeWhiteList[to] += tokenCount;
            emit AddFreeWhiteList(to, tokenCount);
        }
        return true;
    }

    mapping(address => uint) public payWhiteList;

    uint public payCurrentSupply = 4259;

    uint public paySoldSupply = 0;

    function setPayCurrentSupply(uint count) public onlyOwner {
        payCurrentSupply = count;
    }

    uint public payWhiteListPrice = 0.02 ether;

    function setPayWhiteListPrice(uint price) public onlyOwner {
        payWhiteListPrice = price;
    }

    uint public payWhiteListStart = 1668740400;// 1668740400;
    uint public payWhiteListEnd = 1668826800;// 1668826800;

    function setPayWhiteListTime(uint start, uint end) public onlyOwner {
        payWhiteListStart = start;
        payWhiteListEnd = end;
    }

    event AddPayWhiteList(address to, uint quota);

    function addPayWhiteList(address[] memory addresses, uint[] memory tokenCounts) public onlyOwner returns (bool){
        for (uint i = 0; i < addresses.length; i++) {
            address to = addresses[i];
            uint tokenCount = tokenCounts[i];
            payWhiteList[to] += tokenCount;
            emit AddPayWhiteList(to, tokenCount);
        }
        return true;
    }

    uint public publicPrice = 0.04 ether;

    uint public publicCurrentSupply = 1383;

    uint public publicSoldSupply = 0;

    function setPublicCurrentSupply(uint count) public onlyOwner {
        publicCurrentSupply = count;
    }

    function setPublicPrice(uint price) public onlyOwner {
        publicPrice = price;
    }

    uint public publicStart = 1668826800;// 1668826800;
    uint public publicEnd = 1668913200;//1668913200;

    function setPublicTime(uint start, uint end) public onlyOwner {
        publicStart = start;
        publicEnd = end;
    }

    function mint(address to, uint soldSupply, uint tokenCount) internal checkOverflow(soldSupply, tokenCount) {
        _safeMint(to, tokenCount);
    }

    function teamMint(address to, uint tokenCount) public onlyOwner {
        require(teamCurrentSupply > 0, requireErrorKey('Sold out'));
        require(teamCurrentSupply >= tokenCount, requireErrorKey('Remaining insufficient'));
        teamCurrentSupply -= tokenCount;
        teamSoldSupply += tokenCount;
        mint(to, teamSoldSupply, tokenCount);
    }

    function userMint(uint tokenCount) external payable {
        uint currentTime = block.timestamp;
        bool isSoldOut = currentTime > publicEnd;
        require(!isSoldOut, requireErrorKey('Sold out'));
        require(tokenCount > 0, requireErrorKey('Quantity cannot be 0'));
        bool isFree = currentTime >= freeWhiteListStart && currentTime <= freeWhiteListEnd;
        bool isPay = currentTime >= payWhiteListStart && currentTime <= payWhiteListEnd;
        bool isPublic = currentTime >= publicStart && !isSoldOut;
        require(isFree || isPay || isPublic, requireErrorKey('Not on sale'));
        uint cost = tokenCount * (isPublic ? publicPrice : (isFree ? freeWhiteListPrice : payWhiteListPrice));
        uint totalPrice = msg.value;
        require(cost <= totalPrice, requireErrorKey('Insufficient fees'));
        address sender = msg.sender;

        if (cost < totalPrice)
            payable(sender).transfer(totalPrice - cost);
        if (cost > 0)
            payable(owner()).transfer(cost);
        require(isPublic || (!isPublic && (isFree ? freeWhiteList : payWhiteList)[sender] >= tokenCount), requireErrorKey('Maximum number of purchases exceeded!'));
        if (!isPublic)
            (isFree ? freeWhiteList : payWhiteList)[sender] -= tokenCount;
        if (isPublic) {
            require(publicCurrentSupply > 0, requireErrorKey('Sold out'));
            require(publicCurrentSupply >= tokenCount, requireErrorKey('Remaining insufficient'));
            publicCurrentSupply -= tokenCount;
            publicSoldSupply += tokenCount;
            mint(sender, publicSoldSupply, tokenCount);
        } else if (isFree) {
            require(freeCurrentSupply > 0, requireErrorKey('Sold out'));
            require(freeCurrentSupply >= tokenCount, requireErrorKey('Remaining insufficient'));
            freeCurrentSupply -= tokenCount;
            freeSoldSupply += tokenCount;
            mint(sender, freeSoldSupply, tokenCount);
        } else {
            require(payCurrentSupply > 0, requireErrorKey('Sold out'));
            require(payCurrentSupply >= tokenCount, requireErrorKey('Remaining insufficient'));
            payCurrentSupply -= tokenCount;
            paySoldSupply += tokenCount;
            mint(sender, paySoldSupply, tokenCount);
        }
    }
}

File 1 of 6: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 2 of 6: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

        uint256 tokenId = startTokenId;
        uint256 end = startTokenId + quantity;
        do {
            emit Transfer(address(0), to, tokenId++);
        } while (tokenId < end);

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

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

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

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

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

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

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedAddress(uint256 tokenId)
    private
    view
    returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        mapping(uint256 => address) storage tokenApprovalsPtr = _tokenApprovals;
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId]`.
        assembly {
        // Compute the slot.
            mstore(0x00, tokenId)
            mstore(0x20, tokenApprovalsPtr.slot)
            approvedAddressSlot := keccak256(0x00, 0x40)
        // Load the slot's value from storage.
            approvedAddress := sload(approvedAddressSlot)
        }
    }

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

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

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = address(uint160(prevOwnershipPacked));

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 6: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.1.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Emitted when tokens in `fromTokenId` to `toTokenId` (inclusive) is transferred from `from` to `to`,
     * as defined in the ERC2309 standard. See `_mintERC2309` for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 4 of 6: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 6 of 6: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        _nonReentrantBefore();
        _;
        _nonReentrantAfter();
    }

    function _nonReentrantBefore() private {
        // On the first call to nonReentrant, _status will be _NOT_ENTERED
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;
    }

    function _nonReentrantAfter() private {
        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"quota","type":"uint256"}],"name":"AddFreeWhiteList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"quota","type":"uint256"}],"name":"AddPayWhiteList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"tokenCounts","type":"uint256[]"}],"name":"addFreeWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"tokenCounts","type":"uint256[]"}],"name":"addPayWhiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"freeCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeSoldSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWhiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeWhiteListEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeWhiteListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeWhiteListStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paySoldSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"payWhiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payWhiteListEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payWhiteListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"payWhiteListStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSoldSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setFreeCurrentSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"setFreeWhiteListTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setPayCurrentSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPayWhiteListPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"setPayWhiteListTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setPublicCurrentSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"setPublicTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"start","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"name":"setTeamCurrentSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[],"name":"teamCurrentSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenCount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"teamSoldSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenCount","type":"uint256"}],"name":"userMint","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526040518060800160405280604481526020016200449f60449139600a90816200002e9190620004db565b5042600b5560e8600c556000600d556078600f5560006010556000601155636375a3b0601255636376f5306013556110a3601555600060165566470de4df820000601755636376f53060185563637846b0601955668e1bc9bf040000601a55610567601b556000601c5563637846b0601d556363799830601e55348015620000b557600080fd5b506040518060400160405280600b81526020017f506978656c736f636365720000000000000000000000000000000000000000008152506040518060400160405280600b81526020017f504958454c534f4343455200000000000000000000000000000000000000000081525062000142620001366200018c60201b60201c565b6200019460201b60201c565b8160039081620001539190620004db565b508060049081620001659190620004db565b50620001766200025860201b60201c565b60018190555050506001600981905550620005c2565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006001905090565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002e357607f821691505b602082108103620002f957620002f86200029b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003637fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000324565b6200036f868362000324565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003bc620003b6620003b08462000387565b62000391565b62000387565b9050919050565b6000819050919050565b620003d8836200039b565b620003f0620003e782620003c3565b84845462000331565b825550505050565b600090565b62000407620003f8565b62000414818484620003cd565b505050565b5b818110156200043c5762000430600082620003fd565b6001810190506200041a565b5050565b601f8211156200048b576200045581620002ff565b620004608462000314565b8101602085101562000470578190505b620004886200047f8562000314565b83018262000419565b50505b505050565b600082821c905092915050565b6000620004b06000198460080262000490565b1980831691505092915050565b6000620004cb83836200049d565b9150826002028217905092915050565b620004e68262000261565b67ffffffffffffffff8111156200050257620005016200026c565b5b6200050e8254620002ca565b6200051b82828562000440565b600060209050601f8311600181146200055357600084156200053e578287015190505b6200054a8582620004bd565b865550620005ba565b601f1984166200056386620002ff565b60005b828110156200058d5784890151825560018201915060208501945060208101905062000566565b86831015620005ad5784890151620005a9601f8916826200049d565b8355505b6001600288020188555050505b505050505050565b613ecd80620005d26000396000f3fe6080604052600436106102ff5760003560e01c80638274df6a11610190578063ba280e42116100dc578063cfdaae4411610095578063e7c898c91161006f578063e7c898c914610b5f578063e985e9c514610b9c578063f2fde38b14610bd9578063ff74488114610c02576102ff565b8063cfdaae4414610ade578063d51b9ecf14610b09578063e55edfe214610b34576102ff565b8063ba280e42146109c0578063c161279f146109e9578063c36154d014610a12578063c627525514610a3b578063c87b56dd14610a64578063cf183f4c14610aa1576102ff565b8063a352736911610149578063a945bf8011610123578063a945bf8014610918578063add5a4fa14610943578063b4a391221461096c578063b88d4fde14610997576102ff565b8063a352736914610885578063a5b48ff2146108b0578063a5f4c6ff146108ed576102ff565b80638274df6a1461079657806383c5c389146107c15780638b3dcabb146107ea5780638da5cb5b1461080657806395d89b4114610831578063a22cb4651461085c576102ff565b806342faedb91161024f5780635a11b0261161020857806370a08231116101e257806370a08231146106ee578063715018a61461072b578063753233741461074257806378e979251461076b576102ff565b80635a11b0261461064957806360746b6e146106745780636352211e146106b1576102ff565b806342faedb91461054b57806345f2b299146105745780634c06a64d1461059f5780634d8cf80f146105ca578063503a3b8a146105f557806355f804b314610620576102ff565b80631294f6e1116102bc57806323b872dd1161029657806323b872dd146104a75780633e0a322d146104d05780633fd73170146104f957806342842e0e14610522576102ff565b80631294f6e1146104285780631780ae081461045157806318160ddd1461047c576102ff565b806301ffc9a71461030457806305d374601461034157806306fdde031461036c578063081812fc14610397578063095ea7b3146103d45780630acae9a7146103fd575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190612e2e565b610c2d565b6040516103389190612e76565b60405180910390f35b34801561034d57600080fd5b50610356610cbf565b6040516103639190612eaa565b60405180910390f35b34801561037857600080fd5b50610381610cc5565b60405161038e9190612f55565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190612fa3565b610d57565b6040516103cb9190613011565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613058565b610dd3565b005b34801561040957600080fd5b50610412610f14565b60405161041f9190612eaa565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190612fa3565b610f1a565b005b34801561045d57600080fd5b50610466610f2c565b6040516104739190612eaa565b60405180910390f35b34801561048857600080fd5b50610491610f32565b60405161049e9190612eaa565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613098565b610f49565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612fa3565b61126b565b005b34801561050557600080fd5b50610520600480360381019061051b9190612fa3565b61127d565b005b34801561052e57600080fd5b5061054960048036038101906105449190613098565b61128f565b005b34801561055757600080fd5b50610572600480360381019061056d91906130eb565b6112af565b005b34801561058057600080fd5b506105896112c9565b6040516105969190612eaa565b60405180910390f35b3480156105ab57600080fd5b506105b46112cf565b6040516105c19190612eaa565b60405180910390f35b3480156105d657600080fd5b506105df6112d5565b6040516105ec9190612eaa565b60405180910390f35b34801561060157600080fd5b5061060a6112db565b6040516106179190612eaa565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190613260565b6112e1565b005b34801561065557600080fd5b5061065e6112fc565b60405161066b9190612eaa565b60405180910390f35b34801561068057600080fd5b5061069b600480360381019061069691906132a9565b611302565b6040516106a89190612eaa565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190612fa3565b61131a565b6040516106e59190613011565b60405180910390f35b3480156106fa57600080fd5b50610715600480360381019061071091906132a9565b61132c565b6040516107229190612eaa565b60405180910390f35b34801561073757600080fd5b506107406113e4565b005b34801561074e57600080fd5b5061076960048036038101906107649190612fa3565b6113f8565b005b34801561077757600080fd5b5061078061140a565b60405161078d9190612eaa565b60405180910390f35b3480156107a257600080fd5b506107ab611410565b6040516107b89190612eaa565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e391906130eb565b611416565b005b61080460048036038101906107ff9190612fa3565b611430565b005b34801561081257600080fd5b5061081b611cba565b6040516108289190613011565b60405180910390f35b34801561083d57600080fd5b50610846611ce3565b6040516108539190612f55565b60405180910390f35b34801561086857600080fd5b50610883600480360381019061087e9190613302565b611d75565b005b34801561089157600080fd5b5061089a611eec565b6040516108a79190612eaa565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d291906134cd565b611ef2565b6040516108e49190612e76565b60405180910390f35b3480156108f957600080fd5b50610902611ff5565b60405161090f9190612eaa565b60405180910390f35b34801561092457600080fd5b5061092d611ffb565b60405161093a9190612eaa565b60405180910390f35b34801561094f57600080fd5b5061096a60048036038101906109659190613058565b612001565b005b34801561097857600080fd5b50610981612158565b60405161098e9190612eaa565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b991906135e6565b61215e565b005b3480156109cc57600080fd5b506109e760048036038101906109e29190612fa3565b6121d1565b005b3480156109f557600080fd5b50610a106004803603810190610a0b91906130eb565b6121e3565b005b348015610a1e57600080fd5b50610a396004803603810190610a349190612fa3565b6121fd565b005b348015610a4757600080fd5b50610a626004803603810190610a5d9190612fa3565b61220f565b005b348015610a7057600080fd5b50610a8b6004803603810190610a869190612fa3565b612221565b604051610a989190612f55565b60405180910390f35b348015610aad57600080fd5b50610ac86004803603810190610ac391906132a9565b6122bf565b604051610ad59190612eaa565b60405180910390f35b348015610aea57600080fd5b50610af36122d7565b604051610b009190612eaa565b60405180910390f35b348015610b1557600080fd5b50610b1e6122dd565b604051610b2b9190612eaa565b60405180910390f35b348015610b4057600080fd5b50610b496122e3565b604051610b569190612eaa565b60405180910390f35b348015610b6b57600080fd5b50610b866004803603810190610b8191906134cd565b6122e9565b604051610b939190612e76565b60405180910390f35b348015610ba857600080fd5b50610bc36004803603810190610bbe9190613669565b6123ec565b604051610bd09190612e76565b60405180910390f35b348015610be557600080fd5b50610c006004803603810190610bfb91906132a9565b612480565b005b348015610c0e57600080fd5b50610c17612503565b604051610c249190612eaa565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c8857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cb85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60155481565b606060038054610cd4906136d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d00906136d8565b8015610d4d5780601f10610d2257610100808354040283529160200191610d4d565b820191906000526020600020905b815481529060010190602001808311610d3057829003601f168201915b5050505050905090565b6000610d6282612509565b610d98576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dde8261131a565b90508073ffffffffffffffffffffffffffffffffffffffff16610dff612568565b73ffffffffffffffffffffffffffffffffffffffff1614610e6257610e2b81610e26612568565b6123ec565b610e61576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601e5481565b610f22612570565b80601b8190555050565b60195481565b6000610f3c6125ee565b6002546001540303905090565b6000610f54826125f7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fbb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fc7846126c3565b91509150610fdd8187610fd8612568565b6126e5565b61102957610ff286610fed612568565b6123ec565b611028576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361108f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61109c8686866001612729565b80156110a757600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506111758561115188888761272f565b7c020000000000000000000000000000000000000000000000000000000017612757565b600560008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111fb57600060018501905060006005600083815260200190815260200160002054036111f95760015481146111f8578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112638686866001612782565b505050505050565b611273612570565b80600b8190555050565b611285612570565b80600c8190555050565b6112aa8383836040518060200160405280600081525061215e565b505050565b6112b7612570565b81601281905550806013819055505050565b600f5481565b601b5481565b600c5481565b60115481565b6112e9612570565b80600a90816112f891906138b5565b5050565b60125481565b60146020528060005260406000206000915090505481565b6000611325826125f7565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611393576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113ec612570565b6113f66000612788565b565b611400612570565b8060158190555050565b600b5481565b601c5481565b61141e612570565b81601d8190555080601e819055505050565b60004290506000601e5482119050801561147e6040518060400160405280600881526020017f536f6c64206f757400000000000000000000000000000000000000000000000081525061284c565b906114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b69190612f55565b60405180910390fd5b50600083116115026040518060400160405280601481526020017f5175616e746974792063616e6e6f74206265203000000000000000000000000081525061284c565b90611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a9190612f55565b60405180910390fd5b506000601254831015801561155a57506013548311155b90506000601854841015801561157257506019548411155b90506000601d548510158015611586575083155b905082806115915750815b806115995750805b6115d76040518060400160405280600b81526020017f4e6f74206f6e2073616c6500000000000000000000000000000000000000000081525061284c565b90611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f9190612f55565b60405180910390fd5b50600081611636578361162d57601754611631565b6011545b61163a565b601a545b8761164591906139b6565b905060003490508082111561168e6040518060400160405280601181526020017f496e73756666696369656e74206665657300000000000000000000000000000081525061284c565b906116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c69190612f55565b60405180910390fd5b50600033905081831015611730578073ffffffffffffffffffffffffffffffffffffffff166108fc848461170391906139f8565b9081150290604051600060405180830381858888f1935050505015801561172e573d6000803e3d6000fd5b505b600083111561178857611741611cba565b73ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015611786573d6000803e3d6000fd5b505b83806117ea5750831580156117e9575088866117a55760146117a8565b600e5b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b5b61180b604051806060016040528060258152602001613e736025913961284c565b9061184c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118439190612f55565b60405180910390fd5b50836118b657888661185f576014611862565b600e5b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118ae91906139f8565b925050819055505b8315611a0c576000601b54116119006040518060400160405280600881526020017f536f6c64206f757400000000000000000000000000000000000000000000000081525061284c565b90611941576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119389190612f55565b60405180910390fd5b5088601b5410156119866040518060400160405280601681526020017f52656d61696e696e6720696e73756666696369656e740000000000000000000081525061284c565b906119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be9190612f55565b60405180910390fd5b5088601b60008282546119da91906139f8565b9250508190555088601c60008282546119f39190613a2c565b92505081905550611a0781601c548b612875565b611caf565b8515611b62576000600f5411611a566040518060400160405280600881526020017f536f6c64206f757400000000000000000000000000000000000000000000000081525061284c565b90611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e9190612f55565b60405180910390fd5b5088600f541015611adc6040518060400160405280601681526020017f52656d61696e696e6720696e73756666696369656e740000000000000000000081525061284c565b90611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b149190612f55565b60405180910390fd5b5088600f6000828254611b3091906139f8565b925050819055508860106000828254611b499190613a2c565b92505081905550611b5d816010548b612875565b611cae565b600060155411611ba66040518060400160405280600881526020017f536f6c64206f757400000000000000000000000000000000000000000000000081525061284c565b90611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde9190612f55565b60405180910390fd5b50886015541015611c2c6040518060400160405280601681526020017f52656d61696e696e6720696e73756666696369656e740000000000000000000081525061284c565b90611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c649190612f55565b60405180910390fd5b508860156000828254611c8091906139f8565b925050819055508860166000828254611c999190613a2c565b92505081905550611cad816016548b612875565b5b5b505050505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611cf2906136d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1e906136d8565b8015611d6b5780601f10611d4057610100808354040283529160200191611d6b565b820191906000526020600020905b815481529060010190602001808311611d4e57829003601f168201915b5050505050905090565b611d7d612568565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611de1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611dee612568565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e9b612568565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ee09190612e76565b60405180910390a35050565b60105481565b6000611efc612570565b60005b8351811015611fea576000848281518110611f1d57611f1c613a60565b5b602002602001015190506000848381518110611f3c57611f3b613a60565b5b6020026020010151905080601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f959190613a2c565b925050819055507f35c98eff5c3d0da3eed8eb3d84e23b91bd7d2876b7f324362551981990fd16b18282604051611fcd929190613a8f565b60405180910390a150508080611fe290613ab8565b915050611eff565b506001905092915050565b601d5481565b601a5481565b612009612570565b6000600c541161204d6040518060400160405280600881526020017f536f6c64206f757400000000000000000000000000000000000000000000000081525061284c565b9061208e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120859190612f55565b60405180910390fd5b5080600c5410156120d36040518060400160405280601681526020017f52656d61696e696e6720696e73756666696369656e740000000000000000000081525061284c565b90612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b9190612f55565b60405180910390fd5b5080600c600082825461212791906139f8565b9250508190555080600d60008282546121409190613a2c565b9250508190555061215482600d5483612875565b5050565b60165481565b612169848484610f49565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121cb57612194848484846128d6565b6121ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6121d9612570565b80600f8190555050565b6121eb612570565b81601881905550806019819055505050565b612205612570565b8060178190555050565b612217612570565b80601a8190555050565b606061222c82612509565b612262576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061226c612a26565b9050600081510361228c57604051806020016040528060008152506122b7565b8061229684612ab8565b6040516020016122a7929190613b3c565b6040516020818303038152906040525b915050919050565b600e6020528060005260406000206000915090505481565b60135481565b60185481565b600d5481565b60006122f3612570565b60005b83518110156123e157600084828151811061231457612313613a60565b5b60200260200101519050600084838151811061233357612332613a60565b5b6020026020010151905080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461238c9190613a2c565b925050819055507ff3510be6ab52120fbf44cd6dc2761ba67fb9b582f581a581b92f6662f259d13c82826040516123c4929190613a8f565b60405180910390a1505080806123d990613ab8565b9150506122f6565b506001905092915050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612488612570565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee90613bd2565b60405180910390fd5b61250081612788565b50565b60175481565b6000816125146125ee565b11158015612523575060015482105b8015612561575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b612578612b12565b73ffffffffffffffffffffffffffffffffffffffff16612596611cba565b73ffffffffffffffffffffffffffffffffffffffff16146125ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e390613c3e565b60405180910390fd5b565b60006001905090565b600080829050806126066125ee565b1161268c5760015481101561268b5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612689575b6000810361267f576005600083600190039350838152602001908152602001600020549050612655565b80925050506126be565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612746868684612b1a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60608160405160200161285f9190613cf6565b6040516020818303038152906040529050919050565b81818181836128849190613a2c565b10156128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc90613d6f565b60405180910390fd5b6128cf8584612b23565b5050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128fc612568565b8786866040518563ffffffff1660e01b815260040161291e9493929190613de4565b6020604051808303816000875af192505050801561295a57506040513d601f19601f820116820180604052508101906129579190613e45565b60015b6129d3573d806000811461298a576040519150601f19603f3d011682016040523d82523d6000602084013e61298f565b606091505b5060008151036129cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612a35906136d8565b80601f0160208091040260200160405190810160405280929190818152602001828054612a61906136d8565b8015612aae5780601f10612a8357610100808354040283529160200191612aae565b820191906000526020600020905b815481529060010190602001808311612a9157829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612afe57600183039250600a81066030018353600a81049050612ade565b508181036020830392508083525050919050565b600033905090565b60009392505050565b612b3d828260405180602001604052806000815250612b41565b5050565b612b4b8383612bdf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612bda5760006001549050600083820390505b612b8c60008683806001019450866128d6565b612bc2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b79578160015414612bd757600080fd5b50505b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612c4c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612c86576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c936000848385612729565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612d0a83612cfb600086600061272f565b612d0485612db2565b17612757565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612d2e57806001819055505050612dad6000848385612782565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e0b81612dd6565b8114612e1657600080fd5b50565b600081359050612e2881612e02565b92915050565b600060208284031215612e4457612e43612dcc565b5b6000612e5284828501612e19565b91505092915050565b60008115159050919050565b612e7081612e5b565b82525050565b6000602082019050612e8b6000830184612e67565b92915050565b6000819050919050565b612ea481612e91565b82525050565b6000602082019050612ebf6000830184612e9b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612eff578082015181840152602081019050612ee4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f2782612ec5565b612f318185612ed0565b9350612f41818560208601612ee1565b612f4a81612f0b565b840191505092915050565b60006020820190508181036000830152612f6f8184612f1c565b905092915050565b612f8081612e91565b8114612f8b57600080fd5b50565b600081359050612f9d81612f77565b92915050565b600060208284031215612fb957612fb8612dcc565b5b6000612fc784828501612f8e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ffb82612fd0565b9050919050565b61300b81612ff0565b82525050565b60006020820190506130266000830184613002565b92915050565b61303581612ff0565b811461304057600080fd5b50565b6000813590506130528161302c565b92915050565b6000806040838503121561306f5761306e612dcc565b5b600061307d85828601613043565b925050602061308e85828601612f8e565b9150509250929050565b6000806000606084860312156130b1576130b0612dcc565b5b60006130bf86828701613043565b93505060206130d086828701613043565b92505060406130e186828701612f8e565b9150509250925092565b6000806040838503121561310257613101612dcc565b5b600061311085828601612f8e565b925050602061312185828601612f8e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61316d82612f0b565b810181811067ffffffffffffffff8211171561318c5761318b613135565b5b80604052505050565b600061319f612dc2565b90506131ab8282613164565b919050565b600067ffffffffffffffff8211156131cb576131ca613135565b5b6131d482612f0b565b9050602081019050919050565b82818337600083830152505050565b60006132036131fe846131b0565b613195565b90508281526020810184848401111561321f5761321e613130565b5b61322a8482856131e1565b509392505050565b600082601f8301126132475761324661312b565b5b81356132578482602086016131f0565b91505092915050565b60006020828403121561327657613275612dcc565b5b600082013567ffffffffffffffff81111561329457613293612dd1565b5b6132a084828501613232565b91505092915050565b6000602082840312156132bf576132be612dcc565b5b60006132cd84828501613043565b91505092915050565b6132df81612e5b565b81146132ea57600080fd5b50565b6000813590506132fc816132d6565b92915050565b6000806040838503121561331957613318612dcc565b5b600061332785828601613043565b9250506020613338858286016132ed565b9150509250929050565b600067ffffffffffffffff82111561335d5761335c613135565b5b602082029050602081019050919050565b600080fd5b600061338661338184613342565b613195565b905080838252602082019050602084028301858111156133a9576133a861336e565b5b835b818110156133d257806133be8882613043565b8452602084019350506020810190506133ab565b5050509392505050565b600082601f8301126133f1576133f061312b565b5b8135613401848260208601613373565b91505092915050565b600067ffffffffffffffff82111561342557613424613135565b5b602082029050602081019050919050565b60006134496134448461340a565b613195565b9050808382526020820190506020840283018581111561346c5761346b61336e565b5b835b8181101561349557806134818882612f8e565b84526020840193505060208101905061346e565b5050509392505050565b600082601f8301126134b4576134b361312b565b5b81356134c4848260208601613436565b91505092915050565b600080604083850312156134e4576134e3612dcc565b5b600083013567ffffffffffffffff81111561350257613501612dd1565b5b61350e858286016133dc565b925050602083013567ffffffffffffffff81111561352f5761352e612dd1565b5b61353b8582860161349f565b9150509250929050565b600067ffffffffffffffff8211156135605761355f613135565b5b61356982612f0b565b9050602081019050919050565b600061358961358484613545565b613195565b9050828152602081018484840111156135a5576135a4613130565b5b6135b08482856131e1565b509392505050565b600082601f8301126135cd576135cc61312b565b5b81356135dd848260208601613576565b91505092915050565b60008060008060808587031215613600576135ff612dcc565b5b600061360e87828801613043565b945050602061361f87828801613043565b935050604061363087828801612f8e565b925050606085013567ffffffffffffffff81111561365157613650612dd1565b5b61365d878288016135b8565b91505092959194509250565b600080604083850312156136805761367f612dcc565b5b600061368e85828601613043565b925050602061369f85828601613043565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136f057607f821691505b602082108103613703576137026136a9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261376b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261372e565b613775868361372e565b95508019841693508086168417925050509392505050565b6000819050919050565b60006137b26137ad6137a884612e91565b61378d565b612e91565b9050919050565b6000819050919050565b6137cc83613797565b6137e06137d8826137b9565b84845461373b565b825550505050565b600090565b6137f56137e8565b6138008184846137c3565b505050565b5b81811015613824576138196000826137ed565b600181019050613806565b5050565b601f8211156138695761383a81613709565b6138438461371e565b81016020851015613852578190505b61386661385e8561371e565b830182613805565b50505b505050565b600082821c905092915050565b600061388c6000198460080261386e565b1980831691505092915050565b60006138a5838361387b565b9150826002028217905092915050565b6138be82612ec5565b67ffffffffffffffff8111156138d7576138d6613135565b5b6138e182546136d8565b6138ec828285613828565b600060209050601f83116001811461391f576000841561390d578287015190505b6139178582613899565b86555061397f565b601f19841661392d86613709565b60005b8281101561395557848901518255600182019150602085019450602081019050613930565b86831015613972578489015161396e601f89168261387b565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139c182612e91565b91506139cc83612e91565b92508282026139da81612e91565b915082820484148315176139f1576139f0613987565b5b5092915050565b6000613a0382612e91565b9150613a0e83612e91565b9250828203905081811115613a2657613a25613987565b5b92915050565b6000613a3782612e91565b9150613a4283612e91565b9250828201905080821115613a5a57613a59613987565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050613aa46000830185613002565b613ab16020830184612e9b565b9392505050565b6000613ac382612e91565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613af557613af4613987565b5b600182019050919050565b600081905092915050565b6000613b1682612ec5565b613b208185613b00565b9350613b30818560208601612ee1565b80840191505092915050565b6000613b488285613b0b565b9150613b548284613b0b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bbc602683612ed0565b9150613bc782613b60565b604082019050919050565b60006020820190508181036000830152613beb81613baf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c28602083612ed0565b9150613c3382613bf2565b602082019050919050565b60006020820190508181036000830152613c5781613c1b565b9050919050565b7f6572726f724b6579000000000000000000000000000000000000000000000000600082015250565b6000613c94600883613b00565b9150613c9f82613c5e565b600882019050919050565b7f6572726f724b6579456e64000000000000000000000000000000000000000000600082015250565b6000613ce0600b83613b00565b9150613ceb82613caa565b600b82019050919050565b6000613d0182613c87565b9150613d0d8284613b0b565b9150613d1882613cd3565b915081905092915050565b7f76616c75652063616e2774206f766572666c6f77000000000000000000000000600082015250565b6000613d59601483612ed0565b9150613d6482613d23565b602082019050919050565b60006020820190508181036000830152613d8881613d4c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613db682613d8f565b613dc08185613d9a565b9350613dd0818560208601612ee1565b613dd981612f0b565b840191505092915050565b6000608082019050613df96000830187613002565b613e066020830186613002565b613e136040830185612e9b565b8181036060830152613e258184613dab565b905095945050505050565b600081519050613e3f81612e02565b92915050565b600060208284031215613e5b57613e5a612dcc565b5b6000613e6984828501613e30565b9150509291505056fe4d6178696d756d206e756d626572206f662070757263686173657320657863656564656421a26469706673582212200f671c925581984bbf8ba2dea60ebba29c94725d228936b28c20ed112bb3cbaa64736f6c6343000811003368747470733a2f2f697066732e696f2f697066732f516d564e36554c56697056474d463671766f766e543135555676694c4c374b5159424774423568626668544734702f

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c80638274df6a11610190578063ba280e42116100dc578063cfdaae4411610095578063e7c898c91161006f578063e7c898c914610b5f578063e985e9c514610b9c578063f2fde38b14610bd9578063ff74488114610c02576102ff565b8063cfdaae4414610ade578063d51b9ecf14610b09578063e55edfe214610b34576102ff565b8063ba280e42146109c0578063c161279f146109e9578063c36154d014610a12578063c627525514610a3b578063c87b56dd14610a64578063cf183f4c14610aa1576102ff565b8063a352736911610149578063a945bf8011610123578063a945bf8014610918578063add5a4fa14610943578063b4a391221461096c578063b88d4fde14610997576102ff565b8063a352736914610885578063a5b48ff2146108b0578063a5f4c6ff146108ed576102ff565b80638274df6a1461079657806383c5c389146107c15780638b3dcabb146107ea5780638da5cb5b1461080657806395d89b4114610831578063a22cb4651461085c576102ff565b806342faedb91161024f5780635a11b0261161020857806370a08231116101e257806370a08231146106ee578063715018a61461072b578063753233741461074257806378e979251461076b576102ff565b80635a11b0261461064957806360746b6e146106745780636352211e146106b1576102ff565b806342faedb91461054b57806345f2b299146105745780634c06a64d1461059f5780634d8cf80f146105ca578063503a3b8a146105f557806355f804b314610620576102ff565b80631294f6e1116102bc57806323b872dd1161029657806323b872dd146104a75780633e0a322d146104d05780633fd73170146104f957806342842e0e14610522576102ff565b80631294f6e1146104285780631780ae081461045157806318160ddd1461047c576102ff565b806301ffc9a71461030457806305d374601461034157806306fdde031461036c578063081812fc14610397578063095ea7b3146103d45780630acae9a7146103fd575b600080fd5b34801561031057600080fd5b5061032b60048036038101906103269190612e2e565b610c2d565b6040516103389190612e76565b60405180910390f35b34801561034d57600080fd5b50610356610cbf565b6040516103639190612eaa565b60405180910390f35b34801561037857600080fd5b50610381610cc5565b60405161038e9190612f55565b60405180910390f35b3480156103a357600080fd5b506103be60048036038101906103b99190612fa3565b610d57565b6040516103cb9190613011565b60405180910390f35b3480156103e057600080fd5b506103fb60048036038101906103f69190613058565b610dd3565b005b34801561040957600080fd5b50610412610f14565b60405161041f9190612eaa565b60405180910390f35b34801561043457600080fd5b5061044f600480360381019061044a9190612fa3565b610f1a565b005b34801561045d57600080fd5b50610466610f2c565b6040516104739190612eaa565b60405180910390f35b34801561048857600080fd5b50610491610f32565b60405161049e9190612eaa565b60405180910390f35b3480156104b357600080fd5b506104ce60048036038101906104c99190613098565b610f49565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190612fa3565b61126b565b005b34801561050557600080fd5b50610520600480360381019061051b9190612fa3565b61127d565b005b34801561052e57600080fd5b5061054960048036038101906105449190613098565b61128f565b005b34801561055757600080fd5b50610572600480360381019061056d91906130eb565b6112af565b005b34801561058057600080fd5b506105896112c9565b6040516105969190612eaa565b60405180910390f35b3480156105ab57600080fd5b506105b46112cf565b6040516105c19190612eaa565b60405180910390f35b3480156105d657600080fd5b506105df6112d5565b6040516105ec9190612eaa565b60405180910390f35b34801561060157600080fd5b5061060a6112db565b6040516106179190612eaa565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190613260565b6112e1565b005b34801561065557600080fd5b5061065e6112fc565b60405161066b9190612eaa565b60405180910390f35b34801561068057600080fd5b5061069b600480360381019061069691906132a9565b611302565b6040516106a89190612eaa565b60405180910390f35b3480156106bd57600080fd5b506106d860048036038101906106d39190612fa3565b61131a565b6040516106e59190613011565b60405180910390f35b3480156106fa57600080fd5b50610715600480360381019061071091906132a9565b61132c565b6040516107229190612eaa565b60405180910390f35b34801561073757600080fd5b506107406113e4565b005b34801561074e57600080fd5b5061076960048036038101906107649190612fa3565b6113f8565b005b34801561077757600080fd5b5061078061140a565b60405161078d9190612eaa565b60405180910390f35b3480156107a257600080fd5b506107ab611410565b6040516107b89190612eaa565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e391906130eb565b611416565b005b61080460048036038101906107ff9190612fa3565b611430565b005b34801561081257600080fd5b5061081b611cba565b6040516108289190613011565b60405180910390f35b34801561083d57600080fd5b50610846611ce3565b6040516108539190612f55565b60405180910390f35b34801561086857600080fd5b50610883600480360381019061087e9190613302565b611d75565b005b34801561089157600080fd5b5061089a611eec565b6040516108a79190612eaa565b60405180910390f35b3480156108bc57600080fd5b506108d760048036038101906108d291906134cd565b611ef2565b6040516108e49190612e76565b60405180910390f35b3480156108f957600080fd5b50610902611ff5565b60405161090f9190612eaa565b60405180910390f35b34801561092457600080fd5b5061092d611ffb565b60405161093a9190612eaa565b60405180910390f35b34801561094f57600080fd5b5061096a60048036038101906109659190613058565b612001565b005b34801561097857600080fd5b50610981612158565b60405161098e9190612eaa565b60405180910390f35b3480156109a357600080fd5b506109be60048036038101906109b991906135e6565b61215e565b005b3480156109cc57600080fd5b506109e760048036038101906109e29190612fa3565b6121d1565b005b3480156109f557600080fd5b50610a106004803603810190610a0b91906130eb565b6121e3565b005b348015610a1e57600080fd5b50610a396004803603810190610a349190612fa3565b6121fd565b005b348015610a4757600080fd5b50610a626004803603810190610a5d9190612fa3565b61220f565b005b348015610a7057600080fd5b50610a8b6004803603810190610a869190612fa3565b612221565b604051610a989190612f55565b60405180910390f35b348015610aad57600080fd5b50610ac86004803603810190610ac391906132a9565b6122bf565b604051610ad59190612eaa565b60405180910390f35b348015610aea57600080fd5b50610af36122d7565b604051610b009190612eaa565b60405180910390f35b348015610b1557600080fd5b50610b1e6122dd565b604051610b2b9190612eaa565b60405180910390f35b348015610b4057600080fd5b50610b496122e3565b604051610b569190612eaa565b60405180910390f35b348015610b6b57600080fd5b50610b866004803603810190610b8191906134cd565b6122e9565b604051610b939190612e76565b60405180910390f35b348015610ba857600080fd5b50610bc36004803603810190610bbe9190613669565b6123ec565b604051610bd09190612e76565b60405180910390f35b348015610be557600080fd5b50610c006004803603810190610bfb91906132a9565b612480565b005b348015610c0e57600080fd5b50610c17612503565b604051610c249190612eaa565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c8857506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cb85750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60155481565b606060038054610cd4906136d8565b80601f0160208091040260200160405190810160405280929190818152602001828054610d00906136d8565b8015610d4d5780601f10610d2257610100808354040283529160200191610d4d565b820191906000526020600020905b815481529060010190602001808311610d3057829003601f168201915b5050505050905090565b6000610d6282612509565b610d98576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610dde8261131a565b90508073ffffffffffffffffffffffffffffffffffffffff16610dff612568565b73ffffffffffffffffffffffffffffffffffffffff1614610e6257610e2b81610e26612568565b6123ec565b610e61576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b601e5481565b610f22612570565b80601b8190555050565b60195481565b6000610f3c6125ee565b6002546001540303905090565b6000610f54826125f7565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610fbb576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610fc7846126c3565b91509150610fdd8187610fd8612568565b6126e5565b61102957610ff286610fed612568565b6123ec565b611028576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361108f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61109c8686866001612729565b80156110a757600082555b600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055506111758561115188888761272f565b7c020000000000000000000000000000000000000000000000000000000017612757565b600560008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416036111fb57600060018501905060006005600083815260200190815260200160002054036111f95760015481146111f8578360056000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112638686866001612782565b505050505050565b611273612570565b80600b8190555050565b611285612570565b80600c8190555050565b6112aa8383836040518060200160405280600081525061215e565b505050565b6112b7612570565b81601281905550806013819055505050565b600f5481565b601b5481565b600c5481565b60115481565b6112e9612570565b80600a90816112f891906138b5565b5050565b60125481565b60146020528060005260406000206000915090505481565b6000611325826125f7565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611393576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113ec612570565b6113f66000612788565b565b611400612570565b8060158190555050565b600b5481565b601c5481565b61141e612570565b81601d8190555080601e819055505050565b60004290506000601e5482119050801561147e6040518060400160405280600881526020017f536f6c64206f757400000000000000000000000000000000000000000000000081525061284c565b906114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b69190612f55565b60405180910390fd5b50600083116115026040518060400160405280601481526020017f5175616e746974792063616e6e6f74206265203000000000000000000000000081525061284c565b90611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a9190612f55565b60405180910390fd5b506000601254831015801561155a57506013548311155b90506000601854841015801561157257506019548411155b90506000601d548510158015611586575083155b905082806115915750815b806115995750805b6115d76040518060400160405280600b81526020017f4e6f74206f6e2073616c6500000000000000000000000000000000000000000081525061284c565b90611618576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160f9190612f55565b60405180910390fd5b50600081611636578361162d57601754611631565b6011545b61163a565b601a545b8761164591906139b6565b905060003490508082111561168e6040518060400160405280601181526020017f496e73756666696369656e74206665657300000000000000000000000000000081525061284c565b906116cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c69190612f55565b60405180910390fd5b50600033905081831015611730578073ffffffffffffffffffffffffffffffffffffffff166108fc848461170391906139f8565b9081150290604051600060405180830381858888f1935050505015801561172e573d6000803e3d6000fd5b505b600083111561178857611741611cba565b73ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050158015611786573d6000803e3d6000fd5b505b83806117ea5750831580156117e9575088866117a55760146117a8565b600e5b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410155b5b61180b604051806060016040528060258152602001613e736025913961284c565b9061184c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118439190612f55565b60405180910390fd5b50836118b657888661185f576014611862565b600e5b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118ae91906139f8565b925050819055505b8315611a0c576000601b54116119006040518060400160405280600881526020017f536f6c64206f757400000000000000000000000000000000000000000000000081525061284c565b90611941576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119389190612f55565b60405180910390fd5b5088601b5410156119866040518060400160405280601681526020017f52656d61696e696e6720696e73756666696369656e740000000000000000000081525061284c565b906119c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119be9190612f55565b60405180910390fd5b5088601b60008282546119da91906139f8565b9250508190555088601c60008282546119f39190613a2c565b92505081905550611a0781601c548b612875565b611caf565b8515611b62576000600f5411611a566040518060400160405280600881526020017f536f6c64206f757400000000000000000000000000000000000000000000000081525061284c565b90611a97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8e9190612f55565b60405180910390fd5b5088600f541015611adc6040518060400160405280601681526020017f52656d61696e696e6720696e73756666696369656e740000000000000000000081525061284c565b90611b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b149190612f55565b60405180910390fd5b5088600f6000828254611b3091906139f8565b925050819055508860106000828254611b499190613a2c565b92505081905550611b5d816010548b612875565b611cae565b600060155411611ba66040518060400160405280600881526020017f536f6c64206f757400000000000000000000000000000000000000000000000081525061284c565b90611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde9190612f55565b60405180910390fd5b50886015541015611c2c6040518060400160405280601681526020017f52656d61696e696e6720696e73756666696369656e740000000000000000000081525061284c565b90611c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c649190612f55565b60405180910390fd5b508860156000828254611c8091906139f8565b925050819055508860166000828254611c999190613a2c565b92505081905550611cad816016548b612875565b5b5b505050505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054611cf2906136d8565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1e906136d8565b8015611d6b5780601f10611d4057610100808354040283529160200191611d6b565b820191906000526020600020905b815481529060010190602001808311611d4e57829003601f168201915b5050505050905090565b611d7d612568565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611de1576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060086000611dee612568565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e9b612568565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ee09190612e76565b60405180910390a35050565b60105481565b6000611efc612570565b60005b8351811015611fea576000848281518110611f1d57611f1c613a60565b5b602002602001015190506000848381518110611f3c57611f3b613a60565b5b6020026020010151905080601460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f959190613a2c565b925050819055507f35c98eff5c3d0da3eed8eb3d84e23b91bd7d2876b7f324362551981990fd16b18282604051611fcd929190613a8f565b60405180910390a150508080611fe290613ab8565b915050611eff565b506001905092915050565b601d5481565b601a5481565b612009612570565b6000600c541161204d6040518060400160405280600881526020017f536f6c64206f757400000000000000000000000000000000000000000000000081525061284c565b9061208e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120859190612f55565b60405180910390fd5b5080600c5410156120d36040518060400160405280601681526020017f52656d61696e696e6720696e73756666696369656e740000000000000000000081525061284c565b90612114576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210b9190612f55565b60405180910390fd5b5080600c600082825461212791906139f8565b9250508190555080600d60008282546121409190613a2c565b9250508190555061215482600d5483612875565b5050565b60165481565b612169848484610f49565b60008373ffffffffffffffffffffffffffffffffffffffff163b146121cb57612194848484846128d6565b6121ca576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6121d9612570565b80600f8190555050565b6121eb612570565b81601881905550806019819055505050565b612205612570565b8060178190555050565b612217612570565b80601a8190555050565b606061222c82612509565b612262576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061226c612a26565b9050600081510361228c57604051806020016040528060008152506122b7565b8061229684612ab8565b6040516020016122a7929190613b3c565b6040516020818303038152906040525b915050919050565b600e6020528060005260406000206000915090505481565b60135481565b60185481565b600d5481565b60006122f3612570565b60005b83518110156123e157600084828151811061231457612313613a60565b5b60200260200101519050600084838151811061233357612332613a60565b5b6020026020010151905080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461238c9190613a2c565b925050819055507ff3510be6ab52120fbf44cd6dc2761ba67fb9b582f581a581b92f6662f259d13c82826040516123c4929190613a8f565b60405180910390a1505080806123d990613ab8565b9150506122f6565b506001905092915050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612488612570565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee90613bd2565b60405180910390fd5b61250081612788565b50565b60175481565b6000816125146125ee565b11158015612523575060015482105b8015612561575060007c0100000000000000000000000000000000000000000000000000000000600560008581526020019081526020016000205416145b9050919050565b600033905090565b612578612b12565b73ffffffffffffffffffffffffffffffffffffffff16612596611cba565b73ffffffffffffffffffffffffffffffffffffffff16146125ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e390613c3e565b60405180910390fd5b565b60006001905090565b600080829050806126066125ee565b1161268c5760015481101561268b5760006005600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612689575b6000810361267f576005600083600190039350838152602001908152602001600020549050612655565b80925050506126be565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600790508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8612746868684612b1a565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60608160405160200161285f9190613cf6565b6040516020818303038152906040529050919050565b81818181836128849190613a2c565b10156128c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bc90613d6f565b60405180910390fd5b6128cf8584612b23565b5050505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128fc612568565b8786866040518563ffffffff1660e01b815260040161291e9493929190613de4565b6020604051808303816000875af192505050801561295a57506040513d601f19601f820116820180604052508101906129579190613e45565b60015b6129d3573d806000811461298a576040519150601f19603f3d011682016040523d82523d6000602084013e61298f565b606091505b5060008151036129cb576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612a35906136d8565b80601f0160208091040260200160405190810160405280929190818152602001828054612a61906136d8565b8015612aae5780601f10612a8357610100808354040283529160200191612aae565b820191906000526020600020905b815481529060010190602001808311612a9157829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b8015612afe57600183039250600a81066030018353600a81049050612ade565b508181036020830392508083525050919050565b600033905090565b60009392505050565b612b3d828260405180602001604052806000815250612b41565b5050565b612b4b8383612bdf565b60008373ffffffffffffffffffffffffffffffffffffffff163b14612bda5760006001549050600083820390505b612b8c60008683806001019450866128d6565b612bc2576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110612b79578160015414612bd757600080fd5b50505b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612c4c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008203612c86576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c936000848385612729565b600160406001901b178202600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612d0a83612cfb600086600061272f565b612d0485612db2565b17612757565b60056000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612d2e57806001819055505050612dad6000848385612782565b505050565b60006001821460e11b9050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612e0b81612dd6565b8114612e1657600080fd5b50565b600081359050612e2881612e02565b92915050565b600060208284031215612e4457612e43612dcc565b5b6000612e5284828501612e19565b91505092915050565b60008115159050919050565b612e7081612e5b565b82525050565b6000602082019050612e8b6000830184612e67565b92915050565b6000819050919050565b612ea481612e91565b82525050565b6000602082019050612ebf6000830184612e9b565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612eff578082015181840152602081019050612ee4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612f2782612ec5565b612f318185612ed0565b9350612f41818560208601612ee1565b612f4a81612f0b565b840191505092915050565b60006020820190508181036000830152612f6f8184612f1c565b905092915050565b612f8081612e91565b8114612f8b57600080fd5b50565b600081359050612f9d81612f77565b92915050565b600060208284031215612fb957612fb8612dcc565b5b6000612fc784828501612f8e565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612ffb82612fd0565b9050919050565b61300b81612ff0565b82525050565b60006020820190506130266000830184613002565b92915050565b61303581612ff0565b811461304057600080fd5b50565b6000813590506130528161302c565b92915050565b6000806040838503121561306f5761306e612dcc565b5b600061307d85828601613043565b925050602061308e85828601612f8e565b9150509250929050565b6000806000606084860312156130b1576130b0612dcc565b5b60006130bf86828701613043565b93505060206130d086828701613043565b92505060406130e186828701612f8e565b9150509250925092565b6000806040838503121561310257613101612dcc565b5b600061311085828601612f8e565b925050602061312185828601612f8e565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61316d82612f0b565b810181811067ffffffffffffffff8211171561318c5761318b613135565b5b80604052505050565b600061319f612dc2565b90506131ab8282613164565b919050565b600067ffffffffffffffff8211156131cb576131ca613135565b5b6131d482612f0b565b9050602081019050919050565b82818337600083830152505050565b60006132036131fe846131b0565b613195565b90508281526020810184848401111561321f5761321e613130565b5b61322a8482856131e1565b509392505050565b600082601f8301126132475761324661312b565b5b81356132578482602086016131f0565b91505092915050565b60006020828403121561327657613275612dcc565b5b600082013567ffffffffffffffff81111561329457613293612dd1565b5b6132a084828501613232565b91505092915050565b6000602082840312156132bf576132be612dcc565b5b60006132cd84828501613043565b91505092915050565b6132df81612e5b565b81146132ea57600080fd5b50565b6000813590506132fc816132d6565b92915050565b6000806040838503121561331957613318612dcc565b5b600061332785828601613043565b9250506020613338858286016132ed565b9150509250929050565b600067ffffffffffffffff82111561335d5761335c613135565b5b602082029050602081019050919050565b600080fd5b600061338661338184613342565b613195565b905080838252602082019050602084028301858111156133a9576133a861336e565b5b835b818110156133d257806133be8882613043565b8452602084019350506020810190506133ab565b5050509392505050565b600082601f8301126133f1576133f061312b565b5b8135613401848260208601613373565b91505092915050565b600067ffffffffffffffff82111561342557613424613135565b5b602082029050602081019050919050565b60006134496134448461340a565b613195565b9050808382526020820190506020840283018581111561346c5761346b61336e565b5b835b8181101561349557806134818882612f8e565b84526020840193505060208101905061346e565b5050509392505050565b600082601f8301126134b4576134b361312b565b5b81356134c4848260208601613436565b91505092915050565b600080604083850312156134e4576134e3612dcc565b5b600083013567ffffffffffffffff81111561350257613501612dd1565b5b61350e858286016133dc565b925050602083013567ffffffffffffffff81111561352f5761352e612dd1565b5b61353b8582860161349f565b9150509250929050565b600067ffffffffffffffff8211156135605761355f613135565b5b61356982612f0b565b9050602081019050919050565b600061358961358484613545565b613195565b9050828152602081018484840111156135a5576135a4613130565b5b6135b08482856131e1565b509392505050565b600082601f8301126135cd576135cc61312b565b5b81356135dd848260208601613576565b91505092915050565b60008060008060808587031215613600576135ff612dcc565b5b600061360e87828801613043565b945050602061361f87828801613043565b935050604061363087828801612f8e565b925050606085013567ffffffffffffffff81111561365157613650612dd1565b5b61365d878288016135b8565b91505092959194509250565b600080604083850312156136805761367f612dcc565b5b600061368e85828601613043565b925050602061369f85828601613043565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806136f057607f821691505b602082108103613703576137026136a9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830261376b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261372e565b613775868361372e565b95508019841693508086168417925050509392505050565b6000819050919050565b60006137b26137ad6137a884612e91565b61378d565b612e91565b9050919050565b6000819050919050565b6137cc83613797565b6137e06137d8826137b9565b84845461373b565b825550505050565b600090565b6137f56137e8565b6138008184846137c3565b505050565b5b81811015613824576138196000826137ed565b600181019050613806565b5050565b601f8211156138695761383a81613709565b6138438461371e565b81016020851015613852578190505b61386661385e8561371e565b830182613805565b50505b505050565b600082821c905092915050565b600061388c6000198460080261386e565b1980831691505092915050565b60006138a5838361387b565b9150826002028217905092915050565b6138be82612ec5565b67ffffffffffffffff8111156138d7576138d6613135565b5b6138e182546136d8565b6138ec828285613828565b600060209050601f83116001811461391f576000841561390d578287015190505b6139178582613899565b86555061397f565b601f19841661392d86613709565b60005b8281101561395557848901518255600182019150602085019450602081019050613930565b86831015613972578489015161396e601f89168261387b565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006139c182612e91565b91506139cc83612e91565b92508282026139da81612e91565b915082820484148315176139f1576139f0613987565b5b5092915050565b6000613a0382612e91565b9150613a0e83612e91565b9250828203905081811115613a2657613a25613987565b5b92915050565b6000613a3782612e91565b9150613a4283612e91565b9250828201905080821115613a5a57613a59613987565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000604082019050613aa46000830185613002565b613ab16020830184612e9b565b9392505050565b6000613ac382612e91565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613af557613af4613987565b5b600182019050919050565b600081905092915050565b6000613b1682612ec5565b613b208185613b00565b9350613b30818560208601612ee1565b80840191505092915050565b6000613b488285613b0b565b9150613b548284613b0b565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613bbc602683612ed0565b9150613bc782613b60565b604082019050919050565b60006020820190508181036000830152613beb81613baf565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c28602083612ed0565b9150613c3382613bf2565b602082019050919050565b60006020820190508181036000830152613c5781613c1b565b9050919050565b7f6572726f724b6579000000000000000000000000000000000000000000000000600082015250565b6000613c94600883613b00565b9150613c9f82613c5e565b600882019050919050565b7f6572726f724b6579456e64000000000000000000000000000000000000000000600082015250565b6000613ce0600b83613b00565b9150613ceb82613caa565b600b82019050919050565b6000613d0182613c87565b9150613d0d8284613b0b565b9150613d1882613cd3565b915081905092915050565b7f76616c75652063616e2774206f766572666c6f77000000000000000000000000600082015250565b6000613d59601483612ed0565b9150613d6482613d23565b602082019050919050565b60006020820190508181036000830152613d8881613d4c565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613db682613d8f565b613dc08185613d9a565b9350613dd0818560208601612ee1565b613dd981612f0b565b840191505092915050565b6000608082019050613df96000830187613002565b613e066020830186613002565b613e136040830185612e9b565b8181036060830152613e258184613dab565b905095945050505050565b600081519050613e3f81612e02565b92915050565b600060208284031215613e5b57613e5a612dcc565b5b6000613e6984828501613e30565b9150509291505056fe4d6178696d756d206e756d626572206f662070757263686173657320657863656564656421a26469706673582212200f671c925581984bbf8ba2dea60ebba29c94725d228936b28c20ed112bb3cbaa64736f6c63430008110033

Deployed Bytecode Sourcemap

144:6603:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5629:595:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2298:35:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11037:98:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12920:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12483:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3736:34:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3474:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2699:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4736:297:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21663:2631;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;966:85:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1136:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13784:179:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1653:144:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1295:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3390:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1057:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1481:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;494:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1528:43;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2247:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10833:142:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6283:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:3;;;;;;;;;;;;;:::i;:::-;;2376:99:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;905:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3435:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3790:123;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4438:2307;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1194:85:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11199:102:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13187:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1337:30:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2959:382;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3680:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3347;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4074:358;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2340:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14029:388:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1374:101:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2760:141;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2530:101;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3585:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11367:313:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1243:45:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1591:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2637:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1099:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1856:385;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13556:162:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2074:198:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2481:42:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5629:595:1;5714:4;6020:10;6005:25;;:11;:25;;;;:97;;;;6092:10;6077:25;;:11;:25;;;;6005:97;:169;;;;6164:10;6149:25;;:11;:25;;;;6005:169;5990:184;;5629:595;;;:::o;2298:35:4:-;;;;:::o;11037:98:1:-;11091:13;11123:5;11116:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11037:98;:::o;12920:200::-;12988:7;13012:16;13020:7;13012;:16::i;:::-;13007:64;;13037:34;;;;;;;;;;;;;;13007:64;13089:15;:24;13105:7;13089:24;;;;;;;;;;;;;;;;;;;;;13082:31;;12920:200;;;:::o;12483:376::-;12555:13;12571:16;12579:7;12571;:16::i;:::-;12555:32;;12625:5;12602:28;;:19;:17;:19::i;:::-;:28;;;12598:172;;12649:44;12666:5;12673:19;:17;:19::i;:::-;12649:16;:44::i;:::-;12644:126;;12720:35;;;;;;;;;;;;;;12644:126;12598:172;12807:2;12780:15;:24;12796:7;12780:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12844:7;12840:2;12824:28;;12833:5;12824:28;;;;;;;;;;;;12545:314;12483:376;;:::o;3736:34:4:-;;;;:::o;3474:105::-;1087:13:3;:11;:13::i;:::-;3567:5:4::1;3545:19;:27;;;;3474:105:::0;:::o;2699:40::-;;;;:::o;4736:297:1:-;4789:7;5005:15;:13;:15::i;:::-;4990:12;;4974:13;;:28;:46;4967:53;;4736:297;:::o;21663:2631::-;21792:27;21822;21841:7;21822:18;:27::i;:::-;21792:57;;21905:4;21864:45;;21880:19;21864:45;;;21860:86;;21918:28;;;;;;;;;;;;;;21860:86;21958:27;21987:23;22014:28;22034:7;22014:19;:28::i;:::-;21957:85;;;;22139:62;22158:15;22175:4;22181:19;:17;:19::i;:::-;22139:18;:62::i;:::-;22134:173;;22220:43;22237:4;22243:19;:17;:19::i;:::-;22220:16;:43::i;:::-;22215:92;;22272:35;;;;;;;;;;;;;;22215:92;22134:173;22336:1;22322:16;;:2;:16;;;22318:52;;22347:23;;;;;;;;;;;;;;22318:52;22381:43;22403:4;22409:2;22413:7;22422:1;22381:21;:43::i;:::-;22513:15;22510:153;;;22647:1;22626:19;22619:30;22510:153;23021:18;:24;23040:4;23021:24;;;;;;;;;;;;;;;;23019:26;;;;;;;;;;;;23085:18;:22;23104:2;23085:22;;;;;;;;;;;;;;;;23083:24;;;;;;;;;;;23376:130;23408:2;23451:45;23466:4;23472:2;23476:19;23451:14;:45::i;:::-;2046:8;23424:72;23376:18;:130::i;:::-;23347:17;:26;23365:7;23347:26;;;;;;;;;;;:159;;;;23665:1;2046:8;23615:19;:46;:51;23611:576;;23682:19;23714:1;23704:7;:11;23682:33;;23861:1;23827:17;:30;23845:11;23827:30;;;;;;;;;;;;:35;23823:354;;23955:13;;23940:11;:28;23936:227;;24125:19;24092:17;:30;24110:11;24092:30;;;;;;;;;;;:52;;;;23936:227;23823:354;23668:519;23611:576;24227:7;24223:2;24208:27;;24217:4;24208:27;;;;;;;;;;;;24245:42;24266:4;24272:2;24276:7;24285:1;24245:20;:42::i;:::-;21782:2512;;;21663:2631;;;:::o;966:85:4:-;1087:13:3;:11;:13::i;:::-;1039:5:4::1;1027:9;:17;;;;966:85:::0;:::o;1136:101::-;1087:13:3;:11;:13::i;:::-;1225:5:4::1;1205:17;:25;;;;1136:101:::0;:::o;13784:179:1:-;13917:39;13934:4;13940:2;13944:7;13917:39;;;;;;;;;;;;:16;:39::i;:::-;13784:179;;;:::o;1653:144:4:-;1087:13:3;:11;:13::i;:::-;1753:5:4::1;1732:18;:26;;;;1787:3;1768:16;:22;;;;1653:144:::0;;:::o;1295:35::-;;;;:::o;3390:38::-;;;;:::o;1057:35::-;;;;:::o;1481:40::-;;;;:::o;494:100::-;1087:13:3;:11;:13::i;:::-;581:6:4::1;565:13;:22;;;;;;:::i;:::-;;494:100:::0;:::o;1528:43::-;;;;:::o;2247:44::-;;;;;;;;;;;;;;;;;:::o;10833:142:1:-;10897:7;10939:27;10958:7;10939:18;:27::i;:::-;10916:52;;10833:142;;;:::o;6283:221::-;6347:7;6387:1;6370:19;;:5;:19;;;6366:60;;6398:28;;;;;;;;;;;;;;6366:60;1022:13;6443:18;:25;6462:5;6443:25;;;;;;;;;;;;;;;;:54;6436:61;;6283:221;;;:::o;1824:101:3:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;2376:99:4:-;1087:13:3;:11;:13::i;:::-;2463:5:4::1;2444:16;:24;;;;2376:99:::0;:::o;905:39::-;;;;:::o;3435:32::-;;;;:::o;3790:123::-;1087:13:3;:11;:13::i;:::-;3876:5:4::1;3862:11;:19;;;;3903:3;3891:9;:15;;;;3790:123:::0;;:::o;4438:2307::-;4500:16;4519:15;4500:34;;4544:14;4575:9;;4561:11;:23;4544:40;;4603:9;4602:10;4614:27;;;;;;;;;;;;;;;;;;:15;:27::i;:::-;4594:48;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4673:1;4660:10;:14;4676:39;;;;;;;;;;;;;;;;;;:15;:39::i;:::-;4652:64;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4726:11;4755:18;;4740:11;:33;;:68;;;;;4792:16;;4777:11;:31;;4740:68;4726:82;;4818:10;4846:17;;4831:11;:32;;:66;;;;;4882:15;;4867:11;:30;;4831:66;4818:79;;4907:13;4938:11;;4923;:26;;:40;;;;;4954:9;4953:10;4923:40;4907:56;;4981:6;:15;;;;4991:5;4981:15;:27;;;;5000:8;4981:27;5010:30;;;;;;;;;;;;;;;;;;:15;:30::i;:::-;4973:68;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5051:9;5077:8;:74;;5103:6;:47;;5133:17;;5103:47;;;5112:18;;5103:47;5077:74;;;5088:11;;5077:74;5063:10;:89;;;;:::i;:::-;5051:101;;5162:15;5180:9;5162:27;;5215:10;5207:4;:18;;5227:36;;;;;;;;;;;;;;;;;;:15;:36::i;:::-;5199:65;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5274:14;5291:10;5274:27;;5323:10;5316:4;:17;5312:78;;;5355:6;5347:24;;:43;5385:4;5372:10;:17;;;;:::i;:::-;5347:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5312:78;5411:1;5404:4;:8;5400:57;;;5434:7;:5;:7::i;:::-;5426:25;;:31;5452:4;5426:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5400:57;5475:8;:88;;;;5489:8;5488:9;:74;;;;;5552:10;5502:6;:37;;5527:12;5502:37;;;5511:13;5502:37;5501:47;5541:6;5501:47;;;;;;;;;;;;;;;;:61;;5488:74;5475:88;5565:56;;;;;;;;;;;;;;;;;;:15;:56::i;:::-;5467:155;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5637:8;5632:88;;5710:10;5660:6;:37;;5685:12;5660:37;;;5669:13;5660:37;5659:47;5699:6;5659:47;;;;;;;;;;;;;;;;:61;;;;;;;:::i;:::-;;;;;;;;5632:88;5734:8;5730:1009;;;5788:1;5766:19;;:23;5791:27;;;;;;;;;;;;;;;;;;:15;:27::i;:::-;5758:61;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5864:10;5841:19;;:33;;5876:41;;;;;;;;;;;;;;;;;;:15;:41::i;:::-;5833:85;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;5955:10;5932:19;;:33;;;;;;;:::i;:::-;;;;;;;;5999:10;5979:16;;:30;;;;;;;:::i;:::-;;;;;;;;6023:42;6028:6;6036:16;;6054:10;6023:4;:42::i;:::-;5730:1009;;;6086:6;6082:657;;;6136:1;6116:17;;:21;6139:27;;;;;;;;;;;;;;;;;;:15;:27::i;:::-;6108:59;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6210:10;6189:17;;:31;;6222:41;;;;;;;;;;;;;;;;;;:15;:41::i;:::-;6181:83;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6299:10;6278:17;;:31;;;;;;;:::i;:::-;;;;;;;;6341:10;6323:14;;:28;;;;;;;:::i;:::-;;;;;;;;6365:40;6370:6;6378:14;;6394:10;6365:4;:40::i;:::-;6082:657;;;6463:1;6444:16;;:20;6466:27;;;;;;;;;;;;;;;;;;:15;:27::i;:::-;6436:58;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6536:10;6516:16;;:30;;6548:41;;;;;;;;;;;;;;;;;;:15;:41::i;:::-;6508:82;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;6624:10;6604:16;;:30;;;;;;;:::i;:::-;;;;;;;;6665:10;6648:13;;:27;;;;;;;:::i;:::-;;;;;;;;6689:39;6694:6;6702:13;;6717:10;6689:4;:39::i;:::-;6082:657;5730:1009;4490:2255;;;;;;;;4438:2307;:::o;1194:85:3:-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;11199:102:1:-;11255:13;11287:7;11280:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11199:102;:::o;13187:303::-;13297:19;:17;:19::i;:::-;13285:31;;:8;:31;;;13281:61;;13325:17;;;;;;;;;;;;;;13281:61;13405:8;13353:18;:39;13372:19;:17;:19::i;:::-;13353:39;;;;;;;;;;;;;;;:49;13393:8;13353:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;13464:8;13428:55;;13443:19;:17;:19::i;:::-;13428:55;;;13474:8;13428:55;;;;;;:::i;:::-;;;;;;;;13187:303;;:::o;1337:30:4:-;;;;:::o;2959:382::-;3065:4;1087:13:3;:11;:13::i;:::-;3085:6:4::1;3080:234;3101:9;:16;3097:1;:20;3080:234;;;3138:10;3151:9;3161:1;3151:12;;;;;;;;:::i;:::-;;;;;;;;3138:25;;3177:15;3195:11;3207:1;3195:14;;;;;;;;:::i;:::-;;;;;;;;3177:32;;3243:10;3223:12;:16;3236:2;3223:16;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;3272:31;3288:2;3292:10;3272:31;;;;;;;:::i;:::-;;;;;;;;3124:190;;3119:3;;;;;:::i;:::-;;;;3080:234;;;;3330:4;3323:11;;2959:382:::0;;;;:::o;3680:36::-;;;;:::o;3347:::-;;;;:::o;4074:358::-;1087:13:3;:11;:13::i;:::-;4176:1:4::1;4156:17;;:21;4179:27;;;;;;;;;;;;;;;;;::::0;:15:::1;:27::i;:::-;4148:59;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4246:10;4225:17;;:31;;4258:41;;;;;;;;;;;;;;;;;::::0;:15:::1;:41::i;:::-;4217:83;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;4331:10;4310:17;;:31;;;;;;;:::i;:::-;;;;;;;;4369:10;4351:14;;:28;;;;;;;:::i;:::-;;;;;;;;4389:36;4394:2;4398:14;;4414:10;4389:4;:36::i;:::-;4074:358:::0;;:::o;2340:29::-;;;;:::o;14029:388:1:-;14190:31;14203:4;14209:2;14213:7;14190:12;:31::i;:::-;14253:1;14235:2;:14;;;:19;14231:180;;14273:56;14304:4;14310:2;14314:7;14323:5;14273:30;:56::i;:::-;14268:143;;14356:40;;;;;;;;;;;;;;14268:143;14231:180;14029:388;;;;:::o;1374:101:4:-;1087:13:3;:11;:13::i;:::-;1463:5:4::1;1443:17;:25;;;;1374:101:::0;:::o;2760:141::-;1087:13:3;:11;:13::i;:::-;2858:5:4::1;2838:17;:25;;;;2891:3;2873:15;:21;;;;2760:141:::0;;:::o;2530:101::-;1087:13:3;:11;:13::i;:::-;2619:5:4::1;2599:17;:25;;;;2530:101:::0;:::o;3585:89::-;1087:13:3;:11;:13::i;:::-;3662:5:4::1;3648:11;:19;;;;3585:89:::0;:::o;11367:313:1:-;11440:13;11470:16;11478:7;11470;:16::i;:::-;11465:59;;11495:29;;;;;;;;;;;;;;11465:59;11535:21;11559:10;:8;:10::i;:::-;11535:34;;11611:1;11592:7;11586:21;:26;:87;;;;;;;;;;;;;;;;;11639:7;11648:18;11658:7;11648:9;:18::i;:::-;11622:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11586:87;11579:94;;;11367:313;;;:::o;1243:45:4:-;;;;;;;;;;;;;;;;;:::o;1591:41::-;;;;:::o;2637:42::-;;;;:::o;1099:30::-;;;;:::o;1856:385::-;1963:4;1087:13:3;:11;:13::i;:::-;1983:6:4::1;1978:236;1999:9;:16;1995:1;:20;1978:236;;;2036:10;2049:9;2059:1;2049:12;;;;;;;;:::i;:::-;;;;;;;;2036:25;;2075:15;2093:11;2105:1;2093:14;;;;;;;;:::i;:::-;;;;;;;;2075:32;;2142:10;2121:13;:17;2135:2;2121:17;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;2171:32;2188:2;2192:10;2171:32;;;;;;;:::i;:::-;;;;;;;;2022:192;;2017:3;;;;;:::i;:::-;;;;1978:236;;;;2230:4;2223:11;;1856:385:::0;;;;:::o;13556:162:1:-;13653:4;13676:18;:25;13695:5;13676:25;;;;;;;;;;;;;;;:35;13702:8;13676:35;;;;;;;;;;;;;;;;;;;;;;;;;13669:42;;13556:162;;;;:::o;2074:198:3:-;1087:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;::::0;2154:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;2481:42:4:-;;;;:::o;14663:256:1:-;14720:4;14770:7;14751:15;:13;:15::i;:::-;:26;;:61;;;;;14799:13;;14789:7;:23;14751:61;:142;;;;;14892:1;1774:8;14845:17;:26;14863:7;14845:26;;;;;;;;;;;;:43;:48;14751:142;14736:157;;14663:256;;;:::o;32238:103::-;32298:7;32324:10;32317:17;;32238:103;:::o;1352:130:3:-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;4276:90:1:-;4332:7;4358:1;4351:8;;4276:90;:::o;7913:1025::-;7980:7;7999:12;8014:7;7999:22;;8071:4;8052:15;:13;:15::i;:::-;:23;8048:830;;8100:13;;8093:4;:20;8089:789;;;8133:14;8150:17;:23;8168:4;8150:23;;;;;;;;;;;;8133:40;;8256:1;1774:8;8229:6;:23;:28;8225:639;;8708:103;8725:1;8715:6;:11;8708:103;;8763:17;:25;8781:6;;;;;;;8763:25;;;;;;;;;;;;8754:34;;8708:103;;;8839:6;8832:13;;;;;;8225:639;8115:763;8089:789;8048:830;8900:31;;;;;;;;;;;;;;7913:1025;;;;:::o;20076:617::-;20156:27;20185:23;20224:53;20280:15;20224:71;;20458:7;20452:4;20445:21;20492:22;20486:4;20479:36;20567:4;20561;20551:21;20528:44;;20657:19;20651:26;20632:45;;20402:285;20076:617;;;:::o;20801:620::-;20939:11;21094:15;21088:4;21084:26;21076:34;;21247:15;21236:9;21232:31;21219:44;;21388:15;21377:9;21374:30;21367:4;21356:9;21353:19;21350:55;21340:65;;20801:620;;;;;:::o;31106:154::-;;;;;:::o;29463:302::-;29594:7;29613:16;2166:3;29639:19;:40;;29613:67;;2166:3;29705:31;29716:4;29722:2;29726:9;29705:10;:31::i;:::-;29697:40;;:61;;29690:68;;;29463:302;;;;;:::o;10344:432::-;10424:14;10585:15;10578:5;10574:27;10565:36;;10753:5;10739:11;10715:22;10711:40;10708:51;10701:5;10698:62;10688:72;;10344:432;;;;:::o;31901:153::-;;;;;:::o;2426:187:3:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;600:161:4:-;667:13;734:3;705:48;;;;;;;;:::i;:::-;;;;;;;;;;;;;691:63;;600:161;;;:::o;3919:149::-;4002:10;4014;850:6;841:5;832:6;:14;;;;:::i;:::-;:24;;824:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;4036:25:::1;4046:2;4050:10;4036:9;:25::i;:::-;3919:149:::0;;;;;:::o;28013:697:1:-;28171:4;28216:2;28191:45;;;28237:19;:17;:19::i;:::-;28258:4;28264:7;28273:5;28191:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;28187:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28486:1;28469:6;:13;:18;28465:229;;28514:40;;;;;;;;;;;;;;28465:229;28654:6;28648:13;28639:6;28635:2;28631:15;28624:38;28187:517;28357:54;;;28347:64;;;:6;:64;;;;28340:71;;;28013:697;;;;;;:::o;376:112:4:-;436:13;468;461:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;376:112;:::o;32442:1852:1:-;32499:17;32896:3;32889:4;32883:11;32879:21;32872:28;;32981:3;32975:4;32968:17;33080:3;33508:5;33632:1;33627:3;33623:11;33616:18;;33763:2;33757:4;33753:13;33749:2;33745:22;33740:3;33732:36;33803:2;33797:4;33793:13;33785:21;;33406:662;33821:4;33406:662;;;33999:1;33994:3;33990:11;33983:18;;34049:2;34043:4;34039:13;34035:2;34031:22;34026:3;34018:36;33910:2;33904:4;33900:13;33892:21;;33406:662;;;33410:410;34105:3;34100;34096:13;34214:2;34209:3;34205:12;34198:19;;34271:6;34266:3;34259:19;32537:1751;;32442:1852;;;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;30325:143:1:-;30458:6;30325:143;;;;;:::o;14998:102::-;15066:27;15076:2;15080:8;15066:27;;;;;;;;;;;;:9;:27::i;:::-;14998:102;;:::o;15501:609::-;15619:19;15625:2;15629:8;15619:5;:19::i;:::-;15687:1;15669:2;:14;;;:19;15665:433;;15704:11;15718:13;;15704:27;;15745:13;15767:8;15761:3;:14;15745:30;;15789:213;15815:62;15854:1;15858:2;15862:7;;;;;;15871:5;15815:30;:62::i;:::-;15810:157;;15908:40;;;;;;;;;;;;;;15810:157;15997:3;15989:5;:11;15789:213;;16074:3;16057:13;;:20;16053:34;;16079:8;;;16053:34;15690:408;;15665:433;15501:609;;;:::o;16371:1400::-;16435:20;16458:13;;16435:36;;16499:1;16485:16;;:2;:16;;;16481:48;;16510:19;;;;;;;;;;;;;;16481:48;16555:1;16543:8;:13;16539:44;;16565:18;;;;;;;;;;;;;;16539:44;16594:61;16624:1;16628:2;16632:12;16646:8;16594:21;:61::i;:::-;17098:1;1156:2;17069:1;:25;;17068:31;17056:8;:44;17030:18;:22;17049:2;17030:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;17346:124;17378:2;17427:33;17450:1;17454:2;17458:1;17427:14;:33::i;:::-;17394:30;17415:8;17394:20;:30::i;:::-;:66;17346:18;:124::i;:::-;17312:17;:31;17330:12;17312:31;;;;;;;;;;;:158;;;;17481:15;17499:12;17481:30;;17521:11;17550:8;17535:12;:23;17521:37;;17568:91;17615:9;;;;;;17611:2;17590:35;;17607:1;17590:35;;;;;;;;;;;;17654:3;17644:7;:13;17568:91;;17685:3;17669:13;:19;;;;16834:861;;17704:60;17733:1;17737:2;17741:12;17755:8;17704:20;:60::i;:::-;16425:1346;16371:1400;;:::o;12114:312::-;12184:14;12407:1;12397:8;12394:15;12369:23;12365:45;12355:55;;12114:312;;;:::o;7:75:6:-;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:77::-;1555:7;1584:5;1573:16;;1518:77;;;:::o;1601:118::-;1688:24;1706:5;1688:24;:::i;:::-;1683:3;1676:37;1601:118;;:::o;1725:222::-;1818:4;1856:2;1845:9;1841:18;1833:26;;1869:71;1937:1;1926:9;1922:17;1913:6;1869:71;:::i;:::-;1725:222;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:474::-;5935:6;5943;5992:2;5980:9;5971:7;5967:23;5963:32;5960:119;;;5998:79;;:::i;:::-;5960:119;6118:1;6143:53;6188:7;6179:6;6168:9;6164:22;6143:53;:::i;:::-;6133:63;;6089:117;6245:2;6271:53;6316:7;6307:6;6296:9;6292:22;6271:53;:::i;:::-;6261:63;;6216:118;5867:474;;;;;:::o;6347:117::-;6456:1;6453;6446:12;6470:117;6579:1;6576;6569:12;6593:180;6641:77;6638:1;6631:88;6738:4;6735:1;6728:15;6762:4;6759:1;6752:15;6779:281;6862:27;6884:4;6862:27;:::i;:::-;6854:6;6850:40;6992:6;6980:10;6977:22;6956:18;6944:10;6941:34;6938:62;6935:88;;;7003:18;;:::i;:::-;6935:88;7043:10;7039:2;7032:22;6822:238;6779:281;;:::o;7066:129::-;7100:6;7127:20;;:::i;:::-;7117:30;;7156:33;7184:4;7176:6;7156:33;:::i;:::-;7066:129;;;:::o;7201:308::-;7263:4;7353:18;7345:6;7342:30;7339:56;;;7375:18;;:::i;:::-;7339:56;7413:29;7435:6;7413:29;:::i;:::-;7405:37;;7497:4;7491;7487:15;7479:23;;7201:308;;;:::o;7515:146::-;7612:6;7607:3;7602;7589:30;7653:1;7644:6;7639:3;7635:16;7628:27;7515:146;;;:::o;7667:425::-;7745:5;7770:66;7786:49;7828:6;7786:49;:::i;:::-;7770:66;:::i;:::-;7761:75;;7859:6;7852:5;7845:21;7897:4;7890:5;7886:16;7935:3;7926:6;7921:3;7917:16;7914:25;7911:112;;;7942:79;;:::i;:::-;7911:112;8032:54;8079:6;8074:3;8069;8032:54;:::i;:::-;7751:341;7667:425;;;;;:::o;8112:340::-;8168:5;8217:3;8210:4;8202:6;8198:17;8194:27;8184:122;;8225:79;;:::i;:::-;8184:122;8342:6;8329:20;8367:79;8442:3;8434:6;8427:4;8419:6;8415:17;8367:79;:::i;:::-;8358:88;;8174:278;8112:340;;;;:::o;8458:509::-;8527:6;8576:2;8564:9;8555:7;8551:23;8547:32;8544:119;;;8582:79;;:::i;:::-;8544:119;8730:1;8719:9;8715:17;8702:31;8760:18;8752:6;8749:30;8746:117;;;8782:79;;:::i;:::-;8746:117;8887:63;8942:7;8933:6;8922:9;8918:22;8887:63;:::i;:::-;8877:73;;8673:287;8458:509;;;;:::o;8973:329::-;9032:6;9081:2;9069:9;9060:7;9056:23;9052:32;9049:119;;;9087:79;;:::i;:::-;9049:119;9207:1;9232:53;9277:7;9268:6;9257:9;9253:22;9232:53;:::i;:::-;9222:63;;9178:117;8973:329;;;;:::o;9308:116::-;9378:21;9393:5;9378:21;:::i;:::-;9371:5;9368:32;9358:60;;9414:1;9411;9404:12;9358:60;9308:116;:::o;9430:133::-;9473:5;9511:6;9498:20;9489:29;;9527:30;9551:5;9527:30;:::i;:::-;9430:133;;;;:::o;9569:468::-;9634:6;9642;9691:2;9679:9;9670:7;9666:23;9662:32;9659:119;;;9697:79;;:::i;:::-;9659:119;9817:1;9842:53;9887:7;9878:6;9867:9;9863:22;9842:53;:::i;:::-;9832:63;;9788:117;9944:2;9970:50;10012:7;10003:6;9992:9;9988:22;9970:50;:::i;:::-;9960:60;;9915:115;9569:468;;;;;:::o;10043:311::-;10120:4;10210:18;10202:6;10199:30;10196:56;;;10232:18;;:::i;:::-;10196:56;10282:4;10274:6;10270:17;10262:25;;10342:4;10336;10332:15;10324:23;;10043:311;;;:::o;10360:117::-;10469:1;10466;10459:12;10500:710;10596:5;10621:81;10637:64;10694:6;10637:64;:::i;:::-;10621:81;:::i;:::-;10612:90;;10722:5;10751:6;10744:5;10737:21;10785:4;10778:5;10774:16;10767:23;;10838:4;10830:6;10826:17;10818:6;10814:30;10867:3;10859:6;10856:15;10853:122;;;10886:79;;:::i;:::-;10853:122;11001:6;10984:220;11018:6;11013:3;11010:15;10984:220;;;11093:3;11122:37;11155:3;11143:10;11122:37;:::i;:::-;11117:3;11110:50;11189:4;11184:3;11180:14;11173:21;;11060:144;11044:4;11039:3;11035:14;11028:21;;10984:220;;;10988:21;10602:608;;10500:710;;;;;:::o;11233:370::-;11304:5;11353:3;11346:4;11338:6;11334:17;11330:27;11320:122;;11361:79;;:::i;:::-;11320:122;11478:6;11465:20;11503:94;11593:3;11585:6;11578:4;11570:6;11566:17;11503:94;:::i;:::-;11494:103;;11310:293;11233:370;;;;:::o;11609:311::-;11686:4;11776:18;11768:6;11765:30;11762:56;;;11798:18;;:::i;:::-;11762:56;11848:4;11840:6;11836:17;11828:25;;11908:4;11902;11898:15;11890:23;;11609:311;;;:::o;11943:710::-;12039:5;12064:81;12080:64;12137:6;12080:64;:::i;:::-;12064:81;:::i;:::-;12055:90;;12165:5;12194:6;12187:5;12180:21;12228:4;12221:5;12217:16;12210:23;;12281:4;12273:6;12269:17;12261:6;12257:30;12310:3;12302:6;12299:15;12296:122;;;12329:79;;:::i;:::-;12296:122;12444:6;12427:220;12461:6;12456:3;12453:15;12427:220;;;12536:3;12565:37;12598:3;12586:10;12565:37;:::i;:::-;12560:3;12553:50;12632:4;12627:3;12623:14;12616:21;;12503:144;12487:4;12482:3;12478:14;12471:21;;12427:220;;;12431:21;12045:608;;11943:710;;;;;:::o;12676:370::-;12747:5;12796:3;12789:4;12781:6;12777:17;12773:27;12763:122;;12804:79;;:::i;:::-;12763:122;12921:6;12908:20;12946:94;13036:3;13028:6;13021:4;13013:6;13009:17;12946:94;:::i;:::-;12937:103;;12753:293;12676:370;;;;:::o;13052:894::-;13170:6;13178;13227:2;13215:9;13206:7;13202:23;13198:32;13195:119;;;13233:79;;:::i;:::-;13195:119;13381:1;13370:9;13366:17;13353:31;13411:18;13403:6;13400:30;13397:117;;;13433:79;;:::i;:::-;13397:117;13538:78;13608:7;13599:6;13588:9;13584:22;13538:78;:::i;:::-;13528:88;;13324:302;13693:2;13682:9;13678:18;13665:32;13724:18;13716:6;13713:30;13710:117;;;13746:79;;:::i;:::-;13710:117;13851:78;13921:7;13912:6;13901:9;13897:22;13851:78;:::i;:::-;13841:88;;13636:303;13052:894;;;;;:::o;13952:307::-;14013:4;14103:18;14095:6;14092:30;14089:56;;;14125:18;;:::i;:::-;14089:56;14163:29;14185:6;14163:29;:::i;:::-;14155:37;;14247:4;14241;14237:15;14229:23;;13952:307;;;:::o;14265:423::-;14342:5;14367:65;14383:48;14424:6;14383:48;:::i;:::-;14367:65;:::i;:::-;14358:74;;14455:6;14448:5;14441:21;14493:4;14486:5;14482:16;14531:3;14522:6;14517:3;14513:16;14510:25;14507:112;;;14538:79;;:::i;:::-;14507:112;14628:54;14675:6;14670:3;14665;14628:54;:::i;:::-;14348:340;14265:423;;;;;:::o;14707:338::-;14762:5;14811:3;14804:4;14796:6;14792:17;14788:27;14778:122;;14819:79;;:::i;:::-;14778:122;14936:6;14923:20;14961:78;15035:3;15027:6;15020:4;15012:6;15008:17;14961:78;:::i;:::-;14952:87;;14768:277;14707:338;;;;:::o;15051:943::-;15146:6;15154;15162;15170;15219:3;15207:9;15198:7;15194:23;15190:33;15187:120;;;15226:79;;:::i;:::-;15187:120;15346:1;15371:53;15416:7;15407:6;15396:9;15392:22;15371:53;:::i;:::-;15361:63;;15317:117;15473:2;15499:53;15544:7;15535:6;15524:9;15520:22;15499:53;:::i;:::-;15489:63;;15444:118;15601:2;15627:53;15672:7;15663:6;15652:9;15648:22;15627:53;:::i;:::-;15617:63;;15572:118;15757:2;15746:9;15742:18;15729:32;15788:18;15780:6;15777:30;15774:117;;;15810:79;;:::i;:::-;15774:117;15915:62;15969:7;15960:6;15949:9;15945:22;15915:62;:::i;:::-;15905:72;;15700:287;15051:943;;;;;;;:::o;16000:474::-;16068:6;16076;16125:2;16113:9;16104:7;16100:23;16096:32;16093:119;;;16131:79;;:::i;:::-;16093:119;16251:1;16276:53;16321:7;16312:6;16301:9;16297:22;16276:53;:::i;:::-;16266:63;;16222:117;16378:2;16404:53;16449:7;16440:6;16429:9;16425:22;16404:53;:::i;:::-;16394:63;;16349:118;16000:474;;;;;:::o;16480:180::-;16528:77;16525:1;16518:88;16625:4;16622:1;16615:15;16649:4;16646:1;16639:15;16666:320;16710:6;16747:1;16741:4;16737:12;16727:22;;16794:1;16788:4;16784:12;16815:18;16805:81;;16871:4;16863:6;16859:17;16849:27;;16805:81;16933:2;16925:6;16922:14;16902:18;16899:38;16896:84;;16952:18;;:::i;:::-;16896:84;16717:269;16666:320;;;:::o;16992:141::-;17041:4;17064:3;17056:11;;17087:3;17084:1;17077:14;17121:4;17118:1;17108:18;17100:26;;16992:141;;;:::o;17139:93::-;17176:6;17223:2;17218;17211:5;17207:14;17203:23;17193:33;;17139:93;;;:::o;17238:107::-;17282:8;17332:5;17326:4;17322:16;17301:37;;17238:107;;;;:::o;17351:393::-;17420:6;17470:1;17458:10;17454:18;17493:97;17523:66;17512:9;17493:97;:::i;:::-;17611:39;17641:8;17630:9;17611:39;:::i;:::-;17599:51;;17683:4;17679:9;17672:5;17668:21;17659:30;;17732:4;17722:8;17718:19;17711:5;17708:30;17698:40;;17427:317;;17351:393;;;;;:::o;17750:60::-;17778:3;17799:5;17792:12;;17750:60;;;:::o;17816:142::-;17866:9;17899:53;17917:34;17926:24;17944:5;17926:24;:::i;:::-;17917:34;:::i;:::-;17899:53;:::i;:::-;17886:66;;17816:142;;;:::o;17964:75::-;18007:3;18028:5;18021:12;;17964:75;;;:::o;18045:269::-;18155:39;18186:7;18155:39;:::i;:::-;18216:91;18265:41;18289:16;18265:41;:::i;:::-;18257:6;18250:4;18244:11;18216:91;:::i;:::-;18210:4;18203:105;18121:193;18045:269;;;:::o;18320:73::-;18365:3;18320:73;:::o;18399:189::-;18476:32;;:::i;:::-;18517:65;18575:6;18567;18561:4;18517:65;:::i;:::-;18452:136;18399:189;;:::o;18594:186::-;18654:120;18671:3;18664:5;18661:14;18654:120;;;18725:39;18762:1;18755:5;18725:39;:::i;:::-;18698:1;18691:5;18687:13;18678:22;;18654:120;;;18594:186;;:::o;18786:543::-;18887:2;18882:3;18879:11;18876:446;;;18921:38;18953:5;18921:38;:::i;:::-;19005:29;19023:10;19005:29;:::i;:::-;18995:8;18991:44;19188:2;19176:10;19173:18;19170:49;;;19209:8;19194:23;;19170:49;19232:80;19288:22;19306:3;19288:22;:::i;:::-;19278:8;19274:37;19261:11;19232:80;:::i;:::-;18891:431;;18876:446;18786:543;;;:::o;19335:117::-;19389:8;19439:5;19433:4;19429:16;19408:37;;19335:117;;;;:::o;19458:169::-;19502:6;19535:51;19583:1;19579:6;19571:5;19568:1;19564:13;19535:51;:::i;:::-;19531:56;19616:4;19610;19606:15;19596:25;;19509:118;19458:169;;;;:::o;19632:295::-;19708:4;19854:29;19879:3;19873:4;19854:29;:::i;:::-;19846:37;;19916:3;19913:1;19909:11;19903:4;19900:21;19892:29;;19632:295;;;;:::o;19932:1395::-;20049:37;20082:3;20049:37;:::i;:::-;20151:18;20143:6;20140:30;20137:56;;;20173:18;;:::i;:::-;20137:56;20217:38;20249:4;20243:11;20217:38;:::i;:::-;20302:67;20362:6;20354;20348:4;20302:67;:::i;:::-;20396:1;20420:4;20407:17;;20452:2;20444:6;20441:14;20469:1;20464:618;;;;21126:1;21143:6;21140:77;;;21192:9;21187:3;21183:19;21177:26;21168:35;;21140:77;21243:67;21303:6;21296:5;21243:67;:::i;:::-;21237:4;21230:81;21099:222;20434:887;;20464:618;20516:4;20512:9;20504:6;20500:22;20550:37;20582:4;20550:37;:::i;:::-;20609:1;20623:208;20637:7;20634:1;20631:14;20623:208;;;20716:9;20711:3;20707:19;20701:26;20693:6;20686:42;20767:1;20759:6;20755:14;20745:24;;20814:2;20803:9;20799:18;20786:31;;20660:4;20657:1;20653:12;20648:17;;20623:208;;;20859:6;20850:7;20847:19;20844:179;;;20917:9;20912:3;20908:19;20902:26;20960:48;21002:4;20994:6;20990:17;20979:9;20960:48;:::i;:::-;20952:6;20945:64;20867:156;20844:179;21069:1;21065;21057:6;21053:14;21049:22;21043:4;21036:36;20471:611;;;20434:887;;20024:1303;;;19932:1395;;:::o;21333:180::-;21381:77;21378:1;21371:88;21478:4;21475:1;21468:15;21502:4;21499:1;21492:15;21519:410;21559:7;21582:20;21600:1;21582:20;:::i;:::-;21577:25;;21616:20;21634:1;21616:20;:::i;:::-;21611:25;;21671:1;21668;21664:9;21693:30;21711:11;21693:30;:::i;:::-;21682:41;;21872:1;21863:7;21859:15;21856:1;21853:22;21833:1;21826:9;21806:83;21783:139;;21902:18;;:::i;:::-;21783:139;21567:362;21519:410;;;;:::o;21935:194::-;21975:4;21995:20;22013:1;21995:20;:::i;:::-;21990:25;;22029:20;22047:1;22029:20;:::i;:::-;22024:25;;22073:1;22070;22066:9;22058:17;;22097:1;22091:4;22088:11;22085:37;;;22102:18;;:::i;:::-;22085:37;21935:194;;;;:::o;22135:191::-;22175:3;22194:20;22212:1;22194:20;:::i;:::-;22189:25;;22228:20;22246:1;22228:20;:::i;:::-;22223:25;;22271:1;22268;22264:9;22257:16;;22292:3;22289:1;22286:10;22283:36;;;22299:18;;:::i;:::-;22283:36;22135:191;;;;:::o;22332:180::-;22380:77;22377:1;22370:88;22477:4;22474:1;22467:15;22501:4;22498:1;22491:15;22518:332;22639:4;22677:2;22666:9;22662:18;22654:26;;22690:71;22758:1;22747:9;22743:17;22734:6;22690:71;:::i;:::-;22771:72;22839:2;22828:9;22824:18;22815:6;22771:72;:::i;:::-;22518:332;;;;;:::o;22856:233::-;22895:3;22918:24;22936:5;22918:24;:::i;:::-;22909:33;;22964:66;22957:5;22954:77;22951:103;;23034:18;;:::i;:::-;22951:103;23081:1;23074:5;23070:13;23063:20;;22856:233;;;:::o;23095:148::-;23197:11;23234:3;23219:18;;23095:148;;;;:::o;23249:390::-;23355:3;23383:39;23416:5;23383:39;:::i;:::-;23438:89;23520:6;23515:3;23438:89;:::i;:::-;23431:96;;23536:65;23594:6;23589:3;23582:4;23575:5;23571:16;23536:65;:::i;:::-;23626:6;23621:3;23617:16;23610:23;;23359:280;23249:390;;;;:::o;23645:435::-;23825:3;23847:95;23938:3;23929:6;23847:95;:::i;:::-;23840:102;;23959:95;24050:3;24041:6;23959:95;:::i;:::-;23952:102;;24071:3;24064:10;;23645:435;;;;;:::o;24086:225::-;24226:34;24222:1;24214:6;24210:14;24203:58;24295:8;24290:2;24282:6;24278:15;24271:33;24086:225;:::o;24317:366::-;24459:3;24480:67;24544:2;24539:3;24480:67;:::i;:::-;24473:74;;24556:93;24645:3;24556:93;:::i;:::-;24674:2;24669:3;24665:12;24658:19;;24317:366;;;:::o;24689:419::-;24855:4;24893:2;24882:9;24878:18;24870:26;;24942:9;24936:4;24932:20;24928:1;24917:9;24913:17;24906:47;24970:131;25096:4;24970:131;:::i;:::-;24962:139;;24689:419;;;:::o;25114:182::-;25254:34;25250:1;25242:6;25238:14;25231:58;25114:182;:::o;25302:366::-;25444:3;25465:67;25529:2;25524:3;25465:67;:::i;:::-;25458:74;;25541:93;25630:3;25541:93;:::i;:::-;25659:2;25654:3;25650:12;25643:19;;25302:366;;;:::o;25674:419::-;25840:4;25878:2;25867:9;25863:18;25855:26;;25927:9;25921:4;25917:20;25913:1;25902:9;25898:17;25891:47;25955:131;26081:4;25955:131;:::i;:::-;25947:139;;25674:419;;;:::o;26099:158::-;26239:10;26235:1;26227:6;26223:14;26216:34;26099:158;:::o;26263:400::-;26423:3;26444:84;26526:1;26521:3;26444:84;:::i;:::-;26437:91;;26537:93;26626:3;26537:93;:::i;:::-;26655:1;26650:3;26646:11;26639:18;;26263:400;;;:::o;26669:161::-;26809:13;26805:1;26797:6;26793:14;26786:37;26669:161;:::o;26836:402::-;26996:3;27017:85;27099:2;27094:3;27017:85;:::i;:::-;27010:92;;27111:93;27200:3;27111:93;:::i;:::-;27229:2;27224:3;27220:12;27213:19;;26836:402;;;:::o;27244:807::-;27578:3;27600:148;27744:3;27600:148;:::i;:::-;27593:155;;27765:95;27856:3;27847:6;27765:95;:::i;:::-;27758:102;;27877:148;28021:3;27877:148;:::i;:::-;27870:155;;28042:3;28035:10;;27244:807;;;;:::o;28057:170::-;28197:22;28193:1;28185:6;28181:14;28174:46;28057:170;:::o;28233:366::-;28375:3;28396:67;28460:2;28455:3;28396:67;:::i;:::-;28389:74;;28472:93;28561:3;28472:93;:::i;:::-;28590:2;28585:3;28581:12;28574:19;;28233:366;;;:::o;28605:419::-;28771:4;28809:2;28798:9;28794:18;28786:26;;28858:9;28852:4;28848:20;28844:1;28833:9;28829:17;28822:47;28886:131;29012:4;28886:131;:::i;:::-;28878:139;;28605:419;;;:::o;29030:98::-;29081:6;29115:5;29109:12;29099:22;;29030:98;;;:::o;29134:168::-;29217:11;29251:6;29246:3;29239:19;29291:4;29286:3;29282:14;29267:29;;29134:168;;;;:::o;29308:373::-;29394:3;29422:38;29454:5;29422:38;:::i;:::-;29476:70;29539:6;29534:3;29476:70;:::i;:::-;29469:77;;29555:65;29613:6;29608:3;29601:4;29594:5;29590:16;29555:65;:::i;:::-;29645:29;29667:6;29645:29;:::i;:::-;29640:3;29636:39;29629:46;;29398:283;29308:373;;;;:::o;29687:640::-;29882:4;29920:3;29909:9;29905:19;29897:27;;29934:71;30002:1;29991:9;29987:17;29978:6;29934:71;:::i;:::-;30015:72;30083:2;30072:9;30068:18;30059:6;30015:72;:::i;:::-;30097;30165:2;30154:9;30150:18;30141:6;30097:72;:::i;:::-;30216:9;30210:4;30206:20;30201:2;30190:9;30186:18;30179:48;30244:76;30315:4;30306:6;30244:76;:::i;:::-;30236:84;;29687:640;;;;;;;:::o;30333:141::-;30389:5;30420:6;30414:13;30405:22;;30436:32;30462:5;30436:32;:::i;:::-;30333:141;;;;:::o;30480:349::-;30549:6;30598:2;30586:9;30577:7;30573:23;30569:32;30566:119;;;30604:79;;:::i;:::-;30566:119;30724:1;30749:63;30804:7;30795:6;30784:9;30780:22;30749:63;:::i;:::-;30739:73;;30695:127;30480:349;;;;:::o

Swarm Source

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