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

Token

GameOfTheKing (KING)
 

Overview

Max Total Supply

10,000 KING

Holders

83

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 KING
0xe012fbd995d295f7179b510aa89d2d58e52ba344
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:
GameOfTheKing

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

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

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

// Merkle tree
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}


contract GameOfTheKing is ERC721A, Ownable {
    using SafeMath for uint256;

    uint256 public kingPrice = 0.006 ether; 

    uint256 public constant MAX_KINGS = 10000;

    uint256 public constant RESERVE_KING = 103;

    bool public saleIsActive = false;

    bool public reserveForOnce = true;

    uint256 public immutable maxPerMint = 10;

    // metadata URI
    string private _baseTokenURI;

    constructor(string memory  baseURI) ERC721A("GameOfTheKing", "KING") {
        _baseTokenURI = baseURI;
    }


    function withdraw() public onlyOwner {
        (bool success, ) = msg.sender.call{value: address(this).balance}("");
        require(success, "Failed.");
    }


    function reserveKings() public onlyOwner {        
        if (reserveForOnce == true) {
            _safeMint(msg.sender, RESERVE_KING);
            reserveForOnce = false;
        }
    }

    function setPrice(uint256 new_price) public onlyOwner {
        kingPrice = new_price;
    }

    function justInCase(uint256 quantity) public onlyOwner {
        require(totalSupply() + quantity <= MAX_KINGS, "reached max supply");        
        _safeMint(msg.sender, quantity);
    }


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


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


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

    function getPublicSaleStatus() external view returns(bool){
        return saleIsActive;
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function publicKingsMint(uint256 quantity) external payable {
        // check sales status
        require(saleIsActive, "please wait the sale");
        // check quantity
        require(totalSupply() + quantity <= MAX_KINGS, "reached max supply");
        // check quantity max
        require(quantity <= maxPerMint, "reached max per mint max amount");
        // check wallet amount
        require(kingPrice.mul(quantity) <= msg.value, "ETH not enough.");
        _safeMint(msg.sender, quantity);
    }

    bool private allowListStatus = false;
    uint256 private allowListMaxAmount = 1000;
    uint256 private whitelistMintedAmount = 0;
    uint256 public immutable maxPerWhitelistMint = 2;

    bytes32 private merkleRoot;

    mapping(address => bool) public addressAppeared;
    mapping(address => uint256) public addressMintStock;

    // whitelist mint
    function whitelistMint(uint256 quantity, bytes32[] memory proof) external payable {

        require(tx.origin == msg.sender, "The caller is another contract");
        require(allowListStatus, "allowList sale has not begun yet");
        require(totalSupply() + quantity <= MAX_KINGS, "reached max supply");
        require(whitelistMintedAmount + quantity <= allowListMaxAmount, "whilt list is not enough");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        require(MerkleProof.verify(proof, merkleRoot, leaf), "Invalid Merkle Proof.");


        if(!addressAppeared[msg.sender]){
            addressAppeared[msg.sender] = true;
            addressMintStock[msg.sender] = maxPerWhitelistMint;
        }
        require(addressMintStock[msg.sender] >= quantity, "reached allow list per address mint amount");
        addressMintStock[msg.sender] -= quantity;
        _safeMint(msg.sender, quantity);

        whitelistMintedAmount += quantity;
    }

    // set whitelist
    function setAllowList(bytes32 root_) external onlyOwner{
        merkleRoot = root_;
    }

    function flipWhiteListSaleState() external onlyOwner {
        allowListStatus = !allowListStatus;
    }

    function getWhiteListSaleStatus() external view returns(bool){
        return allowListStatus;
    }

    function getWhiteListRestAmount() public view returns(uint256){
        return allowListMaxAmount - whitelistMintedAmount;
    }

    function verifyWhitelist(bytes32[] memory proof) public view returns(bool) {
        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
        return MerkleProof.verify(proof, merkleRoot, leaf);
    }
}

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

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

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

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

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

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

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

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

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

    /**
     * Returns the 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 4 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 5 of 6: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

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

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

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

File 6 of 6: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_KINGS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_KING","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressAppeared","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintStock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipWhiteListSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPublicSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhiteListRestAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getWhiteListSaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"justInCase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"kingPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerWhitelistMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicKingsMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveForOnce","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"reserveKings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root_","type":"bytes32"}],"name":"setAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"new_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verifyWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c0604052661550f7dca700006009556000600a60006101000a81548160ff0219169083151502179055506001600a60016101000a81548160ff021916908315150217905550600a6080908152506000600c60006101000a81548160ff0219169083151502179055506103e8600d556000600e55600260a0908152503480156200008857600080fd5b50604051620042dd380380620042dd8339818101604052810190620000ae9190620003a5565b6040518060400160405280600d81526020017f47616d654f665468654b696e67000000000000000000000000000000000000008152506040518060400160405280600481526020017f4b494e470000000000000000000000000000000000000000000000000000000081525081600290805190602001906200013292919062000277565b5080600390805190602001906200014b92919062000277565b506200015c620001a460201b60201c565b60008190555050506200018462000178620001a960201b60201c565b620001b160201b60201c565b80600b90805190602001906200019c92919062000277565b50506200057a565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000285906200048b565b90600052602060002090601f016020900481019282620002a95760008555620002f5565b82601f10620002c457805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f4578251825591602001919060010190620002d7565b5b50905062000304919062000308565b5090565b5b808211156200032357600081600090555060010162000309565b5090565b60006200033e62000338846200041f565b620003f6565b9050828152602081018484840111156200035d576200035c6200055a565b5b6200036a84828562000455565b509392505050565b600082601f8301126200038a576200038962000555565b5b81516200039c84826020860162000327565b91505092915050565b600060208284031215620003be57620003bd62000564565b5b600082015167ffffffffffffffff811115620003df57620003de6200055f565b5b620003ed8482850162000372565b91505092915050565b60006200040262000415565b9050620004108282620004c1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200043d576200043c62000526565b5b620004488262000569565b9050602081019050919050565b60005b838110156200047557808201518184015260208101905062000458565b8381111562000485576000848401525b50505050565b60006002820490506001821680620004a457607f821691505b60208210811415620004bb57620004ba620004f7565b5b50919050565b620004cc8262000569565b810181811067ffffffffffffffff82111715620004ee57620004ed62000526565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60805160a051613d2f620005ae600039600081816113310152611d47015260008181611269015261212d0152613d2f6000f3fe6080604052600436106102465760003560e01c80637b11549811610139578063c87b56dd116100b6578063e985e9c51161007a578063e985e9c514610849578063eb8d244414610886578063f2fde38b146108b1578063f3c74911146108da578063f6209baf146108f6578063fdc59d841461092157610246565b8063c87b56dd1461075d578063d2cab0561461079a578063d4d4b83e146107b6578063dc33e681146107e1578063ddc9a3651461081e57610246565b8063a22cb465116100fd578063a22cb4651461067a578063b88d4fde146106a3578063bb122299146106cc578063bd22f2f814610709578063c5f77e161461072057610246565b80637b115498146105a957806384584d07146105d25780638da5cb5b146105fb57806391b7f5ed1461062657806395d89b411461064f57610246565b80633ccfd60b116101c757806355f804b31161018b57806355f804b3146104c45780636352211e146104ed5780636ddf297b1461052a57806370a0823114610555578063715018a61461059257610246565b80633ccfd60b1461040357806342842e0e1461041a5780634381af7314610443578063499e8eec1461046e578063507e094f1461049957610246565b806313c62d511161020e57806313c62d511461033057806316b76df51461035b57806318160ddd1461039857806323b872dd146103c357806334918dfd146103ec57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630acc857414610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190612f9e565b61094c565b60405161027f9190613437565b60405180910390f35b34801561029457600080fd5b5061029d6109de565b6040516102aa9190613452565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613045565b610a70565b6040516102e791906133d0565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190612ee8565b610aec565b005b34801561032557600080fd5b5061032e610c2d565b005b34801561033c57600080fd5b50610345610cd5565b60405161035291906135f4565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d9190612f28565b610cda565b60405161038f9190613437565b60405180910390f35b3480156103a457600080fd5b506103ad610d1b565b6040516103ba91906135f4565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190612dd2565b610d32565b005b3480156103f857600080fd5b50610401611057565b005b34801561040f57600080fd5b506104186110ff565b005b34801561042657600080fd5b50610441600480360381019061043c9190612dd2565b61122a565b005b34801561044f57600080fd5b5061045861124a565b60405161046591906135f4565b60405180910390f35b34801561047a57600080fd5b50610483611250565b6040516104909190613437565b60405180910390f35b3480156104a557600080fd5b506104ae611267565b6040516104bb91906135f4565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612ff8565b61128b565b005b3480156104f957600080fd5b50610514600480360381019061050f9190613045565b61131d565b60405161052191906133d0565b60405180910390f35b34801561053657600080fd5b5061053f61132f565b60405161054c91906135f4565b60405180910390f35b34801561056157600080fd5b5061057c60048036038101906105779190612d65565b611353565b60405161058991906135f4565b60405180910390f35b34801561059e57600080fd5b506105a761140c565b005b3480156105b557600080fd5b506105d060048036038101906105cb9190613045565b611494565b005b3480156105de57600080fd5b506105f960048036038101906105f49190612f71565b611574565b005b34801561060757600080fd5b506106106115fa565b60405161061d91906133d0565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613045565b611624565b005b34801561065b57600080fd5b506106646116aa565b6040516106719190613452565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c9190612ea8565b61173c565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190612e25565b6118b4565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190612d65565b611927565b60405161070091906135f4565b60405180910390f35b34801561071557600080fd5b5061071e61193f565b005b34801561072c57600080fd5b5061074760048036038101906107429190612d65565b611a00565b6040516107549190613437565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190613045565b611a20565b6040516107919190613452565b60405180910390f35b6107b460048036038101906107af9190613072565b611abf565b005b3480156107c257600080fd5b506107cb611eaa565b6040516107d89190613437565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190612d65565b611ebd565b60405161081591906135f4565b60405180910390f35b34801561082a57600080fd5b50610833611ecf565b6040516108409190613437565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b9190612d92565b611ee6565b60405161087d9190613437565b60405180910390f35b34801561089257600080fd5b5061089b611f7a565b6040516108a89190613437565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d39190612d65565b611f8d565b005b6108f460048036038101906108ef9190613045565b612085565b005b34801561090257600080fd5b5061090b6121f2565b60405161091891906135f4565b60405180910390f35b34801561092d57600080fd5b50610936612209565b60405161094391906135f4565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109ed90613883565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1990613883565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b6000610a7b8261220f565b610ab1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af78261131d565b90508073ffffffffffffffffffffffffffffffffffffffff16610b1861226e565b73ffffffffffffffffffffffffffffffffffffffff1614610b7b57610b4481610b3f61226e565b611ee6565b610b7a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c35612276565b73ffffffffffffffffffffffffffffffffffffffff16610c536115fa565b73ffffffffffffffffffffffffffffffffffffffff1614610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090613574565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b606781565b60008033604051602001610cee919061337c565b604051602081830303815290604052805190602001209050610d1383600f548361227e565b915050919050565b6000610d25612295565b6001546000540303905090565b6000610d3d8261229a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610db084612368565b91509150610dc68187610dc161226e565b61238a565b610e1257610ddb86610dd661226e565b611ee6565b610e11576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e79576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e8686868660016123ce565b8015610e9157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f5f85610f3b8888876123d4565b7c0200000000000000000000000000000000000000000000000000000000176123fc565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fe7576000600185019050600060046000838152602001908152602001600020541415610fe5576000548114610fe4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461104f8686866001612427565b505050505050565b61105f612276565b73ffffffffffffffffffffffffffffffffffffffff1661107d6115fa565b73ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90613574565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b611107612276565b73ffffffffffffffffffffffffffffffffffffffff166111256115fa565b73ffffffffffffffffffffffffffffffffffffffff161461117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290613574565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516111a1906133bb565b60006040518083038185875af1925050503d80600081146111de576040519150601f19603f3d011682016040523d82523d6000602084013e6111e3565b606091505b5050905080611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90613494565b60405180910390fd5b50565b611245838383604051806020016040528060008152506118b4565b505050565b61271081565b6000600a60009054906101000a900460ff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b611293612276565b73ffffffffffffffffffffffffffffffffffffffff166112b16115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90613574565b60405180910390fd5b8181600b9190611318929190612ae0565b505050565b60006113288261229a565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611414612276565b73ffffffffffffffffffffffffffffffffffffffff166114326115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90613574565b60405180910390fd5b611492600061242d565b565b61149c612276565b73ffffffffffffffffffffffffffffffffffffffff166114ba6115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790613574565b60405180910390fd5b6127108161151c610d1b565b61152691906136df565b1115611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e90613554565b60405180910390fd5b61157133826124f3565b50565b61157c612276565b73ffffffffffffffffffffffffffffffffffffffff1661159a6115fa565b73ffffffffffffffffffffffffffffffffffffffff16146115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790613574565b60405180910390fd5b80600f8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61162c612276565b73ffffffffffffffffffffffffffffffffffffffff1661164a6115fa565b73ffffffffffffffffffffffffffffffffffffffff16146116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613574565b60405180910390fd5b8060098190555050565b6060600380546116b990613883565b80601f01602080910402602001604051908101604052809291908181526020018280546116e590613883565b80156117325780601f1061170757610100808354040283529160200191611732565b820191906000526020600020905b81548152906001019060200180831161171557829003601f168201915b5050505050905090565b61174461226e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117b661226e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661186361226e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a89190613437565b60405180910390a35050565b6118bf848484610d32565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611921576118ea84848484612511565b611920576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60116020528060005260406000206000915090505481565b611947612276565b73ffffffffffffffffffffffffffffffffffffffff166119656115fa565b73ffffffffffffffffffffffffffffffffffffffff16146119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b290613574565b60405180910390fd5b60011515600a60019054906101000a900460ff16151514156119fe576119e23360676124f3565b6000600a60016101000a81548160ff0219169083151502179055505b565b60106020528060005260406000206000915054906101000a900460ff1681565b6060611a2b8261220f565b611a61576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a6b612671565b9050600081511415611a8c5760405180602001604052806000815250611ab7565b80611a9684612703565b604051602001611aa7929190613397565b6040516020818303038152906040525b915050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2490613514565b60405180910390fd5b600c60009054906101000a900460ff16611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b73906135d4565b60405180910390fd5b61271082611b88610d1b565b611b9291906136df565b1115611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca90613554565b60405180910390fd5b600d5482600e54611be491906136df565b1115611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c90613534565b60405180910390fd5b600033604051602001611c38919061337c565b604051602081830303815290604052805190602001209050611c5d82600f548361227e565b611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c93906134f4565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611daa576001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f0000000000000000000000000000000000000000000000000000000000000000601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e23906134d4565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e7b919061378f565b92505081905550611e8c33846124f3565b82600e6000828254611e9e91906136df565b92505081905550505050565b600a60019054906101000a900460ff1681565b6000611ec88261275d565b9050919050565b6000600c60009054906101000a900460ff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b611f95612276565b73ffffffffffffffffffffffffffffffffffffffff16611fb36115fa565b73ffffffffffffffffffffffffffffffffffffffff1614612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090613574565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612070906134b4565b60405180910390fd5b6120828161242d565b50565b600a60009054906101000a900460ff166120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90613594565b60405180910390fd5b612710816120e0610d1b565b6120ea91906136df565b111561212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290613554565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000081111561218e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612185906135b4565b60405180910390fd5b346121a4826009546127b490919063ffffffff16565b11156121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90613474565b60405180910390fd5b6121ef33826124f3565b50565b6000600e54600d54612204919061378f565b905090565b60095481565b60008161221a612295565b11158015612229575060005482105b8015612267575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60008261228b85846127ca565b1490509392505050565b600090565b600080829050806122a9612295565b11612331576000548110156123305760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561232e575b60008114156123245760046000836001900393508381526020019081526020016000205490506122f9565b8092505050612363565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123eb86868461283f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61250d828260405180602001604052806000815250612848565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253761226e565b8786866040518563ffffffff1660e01b815260040161255994939291906133eb565b602060405180830381600087803b15801561257357600080fd5b505af19250505080156125a457506040513d601f19601f820116820180604052508101906125a19190612fcb565b60015b61261e573d80600081146125d4576040519150601f19603f3d011682016040523d82523d6000602084013e6125d9565b606091505b50600081511415612616576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461268090613883565b80601f01602080910402602001604051908101604052809291908181526020018280546126ac90613883565b80156126f95780601f106126ce576101008083540402835291602001916126f9565b820191906000526020600020905b8154815290600101906020018083116126dc57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561274957600183039250600a81066030018353600a81049050612729565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600081836127c29190613735565b905092915050565b60008082905060005b84518110156128345760008582815181106127f1576127f06139b1565b5b602002602001015190508083116128135761280c83826128e5565b9250612820565b61281d81846128e5565b92505b50808061282c906138e6565b9150506127d3565b508091505092915050565b60009392505050565b61285283836128fc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128e057600080549050600083820390505b6128926000868380600101945086612511565b6128c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061287f5781600054146128dd57600080fd5b50505b505050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612969576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156129a4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129b160008483856123ce565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612a2883612a1960008660006123d4565b612a2285612ad0565b176123fc565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a4c57806000819055505050612acb6000848385612427565b505050565b60006001821460e11b9050919050565b828054612aec90613883565b90600052602060002090601f016020900481019282612b0e5760008555612b55565b82601f10612b2757803560ff1916838001178555612b55565b82800160010185558215612b55579182015b82811115612b54578235825591602001919060010190612b39565b5b509050612b629190612b66565b5090565b5b80821115612b7f576000816000905550600101612b67565b5090565b6000612b96612b9184613634565b61360f565b90508083825260208201905082856020860282011115612bb957612bb8613a19565b5b60005b85811015612be95781612bcf8882612c8d565b845260208401935060208301925050600181019050612bbc565b5050509392505050565b6000612c06612c0184613660565b61360f565b905082815260208101848484011115612c2257612c21613a1e565b5b612c2d848285613841565b509392505050565b600081359050612c4481613c86565b92915050565b600082601f830112612c5f57612c5e613a14565b5b8135612c6f848260208601612b83565b91505092915050565b600081359050612c8781613c9d565b92915050565b600081359050612c9c81613cb4565b92915050565b600081359050612cb181613ccb565b92915050565b600081519050612cc681613ccb565b92915050565b600082601f830112612ce157612ce0613a14565b5b8135612cf1848260208601612bf3565b91505092915050565b60008083601f840112612d1057612d0f613a14565b5b8235905067ffffffffffffffff811115612d2d57612d2c613a0f565b5b602083019150836001820283011115612d4957612d48613a19565b5b9250929050565b600081359050612d5f81613ce2565b92915050565b600060208284031215612d7b57612d7a613a28565b5b6000612d8984828501612c35565b91505092915050565b60008060408385031215612da957612da8613a28565b5b6000612db785828601612c35565b9250506020612dc885828601612c35565b9150509250929050565b600080600060608486031215612deb57612dea613a28565b5b6000612df986828701612c35565b9350506020612e0a86828701612c35565b9250506040612e1b86828701612d50565b9150509250925092565b60008060008060808587031215612e3f57612e3e613a28565b5b6000612e4d87828801612c35565b9450506020612e5e87828801612c35565b9350506040612e6f87828801612d50565b925050606085013567ffffffffffffffff811115612e9057612e8f613a23565b5b612e9c87828801612ccc565b91505092959194509250565b60008060408385031215612ebf57612ebe613a28565b5b6000612ecd85828601612c35565b9250506020612ede85828601612c78565b9150509250929050565b60008060408385031215612eff57612efe613a28565b5b6000612f0d85828601612c35565b9250506020612f1e85828601612d50565b9150509250929050565b600060208284031215612f3e57612f3d613a28565b5b600082013567ffffffffffffffff811115612f5c57612f5b613a23565b5b612f6884828501612c4a565b91505092915050565b600060208284031215612f8757612f86613a28565b5b6000612f9584828501612c8d565b91505092915050565b600060208284031215612fb457612fb3613a28565b5b6000612fc284828501612ca2565b91505092915050565b600060208284031215612fe157612fe0613a28565b5b6000612fef84828501612cb7565b91505092915050565b6000806020838503121561300f5761300e613a28565b5b600083013567ffffffffffffffff81111561302d5761302c613a23565b5b61303985828601612cfa565b92509250509250929050565b60006020828403121561305b5761305a613a28565b5b600061306984828501612d50565b91505092915050565b6000806040838503121561308957613088613a28565b5b600061309785828601612d50565b925050602083013567ffffffffffffffff8111156130b8576130b7613a23565b5b6130c485828601612c4a565b9150509250929050565b6130d7816137c3565b82525050565b6130ee6130e9826137c3565b61392f565b82525050565b6130fd816137d5565b82525050565b600061310e82613691565b61311881856136a7565b9350613128818560208601613850565b61313181613a2d565b840191505092915050565b60006131478261369c565b61315181856136c3565b9350613161818560208601613850565b61316a81613a2d565b840191505092915050565b60006131808261369c565b61318a81856136d4565b935061319a818560208601613850565b80840191505092915050565b60006131b3600f836136c3565b91506131be82613a4b565b602082019050919050565b60006131d66007836136c3565b91506131e182613a74565b602082019050919050565b60006131f96026836136c3565b915061320482613a9d565b604082019050919050565b600061321c602a836136c3565b915061322782613aec565b604082019050919050565b600061323f6015836136c3565b915061324a82613b3b565b602082019050919050565b6000613262601e836136c3565b915061326d82613b64565b602082019050919050565b60006132856018836136c3565b915061329082613b8d565b602082019050919050565b60006132a86012836136c3565b91506132b382613bb6565b602082019050919050565b60006132cb6020836136c3565b91506132d682613bdf565b602082019050919050565b60006132ee6014836136c3565b91506132f982613c08565b602082019050919050565b6000613311601f836136c3565b915061331c82613c31565b602082019050919050565b60006133346000836136b8565b915061333f82613c5a565b600082019050919050565b60006133576020836136c3565b915061336282613c5d565b602082019050919050565b61337681613837565b82525050565b600061338882846130dd565b60148201915081905092915050565b60006133a38285613175565b91506133af8284613175565b91508190509392505050565b60006133c682613327565b9150819050919050565b60006020820190506133e560008301846130ce565b92915050565b600060808201905061340060008301876130ce565b61340d60208301866130ce565b61341a604083018561336d565b818103606083015261342c8184613103565b905095945050505050565b600060208201905061344c60008301846130f4565b92915050565b6000602082019050818103600083015261346c818461313c565b905092915050565b6000602082019050818103600083015261348d816131a6565b9050919050565b600060208201905081810360008301526134ad816131c9565b9050919050565b600060208201905081810360008301526134cd816131ec565b9050919050565b600060208201905081810360008301526134ed8161320f565b9050919050565b6000602082019050818103600083015261350d81613232565b9050919050565b6000602082019050818103600083015261352d81613255565b9050919050565b6000602082019050818103600083015261354d81613278565b9050919050565b6000602082019050818103600083015261356d8161329b565b9050919050565b6000602082019050818103600083015261358d816132be565b9050919050565b600060208201905081810360008301526135ad816132e1565b9050919050565b600060208201905081810360008301526135cd81613304565b9050919050565b600060208201905081810360008301526135ed8161334a565b9050919050565b6000602082019050613609600083018461336d565b92915050565b600061361961362a565b905061362582826138b5565b919050565b6000604051905090565b600067ffffffffffffffff82111561364f5761364e6139e0565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561367b5761367a6139e0565b5b61368482613a2d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136ea82613837565b91506136f583613837565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561372a57613729613953565b5b828201905092915050565b600061374082613837565b915061374b83613837565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561378457613783613953565b5b828202905092915050565b600061379a82613837565b91506137a583613837565b9250828210156137b8576137b7613953565b5b828203905092915050565b60006137ce82613817565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561386e578082015181840152602081019050613853565b8381111561387d576000848401525b50505050565b6000600282049050600182168061389b57607f821691505b602082108114156138af576138ae613982565b5b50919050565b6138be82613a2d565b810181811067ffffffffffffffff821117156138dd576138dc6139e0565b5b80604052505050565b60006138f182613837565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561392457613923613953565b5b600182019050919050565b600061393a82613941565b9050919050565b600061394c82613a3e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455448206e6f7420656e6f7567682e0000000000000000000000000000000000600082015250565b7f4661696c65642e00000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f7265616368656420616c6c6f77206c697374207065722061646472657373206d60008201527f696e7420616d6f756e7400000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204d65726b6c652050726f6f662e0000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f7768696c74206c697374206973206e6f7420656e6f7567680000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f706c656173652077616974207468652073616c65000000000000000000000000600082015250565b7f72656163686564206d617820706572206d696e74206d617820616d6f756e7400600082015250565b50565b7f616c6c6f774c6973742073616c6520686173206e6f7420626567756e20796574600082015250565b613c8f816137c3565b8114613c9a57600080fd5b50565b613ca6816137d5565b8114613cb157600080fd5b50565b613cbd816137e1565b8114613cc857600080fd5b50565b613cd4816137eb565b8114613cdf57600080fd5b50565b613ceb81613837565b8114613cf657600080fd5b5056fea26469706673582212202c0a866f71350aa0d53f9f6fe5785e04ed8989b48a13e301f02b4eabd3957a8864736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a66386d385344714a44343476424d73436b4b6372455971656d6e354d71614d487933654533666139655a682f00000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c80637b11549811610139578063c87b56dd116100b6578063e985e9c51161007a578063e985e9c514610849578063eb8d244414610886578063f2fde38b146108b1578063f3c74911146108da578063f6209baf146108f6578063fdc59d841461092157610246565b8063c87b56dd1461075d578063d2cab0561461079a578063d4d4b83e146107b6578063dc33e681146107e1578063ddc9a3651461081e57610246565b8063a22cb465116100fd578063a22cb4651461067a578063b88d4fde146106a3578063bb122299146106cc578063bd22f2f814610709578063c5f77e161461072057610246565b80637b115498146105a957806384584d07146105d25780638da5cb5b146105fb57806391b7f5ed1461062657806395d89b411461064f57610246565b80633ccfd60b116101c757806355f804b31161018b57806355f804b3146104c45780636352211e146104ed5780636ddf297b1461052a57806370a0823114610555578063715018a61461059257610246565b80633ccfd60b1461040357806342842e0e1461041a5780634381af7314610443578063499e8eec1461046e578063507e094f1461049957610246565b806313c62d511161020e57806313c62d511461033057806316b76df51461035b57806318160ddd1461039857806323b872dd146103c357806334918dfd146103ec57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f05780630acc857414610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190612f9e565b61094c565b60405161027f9190613437565b60405180910390f35b34801561029457600080fd5b5061029d6109de565b6040516102aa9190613452565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613045565b610a70565b6040516102e791906133d0565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190612ee8565b610aec565b005b34801561032557600080fd5b5061032e610c2d565b005b34801561033c57600080fd5b50610345610cd5565b60405161035291906135f4565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d9190612f28565b610cda565b60405161038f9190613437565b60405180910390f35b3480156103a457600080fd5b506103ad610d1b565b6040516103ba91906135f4565b60405180910390f35b3480156103cf57600080fd5b506103ea60048036038101906103e59190612dd2565b610d32565b005b3480156103f857600080fd5b50610401611057565b005b34801561040f57600080fd5b506104186110ff565b005b34801561042657600080fd5b50610441600480360381019061043c9190612dd2565b61122a565b005b34801561044f57600080fd5b5061045861124a565b60405161046591906135f4565b60405180910390f35b34801561047a57600080fd5b50610483611250565b6040516104909190613437565b60405180910390f35b3480156104a557600080fd5b506104ae611267565b6040516104bb91906135f4565b60405180910390f35b3480156104d057600080fd5b506104eb60048036038101906104e69190612ff8565b61128b565b005b3480156104f957600080fd5b50610514600480360381019061050f9190613045565b61131d565b60405161052191906133d0565b60405180910390f35b34801561053657600080fd5b5061053f61132f565b60405161054c91906135f4565b60405180910390f35b34801561056157600080fd5b5061057c60048036038101906105779190612d65565b611353565b60405161058991906135f4565b60405180910390f35b34801561059e57600080fd5b506105a761140c565b005b3480156105b557600080fd5b506105d060048036038101906105cb9190613045565b611494565b005b3480156105de57600080fd5b506105f960048036038101906105f49190612f71565b611574565b005b34801561060757600080fd5b506106106115fa565b60405161061d91906133d0565b60405180910390f35b34801561063257600080fd5b5061064d60048036038101906106489190613045565b611624565b005b34801561065b57600080fd5b506106646116aa565b6040516106719190613452565b60405180910390f35b34801561068657600080fd5b506106a1600480360381019061069c9190612ea8565b61173c565b005b3480156106af57600080fd5b506106ca60048036038101906106c59190612e25565b6118b4565b005b3480156106d857600080fd5b506106f360048036038101906106ee9190612d65565b611927565b60405161070091906135f4565b60405180910390f35b34801561071557600080fd5b5061071e61193f565b005b34801561072c57600080fd5b5061074760048036038101906107429190612d65565b611a00565b6040516107549190613437565b60405180910390f35b34801561076957600080fd5b50610784600480360381019061077f9190613045565b611a20565b6040516107919190613452565b60405180910390f35b6107b460048036038101906107af9190613072565b611abf565b005b3480156107c257600080fd5b506107cb611eaa565b6040516107d89190613437565b60405180910390f35b3480156107ed57600080fd5b5061080860048036038101906108039190612d65565b611ebd565b60405161081591906135f4565b60405180910390f35b34801561082a57600080fd5b50610833611ecf565b6040516108409190613437565b60405180910390f35b34801561085557600080fd5b50610870600480360381019061086b9190612d92565b611ee6565b60405161087d9190613437565b60405180910390f35b34801561089257600080fd5b5061089b611f7a565b6040516108a89190613437565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d39190612d65565b611f8d565b005b6108f460048036038101906108ef9190613045565b612085565b005b34801561090257600080fd5b5061090b6121f2565b60405161091891906135f4565b60405180910390f35b34801561092d57600080fd5b50610936612209565b60405161094391906135f4565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a757506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d75750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109ed90613883565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1990613883565b8015610a665780601f10610a3b57610100808354040283529160200191610a66565b820191906000526020600020905b815481529060010190602001808311610a4957829003601f168201915b5050505050905090565b6000610a7b8261220f565b610ab1576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af78261131d565b90508073ffffffffffffffffffffffffffffffffffffffff16610b1861226e565b73ffffffffffffffffffffffffffffffffffffffff1614610b7b57610b4481610b3f61226e565b611ee6565b610b7a576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b610c35612276565b73ffffffffffffffffffffffffffffffffffffffff16610c536115fa565b73ffffffffffffffffffffffffffffffffffffffff1614610ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ca090613574565b60405180910390fd5b600c60009054906101000a900460ff1615600c60006101000a81548160ff021916908315150217905550565b606781565b60008033604051602001610cee919061337c565b604051602081830303815290604052805190602001209050610d1383600f548361227e565b915050919050565b6000610d25612295565b6001546000540303905090565b6000610d3d8261229a565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610da4576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610db084612368565b91509150610dc68187610dc161226e565b61238a565b610e1257610ddb86610dd661226e565b611ee6565b610e11576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e79576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610e8686868660016123ce565b8015610e9157600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f5f85610f3b8888876123d4565b7c0200000000000000000000000000000000000000000000000000000000176123fc565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415610fe7576000600185019050600060046000838152602001908152602001600020541415610fe5576000548114610fe4578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461104f8686866001612427565b505050505050565b61105f612276565b73ffffffffffffffffffffffffffffffffffffffff1661107d6115fa565b73ffffffffffffffffffffffffffffffffffffffff16146110d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ca90613574565b60405180910390fd5b600a60009054906101000a900460ff1615600a60006101000a81548160ff021916908315150217905550565b611107612276565b73ffffffffffffffffffffffffffffffffffffffff166111256115fa565b73ffffffffffffffffffffffffffffffffffffffff161461117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290613574565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516111a1906133bb565b60006040518083038185875af1925050503d80600081146111de576040519150601f19603f3d011682016040523d82523d6000602084013e6111e3565b606091505b5050905080611227576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121e90613494565b60405180910390fd5b50565b611245838383604051806020016040528060008152506118b4565b505050565b61271081565b6000600a60009054906101000a900460ff16905090565b7f000000000000000000000000000000000000000000000000000000000000000a81565b611293612276565b73ffffffffffffffffffffffffffffffffffffffff166112b16115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611307576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fe90613574565b60405180910390fd5b8181600b9190611318929190612ae0565b505050565b60006113288261229a565b9050919050565b7f000000000000000000000000000000000000000000000000000000000000000281565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113bb576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611414612276565b73ffffffffffffffffffffffffffffffffffffffff166114326115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f90613574565b60405180910390fd5b611492600061242d565b565b61149c612276565b73ffffffffffffffffffffffffffffffffffffffff166114ba6115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611510576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150790613574565b60405180910390fd5b6127108161151c610d1b565b61152691906136df565b1115611567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155e90613554565b60405180910390fd5b61157133826124f3565b50565b61157c612276565b73ffffffffffffffffffffffffffffffffffffffff1661159a6115fa565b73ffffffffffffffffffffffffffffffffffffffff16146115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e790613574565b60405180910390fd5b80600f8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61162c612276565b73ffffffffffffffffffffffffffffffffffffffff1661164a6115fa565b73ffffffffffffffffffffffffffffffffffffffff16146116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613574565b60405180910390fd5b8060098190555050565b6060600380546116b990613883565b80601f01602080910402602001604051908101604052809291908181526020018280546116e590613883565b80156117325780601f1061170757610100808354040283529160200191611732565b820191906000526020600020905b81548152906001019060200180831161171557829003601f168201915b5050505050905090565b61174461226e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006117b661226e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661186361226e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118a89190613437565b60405180910390a35050565b6118bf848484610d32565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611921576118ea84848484612511565b611920576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60116020528060005260406000206000915090505481565b611947612276565b73ffffffffffffffffffffffffffffffffffffffff166119656115fa565b73ffffffffffffffffffffffffffffffffffffffff16146119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b290613574565b60405180910390fd5b60011515600a60019054906101000a900460ff16151514156119fe576119e23360676124f3565b6000600a60016101000a81548160ff0219169083151502179055505b565b60106020528060005260406000206000915054906101000a900460ff1681565b6060611a2b8261220f565b611a61576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611a6b612671565b9050600081511415611a8c5760405180602001604052806000815250611ab7565b80611a9684612703565b604051602001611aa7929190613397565b6040516020818303038152906040525b915050919050565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2490613514565b60405180910390fd5b600c60009054906101000a900460ff16611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b73906135d4565b60405180910390fd5b61271082611b88610d1b565b611b9291906136df565b1115611bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bca90613554565b60405180910390fd5b600d5482600e54611be491906136df565b1115611c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1c90613534565b60405180910390fd5b600033604051602001611c38919061337c565b604051602081830303815290604052805190602001209050611c5d82600f548361227e565b611c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c93906134f4565b60405180910390fd5b601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611daa576001601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f0000000000000000000000000000000000000000000000000000000000000002601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015611e2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e23906134d4565b60405180910390fd5b82601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e7b919061378f565b92505081905550611e8c33846124f3565b82600e6000828254611e9e91906136df565b92505081905550505050565b600a60019054906101000a900460ff1681565b6000611ec88261275d565b9050919050565b6000600c60009054906101000a900460ff16905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600a60009054906101000a900460ff1681565b611f95612276565b73ffffffffffffffffffffffffffffffffffffffff16611fb36115fa565b73ffffffffffffffffffffffffffffffffffffffff1614612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090613574565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612079576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612070906134b4565b60405180910390fd5b6120828161242d565b50565b600a60009054906101000a900460ff166120d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cb90613594565b60405180910390fd5b612710816120e0610d1b565b6120ea91906136df565b111561212b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212290613554565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000a81111561218e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612185906135b4565b60405180910390fd5b346121a4826009546127b490919063ffffffff16565b11156121e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121dc90613474565b60405180910390fd5b6121ef33826124f3565b50565b6000600e54600d54612204919061378f565b905090565b60095481565b60008161221a612295565b11158015612229575060005482105b8015612267575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600033905090565b60008261228b85846127ca565b1490509392505050565b600090565b600080829050806122a9612295565b11612331576000548110156123305760006004600083815260200190815260200160002054905060007c01000000000000000000000000000000000000000000000000000000008216141561232e575b60008114156123245760046000836001900393508381526020019081526020016000205490506122f9565b8092505050612363565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000806000600690508360005280602052604060002092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86123eb86868461283f565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61250d828260405180602001604052806000815250612848565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261253761226e565b8786866040518563ffffffff1660e01b815260040161255994939291906133eb565b602060405180830381600087803b15801561257357600080fd5b505af19250505080156125a457506040513d601f19601f820116820180604052508101906125a19190612fcb565b60015b61261e573d80600081146125d4576040519150601f19603f3d011682016040523d82523d6000602084013e6125d9565b606091505b50600081511415612616576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600b805461268090613883565b80601f01602080910402602001604051908101604052809291908181526020018280546126ac90613883565b80156126f95780601f106126ce576101008083540402835291602001916126f9565b820191906000526020600020905b8154815290600101906020018083116126dc57829003601f168201915b5050505050905090565b60606080604051019050806040528082600183039250600a81066030018353600a810490505b801561274957600183039250600a81066030018353600a81049050612729565b508181036020830392508083525050919050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b600081836127c29190613735565b905092915050565b60008082905060005b84518110156128345760008582815181106127f1576127f06139b1565b5b602002602001015190508083116128135761280c83826128e5565b9250612820565b61281d81846128e5565b92505b50808061282c906138e6565b9150506127d3565b508091505092915050565b60009392505050565b61285283836128fc565b60008373ffffffffffffffffffffffffffffffffffffffff163b146128e057600080549050600083820390505b6128926000868380600101945086612511565b6128c8576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81811061287f5781600054146128dd57600080fd5b50505b505050565b600082600052816020526040600020905092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612969576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008214156129a4576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6129b160008483856123ce565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550612a2883612a1960008660006123d4565b612a2285612ad0565b176123fc565b60046000838152602001908152602001600020819055506000819050600083830190505b818060010192508573ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612a4c57806000819055505050612acb6000848385612427565b505050565b60006001821460e11b9050919050565b828054612aec90613883565b90600052602060002090601f016020900481019282612b0e5760008555612b55565b82601f10612b2757803560ff1916838001178555612b55565b82800160010185558215612b55579182015b82811115612b54578235825591602001919060010190612b39565b5b509050612b629190612b66565b5090565b5b80821115612b7f576000816000905550600101612b67565b5090565b6000612b96612b9184613634565b61360f565b90508083825260208201905082856020860282011115612bb957612bb8613a19565b5b60005b85811015612be95781612bcf8882612c8d565b845260208401935060208301925050600181019050612bbc565b5050509392505050565b6000612c06612c0184613660565b61360f565b905082815260208101848484011115612c2257612c21613a1e565b5b612c2d848285613841565b509392505050565b600081359050612c4481613c86565b92915050565b600082601f830112612c5f57612c5e613a14565b5b8135612c6f848260208601612b83565b91505092915050565b600081359050612c8781613c9d565b92915050565b600081359050612c9c81613cb4565b92915050565b600081359050612cb181613ccb565b92915050565b600081519050612cc681613ccb565b92915050565b600082601f830112612ce157612ce0613a14565b5b8135612cf1848260208601612bf3565b91505092915050565b60008083601f840112612d1057612d0f613a14565b5b8235905067ffffffffffffffff811115612d2d57612d2c613a0f565b5b602083019150836001820283011115612d4957612d48613a19565b5b9250929050565b600081359050612d5f81613ce2565b92915050565b600060208284031215612d7b57612d7a613a28565b5b6000612d8984828501612c35565b91505092915050565b60008060408385031215612da957612da8613a28565b5b6000612db785828601612c35565b9250506020612dc885828601612c35565b9150509250929050565b600080600060608486031215612deb57612dea613a28565b5b6000612df986828701612c35565b9350506020612e0a86828701612c35565b9250506040612e1b86828701612d50565b9150509250925092565b60008060008060808587031215612e3f57612e3e613a28565b5b6000612e4d87828801612c35565b9450506020612e5e87828801612c35565b9350506040612e6f87828801612d50565b925050606085013567ffffffffffffffff811115612e9057612e8f613a23565b5b612e9c87828801612ccc565b91505092959194509250565b60008060408385031215612ebf57612ebe613a28565b5b6000612ecd85828601612c35565b9250506020612ede85828601612c78565b9150509250929050565b60008060408385031215612eff57612efe613a28565b5b6000612f0d85828601612c35565b9250506020612f1e85828601612d50565b9150509250929050565b600060208284031215612f3e57612f3d613a28565b5b600082013567ffffffffffffffff811115612f5c57612f5b613a23565b5b612f6884828501612c4a565b91505092915050565b600060208284031215612f8757612f86613a28565b5b6000612f9584828501612c8d565b91505092915050565b600060208284031215612fb457612fb3613a28565b5b6000612fc284828501612ca2565b91505092915050565b600060208284031215612fe157612fe0613a28565b5b6000612fef84828501612cb7565b91505092915050565b6000806020838503121561300f5761300e613a28565b5b600083013567ffffffffffffffff81111561302d5761302c613a23565b5b61303985828601612cfa565b92509250509250929050565b60006020828403121561305b5761305a613a28565b5b600061306984828501612d50565b91505092915050565b6000806040838503121561308957613088613a28565b5b600061309785828601612d50565b925050602083013567ffffffffffffffff8111156130b8576130b7613a23565b5b6130c485828601612c4a565b9150509250929050565b6130d7816137c3565b82525050565b6130ee6130e9826137c3565b61392f565b82525050565b6130fd816137d5565b82525050565b600061310e82613691565b61311881856136a7565b9350613128818560208601613850565b61313181613a2d565b840191505092915050565b60006131478261369c565b61315181856136c3565b9350613161818560208601613850565b61316a81613a2d565b840191505092915050565b60006131808261369c565b61318a81856136d4565b935061319a818560208601613850565b80840191505092915050565b60006131b3600f836136c3565b91506131be82613a4b565b602082019050919050565b60006131d66007836136c3565b91506131e182613a74565b602082019050919050565b60006131f96026836136c3565b915061320482613a9d565b604082019050919050565b600061321c602a836136c3565b915061322782613aec565b604082019050919050565b600061323f6015836136c3565b915061324a82613b3b565b602082019050919050565b6000613262601e836136c3565b915061326d82613b64565b602082019050919050565b60006132856018836136c3565b915061329082613b8d565b602082019050919050565b60006132a86012836136c3565b91506132b382613bb6565b602082019050919050565b60006132cb6020836136c3565b91506132d682613bdf565b602082019050919050565b60006132ee6014836136c3565b91506132f982613c08565b602082019050919050565b6000613311601f836136c3565b915061331c82613c31565b602082019050919050565b60006133346000836136b8565b915061333f82613c5a565b600082019050919050565b60006133576020836136c3565b915061336282613c5d565b602082019050919050565b61337681613837565b82525050565b600061338882846130dd565b60148201915081905092915050565b60006133a38285613175565b91506133af8284613175565b91508190509392505050565b60006133c682613327565b9150819050919050565b60006020820190506133e560008301846130ce565b92915050565b600060808201905061340060008301876130ce565b61340d60208301866130ce565b61341a604083018561336d565b818103606083015261342c8184613103565b905095945050505050565b600060208201905061344c60008301846130f4565b92915050565b6000602082019050818103600083015261346c818461313c565b905092915050565b6000602082019050818103600083015261348d816131a6565b9050919050565b600060208201905081810360008301526134ad816131c9565b9050919050565b600060208201905081810360008301526134cd816131ec565b9050919050565b600060208201905081810360008301526134ed8161320f565b9050919050565b6000602082019050818103600083015261350d81613232565b9050919050565b6000602082019050818103600083015261352d81613255565b9050919050565b6000602082019050818103600083015261354d81613278565b9050919050565b6000602082019050818103600083015261356d8161329b565b9050919050565b6000602082019050818103600083015261358d816132be565b9050919050565b600060208201905081810360008301526135ad816132e1565b9050919050565b600060208201905081810360008301526135cd81613304565b9050919050565b600060208201905081810360008301526135ed8161334a565b9050919050565b6000602082019050613609600083018461336d565b92915050565b600061361961362a565b905061362582826138b5565b919050565b6000604051905090565b600067ffffffffffffffff82111561364f5761364e6139e0565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561367b5761367a6139e0565b5b61368482613a2d565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006136ea82613837565b91506136f583613837565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561372a57613729613953565b5b828201905092915050565b600061374082613837565b915061374b83613837565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561378457613783613953565b5b828202905092915050565b600061379a82613837565b91506137a583613837565b9250828210156137b8576137b7613953565b5b828203905092915050565b60006137ce82613817565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561386e578082015181840152602081019050613853565b8381111561387d576000848401525b50505050565b6000600282049050600182168061389b57607f821691505b602082108114156138af576138ae613982565b5b50919050565b6138be82613a2d565b810181811067ffffffffffffffff821117156138dd576138dc6139e0565b5b80604052505050565b60006138f182613837565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561392457613923613953565b5b600182019050919050565b600061393a82613941565b9050919050565b600061394c82613a3e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455448206e6f7420656e6f7567682e0000000000000000000000000000000000600082015250565b7f4661696c65642e00000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f7265616368656420616c6c6f77206c697374207065722061646472657373206d60008201527f696e7420616d6f756e7400000000000000000000000000000000000000000000602082015250565b7f496e76616c6964204d65726b6c652050726f6f662e0000000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f7768696c74206c697374206973206e6f7420656e6f7567680000000000000000600082015250565b7f72656163686564206d617820737570706c790000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f706c656173652077616974207468652073616c65000000000000000000000000600082015250565b7f72656163686564206d617820706572206d696e74206d617820616d6f756e7400600082015250565b50565b7f616c6c6f774c6973742073616c6520686173206e6f7420626567756e20796574600082015250565b613c8f816137c3565b8114613c9a57600080fd5b50565b613ca6816137d5565b8114613cb157600080fd5b50565b613cbd816137e1565b8114613cc857600080fd5b50565b613cd4816137eb565b8114613cdf57600080fd5b50565b613ceb81613837565b8114613cf657600080fd5b5056fea26469706673582212202c0a866f71350aa0d53f9f6fe5785e04ed8989b48a13e301f02b4eabd3957a8864736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5a66386d385344714a44343476424d73436b4b6372455971656d6e354d71614d487933654533666139655a682f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmZf8m8SDqJD44vBMsCkKcrEYqemn5MqaMHy3eE3fa9eZh/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5a66386d385344714a44343476424d73436b4b63724559
Arg [3] : 71656d6e354d71614d487933654533666139655a682f00000000000000000000


Deployed Bytecode Sourcemap

1933:4242:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5653:607:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11161:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13048:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12611:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5617:104:2;;;;;;;;;;;;;:::i;:::-;;2109:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5967:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4736:309:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22055:2739;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3340:87:2;;;;;;;;;;;;;:::i;:::-;;2455:159;;;;;;;;;;;;;:::i;:::-;;13912:179:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2061:41:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3433:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2237:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3229:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10957:142:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4300:48:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6319:221:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1661:101:4;;;;;;;;;;;;;:::i;:::-;;2914:189:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5521:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1029:85:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2816:92:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11323:102:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13315:303;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14157:388;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4441:51:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2621:189;;;;;;;;;;;;;:::i;:::-;;4388:47;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11491:313:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4521:973:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2197:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3533:111;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5727:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13684:162:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2158:32:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1911:198:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3650:508:2;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5833:128;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2015:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5653:607:1;5738:4;6048:10;6033:25;;:11;:25;;;;:101;;;;6124:10;6109:25;;:11;:25;;;;6033:101;:177;;;;6200:10;6185:25;;:11;:25;;;;6033:177;6014:196;;5653:607;;;:::o;11161:98::-;11215:13;11247:5;11240:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11161:98;:::o;13048:200::-;13116:7;13140:16;13148:7;13140;:16::i;:::-;13135:64;;13165:34;;;;;;;;;;;;;;13135:64;13217:15;:24;13233:7;13217:24;;;;;;;;;;;;;;;;;;;;;13210:31;;13048:200;;;:::o;12611:376::-;12683:13;12699:16;12707:7;12699;:16::i;:::-;12683:32;;12753:5;12730:28;;:19;:17;:19::i;:::-;:28;;;12726:172;;12777:44;12794:5;12801:19;:17;:19::i;:::-;12777:16;:44::i;:::-;12772:126;;12848:35;;;;;;;;;;;;;;12772:126;12726:172;12935:2;12908:15;:24;12924:7;12908:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;12972:7;12968:2;12952:28;;12961:5;12952:28;;;;;;;;;;;;12673:314;12611:376;;:::o;5617:104:2:-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5699:15:2::1;;;;;;;;;;;5698:16;5680:15;;:34;;;;;;;;;;;;;;;;;;5617:104::o:0;2109:42::-;2148:3;2109:42;:::o;5967:206::-;6036:4;6052:12;6094:10;6077:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;6067:39;;;;;;6052:54;;6123:43;6142:5;6149:10;;6161:4;6123:18;:43::i;:::-;6116:50;;;5967:206;;;:::o;4736:309:1:-;4789:7;5013:15;:13;:15::i;:::-;4998:12;;4982:13;;:28;:46;4975:53;;4736:309;:::o;22055:2739::-;22184:27;22214;22233:7;22214:18;:27::i;:::-;22184:57;;22297:4;22256:45;;22272:19;22256:45;;;22252:86;;22310:28;;;;;;;;;;;;;;22252:86;22350:27;22379:23;22406:28;22426:7;22406:19;:28::i;:::-;22349:85;;;;22531:62;22550:15;22567:4;22573:19;:17;:19::i;:::-;22531:18;:62::i;:::-;22526:173;;22612:43;22629:4;22635:19;:17;:19::i;:::-;22612:16;:43::i;:::-;22607:92;;22664:35;;;;;;;;;;;;;;22607:92;22526:173;22728:1;22714:16;;:2;:16;;;22710:52;;;22739:23;;;;;;;;;;;;;;22710:52;22773:43;22795:4;22801:2;22805:7;22814:1;22773:21;:43::i;:::-;22905:15;22902:157;;;23043:1;23022:19;23015:30;22902:157;23429:18;:24;23448:4;23429:24;;;;;;;;;;;;;;;;23427:26;;;;;;;;;;;;23497:18;:22;23516:2;23497:22;;;;;;;;;;;;;;;;23495:24;;;;;;;;;;;23812:142;23848:2;23895:45;23910:4;23916:2;23920:19;23895:14;:45::i;:::-;2046:8;23868:72;23812:18;:142::i;:::-;23783:17;:26;23801:7;23783:26;;;;;;;;;;;:171;;;;24121:1;2046:8;24071:19;:46;:51;24067:616;;;24142:19;24174:1;24164:7;:11;24142:33;;24329:1;24295:17;:30;24313:11;24295:30;;;;;;;;;;;;:35;24291:378;;;24431:13;;24416:11;:28;24412:239;;24609:19;24576:17;:30;24594:11;24576:30;;;;;;;;;;;:52;;;;24412:239;24291:378;24124:559;24067:616;24727:7;24723:2;24708:27;;24717:4;24708:27;;;;;;;;;;;;24745:42;24766:4;24772:2;24776:7;24785:1;24745:20;:42::i;:::-;22174:2620;;;22055:2739;;;:::o;3340:87:2:-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3408:12:2::1;;;;;;;;;;;3407:13;3392:12;;:28;;;;;;;;;;;;;;;;;;3340:87::o:0;2455:159::-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2503:12:2::1;2521:10;:15;;2544:21;2521:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2502:68;;;2588:7;2580:27;;;;;;;;;;;;:::i;:::-;;;;;;;;;2492:122;2455:159::o:0;13912:179:1:-;14045:39;14062:4;14068:2;14072:7;14045:39;;;;;;;;;;;;:16;:39::i;:::-;13912:179;;;:::o;2061:41:2:-;2097:5;2061:41;:::o;3433:94::-;3486:4;3508:12;;;;;;;;;;;3501:19;;3433:94;:::o;2237:40::-;;;:::o;3229:104::-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3319:7:2::1;;3303:13;:23;;;;;;;:::i;:::-;;3229:104:::0;;:::o;10957:142:1:-;11021:7;11063:27;11082:7;11063:18;:27::i;:::-;11040:52;;10957:142;;;:::o;4300:48:2:-;;;:::o;6319:221:1:-;6383:7;6423:1;6406:19;;:5;:19;;;6402:60;;;6434:28;;;;;;;;;;;;;;6402:60;1022:13;6479:18;:25;6498:5;6479:25;;;;;;;;;;;;;;;;:54;6472:61;;6319:221;;;:::o;1661:101:4:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;2914:189:2:-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2097:5:2::1;3003:8;2987:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;2979:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3065:31;3075:10;3087:8;3065:9;:31::i;:::-;2914:189:::0;:::o;5521:90::-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5599:5:2::1;5586:10;:18;;;;5521:90:::0;:::o;1029:85:4:-;1075:7;1101:6;;;;;;;;;;;1094:13;;1029:85;:::o;2816:92:2:-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2892:9:2::1;2880;:21;;;;2816:92:::0;:::o;11323:102:1:-;11379:13;11411:7;11404:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11323:102;:::o;13315:303::-;13425:19;:17;:19::i;:::-;13413:31;;:8;:31;;;13409:61;;;13453:17;;;;;;;;;;;;;;13409:61;13533:8;13481:18;:39;13500:19;:17;:19::i;:::-;13481:39;;;;;;;;;;;;;;;:49;13521:8;13481:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;13592:8;13556:55;;13571:19;:17;:19::i;:::-;13556:55;;;13602:8;13556:55;;;;;;:::i;:::-;;;;;;;;13315:303;;:::o;14157:388::-;14318:31;14331:4;14337:2;14341:7;14318:12;:31::i;:::-;14381:1;14363:2;:14;;;:19;14359:180;;14401:56;14432:4;14438:2;14442:7;14451:5;14401:30;:56::i;:::-;14396:143;;14484:40;;;;;;;;;;;;;;14396:143;14359:180;14157:388;;;;:::o;4441:51:2:-;;;;;;;;;;;;;;;;;:::o;2621:189::-;1252:12:4;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2702:4:2::1;2684:22;;:14;;;;;;;;;;;:22;;;2680:124;;;2722:35;2732:10;2148:3;2722:9;:35::i;:::-;2788:5;2771:14;;:22;;;;;;;;;;;;;;;;;;2680:124;2621:189::o:0;4388:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;11491:313:1:-;11564:13;11594:16;11602:7;11594;:16::i;:::-;11589:59;;11619:29;;;;;;;;;;;;;;11589:59;11659:21;11683:10;:8;:10::i;:::-;11659:34;;11735:1;11716:7;11710:21;:26;;:87;;;;;;;;;;;;;;;;;11763:7;11772:18;11782:7;11772:9;:18::i;:::-;11746:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;11710:87;11703:94;;;11491:313;;;:::o;4521:973:2:-;4635:10;4622:23;;:9;:23;;;4614:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;4698:15;;;;;;;;;;;4690:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;2097:5;4784:8;4768:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;4760:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4882:18;;4870:8;4846:21;;:32;;;;:::i;:::-;:54;;4838:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;4940:12;4982:10;4965:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;4955:39;;;;;;4940:54;;5012:43;5031:5;5038:10;;5050:4;5012:18;:43::i;:::-;5004:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;5097:15;:27;5113:10;5097:27;;;;;;;;;;;;;;;;;;;;;;;;;5093:155;;5169:4;5139:15;:27;5155:10;5139:27;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;5218:19;5187:16;:28;5204:10;5187:28;;;;;;;;;;;;;;;:50;;;;5093:155;5297:8;5265:16;:28;5282:10;5265:28;;;;;;;;;;;;;;;;:40;;5257:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;5394:8;5362:16;:28;5379:10;5362:28;;;;;;;;;;;;;;;;:40;;;;;;;:::i;:::-;;;;;;;;5412:31;5422:10;5434:8;5412:9;:31::i;:::-;5479:8;5454:21;;:33;;;;;;;:::i;:::-;;;;;;;;4603:891;4521:973;;:::o;2197:33::-;;;;;;;;;;;;;:::o;3533:111::-;3591:7;3617:20;3631:5;3617:13;:20::i;:::-;3610:27;;3533:111;;;:::o;5727:100::-;5783:4;5805:15;;;;;;;;;;;5798:22;;5727:100;:::o;13684:162:1:-;13781:4;13804:18;:25;13823:5;13804:25;;;;;;;;;;;;;;;:35;13830:8;13804:35;;;;;;;;;;;;;;;;;;;;;;;;;13797:42;;13684:162;;;;:::o;2158:32:2:-;;;;;;;;;;;;;:::o;1911:198:4:-;1252:12;:10;:12::i;:::-;1241:23;;:7;:5;:7::i;:::-;:23;;;1233:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2019:1:::1;1999:22;;:8;:22;;;;1991:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;3650:508:2:-;3758:12;;;;;;;;;;;3750:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;2097:5;3855:8;3839:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:37;;3831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3959:10;3947:8;:22;;3939:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;4081:9;4054:23;4068:8;4054:9;;:13;;:23;;;;:::i;:::-;:36;;4046:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;4120:31;4130:10;4142:8;4120:9;:31::i;:::-;3650:508;:::o;5833:128::-;5887:7;5933:21;;5912:18;;:42;;;;:::i;:::-;5905:49;;5833:128;:::o;2015:38::-;;;;:::o;14791:268:1:-;14848:4;14902:7;14883:15;:13;:15::i;:::-;:26;;:65;;;;;14935:13;;14925:7;:23;14883:65;:150;;;;;15032:1;1774:8;14985:17;:26;15003:7;14985:26;;;;;;;;;;;;:43;:48;14883:150;14864:169;;14791:268;;;:::o;32874:103::-;32934:7;32960:10;32953:17;;32874:103;:::o;640:96:0:-;693:7;719:10;712:17;;640:96;:::o;506:184:2:-;627:4;679;650:25;663:5;670:4;650:12;:25::i;:::-;:33;643:40;;506:184;;;;;:::o;4276:90:1:-;4332:7;4276:90;:::o;7949:1105::-;8016:7;8035:12;8050:7;8035:22;;8115:4;8096:15;:13;:15::i;:::-;:23;8092:898;;8148:13;;8141:4;:20;8137:853;;;8185:14;8202:17;:23;8220:4;8202:23;;;;;;;;;;;;8185:40;;8316:1;1774:8;8289:6;:23;:28;8285:687;;;8800:111;8817:1;8807:6;:11;8800:111;;;8859:17;:25;8877:6;;;;;;;8859:25;;;;;;;;;;;;8850:34;;8800:111;;;8943:6;8936:13;;;;;;8285:687;8163:827;8137:853;8092:898;9016:31;;;;;;;;;;;;;;7949:1105;;;;:::o;20436:637::-;20528:27;20557:23;20596:53;20652:15;20596:71;;20834:7;20828:4;20821:21;20868:22;20862:4;20855:36;20943:4;20937;20927:21;20904:44;;21037:19;21031:26;21012:45;;20774:293;20436:637;;;:::o;21181:632::-;21319:11;21478:15;21472:4;21468:26;21460:34;;21635:15;21624:9;21620:31;21607:44;;21780:15;21769:9;21766:30;21759:4;21748:9;21745:19;21742:55;21732:65;;21181:632;;;;;:::o;31742:154::-;;;;;:::o;30099:302::-;30230:7;30249:16;2166:3;30275:19;:40;;30249:67;;2166:3;30341:31;30352:4;30358:2;30362:9;30341:10;:31::i;:::-;30333:40;;:61;;30326:68;;;30099:302;;;;;:::o;10460:440::-;10540:14;10705:15;10698:5;10694:27;10685:36;;10877:5;10863:11;10839:22;10835:40;10832:51;10825:5;10822:62;10812:72;;10460:440;;;;:::o;32537:153::-;;;;;:::o;2263:187:4:-;2336:16;2355:6;;;;;;;;;;;2336:25;;2380:8;2371:6;;:17;;;;;;;;;;;;;;;;;;2434:8;2403:40;;2424:8;2403:40;;;;;;;;;;;;2326:124;2263:187;:::o;15138:102:1:-;15206:27;15216:2;15220:8;15206:27;;;;;;;;;;;;:9;:27::i;:::-;15138:102;;:::o;28649:697::-;28807:4;28852:2;28827:45;;;28873:19;:17;:19::i;:::-;28894:4;28900:7;28909:5;28827:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;28823:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29122:1;29105:6;:13;:18;29101:229;;;29150:40;;;;;;;;;;;;;;29101:229;29290:6;29284:13;29275:6;29271:2;29267:15;29260:38;28823:517;28993:54;;;28983:64;;;:6;:64;;;;28976:71;;;28649:697;;;;;;:::o;3110:112:2:-;3170:13;3202;3195:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3110:112;:::o;33078:1920:1:-;33135:17;33548:3;33541:4;33535:11;33531:21;33524:28;;33637:3;33631:4;33624:17;33740:3;34188:5;34316:1;34311:3;34307:11;34300:18;;34451:2;34445:4;34441:13;34437:2;34433:22;34428:3;34420:36;34491:2;34485:4;34481:13;34473:21;;34082:682;34509:4;34082:682;;;34695:1;34690:3;34686:11;34679:18;;34745:2;34739:4;34735:13;34731:2;34727:22;34722:3;34714:36;34602:2;34596:4;34592:13;34584:21;;34082:682;;;34086:422;34801:3;34796;34792:13;34914:2;34909:3;34905:12;34898:19;;34975:6;34970:3;34963:19;33173:1819;;33078:1920;;;:::o;6617:174::-;6678:7;1022:13;1156:2;6705:18;:25;6724:5;6705:25;;;;;;;;;;;;;;;;:49;;6704:80;6697:87;;6617:174;;;:::o;3465:96:5:-;3523:7;3553:1;3549;:5;;;;:::i;:::-;3542:12;;3465:96;;;;:::o;1042:662:2:-;1125:7;1144:20;1167:4;1144:27;;1186:9;1181:488;1205:5;:12;1201:1;:16;1181:488;;;1238:20;1261:5;1267:1;1261:8;;;;;;;;:::i;:::-;;;;;;;;1238:31;;1303:12;1287;:28;1283:376;;1428:42;1443:12;1457;1428:14;:42::i;:::-;1413:57;;1283:376;;;1602:42;1617:12;1631;1602:14;:42::i;:::-;1587:57;;1283:376;1224:445;1219:3;;;;;:::i;:::-;;;;1181:488;;;;1685:12;1678:19;;;1042:662;;;;:::o;30961:143:1:-;31094:6;30961:143;;;;;:::o;15641:661::-;15759:19;15765:2;15769:8;15759:5;:19::i;:::-;15835:1;15817:2;:14;;;:19;15813:473;;15856:11;15870:13;;15856:27;;15901:13;15923:8;15917:3;:14;15901:30;;15949:229;15979:62;16018:1;16022:2;16026:7;;;;;;16035:5;15979:30;:62::i;:::-;15974:165;;16076:40;;;;;;;;;;;;;;15974:165;16173:3;16165:5;:11;15949:229;;16258:3;16241:13;;:20;16237:34;;16263:8;;;16237:34;15838:448;;15813:473;15641:661;;;:::o;1710:218:2:-;1778:13;1839:1;1833:4;1826:15;1867:1;1861:4;1854:15;1907:4;1901;1891:21;1882:30;;1710:218;;;;:::o;16563:1492:1:-;16627:20;16650:13;;16627:36;;16691:1;16677:16;;:2;:16;;;16673:48;;;16702:19;;;;;;;;;;;;;;16673:48;16747:1;16735:8;:13;16731:44;;;16757:18;;;;;;;;;;;;;;16731:44;16786:61;16816:1;16820:2;16824:12;16838:8;16786:21;:61::i;:::-;17318:1;1156:2;17289:1;:25;;17288:31;17276:8;:44;17250:18;:22;17269:2;17250:22;;;;;;;;;;;;;;;;:70;;;;;;;;;;;17590:136;17626:2;17679:33;17702:1;17706:2;17710:1;17679:14;:33::i;:::-;17646:30;17667:8;17646:20;:30::i;:::-;:66;17590:18;:136::i;:::-;17556:17;:31;17574:12;17556:31;;;;;;;;;;;:170;;;;17741:15;17759:12;17741:30;;17785:11;17814:8;17799:12;:23;17785:37;;17836:99;17887:9;;;;;;17883:2;17862:35;;17879:1;17862:35;;;;;;;;;;;;17930:3;17920:7;:13;17836:99;;17965:3;17949:13;:19;;;;17030:949;;17988:60;18017:1;18021:2;18025:12;18039:8;17988:20;:60::i;:::-;16617:1438;16563:1492;;:::o;12238:316::-;12308:14;12535:1;12525:8;12522:15;12497:23;12493:45;12483:55;;12238:316;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:6:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:139::-;1214:5;1252:6;1239:20;1230:29;;1268:33;1295:5;1268:33;:::i;:::-;1168:139;;;;:::o;1330:370::-;1401:5;1450:3;1443:4;1435:6;1431:17;1427:27;1417:122;;1458:79;;:::i;:::-;1417:122;1575:6;1562:20;1600:94;1690:3;1682:6;1675:4;1667:6;1663:17;1600:94;:::i;:::-;1591:103;;1407:293;1330:370;;;;:::o;1706:133::-;1749:5;1787:6;1774:20;1765:29;;1803:30;1827:5;1803:30;:::i;:::-;1706:133;;;;:::o;1845:139::-;1891:5;1929:6;1916:20;1907:29;;1945:33;1972:5;1945:33;:::i;:::-;1845:139;;;;:::o;1990:137::-;2035:5;2073:6;2060:20;2051:29;;2089:32;2115:5;2089:32;:::i;:::-;1990:137;;;;:::o;2133:141::-;2189:5;2220:6;2214:13;2205:22;;2236:32;2262:5;2236:32;:::i;:::-;2133:141;;;;:::o;2293:338::-;2348:5;2397:3;2390:4;2382:6;2378:17;2374:27;2364:122;;2405:79;;:::i;:::-;2364:122;2522:6;2509:20;2547:78;2621:3;2613:6;2606:4;2598:6;2594:17;2547:78;:::i;:::-;2538:87;;2354:277;2293:338;;;;:::o;2651:553::-;2709:8;2719:6;2769:3;2762:4;2754:6;2750:17;2746:27;2736:122;;2777:79;;:::i;:::-;2736:122;2890:6;2877:20;2867:30;;2920:18;2912:6;2909:30;2906:117;;;2942:79;;:::i;:::-;2906:117;3056:4;3048:6;3044:17;3032:29;;3110:3;3102:4;3094:6;3090:17;3080:8;3076:32;3073:41;3070:128;;;3117:79;;:::i;:::-;3070:128;2651:553;;;;;:::o;3210:139::-;3256:5;3294:6;3281:20;3272:29;;3310:33;3337:5;3310:33;:::i;:::-;3210:139;;;;:::o;3355:329::-;3414:6;3463:2;3451:9;3442:7;3438:23;3434:32;3431:119;;;3469:79;;:::i;:::-;3431:119;3589:1;3614:53;3659:7;3650:6;3639:9;3635:22;3614:53;:::i;:::-;3604:63;;3560:117;3355:329;;;;:::o;3690:474::-;3758:6;3766;3815:2;3803:9;3794:7;3790:23;3786:32;3783:119;;;3821:79;;:::i;:::-;3783:119;3941:1;3966:53;4011:7;4002:6;3991:9;3987:22;3966:53;:::i;:::-;3956:63;;3912:117;4068:2;4094:53;4139:7;4130:6;4119:9;4115:22;4094:53;:::i;:::-;4084:63;;4039:118;3690:474;;;;;:::o;4170:619::-;4247:6;4255;4263;4312:2;4300:9;4291:7;4287:23;4283:32;4280:119;;;4318:79;;:::i;:::-;4280:119;4438:1;4463:53;4508:7;4499:6;4488:9;4484:22;4463:53;:::i;:::-;4453:63;;4409:117;4565:2;4591:53;4636:7;4627:6;4616:9;4612:22;4591:53;:::i;:::-;4581:63;;4536:118;4693:2;4719:53;4764:7;4755:6;4744:9;4740:22;4719:53;:::i;:::-;4709:63;;4664:118;4170:619;;;;;:::o;4795:943::-;4890:6;4898;4906;4914;4963:3;4951:9;4942:7;4938:23;4934:33;4931:120;;;4970:79;;:::i;:::-;4931:120;5090:1;5115:53;5160:7;5151:6;5140:9;5136:22;5115:53;:::i;:::-;5105:63;;5061:117;5217:2;5243:53;5288:7;5279:6;5268:9;5264:22;5243:53;:::i;:::-;5233:63;;5188:118;5345:2;5371:53;5416:7;5407:6;5396:9;5392:22;5371:53;:::i;:::-;5361:63;;5316:118;5501:2;5490:9;5486:18;5473:32;5532:18;5524:6;5521:30;5518:117;;;5554:79;;:::i;:::-;5518:117;5659:62;5713:7;5704:6;5693:9;5689:22;5659:62;:::i;:::-;5649:72;;5444:287;4795:943;;;;;;;:::o;5744:468::-;5809:6;5817;5866:2;5854:9;5845:7;5841:23;5837:32;5834:119;;;5872:79;;:::i;:::-;5834:119;5992:1;6017:53;6062:7;6053:6;6042:9;6038:22;6017:53;:::i;:::-;6007:63;;5963:117;6119:2;6145:50;6187:7;6178:6;6167:9;6163:22;6145:50;:::i;:::-;6135:60;;6090:115;5744:468;;;;;:::o;6218:474::-;6286:6;6294;6343:2;6331:9;6322:7;6318:23;6314:32;6311:119;;;6349:79;;:::i;:::-;6311:119;6469:1;6494:53;6539:7;6530:6;6519:9;6515:22;6494:53;:::i;:::-;6484:63;;6440:117;6596:2;6622:53;6667:7;6658:6;6647:9;6643:22;6622:53;:::i;:::-;6612:63;;6567:118;6218:474;;;;;:::o;6698:539::-;6782:6;6831:2;6819:9;6810:7;6806:23;6802:32;6799:119;;;6837:79;;:::i;:::-;6799:119;6985:1;6974:9;6970:17;6957:31;7015:18;7007:6;7004:30;7001:117;;;7037:79;;:::i;:::-;7001:117;7142:78;7212:7;7203:6;7192:9;7188:22;7142:78;:::i;:::-;7132:88;;6928:302;6698:539;;;;:::o;7243:329::-;7302:6;7351:2;7339:9;7330:7;7326:23;7322:32;7319:119;;;7357:79;;:::i;:::-;7319:119;7477:1;7502:53;7547:7;7538:6;7527:9;7523:22;7502:53;:::i;:::-;7492:63;;7448:117;7243:329;;;;:::o;7578:327::-;7636:6;7685:2;7673:9;7664:7;7660:23;7656:32;7653:119;;;7691:79;;:::i;:::-;7653:119;7811:1;7836:52;7880:7;7871:6;7860:9;7856:22;7836:52;:::i;:::-;7826:62;;7782:116;7578:327;;;;:::o;7911:349::-;7980:6;8029:2;8017:9;8008:7;8004:23;8000:32;7997:119;;;8035:79;;:::i;:::-;7997:119;8155:1;8180:63;8235:7;8226:6;8215:9;8211:22;8180:63;:::i;:::-;8170:73;;8126:127;7911:349;;;;:::o;8266:529::-;8337:6;8345;8394:2;8382:9;8373:7;8369:23;8365:32;8362:119;;;8400:79;;:::i;:::-;8362:119;8548:1;8537:9;8533:17;8520:31;8578:18;8570:6;8567:30;8564:117;;;8600:79;;:::i;:::-;8564:117;8713:65;8770:7;8761:6;8750:9;8746:22;8713:65;:::i;:::-;8695:83;;;;8491:297;8266:529;;;;;:::o;8801:329::-;8860:6;8909:2;8897:9;8888:7;8884:23;8880:32;8877:119;;;8915:79;;:::i;:::-;8877:119;9035:1;9060:53;9105:7;9096:6;9085:9;9081:22;9060:53;:::i;:::-;9050:63;;9006:117;8801:329;;;;:::o;9136:684::-;9229:6;9237;9286:2;9274:9;9265:7;9261:23;9257:32;9254:119;;;9292:79;;:::i;:::-;9254:119;9412:1;9437:53;9482:7;9473:6;9462:9;9458:22;9437:53;:::i;:::-;9427:63;;9383:117;9567:2;9556:9;9552:18;9539:32;9598:18;9590:6;9587:30;9584:117;;;9620:79;;:::i;:::-;9584:117;9725:78;9795:7;9786:6;9775:9;9771:22;9725:78;:::i;:::-;9715:88;;9510:303;9136:684;;;;;:::o;9826:118::-;9913:24;9931:5;9913:24;:::i;:::-;9908:3;9901:37;9826:118;;:::o;9950:157::-;10055:45;10075:24;10093:5;10075:24;:::i;:::-;10055:45;:::i;:::-;10050:3;10043:58;9950:157;;:::o;10113:109::-;10194:21;10209:5;10194:21;:::i;:::-;10189:3;10182:34;10113:109;;:::o;10228:360::-;10314:3;10342:38;10374:5;10342:38;:::i;:::-;10396:70;10459:6;10454:3;10396:70;:::i;:::-;10389:77;;10475:52;10520:6;10515:3;10508:4;10501:5;10497:16;10475:52;:::i;:::-;10552:29;10574:6;10552:29;:::i;:::-;10547:3;10543:39;10536:46;;10318:270;10228:360;;;;:::o;10594:364::-;10682:3;10710:39;10743:5;10710:39;:::i;:::-;10765:71;10829:6;10824:3;10765:71;:::i;:::-;10758:78;;10845:52;10890:6;10885:3;10878:4;10871:5;10867:16;10845:52;:::i;:::-;10922:29;10944:6;10922:29;:::i;:::-;10917:3;10913:39;10906:46;;10686:272;10594:364;;;;:::o;10964:377::-;11070:3;11098:39;11131:5;11098:39;:::i;:::-;11153:89;11235:6;11230:3;11153:89;:::i;:::-;11146:96;;11251:52;11296:6;11291:3;11284:4;11277:5;11273:16;11251:52;:::i;:::-;11328:6;11323:3;11319:16;11312:23;;11074:267;10964:377;;;;:::o;11347:366::-;11489:3;11510:67;11574:2;11569:3;11510:67;:::i;:::-;11503:74;;11586:93;11675:3;11586:93;:::i;:::-;11704:2;11699:3;11695:12;11688:19;;11347:366;;;:::o;11719:365::-;11861:3;11882:66;11946:1;11941:3;11882:66;:::i;:::-;11875:73;;11957:93;12046:3;11957:93;:::i;:::-;12075:2;12070:3;12066:12;12059:19;;11719:365;;;:::o;12090:366::-;12232:3;12253:67;12317:2;12312:3;12253:67;:::i;:::-;12246:74;;12329:93;12418:3;12329:93;:::i;:::-;12447:2;12442:3;12438:12;12431:19;;12090:366;;;:::o;12462:::-;12604:3;12625:67;12689:2;12684:3;12625:67;:::i;:::-;12618:74;;12701:93;12790:3;12701:93;:::i;:::-;12819:2;12814:3;12810:12;12803:19;;12462:366;;;:::o;12834:::-;12976:3;12997:67;13061:2;13056:3;12997:67;:::i;:::-;12990:74;;13073:93;13162:3;13073:93;:::i;:::-;13191:2;13186:3;13182:12;13175:19;;12834:366;;;:::o;13206:::-;13348:3;13369:67;13433:2;13428:3;13369:67;:::i;:::-;13362:74;;13445:93;13534:3;13445:93;:::i;:::-;13563:2;13558:3;13554:12;13547:19;;13206:366;;;:::o;13578:::-;13720:3;13741:67;13805:2;13800:3;13741:67;:::i;:::-;13734:74;;13817:93;13906:3;13817:93;:::i;:::-;13935:2;13930:3;13926:12;13919:19;;13578:366;;;:::o;13950:::-;14092:3;14113:67;14177:2;14172:3;14113:67;:::i;:::-;14106:74;;14189:93;14278:3;14189:93;:::i;:::-;14307:2;14302:3;14298:12;14291:19;;13950:366;;;:::o;14322:::-;14464:3;14485:67;14549:2;14544:3;14485:67;:::i;:::-;14478:74;;14561:93;14650:3;14561:93;:::i;:::-;14679:2;14674:3;14670:12;14663:19;;14322:366;;;:::o;14694:::-;14836:3;14857:67;14921:2;14916:3;14857:67;:::i;:::-;14850:74;;14933:93;15022:3;14933:93;:::i;:::-;15051:2;15046:3;15042:12;15035:19;;14694:366;;;:::o;15066:::-;15208:3;15229:67;15293:2;15288:3;15229:67;:::i;:::-;15222:74;;15305:93;15394:3;15305:93;:::i;:::-;15423:2;15418:3;15414:12;15407:19;;15066:366;;;:::o;15438:398::-;15597:3;15618:83;15699:1;15694:3;15618:83;:::i;:::-;15611:90;;15710:93;15799:3;15710:93;:::i;:::-;15828:1;15823:3;15819:11;15812:18;;15438:398;;;:::o;15842:366::-;15984:3;16005:67;16069:2;16064:3;16005:67;:::i;:::-;15998:74;;16081:93;16170:3;16081:93;:::i;:::-;16199:2;16194:3;16190:12;16183:19;;15842:366;;;:::o;16214:118::-;16301:24;16319:5;16301:24;:::i;:::-;16296:3;16289:37;16214:118;;:::o;16338:256::-;16450:3;16465:75;16536:3;16527:6;16465:75;:::i;:::-;16565:2;16560:3;16556:12;16549:19;;16585:3;16578:10;;16338:256;;;;:::o;16600:435::-;16780:3;16802:95;16893:3;16884:6;16802:95;:::i;:::-;16795:102;;16914:95;17005:3;16996:6;16914:95;:::i;:::-;16907:102;;17026:3;17019:10;;16600:435;;;;;:::o;17041:379::-;17225:3;17247:147;17390:3;17247:147;:::i;:::-;17240:154;;17411:3;17404:10;;17041:379;;;:::o;17426:222::-;17519:4;17557:2;17546:9;17542:18;17534:26;;17570:71;17638:1;17627:9;17623:17;17614:6;17570:71;:::i;:::-;17426:222;;;;:::o;17654:640::-;17849:4;17887:3;17876:9;17872:19;17864:27;;17901:71;17969:1;17958:9;17954:17;17945:6;17901:71;:::i;:::-;17982:72;18050:2;18039:9;18035:18;18026:6;17982:72;:::i;:::-;18064;18132:2;18121:9;18117:18;18108:6;18064:72;:::i;:::-;18183:9;18177:4;18173:20;18168:2;18157:9;18153:18;18146:48;18211:76;18282:4;18273:6;18211:76;:::i;:::-;18203:84;;17654:640;;;;;;;:::o;18300:210::-;18387:4;18425:2;18414:9;18410:18;18402:26;;18438:65;18500:1;18489:9;18485:17;18476:6;18438:65;:::i;:::-;18300:210;;;;:::o;18516:313::-;18629:4;18667:2;18656:9;18652:18;18644:26;;18716:9;18710:4;18706:20;18702:1;18691:9;18687:17;18680:47;18744:78;18817:4;18808:6;18744:78;:::i;:::-;18736:86;;18516:313;;;;:::o;18835:419::-;19001:4;19039:2;19028:9;19024:18;19016:26;;19088:9;19082:4;19078:20;19074:1;19063:9;19059:17;19052:47;19116:131;19242:4;19116:131;:::i;:::-;19108:139;;18835:419;;;:::o;19260:::-;19426:4;19464:2;19453:9;19449:18;19441:26;;19513:9;19507:4;19503:20;19499:1;19488:9;19484:17;19477:47;19541:131;19667:4;19541:131;:::i;:::-;19533:139;;19260:419;;;:::o;19685:::-;19851:4;19889:2;19878:9;19874:18;19866:26;;19938:9;19932:4;19928:20;19924:1;19913:9;19909:17;19902:47;19966:131;20092:4;19966:131;:::i;:::-;19958:139;;19685:419;;;:::o;20110:::-;20276:4;20314:2;20303:9;20299:18;20291:26;;20363:9;20357:4;20353:20;20349:1;20338:9;20334:17;20327:47;20391:131;20517:4;20391:131;:::i;:::-;20383:139;;20110:419;;;:::o;20535:::-;20701:4;20739:2;20728:9;20724:18;20716:26;;20788:9;20782:4;20778:20;20774:1;20763:9;20759:17;20752:47;20816:131;20942:4;20816:131;:::i;:::-;20808:139;;20535:419;;;:::o;20960:::-;21126:4;21164:2;21153:9;21149:18;21141:26;;21213:9;21207:4;21203:20;21199:1;21188:9;21184:17;21177:47;21241:131;21367:4;21241:131;:::i;:::-;21233:139;;20960:419;;;:::o;21385:::-;21551:4;21589:2;21578:9;21574:18;21566:26;;21638:9;21632:4;21628:20;21624:1;21613:9;21609:17;21602:47;21666:131;21792:4;21666:131;:::i;:::-;21658:139;;21385:419;;;:::o;21810:::-;21976:4;22014:2;22003:9;21999:18;21991:26;;22063:9;22057:4;22053:20;22049:1;22038:9;22034:17;22027:47;22091:131;22217:4;22091:131;:::i;:::-;22083:139;;21810:419;;;:::o;22235:::-;22401:4;22439:2;22428:9;22424:18;22416:26;;22488:9;22482:4;22478:20;22474:1;22463:9;22459:17;22452:47;22516:131;22642:4;22516:131;:::i;:::-;22508:139;;22235:419;;;:::o;22660:::-;22826:4;22864:2;22853:9;22849:18;22841:26;;22913:9;22907:4;22903:20;22899:1;22888:9;22884:17;22877:47;22941:131;23067:4;22941:131;:::i;:::-;22933:139;;22660:419;;;:::o;23085:::-;23251:4;23289:2;23278:9;23274:18;23266:26;;23338:9;23332:4;23328:20;23324:1;23313:9;23309:17;23302:47;23366:131;23492:4;23366:131;:::i;:::-;23358:139;;23085:419;;;:::o;23510:::-;23676:4;23714:2;23703:9;23699:18;23691:26;;23763:9;23757:4;23753:20;23749:1;23738:9;23734:17;23727:47;23791:131;23917:4;23791:131;:::i;:::-;23783:139;;23510:419;;;:::o;23935:222::-;24028:4;24066:2;24055:9;24051:18;24043:26;;24079:71;24147:1;24136:9;24132:17;24123:6;24079:71;:::i;:::-;23935:222;;;;:::o;24163:129::-;24197:6;24224:20;;:::i;:::-;24214:30;;24253:33;24281:4;24273:6;24253:33;:::i;:::-;24163:129;;;:::o;24298:75::-;24331:6;24364:2;24358:9;24348:19;;24298:75;:::o;24379:311::-;24456:4;24546:18;24538:6;24535:30;24532:56;;;24568:18;;:::i;:::-;24532:56;24618:4;24610:6;24606:17;24598:25;;24678:4;24672;24668:15;24660:23;;24379:311;;;:::o;24696:307::-;24757:4;24847:18;24839:6;24836:30;24833:56;;;24869:18;;:::i;:::-;24833:56;24907:29;24929:6;24907:29;:::i;:::-;24899:37;;24991:4;24985;24981:15;24973:23;;24696:307;;;:::o;25009:98::-;25060:6;25094:5;25088:12;25078:22;;25009:98;;;:::o;25113:99::-;25165:6;25199:5;25193:12;25183:22;;25113:99;;;:::o;25218:168::-;25301:11;25335:6;25330:3;25323:19;25375:4;25370:3;25366:14;25351:29;;25218:168;;;;:::o;25392:147::-;25493:11;25530:3;25515:18;;25392:147;;;;:::o;25545:169::-;25629:11;25663:6;25658:3;25651:19;25703:4;25698:3;25694:14;25679:29;;25545:169;;;;:::o;25720:148::-;25822:11;25859:3;25844:18;;25720:148;;;;:::o;25874:305::-;25914:3;25933:20;25951:1;25933:20;:::i;:::-;25928:25;;25967:20;25985:1;25967:20;:::i;:::-;25962:25;;26121:1;26053:66;26049:74;26046:1;26043:81;26040:107;;;26127:18;;:::i;:::-;26040:107;26171:1;26168;26164:9;26157:16;;25874:305;;;;:::o;26185:348::-;26225:7;26248:20;26266:1;26248:20;:::i;:::-;26243:25;;26282:20;26300:1;26282:20;:::i;:::-;26277:25;;26470:1;26402:66;26398:74;26395:1;26392:81;26387:1;26380:9;26373:17;26369:105;26366:131;;;26477:18;;:::i;:::-;26366:131;26525:1;26522;26518:9;26507:20;;26185:348;;;;:::o;26539:191::-;26579:4;26599:20;26617:1;26599:20;:::i;:::-;26594:25;;26633:20;26651:1;26633:20;:::i;:::-;26628:25;;26672:1;26669;26666:8;26663:34;;;26677:18;;:::i;:::-;26663:34;26722:1;26719;26715:9;26707:17;;26539:191;;;;:::o;26736:96::-;26773:7;26802:24;26820:5;26802:24;:::i;:::-;26791:35;;26736:96;;;:::o;26838:90::-;26872:7;26915:5;26908:13;26901:21;26890:32;;26838:90;;;:::o;26934:77::-;26971:7;27000:5;26989:16;;26934:77;;;:::o;27017:149::-;27053:7;27093:66;27086:5;27082:78;27071:89;;27017:149;;;:::o;27172:126::-;27209:7;27249:42;27242:5;27238:54;27227:65;;27172:126;;;:::o;27304:77::-;27341:7;27370:5;27359:16;;27304:77;;;:::o;27387:154::-;27471:6;27466:3;27461;27448:30;27533:1;27524:6;27519:3;27515:16;27508:27;27387:154;;;:::o;27547:307::-;27615:1;27625:113;27639:6;27636:1;27633:13;27625:113;;;27724:1;27719:3;27715:11;27709:18;27705:1;27700:3;27696:11;27689:39;27661:2;27658:1;27654:10;27649:15;;27625:113;;;27756:6;27753:1;27750:13;27747:101;;;27836:1;27827:6;27822:3;27818:16;27811:27;27747:101;27596:258;27547:307;;;:::o;27860:320::-;27904:6;27941:1;27935:4;27931:12;27921:22;;27988:1;27982:4;27978:12;28009:18;27999:81;;28065:4;28057:6;28053:17;28043:27;;27999:81;28127:2;28119:6;28116:14;28096:18;28093:38;28090:84;;;28146:18;;:::i;:::-;28090:84;27911:269;27860:320;;;:::o;28186:281::-;28269:27;28291:4;28269:27;:::i;:::-;28261:6;28257:40;28399:6;28387:10;28384:22;28363:18;28351:10;28348:34;28345:62;28342:88;;;28410:18;;:::i;:::-;28342:88;28450:10;28446:2;28439:22;28229:238;28186:281;;:::o;28473:233::-;28512:3;28535:24;28553:5;28535:24;:::i;:::-;28526:33;;28581:66;28574:5;28571:77;28568:103;;;28651:18;;:::i;:::-;28568:103;28698:1;28691:5;28687:13;28680:20;;28473:233;;;:::o;28712:100::-;28751:7;28780:26;28800:5;28780:26;:::i;:::-;28769:37;;28712:100;;;:::o;28818:94::-;28857:7;28886:20;28900:5;28886:20;:::i;:::-;28875:31;;28818:94;;;:::o;28918:180::-;28966:77;28963:1;28956:88;29063:4;29060:1;29053:15;29087:4;29084:1;29077:15;29104:180;29152:77;29149:1;29142:88;29249:4;29246:1;29239:15;29273:4;29270:1;29263:15;29290:180;29338:77;29335:1;29328:88;29435:4;29432:1;29425:15;29459:4;29456:1;29449:15;29476:180;29524:77;29521:1;29514:88;29621:4;29618:1;29611:15;29645:4;29642:1;29635:15;29662:117;29771:1;29768;29761:12;29785:117;29894:1;29891;29884:12;29908:117;30017:1;30014;30007:12;30031:117;30140:1;30137;30130:12;30154:117;30263:1;30260;30253:12;30277:117;30386:1;30383;30376:12;30400:102;30441:6;30492:2;30488:7;30483:2;30476:5;30472:14;30468:28;30458:38;;30400:102;;;:::o;30508:94::-;30541:8;30589:5;30585:2;30581:14;30560:35;;30508:94;;;:::o;30608:165::-;30748:17;30744:1;30736:6;30732:14;30725:41;30608:165;:::o;30779:157::-;30919:9;30915:1;30907:6;30903:14;30896:33;30779:157;:::o;30942:225::-;31082:34;31078:1;31070:6;31066:14;31059:58;31151:8;31146:2;31138:6;31134:15;31127:33;30942:225;:::o;31173:229::-;31313:34;31309:1;31301:6;31297:14;31290:58;31382:12;31377:2;31369:6;31365:15;31358:37;31173:229;:::o;31408:171::-;31548:23;31544:1;31536:6;31532:14;31525:47;31408:171;:::o;31585:180::-;31725:32;31721:1;31713:6;31709:14;31702:56;31585:180;:::o;31771:174::-;31911:26;31907:1;31899:6;31895:14;31888:50;31771:174;:::o;31951:168::-;32091:20;32087:1;32079:6;32075:14;32068:44;31951:168;:::o;32125:182::-;32265:34;32261:1;32253:6;32249:14;32242:58;32125:182;:::o;32313:170::-;32453:22;32449:1;32441:6;32437:14;32430:46;32313:170;:::o;32489:181::-;32629:33;32625:1;32617:6;32613:14;32606:57;32489:181;:::o;32676:114::-;;:::o;32796:182::-;32936:34;32932:1;32924:6;32920:14;32913:58;32796:182;:::o;32984:122::-;33057:24;33075:5;33057:24;:::i;:::-;33050:5;33047:35;33037:63;;33096:1;33093;33086:12;33037:63;32984:122;:::o;33112:116::-;33182:21;33197:5;33182:21;:::i;:::-;33175:5;33172:32;33162:60;;33218:1;33215;33208:12;33162:60;33112:116;:::o;33234:122::-;33307:24;33325:5;33307:24;:::i;:::-;33300:5;33297:35;33287:63;;33346:1;33343;33336:12;33287:63;33234:122;:::o;33362:120::-;33434:23;33451:5;33434:23;:::i;:::-;33427:5;33424:34;33414:62;;33472:1;33469;33462:12;33414:62;33362:120;:::o;33488:122::-;33561:24;33579:5;33561:24;:::i;:::-;33554:5;33551:35;33541:63;;33600:1;33597;33590:12;33541:63;33488:122;:::o

Swarm Source

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