ETH Price: $3,391.31 (-1.55%)
Gas: 4 Gwei

Token

Test Contract (TC)
 

Overview

Max Total Supply

808 TC

Holders

345

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 TC
0xdf58415b974e75d547f698c426dbbc0b08368e4e
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:
DepressedCitizens

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 3 of 8: DepressedCitizens.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

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


contract DepressedCitizens is ERC721A, ReentrancyGuard, Ownable {

  address private constant DCWallet1 = 0x78e7568F0cf25b0B3a175f87648421415deC12b8;
  address private constant DCWallet2 = 0xe2a00DA9440aBDA4876d3CE0Fa96caB4Da8A4804;
  address private constant DCWallet3 = 0x12949468F54125312BBCbD4aaDc51e3f4475C46B;
  address private constant DCWallet4 = 0x3aD5d4fF3dfB1C232FcC36E3CE3bCd75067EBC12;
  
  uint256 public mintPrice = 0.077 ether;
  uint256 public presalePrice = 0.066 ether;

  bytes32 public merkleRoot;
  bytes32 public merkleRootForFreeClaim;
  string _baseTokenURI;

  bool public isActive = false;
  bool public isPresaleActive = false;

  uint256 public MAX_SUPPLY = 3333;
  uint256 public maximumAllowedTokensPerPurchase = 11;
  uint256 public maximumAllowedTokensPerWallet = 11;
  uint256 public presaleWalletLimitation = 3;


  constructor(string memory baseURI) ERC721A("Test Contract", "TC") {
    setBaseURI(baseURI);
  }

  modifier saleIsOpen {
    require(totalSupply() <= MAX_SUPPLY, "Sale has ended.");
    _;
  }

  function setMerkleRootHash(bytes32 _rootHash) public onlyOwner {
    merkleRoot = _rootHash;
  }

  function setMerkleRootForFreeClaimHash(bytes32 _rootHash) public onlyOwner {
    merkleRootForFreeClaim = _rootHash;
  }
  
  function setPresaleWalletLimitation(uint256 maxMint) external  onlyOwner {
    presaleWalletLimitation = maxMint;
  }

  function setMaximumAllowedTokens(uint256 _count) public onlyOwner {
    maximumAllowedTokensPerPurchase = _count;
  }

  function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyOwner {
    maximumAllowedTokensPerWallet = _count;
  }

  function setMaxMintSupply(uint256 maxMintSupply) external  onlyOwner {
    MAX_SUPPLY = maxMintSupply;
  }

  function setPrice(uint256 _price) public onlyOwner {
    mintPrice = _price;
  }

  function setPresalePrice(uint256 _preslaePrice) public onlyOwner {
    presalePrice = _preslaePrice;
  }

  function toggleSaleStatus() public onlyOwner {
    isActive = !isActive;
  }

  function togglePresaleStatus() external onlyOwner {
    isPresaleActive = !isPresaleActive;
  }

  function setBaseURI(string memory baseURI) public onlyOwner {
    _baseTokenURI = baseURI;
  }


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

  function airdrop(uint256 _count, address _address) external onlyOwner {
    uint256 supply = totalSupply();

    require(supply + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(supply <= MAX_SUPPLY, "Total supply spent.");

    _safeMint(_address, _count);
  }

  function batchAirdrop(uint256 _count, address[] calldata addresses) external onlyOwner {
    uint256 supply = totalSupply();

    require(supply + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require(supply <= MAX_SUPPLY, "Total supply spent.");

    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _safeMint(addresses[i], _count);
    }
  }

  function mint(uint256 _count) public payable saleIsOpen {
    uint256 mintIndex = totalSupply();

     if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
      require(balanceOf(msg.sender) + _count <= maximumAllowedTokensPerWallet, "Max holding cap reached.");
    }

    require(mintIndex + _count <= MAX_SUPPLY, "Total supply exceeded.");
    require( _count <= maximumAllowedTokensPerPurchase, "Exceeds maximum allowed tokens");
    
    require(msg.value >= (mintPrice * _count), "Insufficient ETH amount sent.");
    
    _safeMint(msg.sender, _count);
  }

  function preSaleMint(bytes32[] calldata _merkleProof, uint256 _count) public payable saleIsOpen {
    uint256 mintIndex = totalSupply();
    require(isPresaleActive, "Presale is not active");
    require(mintIndex < MAX_SUPPLY, "All tokens have been minted");
    require(balanceOf(msg.sender) + _count <= presaleWalletLimitation, "Cannot purchase this many tokens");

    if(MerkleProof.verify(_merkleProof, merkleRootForFreeClaim, keccak256(abi.encodePacked(msg.sender))) && balanceOf(msg.sender) == 0) {
      uint256 totalPriceCount = _count != 1 ? _count - 1 : 0;
      require(msg.value >= presalePrice * totalPriceCount, "Insufficient ETH amount sent.");
    } else {
      if(MerkleProof.verify(_merkleProof, merkleRoot, keccak256(abi.encodePacked(msg.sender)))) {
        require(msg.value >= presalePrice * _count, "Insufficient ETH amount sent.");
      }
    }
    
    _safeMint(msg.sender, _count);
  }


  function withdraw() external onlyOwner nonReentrant {
    uint balance = address(this).balance;
    Address.sendValue(payable(DCWallet1), (balance * 1000) / 10000);  
    Address.sendValue(payable(DCWallet2), (balance * 2700) / 10000);  
    Address.sendValue(payable(DCWallet3), (balance * 2700) / 10000);  
    Address.sendValue(payable(DCWallet4), (balance * 3600) / 10000);  
  }
}

File 1 of 8: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly
                /// @solidity memory-safe-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 8: 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 4 of 8: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';

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

/**
 * @title ERC721A
 *
 * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
 * Non-Fungible Token Standard, including the Metadata extension.
 * Optimized for lower gas during batch mints.
 *
 * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
 * starting from `_startTokenId()`.
 *
 * Assumptions:
 *
 * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is IERC721A {
    // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
    struct TokenApprovalRef {
        address value;
    }

    // =============================================================
    //                           CONSTANTS
    // =============================================================

    // 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 `Transfer` event signature is given by:
    // `keccak256(bytes("Transfer(address,address,uint256)"))`.
    bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    // =============================================================
    //                            STORAGE
    // =============================================================

    // The next token ID 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 => TokenApprovalRef) private _tokenApprovals;

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

    // =============================================================
    //                          CONSTRUCTOR
    // =============================================================

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

    // =============================================================
    //                   TOKEN COUNTING OPERATIONS
    // =============================================================

    /**
     * @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 virtual 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 virtual 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 virtual 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 virtual returns (uint256) {
        return _burnCounter;
    }

    // =============================================================
    //                    ADDRESS DATA OPERATIONS
    // =============================================================

    /**
     * @dev Returns the number of tokens in `owner`'s account.
     */
    function balanceOf(address owner) public view virtual 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 virtual {
        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;
    }

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

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

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

    /**
     * @dev Returns the token collection name.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    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 '';
    }

    // =============================================================
    //                     OWNERSHIPS OPERATIONS
    // =============================================================

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        return address(uint160(_packedOwnershipOf(tokenId)));
    }

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

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

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

    /**
     * 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 initialized ownership slot
                        // (i.e. `ownership.addr != address(0) && ownership.burned == false`)
                        // before an unintialized ownership slot
                        // (i.e. `ownership.addr == address(0) && ownership.burned == false`)
                        // Hence, `curr` will not underflow.
                        //
                        // We can directly compare the packed value.
                        // If the address is zero, packed will be zero.
                        while (packed == 0) {
                            packed = _packedOwnerships[--curr];
                        }
                        return packed;
                    }
                }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

    // =============================================================
    //                      APPROVAL OPERATIONS
    // =============================================================

    /**
     * @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) public payable virtual override {
        address owner = ownerOf(tokenId);

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId].value;
    }

    /**
     * @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) public virtual override {
        _operatorApprovals[_msgSenderERC721A()][operator] = approved;
        emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
    }

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

    /**
     * @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. See {_mint}.
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex && // If within bounds,
            _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
    }

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

    /**
     * @dev Returns the storage slot and value for the approved address of `tokenId`.
     */
    function _getApprovedSlotAndAddress(uint256 tokenId)
        private
        view
        returns (uint256 approvedAddressSlot, address approvedAddress)
    {
        TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
        // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
        assembly {
            approvedAddressSlot := tokenApproval.slot
            approvedAddress := sload(approvedAddressSlot)
        }
    }

    // =============================================================
    //                      TRANSFER OPERATIONS
    // =============================================================

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) public payable virtual override {
        uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);

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

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

        // The nested ifs save around 20+ gas over a compound boolean condition.
        if (!_isSenderApprovedOrOwner(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 `safeTransferFrom(from, to, tokenId, '')`.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public payable virtual override {
        safeTransferFrom(from, to, tokenId, '');
    }

    /**
     * @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 memory _data
    ) public payable virtual override {
        transferFrom(from, to, tokenId);
        if (to.code.length != 0)
            if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
                revert TransferToNonERC721ReceiverImplementer();
            }
    }

    /**
     * @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 Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
     *
     * `from` - Previous owner of the given token ID.
     * `to` - Target address that will receive the token.
     * `tokenId` - Token ID to be transferred.
     * `_data` - Optional data to send along with the call.
     *
     * Returns 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))
                }
            }
        }
    }

    // =============================================================
    //                        MINT OPERATIONS
    // =============================================================

    /**
     * @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 virtual {
        uint256 startTokenId = _currentIndex;
        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 toMasked;
            uint256 end = startTokenId + quantity;

            // Use assembly to loop and emit the `Transfer` event for gas savings.
            // The duplicated `log4` removes an extra check and reduces stack juggling.
            // The assembly, together with the surrounding Solidity code, have been
            // delicately arranged to nudge the compiler into producing optimized opcodes.
            assembly {
                // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
                toMasked := and(to, _BITMASK_ADDRESS)
                // Emit the `Transfer` event.
                log4(
                    0, // Start of data (0, since no data).
                    0, // End of data (0, since no data).
                    _TRANSFER_EVENT_SIGNATURE, // Signature.
                    0, // `address(0)`.
                    toMasked, // `to`.
                    startTokenId // `tokenId`.
                )

                // The `iszero(eq(,))` check ensures that large values of `quantity`
                // that overflows uint256 will make the loop run out of gas.
                // The compiler will optimize the `iszero` away for performance.
                for {
                    let tokenId := add(startTokenId, 1)
                } iszero(eq(tokenId, end)) {
                    tokenId := add(tokenId, 1)
                } {
                    // Emit the `Transfer` event. Similar to above.
                    log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
                }
            }
            if (toMasked == 0) revert MintToZeroAddress();

            _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 virtual {
        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 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 virtual {
        _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 Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal virtual {
        _safeMint(to, quantity, '');
    }

    // =============================================================
    //                        BURN OPERATIONS
    // =============================================================

    /**
     * @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) = _getApprovedSlotAndAddress(tokenId);

        if (approvalCheck) {
            // The nested ifs save around 20+ gas over a compound boolean condition.
            if (!_isSenderApprovedOrOwner(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++;
        }
    }

    // =============================================================
    //                     EXTRA DATA OPERATIONS
    // =============================================================

    /**
     * @dev Directly sets the extra data for the ownership data `index`.
     */
    function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
        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 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 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;
    }

    // =============================================================
    //                       OTHER OPERATIONS
    // =============================================================

    /**
     * @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 virtual returns (string memory str) {
        assembly {
            // The maximum value of a uint256 contains 78 digits (1 byte per digit), but
            // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
            // We will need 1 word for the trailing zeros padding, 1 word for the length,
            // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
            let m := add(mload(0x40), 0xa0)
            // Update the free memory pointer to allocate.
            mstore(0x40, m)
            // Assign the `str` to the end.
            str := sub(m, 0x20)
            // Zeroize the slot after the string.
            mstore(str, 0)

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

            // We write the string from rightmost digit to leftmost digit.
            // The following is essentially a do-while loop that also handles the zero case.
            // prettier-ignore
            for { let temp := value } 1 {} {
                str := sub(str, 1)
                // Write the character to the pointer.
                // The ASCII index of the '0' character is 48.
                mstore8(str, add(48, mod(temp, 10)))
                // Keep dividing `temp` until zero.
                temp := div(temp, 10)
                // prettier-ignore
                if iszero(temp) { break }
            }

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

File 5 of 8: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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](https://eips.ethereum.org/EIPS/eip-2309) standard.
     *
     * See {_mintERC2309} for more details.
     */
    event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}

File 6 of 8: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Tree proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Calldata version of {verify}
     *
     * _Available since v4.7._
     */
    function verifyCalldata(
        bytes32[] calldata proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProofCalldata(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle 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++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Calldata version of {processProof}
     *
     * _Available since v4.7._
     */
    function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            computedHash = _hashPair(computedHash, proof[i]);
        }
        return computedHash;
    }

    /**
     * @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
     * `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
     *
     * _Available since v4.7._
     */
    function multiProofVerify(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProof(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Calldata version of {multiProofVerify}
     *
     * _Available since v4.7._
     */
    function multiProofVerifyCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32 root,
        bytes32[] memory leaves
    ) internal pure returns (bool) {
        return processMultiProofCalldata(proof, proofFlags, leaves) == root;
    }

    /**
     * @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
     * consuming from one or the other at each step according to the instructions given by
     * `proofFlags`.
     *
     * _Available since v4.7._
     */
    function processMultiProof(
        bytes32[] memory proof,
        bool[] memory proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    /**
     * @dev Calldata version of {processMultiProof}
     *
     * _Available since v4.7._
     */
    function processMultiProofCalldata(
        bytes32[] calldata proof,
        bool[] calldata proofFlags,
        bytes32[] memory leaves
    ) internal pure returns (bytes32 merkleRoot) {
        // This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
        // consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
        // `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
        // the merkle tree.
        uint256 leavesLen = leaves.length;
        uint256 totalHashes = proofFlags.length;

        // Check proof validity.
        require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");

        // The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
        // `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
        bytes32[] memory hashes = new bytes32[](totalHashes);
        uint256 leafPos = 0;
        uint256 hashPos = 0;
        uint256 proofPos = 0;
        // At each step, we compute the next hash using two values:
        // - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
        //   get the next hash.
        // - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
        //   `proof` array.
        for (uint256 i = 0; i < totalHashes; i++) {
            bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
            bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
            hashes[i] = _hashPair(a, b);
        }

        if (totalHashes > 0) {
            return hashes[totalHashes - 1];
        } else if (leavesLen > 0) {
            return leaves[0];
        } else {
            return proof[0];
        }
    }

    function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
        return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

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

File 8 of 8: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

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

        _;

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","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_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchAirdrop","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":"isActive","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":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootForFreeClaim","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleWalletLimitation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","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":"payable","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":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"setMerkleRootForFreeClaimHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"setMerkleRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_preslaePrice","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setPresaleWalletLimitation","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleStatus","outputs":[],"stateMutability":"nonpayable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526701118f178fb48000600a5566ea7aa67b2d0000600b556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff021916908315150217905550610d05601055600b601155600b60125560036013553480156200007357600080fd5b50604051620047cd380380620047cd8339818101604052810190620000999190620004c7565b6040518060400160405280600d81526020017f5465737420436f6e7472616374000000000000000000000000000000000000008152506040518060400160405280600281526020017f5443000000000000000000000000000000000000000000000000000000000000815250816002908162000116919062000763565b50806003908162000128919062000763565b50620001396200018160201b60201c565b60008190555050506001600881905550620001696200015d6200018660201b60201c565b6200018e60201b60201c565b6200017a816200025460201b60201c565b50620008cd565b600090565b600033905090565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002646200027960201b60201c565b80600e908162000275919062000763565b5050565b620002896200018660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002af6200030a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000308576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ff90620008ab565b60405180910390fd5b565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200039d8262000352565b810181811067ffffffffffffffff82111715620003bf57620003be62000363565b5b80604052505050565b6000620003d462000334565b9050620003e2828262000392565b919050565b600067ffffffffffffffff82111562000405576200040462000363565b5b620004108262000352565b9050602081019050919050565b60005b838110156200043d57808201518184015260208101905062000420565b60008484015250505050565b6000620004606200045a84620003e7565b620003c8565b9050828152602081018484840111156200047f576200047e6200034d565b5b6200048c8482856200041d565b509392505050565b600082601f830112620004ac57620004ab62000348565b5b8151620004be84826020860162000449565b91505092915050565b600060208284031215620004e057620004df6200033e565b5b600082015167ffffffffffffffff81111562000501576200050062000343565b5b6200050f8482850162000494565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200056b57607f821691505b60208210810362000581576200058062000523565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005eb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005ac565b620005f78683620005ac565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006446200063e62000638846200060f565b62000619565b6200060f565b9050919050565b6000819050919050565b620006608362000623565b620006786200066f826200064b565b848454620005b9565b825550505050565b600090565b6200068f62000680565b6200069c81848462000655565b505050565b5b81811015620006c457620006b860008262000685565b600181019050620006a2565b5050565b601f8211156200071357620006dd8162000587565b620006e8846200059c565b81016020851015620006f8578190505b6200071062000707856200059c565b830182620006a1565b50505b505050565b600082821c905092915050565b6000620007386000198460080262000718565b1980831691505092915050565b600062000753838362000725565b9150826002028217905092915050565b6200076e8262000518565b67ffffffffffffffff8111156200078a576200078962000363565b5b62000796825462000552565b620007a3828285620006c8565b600060209050601f831160018114620007db5760008415620007c6578287015190505b620007d2858262000745565b86555062000842565b601f198416620007eb8662000587565b60005b828110156200081557848901518255600182019150602085019450602081019050620007ee565b8683101562000835578489015162000831601f89168262000725565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620008936020836200084a565b9150620008a0826200085b565b602082019050919050565b60006020820190508181036000830152620008c68162000884565b9050919050565b613ef080620008dd6000396000f3fe60806040526004361061025b5760003560e01c8063715018a611610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610821578063cadf88181461085e578063e985e9c514610889578063ea6eb836146108c6578063f2fde38b146108ef578063fb7e6ccb146109185761025b565b8063a22cb46514610761578063a581767c1461078a578063ae70a18e146107b3578063b88d4fde146107dc578063bc63f02e146107f85761025b565b80638da5cb5b116101085780638da5cb5b1461067257806391b7f5ed1461069d57806395d89b41146106c65780639a3bf728146106f15780639ba411b11461071c578063a0712d68146107455761025b565b8063715018a6146105d45780637389fbb7146105eb57806378179976146106145780637bffb4ce146106305780638d372cdc146106475761025b565b80632eb4a7ab116101dd5780634dfea627116101a15780634dfea627146104b257806355f804b3146104db57806360d938dc146105045780636352211e1461052f5780636817c76c1461056c57806370a08231146105975761025b565b80632eb4a7ab1461040057806332cb6b0c1461042b5780633549345e146104565780633ccfd60b1461047f57806342842e0e146104965761025b565b8063095ea7b311610224578063095ea7b3146103475780630cf726001461036357806318160ddd1461038e57806322f3e2d4146103b957806323b872dd146103e45761025b565b80620e7fa81461026057806301ffc9a71461028b578063049c5c49146102c857806306fdde03146102df578063081812fc1461030a575b600080fd5b34801561026c57600080fd5b50610275610941565b6040516102829190612866565b60405180910390f35b34801561029757600080fd5b506102b260048036038101906102ad91906128ed565b610947565b6040516102bf9190612935565b60405180910390f35b3480156102d457600080fd5b506102dd6109d9565b005b3480156102eb57600080fd5b506102f4610a0d565b60405161030191906129e0565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612a2e565b610a9f565b60405161033e9190612a9c565b60405180910390f35b610361600480360381019061035c9190612ae3565b610b1e565b005b34801561036f57600080fd5b50610378610c62565b6040516103859190612866565b60405180910390f35b34801561039a57600080fd5b506103a3610c68565b6040516103b09190612866565b60405180910390f35b3480156103c557600080fd5b506103ce610c7f565b6040516103db9190612935565b60405180910390f35b6103fe60048036038101906103f99190612b23565b610c92565b005b34801561040c57600080fd5b50610415610fb4565b6040516104229190612b8f565b60405180910390f35b34801561043757600080fd5b50610440610fba565b60405161044d9190612866565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612a2e565b610fc0565b005b34801561048b57600080fd5b50610494610fd2565b005b6104b060048036038101906104ab9190612b23565b611117565b005b3480156104be57600080fd5b506104d960048036038101906104d49190612a2e565b611137565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190612cdf565b611149565b005b34801561051057600080fd5b50610519611164565b6040516105269190612935565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190612a2e565b611177565b6040516105639190612a9c565b60405180910390f35b34801561057857600080fd5b50610581611189565b60405161058e9190612866565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190612d28565b61118f565b6040516105cb9190612866565b60405180910390f35b3480156105e057600080fd5b506105e9611247565b005b3480156105f757600080fd5b50610612600480360381019061060d9190612a2e565b61125b565b005b61062e60048036038101906106299190612db5565b61126d565b005b34801561063c57600080fd5b5061064561158f565b005b34801561065357600080fd5b5061065c6115c3565b6040516106699190612b8f565b60405180910390f35b34801561067e57600080fd5b506106876115c9565b6040516106949190612a9c565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612a2e565b6115f3565b005b3480156106d257600080fd5b506106db611605565b6040516106e891906129e0565b60405180910390f35b3480156106fd57600080fd5b50610706611697565b6040516107139190612866565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612e41565b61169d565b005b61075f600480360381019061075a9190612a2e565b6116af565b005b34801561076d57600080fd5b5061078860048036038101906107839190612e9a565b6118dc565b005b34801561079657600080fd5b506107b160048036038101906107ac9190612e41565b6119e7565b005b3480156107bf57600080fd5b506107da60048036038101906107d59190612a2e565b6119f9565b005b6107f660048036038101906107f19190612f7b565b611a0b565b005b34801561080457600080fd5b5061081f600480360381019061081a9190612ffe565b611a7e565b005b34801561082d57600080fd5b5061084860048036038101906108439190612a2e565b611b36565b60405161085591906129e0565b60405180910390f35b34801561086a57600080fd5b50610873611bd4565b6040516108809190612866565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab919061303e565b611bda565b6040516108bd9190612935565b60405180910390f35b3480156108d257600080fd5b506108ed60048036038101906108e89190612a2e565b611c6e565b005b3480156108fb57600080fd5b5061091660048036038101906109119190612d28565b611c80565b005b34801561092457600080fd5b5061093f600480360381019061093a91906130d4565b611d03565b005b600b5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6109e1611e9b565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b606060028054610a1c90613163565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4890613163565b8015610a955780601f10610a6a57610100808354040283529160200191610a95565b820191906000526020600020905b815481529060010190602001808311610a7857829003601f168201915b5050505050905090565b6000610aaa82611f19565b610ae0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2982611177565b90508073ffffffffffffffffffffffffffffffffffffffff16610b4a611f78565b73ffffffffffffffffffffffffffffffffffffffff1614610bad57610b7681610b71611f78565b611bda565b610bac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60135481565b6000610c72611f80565b6001546000540303905090565b600f60009054906101000a900460ff1681565b6000610c9d82611f85565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d04576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d1084612051565b91509150610d268187610d21611f78565b612078565b610d7257610d3b86610d36611f78565b611bda565b610d71576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610dd8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610de586868660016120bc565b8015610df057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ebe85610e9a8888876120c2565b7c0200000000000000000000000000000000000000000000000000000000176120ea565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f445760006001850190506000600460008381526020019081526020016000205403610f42576000548114610f41578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fac8686866001612115565b505050505050565b600c5481565b60105481565b610fc8611e9b565b80600b8190555050565b610fda611e9b565b60026008540361101f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611016906131e0565b60405180910390fd5b600260088190555060004790506110647378e7568f0cf25b0b3a175f87648421415dec12b86127106103e884611055919061322f565b61105f91906132a0565b61211b565b61109c73e2a00da9440abda4876d3ce0fa96cab4da8a4804612710610a8c8461108d919061322f565b61109791906132a0565b61211b565b6110d47312949468f54125312bbcbd4aadc51e3f4475c46b612710610a8c846110c5919061322f565b6110cf91906132a0565b61211b565b61110c733ad5d4ff3dfb1c232fcc36e3ce3bcd75067ebc12612710610e10846110fd919061322f565b61110791906132a0565b61211b565b506001600881905550565b61113283838360405180602001604052806000815250611a0b565b505050565b61113f611e9b565b8060118190555050565b611151611e9b565b80600e9081611160919061347d565b5050565b600f60019054906101000a900460ff1681565b600061118282611f85565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61124f611e9b565b611259600061220f565b565b611263611e9b565b8060108190555050565b601054611278610c68565b11156112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b09061359b565b60405180910390fd5b60006112c3610c68565b9050600f60019054906101000a900460ff16611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613607565b60405180910390fd5b6010548110611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90613673565b60405180910390fd5b601354826113653361118f565b61136f9190613693565b11156113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a790613713565b60405180910390fd5b611424848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5433604051602001611409919061377b565b604051602081830303815290604052805190602001206122d5565b8015611438575060006114363361118f565b145b156114b45760006001830361144e57600061145c565b60018361145b9190613796565b5b905080600b5461146c919061322f565b3410156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590613816565b60405180910390fd5b5061157f565b611528848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c543360405160200161150d919061377b565b604051602081830303815290604052805190602001206122d5565b1561157e5781600b5461153b919061322f565b34101561157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613816565b60405180910390fd5b5b5b61158933836122ec565b50505050565b611597611e9b565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b600d5481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115fb611e9b565b80600a8190555050565b60606003805461161490613163565b80601f016020809104026020016040519081016040528092919081815260200182805461164090613163565b801561168d5780601f106116625761010080835404028352916020019161168d565b820191906000526020600020905b81548152906001019060200180831161167057829003601f168201915b5050505050905090565b60115481565b6116a5611e9b565b80600c8190555050565b6010546116ba610c68565b11156116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f29061359b565b60405180910390fd5b6000611705610c68565b905061170f6115c9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117e957600f60009054906101000a900460ff16611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613882565b60405180910390fd5b6012548261179d3361118f565b6117a79190613693565b11156117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df906138ee565b60405180910390fd5b5b60105482826117f89190613693565b1115611839576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118309061395a565b60405180910390fd5b60115482111561187e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611875906139c6565b60405180910390fd5b81600a5461188c919061322f565b3410156118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c590613816565b60405180910390fd5b6118d833836122ec565b5050565b80600760006118e9611f78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611996611f78565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119db9190612935565b60405180910390a35050565b6119ef611e9b565b80600d8190555050565b611a01611e9b565b8060138190555050565b611a16848484610c92565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a7857611a418484848461230a565b611a77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a86611e9b565b6000611a90610c68565b90506010548382611aa19190613693565b1115611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad99061395a565b60405180910390fd5b601054811115611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e90613a32565b60405180910390fd5b611b3182846122ec565b505050565b6060611b4182611f19565b611b77576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b8161245a565b90506000815103611ba15760405180602001604052806000815250611bcc565b80611bab846124ec565b604051602001611bbc929190613a8e565b6040516020818303038152906040525b915050919050565b60125481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c76611e9b565b8060128190555050565b611c88611e9b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90613b24565b60405180910390fd5b611d008161220f565b50565b611d0b611e9b565b6000611d15610c68565b90506010548482611d269190613693565b1115611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e9061395a565b60405180910390fd5b601054811115611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390613a32565b60405180910390fd5b60005b83839050811015611e9457600073ffffffffffffffffffffffffffffffffffffffff16848483818110611de557611de4613b44565b5b9050602002016020810190611dfa9190612d28565b73ffffffffffffffffffffffffffffffffffffffff1603611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4790613bbf565b60405180910390fd5b611e81848483818110611e6657611e65613b44565b5b9050602002016020810190611e7b9190612d28565b866122ec565b8080611e8c90613bdf565b915050611daf565b5050505050565b611ea361253c565b73ffffffffffffffffffffffffffffffffffffffff16611ec16115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90613c73565b60405180910390fd5b565b600081611f24611f80565b11158015611f33575060005482105b8015611f71575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611f94611f80565b1161201a576000548110156120195760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612017575b6000810361200d576004600083600190039350838152602001908152602001600020549050611fe3565b809250505061204c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120d9868684612544565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b8047101561215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215590613cdf565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161218490613d30565b60006040518083038185875af1925050503d80600081146121c1576040519150601f19603f3d011682016040523d82523d6000602084013e6121c6565b606091505b505090508061220a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220190613db7565b60405180910390fd5b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826122e2858461254d565b1490509392505050565b6123068282604051806020016040528060008152506125a3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612330611f78565b8786866040518563ffffffff1660e01b81526004016123529493929190613e2c565b6020604051808303816000875af192505050801561238e57506040513d601f19601f8201168201806040525081019061238b9190613e8d565b60015b612407573d80600081146123be576040519150601f19603f3d011682016040523d82523d6000602084013e6123c3565b606091505b5060008151036123ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461246990613163565b80601f016020809104026020016040519081016040528092919081815260200182805461249590613163565b80156124e25780601f106124b7576101008083540402835291602001916124e2565b820191906000526020600020905b8154815290600101906020018083116124c557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561252757600184039350600a81066030018453600a8104905080612505575b50828103602084039350808452505050919050565b600033905090565b60009392505050565b60008082905060005b8451811015612598576125838286838151811061257657612575613b44565b5b6020026020010151612640565b9150808061259090613bdf565b915050612556565b508091505092915050565b6125ad838361266b565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461263b57600080549050600083820390505b6125ed600086838060010194508661230a565b612623576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125da57816000541461263857600080fd5b50505b505050565b6000818310612658576126538284612826565b612663565b6126628383612826565b5b905092915050565b600080549050600082036126ab576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126b860008483856120bc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061272f8361272060008660006120c2565b6127298561283d565b176120ea565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146127d057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612795565b506000820361280b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128216000848385612115565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000819050919050565b6128608161284d565b82525050565b600060208201905061287b6000830184612857565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128ca81612895565b81146128d557600080fd5b50565b6000813590506128e7816128c1565b92915050565b6000602082840312156129035761290261288b565b5b6000612911848285016128d8565b91505092915050565b60008115159050919050565b61292f8161291a565b82525050565b600060208201905061294a6000830184612926565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561298a57808201518184015260208101905061296f565b60008484015250505050565b6000601f19601f8301169050919050565b60006129b282612950565b6129bc818561295b565b93506129cc81856020860161296c565b6129d581612996565b840191505092915050565b600060208201905081810360008301526129fa81846129a7565b905092915050565b612a0b8161284d565b8114612a1657600080fd5b50565b600081359050612a2881612a02565b92915050565b600060208284031215612a4457612a4361288b565b5b6000612a5284828501612a19565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a8682612a5b565b9050919050565b612a9681612a7b565b82525050565b6000602082019050612ab16000830184612a8d565b92915050565b612ac081612a7b565b8114612acb57600080fd5b50565b600081359050612add81612ab7565b92915050565b60008060408385031215612afa57612af961288b565b5b6000612b0885828601612ace565b9250506020612b1985828601612a19565b9150509250929050565b600080600060608486031215612b3c57612b3b61288b565b5b6000612b4a86828701612ace565b9350506020612b5b86828701612ace565b9250506040612b6c86828701612a19565b9150509250925092565b6000819050919050565b612b8981612b76565b82525050565b6000602082019050612ba46000830184612b80565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bec82612996565b810181811067ffffffffffffffff82111715612c0b57612c0a612bb4565b5b80604052505050565b6000612c1e612881565b9050612c2a8282612be3565b919050565b600067ffffffffffffffff821115612c4a57612c49612bb4565b5b612c5382612996565b9050602081019050919050565b82818337600083830152505050565b6000612c82612c7d84612c2f565b612c14565b905082815260208101848484011115612c9e57612c9d612baf565b5b612ca9848285612c60565b509392505050565b600082601f830112612cc657612cc5612baa565b5b8135612cd6848260208601612c6f565b91505092915050565b600060208284031215612cf557612cf461288b565b5b600082013567ffffffffffffffff811115612d1357612d12612890565b5b612d1f84828501612cb1565b91505092915050565b600060208284031215612d3e57612d3d61288b565b5b6000612d4c84828501612ace565b91505092915050565b600080fd5b600080fd5b60008083601f840112612d7557612d74612baa565b5b8235905067ffffffffffffffff811115612d9257612d91612d55565b5b602083019150836020820283011115612dae57612dad612d5a565b5b9250929050565b600080600060408486031215612dce57612dcd61288b565b5b600084013567ffffffffffffffff811115612dec57612deb612890565b5b612df886828701612d5f565b93509350506020612e0b86828701612a19565b9150509250925092565b612e1e81612b76565b8114612e2957600080fd5b50565b600081359050612e3b81612e15565b92915050565b600060208284031215612e5757612e5661288b565b5b6000612e6584828501612e2c565b91505092915050565b612e778161291a565b8114612e8257600080fd5b50565b600081359050612e9481612e6e565b92915050565b60008060408385031215612eb157612eb061288b565b5b6000612ebf85828601612ace565b9250506020612ed085828601612e85565b9150509250929050565b600067ffffffffffffffff821115612ef557612ef4612bb4565b5b612efe82612996565b9050602081019050919050565b6000612f1e612f1984612eda565b612c14565b905082815260208101848484011115612f3a57612f39612baf565b5b612f45848285612c60565b509392505050565b600082601f830112612f6257612f61612baa565b5b8135612f72848260208601612f0b565b91505092915050565b60008060008060808587031215612f9557612f9461288b565b5b6000612fa387828801612ace565b9450506020612fb487828801612ace565b9350506040612fc587828801612a19565b925050606085013567ffffffffffffffff811115612fe657612fe5612890565b5b612ff287828801612f4d565b91505092959194509250565b600080604083850312156130155761301461288b565b5b600061302385828601612a19565b925050602061303485828601612ace565b9150509250929050565b600080604083850312156130555761305461288b565b5b600061306385828601612ace565b925050602061307485828601612ace565b9150509250929050565b60008083601f84011261309457613093612baa565b5b8235905067ffffffffffffffff8111156130b1576130b0612d55565b5b6020830191508360208202830111156130cd576130cc612d5a565b5b9250929050565b6000806000604084860312156130ed576130ec61288b565b5b60006130fb86828701612a19565b935050602084013567ffffffffffffffff81111561311c5761311b612890565b5b6131288682870161307e565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061317b57607f821691505b60208210810361318e5761318d613134565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006131ca601f8361295b565b91506131d582613194565b602082019050919050565b600060208201905081810360008301526131f9816131bd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061323a8261284d565b91506132458361284d565b92508282026132538161284d565b9150828204841483151761326a57613269613200565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132ab8261284d565b91506132b68361284d565b9250826132c6576132c5613271565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026133337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132f6565b61333d86836132f6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061337a6133756133708461284d565b613355565b61284d565b9050919050565b6000819050919050565b6133948361335f565b6133a86133a082613381565b848454613303565b825550505050565b600090565b6133bd6133b0565b6133c881848461338b565b505050565b5b818110156133ec576133e16000826133b5565b6001810190506133ce565b5050565b601f82111561343157613402816132d1565b61340b846132e6565b8101602085101561341a578190505b61342e613426856132e6565b8301826133cd565b50505b505050565b600082821c905092915050565b600061345460001984600802613436565b1980831691505092915050565b600061346d8383613443565b9150826002028217905092915050565b61348682612950565b67ffffffffffffffff81111561349f5761349e612bb4565b5b6134a98254613163565b6134b48282856133f0565b600060209050601f8311600181146134e757600084156134d5578287015190505b6134df8582613461565b865550613547565b601f1984166134f5866132d1565b60005b8281101561351d578489015182556001820191506020850194506020810190506134f8565b8683101561353a5784890151613536601f891682613443565b8355505b6001600288020188555050505b505050505050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000613585600f8361295b565b91506135908261354f565b602082019050919050565b600060208201905081810360008301526135b481613578565b9050919050565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b60006135f160158361295b565b91506135fc826135bb565b602082019050919050565b60006020820190508181036000830152613620816135e4565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b600061365d601b8361295b565b915061366882613627565b602082019050919050565b6000602082019050818103600083015261368c81613650565b9050919050565b600061369e8261284d565b91506136a98361284d565b92508282019050808211156136c1576136c0613200565b5b92915050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b60006136fd60208361295b565b9150613708826136c7565b602082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b60008160601b9050919050565b600061374b82613733565b9050919050565b600061375d82613740565b9050919050565b61377561377082612a7b565b613752565b82525050565b60006137878284613764565b60148201915081905092915050565b60006137a18261284d565b91506137ac8361284d565b92508282039050818111156137c4576137c3613200565b5b92915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000613800601d8361295b565b915061380b826137ca565b602082019050919050565b6000602082019050818103600083015261382f816137f3565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b600061386c601d8361295b565b915061387782613836565b602082019050919050565b6000602082019050818103600083015261389b8161385f565b9050919050565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b60006138d860188361295b565b91506138e3826138a2565b602082019050919050565b60006020820190508181036000830152613907816138cb565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b600061394460168361295b565b915061394f8261390e565b602082019050919050565b6000602082019050818103600083015261397381613937565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b60006139b0601e8361295b565b91506139bb8261397a565b602082019050919050565b600060208201905081810360008301526139df816139a3565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b6000613a1c60138361295b565b9150613a27826139e6565b602082019050919050565b60006020820190508181036000830152613a4b81613a0f565b9050919050565b600081905092915050565b6000613a6882612950565b613a728185613a52565b9350613a8281856020860161296c565b80840191505092915050565b6000613a9a8285613a5d565b9150613aa68284613a5d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b0e60268361295b565b9150613b1982613ab2565b604082019050919050565b60006020820190508181036000830152613b3d81613b01565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b6000613ba960188361295b565b9150613bb482613b73565b602082019050919050565b60006020820190508181036000830152613bd881613b9c565b9050919050565b6000613bea8261284d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c1c57613c1b613200565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c5d60208361295b565b9150613c6882613c27565b602082019050919050565b60006020820190508181036000830152613c8c81613c50565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613cc9601d8361295b565b9150613cd482613c93565b602082019050919050565b60006020820190508181036000830152613cf881613cbc565b9050919050565b600081905092915050565b50565b6000613d1a600083613cff565b9150613d2582613d0a565b600082019050919050565b6000613d3b82613d0d565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613da1603a8361295b565b9150613dac82613d45565b604082019050919050565b60006020820190508181036000830152613dd081613d94565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dfe82613dd7565b613e088185613de2565b9350613e1881856020860161296c565b613e2181612996565b840191505092915050565b6000608082019050613e416000830187612a8d565b613e4e6020830186612a8d565b613e5b6040830185612857565b8181036060830152613e6d8184613df3565b905095945050505050565b600081519050613e87816128c1565b92915050565b600060208284031215613ea357613ea261288b565b5b6000613eb184828501613e78565b9150509291505056fea26469706673582212206138070967dad01dce13a3e1299edf3875491ea6b74ab2795191f35a991b36e164736f6c634300081100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d63323767363371376e6d4b6b456a7255534543543655396574556873567046786b3169736152314c635741532f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025b5760003560e01c8063715018a611610144578063a22cb465116100b6578063c87b56dd1161007a578063c87b56dd14610821578063cadf88181461085e578063e985e9c514610889578063ea6eb836146108c6578063f2fde38b146108ef578063fb7e6ccb146109185761025b565b8063a22cb46514610761578063a581767c1461078a578063ae70a18e146107b3578063b88d4fde146107dc578063bc63f02e146107f85761025b565b80638da5cb5b116101085780638da5cb5b1461067257806391b7f5ed1461069d57806395d89b41146106c65780639a3bf728146106f15780639ba411b11461071c578063a0712d68146107455761025b565b8063715018a6146105d45780637389fbb7146105eb57806378179976146106145780637bffb4ce146106305780638d372cdc146106475761025b565b80632eb4a7ab116101dd5780634dfea627116101a15780634dfea627146104b257806355f804b3146104db57806360d938dc146105045780636352211e1461052f5780636817c76c1461056c57806370a08231146105975761025b565b80632eb4a7ab1461040057806332cb6b0c1461042b5780633549345e146104565780633ccfd60b1461047f57806342842e0e146104965761025b565b8063095ea7b311610224578063095ea7b3146103475780630cf726001461036357806318160ddd1461038e57806322f3e2d4146103b957806323b872dd146103e45761025b565b80620e7fa81461026057806301ffc9a71461028b578063049c5c49146102c857806306fdde03146102df578063081812fc1461030a575b600080fd5b34801561026c57600080fd5b50610275610941565b6040516102829190612866565b60405180910390f35b34801561029757600080fd5b506102b260048036038101906102ad91906128ed565b610947565b6040516102bf9190612935565b60405180910390f35b3480156102d457600080fd5b506102dd6109d9565b005b3480156102eb57600080fd5b506102f4610a0d565b60405161030191906129e0565b60405180910390f35b34801561031657600080fd5b50610331600480360381019061032c9190612a2e565b610a9f565b60405161033e9190612a9c565b60405180910390f35b610361600480360381019061035c9190612ae3565b610b1e565b005b34801561036f57600080fd5b50610378610c62565b6040516103859190612866565b60405180910390f35b34801561039a57600080fd5b506103a3610c68565b6040516103b09190612866565b60405180910390f35b3480156103c557600080fd5b506103ce610c7f565b6040516103db9190612935565b60405180910390f35b6103fe60048036038101906103f99190612b23565b610c92565b005b34801561040c57600080fd5b50610415610fb4565b6040516104229190612b8f565b60405180910390f35b34801561043757600080fd5b50610440610fba565b60405161044d9190612866565b60405180910390f35b34801561046257600080fd5b5061047d60048036038101906104789190612a2e565b610fc0565b005b34801561048b57600080fd5b50610494610fd2565b005b6104b060048036038101906104ab9190612b23565b611117565b005b3480156104be57600080fd5b506104d960048036038101906104d49190612a2e565b611137565b005b3480156104e757600080fd5b5061050260048036038101906104fd9190612cdf565b611149565b005b34801561051057600080fd5b50610519611164565b6040516105269190612935565b60405180910390f35b34801561053b57600080fd5b5061055660048036038101906105519190612a2e565b611177565b6040516105639190612a9c565b60405180910390f35b34801561057857600080fd5b50610581611189565b60405161058e9190612866565b60405180910390f35b3480156105a357600080fd5b506105be60048036038101906105b99190612d28565b61118f565b6040516105cb9190612866565b60405180910390f35b3480156105e057600080fd5b506105e9611247565b005b3480156105f757600080fd5b50610612600480360381019061060d9190612a2e565b61125b565b005b61062e60048036038101906106299190612db5565b61126d565b005b34801561063c57600080fd5b5061064561158f565b005b34801561065357600080fd5b5061065c6115c3565b6040516106699190612b8f565b60405180910390f35b34801561067e57600080fd5b506106876115c9565b6040516106949190612a9c565b60405180910390f35b3480156106a957600080fd5b506106c460048036038101906106bf9190612a2e565b6115f3565b005b3480156106d257600080fd5b506106db611605565b6040516106e891906129e0565b60405180910390f35b3480156106fd57600080fd5b50610706611697565b6040516107139190612866565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e9190612e41565b61169d565b005b61075f600480360381019061075a9190612a2e565b6116af565b005b34801561076d57600080fd5b5061078860048036038101906107839190612e9a565b6118dc565b005b34801561079657600080fd5b506107b160048036038101906107ac9190612e41565b6119e7565b005b3480156107bf57600080fd5b506107da60048036038101906107d59190612a2e565b6119f9565b005b6107f660048036038101906107f19190612f7b565b611a0b565b005b34801561080457600080fd5b5061081f600480360381019061081a9190612ffe565b611a7e565b005b34801561082d57600080fd5b5061084860048036038101906108439190612a2e565b611b36565b60405161085591906129e0565b60405180910390f35b34801561086a57600080fd5b50610873611bd4565b6040516108809190612866565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab919061303e565b611bda565b6040516108bd9190612935565b60405180910390f35b3480156108d257600080fd5b506108ed60048036038101906108e89190612a2e565b611c6e565b005b3480156108fb57600080fd5b5061091660048036038101906109119190612d28565b611c80565b005b34801561092457600080fd5b5061093f600480360381019061093a91906130d4565b611d03565b005b600b5481565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a257506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109d25750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6109e1611e9b565b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b606060028054610a1c90613163565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4890613163565b8015610a955780601f10610a6a57610100808354040283529160200191610a95565b820191906000526020600020905b815481529060010190602001808311610a7857829003601f168201915b5050505050905090565b6000610aaa82611f19565b610ae0576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b2982611177565b90508073ffffffffffffffffffffffffffffffffffffffff16610b4a611f78565b73ffffffffffffffffffffffffffffffffffffffff1614610bad57610b7681610b71611f78565b611bda565b610bac576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60135481565b6000610c72611f80565b6001546000540303905090565b600f60009054906101000a900460ff1681565b6000610c9d82611f85565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610d04576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610d1084612051565b91509150610d268187610d21611f78565b612078565b610d7257610d3b86610d36611f78565b611bda565b610d71576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610dd8576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610de586868660016120bc565b8015610df057600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610ebe85610e9a8888876120c2565b7c0200000000000000000000000000000000000000000000000000000000176120ea565b600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000841603610f445760006001850190506000600460008381526020019081526020016000205403610f42576000548114610f41578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fac8686866001612115565b505050505050565b600c5481565b60105481565b610fc8611e9b565b80600b8190555050565b610fda611e9b565b60026008540361101f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611016906131e0565b60405180910390fd5b600260088190555060004790506110647378e7568f0cf25b0b3a175f87648421415dec12b86127106103e884611055919061322f565b61105f91906132a0565b61211b565b61109c73e2a00da9440abda4876d3ce0fa96cab4da8a4804612710610a8c8461108d919061322f565b61109791906132a0565b61211b565b6110d47312949468f54125312bbcbd4aadc51e3f4475c46b612710610a8c846110c5919061322f565b6110cf91906132a0565b61211b565b61110c733ad5d4ff3dfb1c232fcc36e3ce3bcd75067ebc12612710610e10846110fd919061322f565b61110791906132a0565b61211b565b506001600881905550565b61113283838360405180602001604052806000815250611a0b565b505050565b61113f611e9b565b8060118190555050565b611151611e9b565b80600e9081611160919061347d565b5050565b600f60019054906101000a900460ff1681565b600061118282611f85565b9050919050565b600a5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036111f6576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b61124f611e9b565b611259600061220f565b565b611263611e9b565b8060108190555050565b601054611278610c68565b11156112b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b09061359b565b60405180910390fd5b60006112c3610c68565b9050600f60019054906101000a900460ff16611314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130b90613607565b60405180910390fd5b6010548110611358576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134f90613673565b60405180910390fd5b601354826113653361118f565b61136f9190613693565b11156113b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a790613713565b60405180910390fd5b611424848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d5433604051602001611409919061377b565b604051602081830303815290604052805190602001206122d5565b8015611438575060006114363361118f565b145b156114b45760006001830361144e57600061145c565b60018361145b9190613796565b5b905080600b5461146c919061322f565b3410156114ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a590613816565b60405180910390fd5b5061157f565b611528848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c543360405160200161150d919061377b565b604051602081830303815290604052805190602001206122d5565b1561157e5781600b5461153b919061322f565b34101561157d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157490613816565b60405180910390fd5b5b5b61158933836122ec565b50505050565b611597611e9b565b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b600d5481565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6115fb611e9b565b80600a8190555050565b60606003805461161490613163565b80601f016020809104026020016040519081016040528092919081815260200182805461164090613163565b801561168d5780601f106116625761010080835404028352916020019161168d565b820191906000526020600020905b81548152906001019060200180831161167057829003601f168201915b5050505050905090565b60115481565b6116a5611e9b565b80600c8190555050565b6010546116ba610c68565b11156116fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f29061359b565b60405180910390fd5b6000611705610c68565b905061170f6115c9565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146117e957600f60009054906101000a900460ff16611790576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178790613882565b60405180910390fd5b6012548261179d3361118f565b6117a79190613693565b11156117e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117df906138ee565b60405180910390fd5b5b60105482826117f89190613693565b1115611839576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118309061395a565b60405180910390fd5b60115482111561187e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611875906139c6565b60405180910390fd5b81600a5461188c919061322f565b3410156118ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c590613816565b60405180910390fd5b6118d833836122ec565b5050565b80600760006118e9611f78565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611996611f78565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119db9190612935565b60405180910390a35050565b6119ef611e9b565b80600d8190555050565b611a01611e9b565b8060138190555050565b611a16848484610c92565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a7857611a418484848461230a565b611a77576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a86611e9b565b6000611a90610c68565b90506010548382611aa19190613693565b1115611ae2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad99061395a565b60405180910390fd5b601054811115611b27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1e90613a32565b60405180910390fd5b611b3182846122ec565b505050565b6060611b4182611f19565b611b77576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611b8161245a565b90506000815103611ba15760405180602001604052806000815250611bcc565b80611bab846124ec565b604051602001611bbc929190613a8e565b6040516020818303038152906040525b915050919050565b60125481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c76611e9b565b8060128190555050565b611c88611e9b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611cf7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cee90613b24565b60405180910390fd5b611d008161220f565b50565b611d0b611e9b565b6000611d15610c68565b90506010548482611d269190613693565b1115611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e9061395a565b60405180910390fd5b601054811115611dac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da390613a32565b60405180910390fd5b60005b83839050811015611e9457600073ffffffffffffffffffffffffffffffffffffffff16848483818110611de557611de4613b44565b5b9050602002016020810190611dfa9190612d28565b73ffffffffffffffffffffffffffffffffffffffff1603611e50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e4790613bbf565b60405180910390fd5b611e81848483818110611e6657611e65613b44565b5b9050602002016020810190611e7b9190612d28565b866122ec565b8080611e8c90613bdf565b915050611daf565b5050505050565b611ea361253c565b73ffffffffffffffffffffffffffffffffffffffff16611ec16115c9565b73ffffffffffffffffffffffffffffffffffffffff1614611f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f0e90613c73565b60405180910390fd5b565b600081611f24611f80565b11158015611f33575060005482105b8015611f71575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b600090565b60008082905080611f94611f80565b1161201a576000548110156120195760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821603612017575b6000810361200d576004600083600190039350838152602001908152602001600020549050611fe3565b809250505061204c565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e86120d9868684612544565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b8047101561215e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215590613cdf565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161218490613d30565b60006040518083038185875af1925050503d80600081146121c1576040519150601f19603f3d011682016040523d82523d6000602084013e6121c6565b606091505b505090508061220a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220190613db7565b60405180910390fd5b505050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826122e2858461254d565b1490509392505050565b6123068282604051806020016040528060008152506125a3565b5050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612330611f78565b8786866040518563ffffffff1660e01b81526004016123529493929190613e2c565b6020604051808303816000875af192505050801561238e57506040513d601f19601f8201168201806040525081019061238b9190613e8d565b60015b612407573d80600081146123be576040519150601f19603f3d011682016040523d82523d6000602084013e6123c3565b606091505b5060008151036123ff576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e805461246990613163565b80601f016020809104026020016040519081016040528092919081815260200182805461249590613163565b80156124e25780601f106124b7576101008083540402835291602001916124e2565b820191906000526020600020905b8154815290600101906020018083116124c557829003601f168201915b5050505050905090565b606060a060405101806040526020810391506000825281835b60011561252757600184039350600a81066030018453600a8104905080612505575b50828103602084039350808452505050919050565b600033905090565b60009392505050565b60008082905060005b8451811015612598576125838286838151811061257657612575613b44565b5b6020026020010151612640565b9150808061259090613bdf565b915050612556565b508091505092915050565b6125ad838361266b565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461263b57600080549050600083820390505b6125ed600086838060010194508661230a565b612623576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106125da57816000541461263857600080fd5b50505b505050565b6000818310612658576126538284612826565b612663565b6126628383612826565b5b905092915050565b600080549050600082036126ab576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126b860008483856120bc565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555061272f8361272060008660006120c2565b6127298561283d565b176120ea565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b8181146127d057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612795565b506000820361280b576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506128216000848385612115565b505050565b600082600052816020526040600020905092915050565b60006001821460e11b9050919050565b6000819050919050565b6128608161284d565b82525050565b600060208201905061287b6000830184612857565b92915050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6128ca81612895565b81146128d557600080fd5b50565b6000813590506128e7816128c1565b92915050565b6000602082840312156129035761290261288b565b5b6000612911848285016128d8565b91505092915050565b60008115159050919050565b61292f8161291a565b82525050565b600060208201905061294a6000830184612926565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561298a57808201518184015260208101905061296f565b60008484015250505050565b6000601f19601f8301169050919050565b60006129b282612950565b6129bc818561295b565b93506129cc81856020860161296c565b6129d581612996565b840191505092915050565b600060208201905081810360008301526129fa81846129a7565b905092915050565b612a0b8161284d565b8114612a1657600080fd5b50565b600081359050612a2881612a02565b92915050565b600060208284031215612a4457612a4361288b565b5b6000612a5284828501612a19565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612a8682612a5b565b9050919050565b612a9681612a7b565b82525050565b6000602082019050612ab16000830184612a8d565b92915050565b612ac081612a7b565b8114612acb57600080fd5b50565b600081359050612add81612ab7565b92915050565b60008060408385031215612afa57612af961288b565b5b6000612b0885828601612ace565b9250506020612b1985828601612a19565b9150509250929050565b600080600060608486031215612b3c57612b3b61288b565b5b6000612b4a86828701612ace565b9350506020612b5b86828701612ace565b9250506040612b6c86828701612a19565b9150509250925092565b6000819050919050565b612b8981612b76565b82525050565b6000602082019050612ba46000830184612b80565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b612bec82612996565b810181811067ffffffffffffffff82111715612c0b57612c0a612bb4565b5b80604052505050565b6000612c1e612881565b9050612c2a8282612be3565b919050565b600067ffffffffffffffff821115612c4a57612c49612bb4565b5b612c5382612996565b9050602081019050919050565b82818337600083830152505050565b6000612c82612c7d84612c2f565b612c14565b905082815260208101848484011115612c9e57612c9d612baf565b5b612ca9848285612c60565b509392505050565b600082601f830112612cc657612cc5612baa565b5b8135612cd6848260208601612c6f565b91505092915050565b600060208284031215612cf557612cf461288b565b5b600082013567ffffffffffffffff811115612d1357612d12612890565b5b612d1f84828501612cb1565b91505092915050565b600060208284031215612d3e57612d3d61288b565b5b6000612d4c84828501612ace565b91505092915050565b600080fd5b600080fd5b60008083601f840112612d7557612d74612baa565b5b8235905067ffffffffffffffff811115612d9257612d91612d55565b5b602083019150836020820283011115612dae57612dad612d5a565b5b9250929050565b600080600060408486031215612dce57612dcd61288b565b5b600084013567ffffffffffffffff811115612dec57612deb612890565b5b612df886828701612d5f565b93509350506020612e0b86828701612a19565b9150509250925092565b612e1e81612b76565b8114612e2957600080fd5b50565b600081359050612e3b81612e15565b92915050565b600060208284031215612e5757612e5661288b565b5b6000612e6584828501612e2c565b91505092915050565b612e778161291a565b8114612e8257600080fd5b50565b600081359050612e9481612e6e565b92915050565b60008060408385031215612eb157612eb061288b565b5b6000612ebf85828601612ace565b9250506020612ed085828601612e85565b9150509250929050565b600067ffffffffffffffff821115612ef557612ef4612bb4565b5b612efe82612996565b9050602081019050919050565b6000612f1e612f1984612eda565b612c14565b905082815260208101848484011115612f3a57612f39612baf565b5b612f45848285612c60565b509392505050565b600082601f830112612f6257612f61612baa565b5b8135612f72848260208601612f0b565b91505092915050565b60008060008060808587031215612f9557612f9461288b565b5b6000612fa387828801612ace565b9450506020612fb487828801612ace565b9350506040612fc587828801612a19565b925050606085013567ffffffffffffffff811115612fe657612fe5612890565b5b612ff287828801612f4d565b91505092959194509250565b600080604083850312156130155761301461288b565b5b600061302385828601612a19565b925050602061303485828601612ace565b9150509250929050565b600080604083850312156130555761305461288b565b5b600061306385828601612ace565b925050602061307485828601612ace565b9150509250929050565b60008083601f84011261309457613093612baa565b5b8235905067ffffffffffffffff8111156130b1576130b0612d55565b5b6020830191508360208202830111156130cd576130cc612d5a565b5b9250929050565b6000806000604084860312156130ed576130ec61288b565b5b60006130fb86828701612a19565b935050602084013567ffffffffffffffff81111561311c5761311b612890565b5b6131288682870161307e565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061317b57607f821691505b60208210810361318e5761318d613134565b5b50919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006131ca601f8361295b565b91506131d582613194565b602082019050919050565b600060208201905081810360008301526131f9816131bd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061323a8261284d565b91506132458361284d565b92508282026132538161284d565b9150828204841483151761326a57613269613200565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006132ab8261284d565b91506132b68361284d565b9250826132c6576132c5613271565b5b828204905092915050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026133337fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132f6565b61333d86836132f6565b95508019841693508086168417925050509392505050565b6000819050919050565b600061337a6133756133708461284d565b613355565b61284d565b9050919050565b6000819050919050565b6133948361335f565b6133a86133a082613381565b848454613303565b825550505050565b600090565b6133bd6133b0565b6133c881848461338b565b505050565b5b818110156133ec576133e16000826133b5565b6001810190506133ce565b5050565b601f82111561343157613402816132d1565b61340b846132e6565b8101602085101561341a578190505b61342e613426856132e6565b8301826133cd565b50505b505050565b600082821c905092915050565b600061345460001984600802613436565b1980831691505092915050565b600061346d8383613443565b9150826002028217905092915050565b61348682612950565b67ffffffffffffffff81111561349f5761349e612bb4565b5b6134a98254613163565b6134b48282856133f0565b600060209050601f8311600181146134e757600084156134d5578287015190505b6134df8582613461565b865550613547565b601f1984166134f5866132d1565b60005b8281101561351d578489015182556001820191506020850194506020810190506134f8565b8683101561353a5784890151613536601f891682613443565b8355505b6001600288020188555050505b505050505050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b6000613585600f8361295b565b91506135908261354f565b602082019050919050565b600060208201905081810360008301526135b481613578565b9050919050565b7f50726573616c65206973206e6f74206163746976650000000000000000000000600082015250565b60006135f160158361295b565b91506135fc826135bb565b602082019050919050565b60006020820190508181036000830152613620816135e4565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b600061365d601b8361295b565b915061366882613627565b602082019050919050565b6000602082019050818103600083015261368c81613650565b9050919050565b600061369e8261284d565b91506136a98361284d565b92508282019050808211156136c1576136c0613200565b5b92915050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b60006136fd60208361295b565b9150613708826136c7565b602082019050919050565b6000602082019050818103600083015261372c816136f0565b9050919050565b60008160601b9050919050565b600061374b82613733565b9050919050565b600061375d82613740565b9050919050565b61377561377082612a7b565b613752565b82525050565b60006137878284613764565b60148201915081905092915050565b60006137a18261284d565b91506137ac8361284d565b92508282039050818111156137c4576137c3613200565b5b92915050565b7f496e73756666696369656e742045544820616d6f756e742073656e742e000000600082015250565b6000613800601d8361295b565b915061380b826137ca565b602082019050919050565b6000602082019050818103600083015261382f816137f3565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b600061386c601d8361295b565b915061387782613836565b602082019050919050565b6000602082019050818103600083015261389b8161385f565b9050919050565b7f4d617820686f6c64696e672063617020726561636865642e0000000000000000600082015250565b60006138d860188361295b565b91506138e3826138a2565b602082019050919050565b60006020820190508181036000830152613907816138cb565b9050919050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b600061394460168361295b565b915061394f8261390e565b602082019050919050565b6000602082019050818103600083015261397381613937565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b60006139b0601e8361295b565b91506139bb8261397a565b602082019050919050565b600060208201905081810360008301526139df816139a3565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b6000613a1c60138361295b565b9150613a27826139e6565b602082019050919050565b60006020820190508181036000830152613a4b81613a0f565b9050919050565b600081905092915050565b6000613a6882612950565b613a728185613a52565b9350613a8281856020860161296c565b80840191505092915050565b6000613a9a8285613a5d565b9150613aa68284613a5d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b0e60268361295b565b9150613b1982613ab2565b604082019050919050565b60006020820190508181036000830152613b3d81613b01565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b6000613ba960188361295b565b9150613bb482613b73565b602082019050919050565b60006020820190508181036000830152613bd881613b9c565b9050919050565b6000613bea8261284d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613c1c57613c1b613200565b5b600182019050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613c5d60208361295b565b9150613c6882613c27565b602082019050919050565b60006020820190508181036000830152613c8c81613c50565b9050919050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000613cc9601d8361295b565b9150613cd482613c93565b602082019050919050565b60006020820190508181036000830152613cf881613cbc565b9050919050565b600081905092915050565b50565b6000613d1a600083613cff565b9150613d2582613d0a565b600082019050919050565b6000613d3b82613d0d565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b6000613da1603a8361295b565b9150613dac82613d45565b604082019050919050565b60006020820190508181036000830152613dd081613d94565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613dfe82613dd7565b613e088185613de2565b9350613e1881856020860161296c565b613e2181612996565b840191505092915050565b6000608082019050613e416000830187612a8d565b613e4e6020830186612a8d565b613e5b6040830185612857565b8181036060830152613e6d8184613df3565b905095945050505050565b600081519050613e87816128c1565b92915050565b600060208284031215613ea357613ea261288b565b5b6000613eb184828501613e78565b9150509291505056fea26469706673582212206138070967dad01dce13a3e1299edf3875491ea6b74ab2795191f35a991b36e164736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d63323767363371376e6d4b6b456a7255534543543655396574556873567046786b3169736152314c635741532f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/Qmc27g63q7nmKkEjrUSECT6U9etUhsVpFxk1isaR1LcWAS/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [2] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [3] : 732f516d63323767363371376e6d4b6b456a7255534543543655396574556873
Arg [4] : 567046786b3169736152314c635741532f000000000000000000000000000000


Deployed Bytecode Sourcemap

192:4951:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;638:41;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9155:630:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2138:76:2;;;;;;;;;;;;;:::i;:::-;;10039:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16360:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15812:398;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;995:42:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5894:317:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;779:28:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19903:2764:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;684:25:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;851:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2030:104;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4758:383;;;;;;;;;;;;;:::i;:::-;;22758:187:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1587:117:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2317:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;811:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11391:150:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;596:38:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7045:230:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1824:101:6;;;;;;;;;;;;;:::i;:::-;;1836:106:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3837:916;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2218:95;;;;;;;;;;;;;:::i;:::-;;713:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1194:85:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1946:80:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10208:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;887:51:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1240:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3235:598;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16901:231:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1340:120:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1466:117;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23526:396:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2526:274:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10411:313:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;942:49:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17282:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1708:124:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2074:198:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2804:427:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;638:41;;;;:::o;9155:630:3:-;9240:4;9573:10;9558:25;;:11;:25;;;;:101;;;;9649:10;9634:25;;:11;:25;;;;9558:101;:177;;;;9725:10;9710:25;;:11;:25;;;;9558:177;9539:196;;9155:630;;;:::o;2138:76:2:-;1087:13:6;:11;:13::i;:::-;2201:8:2::1;;;;;;;;;;;2200:9;2189:8;;:20;;;;;;;;;;;;;;;;;;2138:76::o:0;10039:98:3:-;10093:13;10125:5;10118:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10039:98;:::o;16360:214::-;16436:7;16460:16;16468:7;16460;:16::i;:::-;16455:64;;16485:34;;;;;;;;;;;;;;16455:64;16537:15;:24;16553:7;16537:24;;;;;;;;;;;:30;;;;;;;;;;;;16530:37;;16360:214;;;:::o;15812:398::-;15900:13;15916:16;15924:7;15916;:16::i;:::-;15900:32;;15970:5;15947:28;;:19;:17;:19::i;:::-;:28;;;15943:172;;15994:44;16011:5;16018:19;:17;:19::i;:::-;15994:16;:44::i;:::-;15989:126;;16065:35;;;;;;;;;;;;;;15989:126;15943:172;16158:2;16125:15;:24;16141:7;16125:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;16195:7;16191:2;16175:28;;16184:5;16175:28;;;;;;;;;;;;15890:320;15812:398;;:::o;995:42:2:-;;;;:::o;5894:317:3:-;5955:7;6179:15;:13;:15::i;:::-;6164:12;;6148:13;;:28;:46;6141:53;;5894:317;:::o;779:28:2:-;;;;;;;;;;;;;:::o;19903:2764:3:-;20040:27;20070;20089:7;20070:18;:27::i;:::-;20040:57;;20153:4;20112:45;;20128:19;20112:45;;;20108:86;;20166:28;;;;;;;;;;;;;;20108:86;20206:27;20235:23;20262:35;20289:7;20262:26;:35::i;:::-;20205:92;;;;20394:68;20419:15;20436:4;20442:19;:17;:19::i;:::-;20394:24;:68::i;:::-;20389:179;;20481:43;20498:4;20504:19;:17;:19::i;:::-;20481:16;:43::i;:::-;20476:92;;20533:35;;;;;;;;;;;;;;20476:92;20389:179;20597:1;20583:16;;:2;:16;;;20579:52;;20608:23;;;;;;;;;;;;;;20579:52;20642:43;20664:4;20670:2;20674:7;20683:1;20642:21;:43::i;:::-;20774:15;20771:157;;;20912:1;20891:19;20884:30;20771:157;21300:18;:24;21319:4;21300:24;;;;;;;;;;;;;;;;21298:26;;;;;;;;;;;;21368:18;:22;21387:2;21368:22;;;;;;;;;;;;;;;;21366:24;;;;;;;;;;;21683:143;21719:2;21767:45;21782:4;21788:2;21792:19;21767:14;:45::i;:::-;2392:8;21739:73;21683:18;:143::i;:::-;21654:17;:26;21672:7;21654:26;;;;;;;;;;;:172;;;;21994:1;2392:8;21943:19;:47;:52;21939:617;;22015:19;22047:1;22037:7;:11;22015:33;;22202:1;22168:17;:30;22186:11;22168:30;;;;;;;;;;;;:35;22164:378;;22304:13;;22289:11;:28;22285:239;;22482:19;22449:17;:30;22467:11;22449:30;;;;;;;;;;;:52;;;;22285:239;22164:378;21997:559;21939:617;22600:7;22596:2;22581:27;;22590:4;22581:27;;;;;;;;;;;;22618:42;22639:4;22645:2;22649:7;22658:1;22618:20;:42::i;:::-;20030:2637;;;19903:2764;;;:::o;684:25:2:-;;;;:::o;851:32::-;;;;:::o;2030:104::-;1087:13:6;:11;:13::i;:::-;2116::2::1;2101:12;:28;;;;2030:104:::0;:::o;4758:383::-;1087:13:6;:11;:13::i;:::-;2495:1:7::1;3076:7;;:19:::0;3068:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2495:1;3206:7;:18;;;;4816:12:2::2;4831:21;4816:36;;4858:63;298:42;4915:5;4907:4;4897:7;:14;;;;:::i;:::-;4896:24;;;;:::i;:::-;4858:17;:63::i;:::-;4929;381:42;4986:5;4978:4;4968:7;:14;;;;:::i;:::-;4967:24;;;;:::i;:::-;4929:17;:63::i;:::-;5000;464:42;5057:5;5049:4;5039:7;:14;;;;:::i;:::-;5038:24;;;;:::i;:::-;5000:17;:63::i;:::-;5071;547:42;5128:5;5120:4;5110:7;:14;;;;:::i;:::-;5109:24;;;;:::i;:::-;5071:17;:63::i;:::-;4810:331;2452:1:7::1;3379:7;:22;;;;4758:383:2:o:0;22758:187:3:-;22899:39;22916:4;22922:2;22926:7;22899:39;;;;;;;;;;;;:16;:39::i;:::-;22758:187;;;:::o;1587:117:2:-;1087:13:6;:11;:13::i;:::-;1693:6:2::1;1659:31;:40;;;;1587:117:::0;:::o;2317:94::-;1087:13:6;:11;:13::i;:::-;2399:7:2::1;2383:13;:23;;;;;;:::i;:::-;;2317:94:::0;:::o;811:35::-;;;;;;;;;;;;;:::o;11391:150:3:-;11463:7;11505:27;11524:7;11505:18;:27::i;:::-;11482:52;;11391:150;;;:::o;596:38:2:-;;;;:::o;7045:230:3:-;7117:7;7157:1;7140:19;;:5;:19;;;7136:60;;7168:28;;;;;;;;;;;;;;7136:60;1360:13;7213:18;:25;7232:5;7213:25;;;;;;;;;;;;;;;;:55;7206:62;;7045:230;;;:::o;1824:101:6:-;1087:13;:11;:13::i;:::-;1888:30:::1;1915:1;1888:18;:30::i;:::-;1824:101::o:0;1836:106:2:-;1087:13:6;:11;:13::i;:::-;1924::2::1;1911:10;:26;;;;1836:106:::0;:::o;3837:916::-;1194:10;;1177:13;:11;:13::i;:::-;:27;;1169:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;3939:17:::1;3959:13;:11;:13::i;:::-;3939:33;;3986:15;;;;;;;;;;;3978:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;4053:10;;4041:9;:22;4033:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4143:23;;4133:6;4109:21;4119:10;4109:9;:21::i;:::-;:30;;;;:::i;:::-;:57;;4101:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;4213:97;4232:12;;4213:97;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4246:22;;4297:10;4280:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;4270:39;;;;;;4213:18;:97::i;:::-;:127;;;;;4339:1;4314:21;4324:10;4314:9;:21::i;:::-;:26;4213:127;4210:499;;;4350:23;4386:1;4376:6;:11:::0;:28:::1;;4403:1;4376:28;;;4399:1;4390:6;:10;;;;:::i;:::-;4376:28;4350:54;;4448:15;4433:12;;:30;;;;:::i;:::-;4420:9;:43;;4412:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;4342:162;4210:499;;;4521:85;4540:12;;4521:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4554:10;;4593;4576:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;4566:39;;;;;;4521:18;:85::i;:::-;4518:185;;;4654:6;4639:12;;:21;;;;:::i;:::-;4626:9;:34;;4618:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;4518:185;4210:499;4719:29;4729:10;4741:6;4719:9;:29::i;:::-;3933:820;3837:916:::0;;;:::o;2218:95::-;1087:13:6;:11;:13::i;:::-;2293:15:2::1;;;;;;;;;;;2292:16;2274:15;;:34;;;;;;;;;;;;;;;;;;2218:95::o:0;713:37::-;;;;:::o;1194:85:6:-;1240:7;1266:6;;;;;;;;;;;1259:13;;1194:85;:::o;1946:80:2:-;1087:13:6;:11;:13::i;:::-;2015:6:2::1;2003:9;:18;;;;1946:80:::0;:::o;10208:102:3:-;10264:13;10296:7;10289:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10208:102;:::o;887:51:2:-;;;;:::o;1240:96::-;1087:13:6;:11;:13::i;:::-;1322:9:2::1;1309:10;:22;;;;1240:96:::0;:::o;3235:598::-;1194:10;;1177:13;:11;:13::i;:::-;:27;;1169:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;3297:17:::1;3317:13;:11;:13::i;:::-;3297:33;;3356:7;:5;:7::i;:::-;3342:21;;:10;:21;;;3338:200;;3381:8;;;;;;;;;;;3373:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;3473:29;;3463:6;3439:21;3449:10;3439:9;:21::i;:::-;:30;;;;:::i;:::-;:63;;3431:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;3338:200;3574:10;;3564:6;3552:9;:18;;;;:::i;:::-;:32;;3544:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;3636:31;;3626:6;:41;;3617:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;3747:6;3735:9;;:18;;;;:::i;:::-;3721:9;:33;;3713:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;3799:29;3809:10;3821:6;3799:9;:29::i;:::-;3291:542;3235:598:::0;:::o;16901:231:3:-;17047:8;16995:18;:39;17014:19;:17;:19::i;:::-;16995:39;;;;;;;;;;;;;;;:49;17035:8;16995:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;17106:8;17070:55;;17085:19;:17;:19::i;:::-;17070:55;;;17116:8;17070:55;;;;;;:::i;:::-;;;;;;;;16901:231;;:::o;1340:120:2:-;1087:13:6;:11;:13::i;:::-;1446:9:2::1;1421:22;:34;;;;1340:120:::0;:::o;1466:117::-;1087:13:6;:11;:13::i;:::-;1571:7:2::1;1545:23;:33;;;;1466:117:::0;:::o;23526:396:3:-;23695:31;23708:4;23714:2;23718:7;23695:12;:31::i;:::-;23758:1;23740:2;:14;;;:19;23736:180;;23778:56;23809:4;23815:2;23819:7;23828:5;23778:30;:56::i;:::-;23773:143;;23861:40;;;;;;;;;;;;;;23773:143;23736:180;23526:396;;;;:::o;2526:274:2:-;1087:13:6;:11;:13::i;:::-;2602:14:2::1;2619:13;:11;:13::i;:::-;2602:30;;2666:10;;2656:6;2647;:15;;;;:::i;:::-;:29;;2639:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;2727:10;;2717:6;:20;;2709:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;2768:27;2778:8;2788:6;2768:9;:27::i;:::-;2596:204;2526:274:::0;;:::o;10411:313:3:-;10484:13;10514:16;10522:7;10514;:16::i;:::-;10509:59;;10539:29;;;;;;;;;;;;;;10509:59;10579:21;10603:10;:8;:10::i;:::-;10579:34;;10655:1;10636:7;10630:21;:26;:87;;;;;;;;;;;;;;;;;10683:7;10692:18;10702:7;10692:9;:18::i;:::-;10666:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;10630:87;10623:94;;;10411:313;;;:::o;942:49:2:-;;;;:::o;17282:162:3:-;17379:4;17402:18;:25;17421:5;17402:25;;;;;;;;;;;;;;;:35;17428:8;17402:35;;;;;;;;;;;;;;;;;;;;;;;;;17395:42;;17282:162;;;;:::o;1708:124:2:-;1087:13:6;:11;:13::i;:::-;1821:6:2::1;1789:29;:38;;;;1708:124:::0;:::o;2074:198:6:-;1087:13;:11;:13::i;:::-;2182:1:::1;2162:22;;:8;:22;;::::0;2154:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2237:28;2256:8;2237:18;:28::i;:::-;2074:198:::0;:::o;2804:427:2:-;1087:13:6;:11;:13::i;:::-;2897:14:2::1;2914:13;:11;:13::i;:::-;2897:30;;2961:10;;2951:6;2942;:15;;;;:::i;:::-;:29;;2934:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;3022:10;;3012:6;:20;;3004:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;3068:9;3063:164;3087:9;;:16;;3083:1;:20;3063:164;;;3150:1;3126:26;;:9;;3136:1;3126:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;::::0;3118:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3189:31;3199:9;;3209:1;3199:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3213:6;3189:9;:31::i;:::-;3105:3;;;;;:::i;:::-;;;;3063:164;;;;2891:340;2804:427:::0;;;:::o;1352:130:6:-;1426:12;:10;:12::i;:::-;1415:23;;:7;:5;:7::i;:::-;:23;;;1407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1352:130::o;17693:277:3:-;17758:4;17812:7;17793:15;:13;:15::i;:::-;:26;;:65;;;;;17845:13;;17835:7;:23;17793:65;:151;;;;;17943:1;2118:8;17895:17;:26;17913:7;17895:26;;;;;;;;;;;;:44;:49;17793:151;17774:170;;17693:277;;;:::o;39437:103::-;39497:7;39523:10;39516:17;;39437:103;:::o;5426:90::-;5482:7;5426:90;:::o;12515:1249::-;12582:7;12601:12;12616:7;12601:22;;12681:4;12662:15;:13;:15::i;:::-;:23;12658:1042;;12714:13;;12707:4;:20;12703:997;;;12751:14;12768:17;:23;12786:4;12768:23;;;;;;;;;;;;12751:40;;12883:1;2118:8;12855:6;:24;:29;12851:831;;13510:111;13527:1;13517:6;:11;13510:111;;13569:17;:25;13587:6;;;;;;;13569:25;;;;;;;;;;;;13560:34;;13510:111;;;13653:6;13646:13;;;;;;12851:831;12729:971;12703:997;12658:1042;13726:31;;;;;;;;;;;;;;12515:1249;;;;:::o;18828:474::-;18927:27;18956:23;18995:38;19036:15;:24;19052:7;19036:24;;;;;;;;;;;18995:65;;19210:18;19187:41;;19266:19;19260:26;19241:45;;19173:123;18828:474;;;:::o;18074:646::-;18219:11;18381:16;18374:5;18370:28;18361:37;;18539:16;18528:9;18524:32;18511:45;;18687:15;18676:9;18673:30;18665:5;18654:9;18651:20;18648:56;18638:66;;18074:646;;;;;:::o;24566:154::-;;;;;:::o;38764:304::-;38895:7;38914:16;2513:3;38940:19;:41;;38914:68;;2513:3;39007:31;39018:4;39024:2;39028:9;39007:10;:31::i;:::-;38999:40;;:62;;38992:69;;;38764:304;;;;;:::o;14297:443::-;14377:14;14542:16;14535:5;14531:28;14522:37;;14717:5;14703:11;14678:23;14674:41;14671:52;14664:5;14661:63;14651:73;;14297:443;;;;:::o;25367:153::-;;;;;:::o;2412:312:0:-;2526:6;2501:21;:31;;2493:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2578:12;2596:9;:14;;2618:6;2596:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2577:52;;;2647:7;2639:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2483:241;2412:312;;:::o;2426:187:6:-;2499:16;2518:6;;;;;;;;;;;2499:25;;2543:8;2534:6;;:17;;;;;;;;;;;;;;;;;;2597:8;2566:40;;2587:8;2566:40;;;;;;;;;;;;2489:124;2426:187;:::o;1153:184:5:-;1274:4;1326;1297:25;1310:5;1317:4;1297:12;:25::i;:::-;:33;1290:40;;1153:184;;;;;:::o;33423:110:3:-;33499:27;33509:2;33513:8;33499:27;;;;;;;;;;;;:9;:27::i;:::-;33423:110;;:::o;25948:697::-;26106:4;26151:2;26126:45;;;26172:19;:17;:19::i;:::-;26193:4;26199:7;26208:5;26126:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;26122:517;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26421:1;26404:6;:13;:18;26400:229;;26449:40;;;;;;;;;;;;;;26400:229;26589:6;26583:13;26574:6;26570:2;26566:15;26559:38;26122:517;26292:54;;;26282:64;;;:6;:64;;;;26275:71;;;25948:697;;;;;;:::o;2416:106:2:-;2476:13;2504;2497:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2416:106;:::o;39637:1708:3:-;39702:17;40130:4;40123;40117:11;40113:22;40220:1;40214:4;40207:15;40293:4;40290:1;40286:12;40279:19;;40373:1;40368:3;40361:14;40474:3;40708:5;40690:419;40716:1;40690:419;;;40755:1;40750:3;40746:11;40739:18;;40923:2;40917:4;40913:13;40909:2;40905:22;40900:3;40892:36;41015:2;41009:4;41005:13;40997:21;;41080:4;40690:419;41070:25;40690:419;40694:21;41146:3;41141;41137:13;41259:4;41254:3;41250:14;41243:21;;41322:6;41317:3;41310:19;39740:1599;;;39637:1708;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;38475:143:3:-;38608:6;38475:143;;;;;:::o;1991:290:5:-;2074:7;2093:20;2116:4;2093:27;;2135:9;2130:116;2154:5;:12;2150:1;:16;2130:116;;;2202:33;2212:12;2226:5;2232:1;2226:8;;;;;;;;:::i;:::-;;;;;;;;2202:9;:33::i;:::-;2187:48;;2168:3;;;;;:::i;:::-;;;;2130:116;;;;2262:12;2255:19;;;1991:290;;;;:::o;32675:669:3:-;32801:19;32807:2;32811:8;32801:5;:19::i;:::-;32877:1;32859:2;:14;;;:19;32855:473;;32898:11;32912:13;;32898:27;;32943:13;32965:8;32959:3;:14;32943:30;;32991:229;33021:62;33060:1;33064:2;33068:7;;;;;;33077:5;33021:30;:62::i;:::-;33016:165;;33118:40;;;;;;;;;;;;;;33016:165;33215:3;33207:5;:11;32991:229;;33300:3;33283:13;;:20;33279:34;;33305:8;;;33279:34;32880:448;;32855:473;32675:669;;;:::o;8054:147:5:-;8117:7;8147:1;8143;:5;:51;;8174:20;8189:1;8192;8174:14;:20::i;:::-;8143:51;;;8151:20;8166:1;8169;8151:14;:20::i;:::-;8143:51;8136:58;;8054:147;;;;:::o;27091:2902:3:-;27163:20;27186:13;;27163:36;;27225:1;27213:8;:13;27209:44;;27235:18;;;;;;;;;;;;;;27209:44;27264:61;27294:1;27298:2;27302:12;27316:8;27264:21;:61::i;:::-;27797:1;1495:2;27767:1;:26;;27766:32;27754:8;:45;27728:18;:22;27747:2;27728:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;28069:136;28105:2;28158:33;28181:1;28185:2;28189:1;28158:14;:33::i;:::-;28125:30;28146:8;28125:20;:30::i;:::-;:66;28069:18;:136::i;:::-;28035:17;:31;28053:12;28035:31;;;;;;;;;;;:170;;;;28220:16;28250:11;28279:8;28264:12;:23;28250:37;;28792:16;28788:2;28784:25;28772:37;;29156:12;29117:8;29077:1;29016:25;28958:1;28898;28872:328;29520:1;29506:12;29502:20;29461:339;29560:3;29551:7;29548:16;29461:339;;29774:7;29764:8;29761:1;29734:25;29731:1;29728;29723:59;29612:1;29603:7;29599:15;29588:26;;29461:339;;;29465:75;29843:1;29831:8;:13;29827:45;;29853:19;;;;;;;;;;;;;;29827:45;29903:3;29887:13;:19;;;;27508:2409;;29926:60;29955:1;29959:2;29963:12;29977:8;29926:20;:60::i;:::-;27153:2840;27091:2902;;:::o;8207:261:5:-;8275:13;8379:1;8373:4;8366:15;8407:1;8401:4;8394:15;8447:4;8441;8431:21;8422:30;;8207:261;;;;:::o;14837:318:3:-;14907:14;15136:1;15126:8;15123:15;15097:24;15093:46;15083:56;;14837:318;;;:::o;7:77:8:-;44:7;73:5;62:16;;7:77;;;:::o;90:118::-;177:24;195:5;177:24;:::i;:::-;172:3;165:37;90:118;;:::o;214:222::-;307:4;345:2;334:9;330:18;322:26;;358:71;426:1;415:9;411:17;402:6;358:71;:::i;:::-;214:222;;;;:::o;442:75::-;475:6;508:2;502:9;492:19;;442:75;:::o;523:117::-;632:1;629;622:12;646:117;755:1;752;745:12;769:149;805:7;845:66;838:5;834:78;823:89;;769:149;;;:::o;924:120::-;996:23;1013:5;996:23;:::i;:::-;989:5;986:34;976:62;;1034:1;1031;1024:12;976:62;924:120;:::o;1050:137::-;1095:5;1133:6;1120:20;1111:29;;1149:32;1175:5;1149:32;:::i;:::-;1050:137;;;;:::o;1193:327::-;1251:6;1300:2;1288:9;1279:7;1275:23;1271:32;1268:119;;;1306:79;;:::i;:::-;1268:119;1426:1;1451:52;1495:7;1486:6;1475:9;1471:22;1451:52;:::i;:::-;1441:62;;1397:116;1193:327;;;;:::o;1526:90::-;1560:7;1603:5;1596:13;1589:21;1578:32;;1526:90;;;:::o;1622:109::-;1703:21;1718:5;1703:21;:::i;:::-;1698:3;1691:34;1622:109;;:::o;1737:210::-;1824:4;1862:2;1851:9;1847:18;1839:26;;1875:65;1937:1;1926:9;1922:17;1913:6;1875:65;:::i;:::-;1737:210;;;;:::o;1953:99::-;2005:6;2039:5;2033:12;2023:22;;1953:99;;;:::o;2058:169::-;2142:11;2176:6;2171:3;2164:19;2216:4;2211:3;2207:14;2192:29;;2058:169;;;;:::o;2233:246::-;2314:1;2324:113;2338:6;2335:1;2332:13;2324:113;;;2423:1;2418:3;2414:11;2408:18;2404:1;2399:3;2395:11;2388:39;2360:2;2357:1;2353:10;2348:15;;2324:113;;;2471:1;2462:6;2457:3;2453:16;2446:27;2295:184;2233:246;;;:::o;2485:102::-;2526:6;2577:2;2573:7;2568:2;2561:5;2557:14;2553:28;2543:38;;2485:102;;;:::o;2593:377::-;2681:3;2709:39;2742:5;2709:39;:::i;:::-;2764:71;2828:6;2823:3;2764:71;:::i;:::-;2757:78;;2844:65;2902:6;2897:3;2890:4;2883:5;2879:16;2844:65;:::i;:::-;2934:29;2956:6;2934:29;:::i;:::-;2929:3;2925:39;2918:46;;2685:285;2593:377;;;;:::o;2976:313::-;3089:4;3127:2;3116:9;3112:18;3104:26;;3176:9;3170:4;3166:20;3162:1;3151:9;3147:17;3140:47;3204:78;3277:4;3268:6;3204:78;:::i;:::-;3196:86;;2976:313;;;;:::o;3295:122::-;3368:24;3386:5;3368:24;:::i;:::-;3361:5;3358:35;3348:63;;3407:1;3404;3397:12;3348:63;3295:122;:::o;3423:139::-;3469:5;3507:6;3494:20;3485:29;;3523:33;3550:5;3523:33;:::i;:::-;3423:139;;;;:::o;3568:329::-;3627:6;3676:2;3664:9;3655:7;3651:23;3647:32;3644:119;;;3682:79;;:::i;:::-;3644:119;3802:1;3827:53;3872:7;3863:6;3852:9;3848:22;3827:53;:::i;:::-;3817:63;;3773:117;3568:329;;;;:::o;3903:126::-;3940:7;3980:42;3973:5;3969:54;3958:65;;3903:126;;;:::o;4035:96::-;4072:7;4101:24;4119:5;4101:24;:::i;:::-;4090:35;;4035:96;;;:::o;4137:118::-;4224:24;4242:5;4224:24;:::i;:::-;4219:3;4212:37;4137:118;;:::o;4261:222::-;4354:4;4392:2;4381:9;4377:18;4369:26;;4405:71;4473:1;4462:9;4458:17;4449:6;4405:71;:::i;:::-;4261:222;;;;:::o;4489:122::-;4562:24;4580:5;4562:24;:::i;:::-;4555:5;4552:35;4542:63;;4601:1;4598;4591:12;4542:63;4489:122;:::o;4617:139::-;4663:5;4701:6;4688:20;4679:29;;4717:33;4744:5;4717:33;:::i;:::-;4617:139;;;;:::o;4762:474::-;4830:6;4838;4887:2;4875:9;4866:7;4862:23;4858:32;4855:119;;;4893:79;;:::i;:::-;4855:119;5013:1;5038:53;5083:7;5074:6;5063:9;5059:22;5038:53;:::i;:::-;5028:63;;4984:117;5140:2;5166:53;5211:7;5202:6;5191:9;5187:22;5166:53;:::i;:::-;5156:63;;5111:118;4762:474;;;;;:::o;5242:619::-;5319:6;5327;5335;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:53;5580:7;5571:6;5560:9;5556:22;5535:53;:::i;:::-;5525:63;;5481:117;5637:2;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5608:118;5765:2;5791:53;5836:7;5827:6;5816:9;5812:22;5791:53;:::i;:::-;5781:63;;5736:118;5242:619;;;;;:::o;5867:77::-;5904:7;5933:5;5922:16;;5867:77;;;:::o;5950:118::-;6037:24;6055:5;6037:24;:::i;:::-;6032:3;6025:37;5950:118;;:::o;6074:222::-;6167:4;6205:2;6194:9;6190:18;6182:26;;6218:71;6286:1;6275:9;6271:17;6262:6;6218:71;:::i;:::-;6074:222;;;;:::o;6302:117::-;6411:1;6408;6401:12;6425:117;6534:1;6531;6524:12;6548:180;6596:77;6593:1;6586:88;6693:4;6690:1;6683:15;6717:4;6714:1;6707:15;6734:281;6817:27;6839:4;6817:27;:::i;:::-;6809:6;6805:40;6947:6;6935:10;6932:22;6911:18;6899:10;6896:34;6893:62;6890:88;;;6958:18;;:::i;:::-;6890:88;6998:10;6994:2;6987:22;6777:238;6734:281;;:::o;7021:129::-;7055:6;7082:20;;:::i;:::-;7072:30;;7111:33;7139:4;7131:6;7111:33;:::i;:::-;7021:129;;;:::o;7156:308::-;7218:4;7308:18;7300:6;7297:30;7294:56;;;7330:18;;:::i;:::-;7294:56;7368:29;7390:6;7368:29;:::i;:::-;7360:37;;7452:4;7446;7442:15;7434:23;;7156:308;;;:::o;7470:146::-;7567:6;7562:3;7557;7544:30;7608:1;7599:6;7594:3;7590:16;7583:27;7470:146;;;:::o;7622:425::-;7700:5;7725:66;7741:49;7783:6;7741:49;:::i;:::-;7725:66;:::i;:::-;7716:75;;7814:6;7807:5;7800:21;7852:4;7845:5;7841:16;7890:3;7881:6;7876:3;7872:16;7869:25;7866:112;;;7897:79;;:::i;:::-;7866:112;7987:54;8034:6;8029:3;8024;7987:54;:::i;:::-;7706:341;7622:425;;;;;:::o;8067:340::-;8123:5;8172:3;8165:4;8157:6;8153:17;8149:27;8139:122;;8180:79;;:::i;:::-;8139:122;8297:6;8284:20;8322:79;8397:3;8389:6;8382:4;8374:6;8370:17;8322:79;:::i;:::-;8313:88;;8129:278;8067:340;;;;:::o;8413:509::-;8482:6;8531:2;8519:9;8510:7;8506:23;8502:32;8499:119;;;8537:79;;:::i;:::-;8499:119;8685:1;8674:9;8670:17;8657:31;8715:18;8707:6;8704:30;8701:117;;;8737:79;;:::i;:::-;8701:117;8842:63;8897:7;8888:6;8877:9;8873:22;8842:63;:::i;:::-;8832:73;;8628:287;8413:509;;;;:::o;8928:329::-;8987:6;9036:2;9024:9;9015:7;9011:23;9007:32;9004:119;;;9042:79;;:::i;:::-;9004:119;9162:1;9187:53;9232:7;9223:6;9212:9;9208:22;9187:53;:::i;:::-;9177:63;;9133:117;8928:329;;;;:::o;9263:117::-;9372:1;9369;9362:12;9386:117;9495:1;9492;9485:12;9526:568;9599:8;9609:6;9659:3;9652:4;9644:6;9640:17;9636:27;9626:122;;9667:79;;:::i;:::-;9626:122;9780:6;9767:20;9757:30;;9810:18;9802:6;9799:30;9796:117;;;9832:79;;:::i;:::-;9796:117;9946:4;9938:6;9934:17;9922:29;;10000:3;9992:4;9984:6;9980:17;9970:8;9966:32;9963:41;9960:128;;;10007:79;;:::i;:::-;9960:128;9526:568;;;;;:::o;10100:704::-;10195:6;10203;10211;10260:2;10248:9;10239:7;10235:23;10231:32;10228:119;;;10266:79;;:::i;:::-;10228:119;10414:1;10403:9;10399:17;10386:31;10444:18;10436:6;10433:30;10430:117;;;10466:79;;:::i;:::-;10430:117;10579:80;10651:7;10642:6;10631:9;10627:22;10579:80;:::i;:::-;10561:98;;;;10357:312;10708:2;10734:53;10779:7;10770:6;10759:9;10755:22;10734:53;:::i;:::-;10724:63;;10679:118;10100:704;;;;;:::o;10810:122::-;10883:24;10901:5;10883:24;:::i;:::-;10876:5;10873:35;10863:63;;10922:1;10919;10912:12;10863:63;10810:122;:::o;10938:139::-;10984:5;11022:6;11009:20;11000:29;;11038:33;11065:5;11038:33;:::i;:::-;10938:139;;;;:::o;11083:329::-;11142:6;11191:2;11179:9;11170:7;11166:23;11162:32;11159:119;;;11197:79;;:::i;:::-;11159:119;11317:1;11342:53;11387:7;11378:6;11367:9;11363:22;11342:53;:::i;:::-;11332:63;;11288:117;11083:329;;;;:::o;11418:116::-;11488:21;11503:5;11488:21;:::i;:::-;11481:5;11478:32;11468:60;;11524:1;11521;11514:12;11468:60;11418:116;:::o;11540:133::-;11583:5;11621:6;11608:20;11599:29;;11637:30;11661:5;11637:30;:::i;:::-;11540:133;;;;:::o;11679:468::-;11744:6;11752;11801:2;11789:9;11780:7;11776:23;11772:32;11769:119;;;11807:79;;:::i;:::-;11769:119;11927:1;11952:53;11997:7;11988:6;11977:9;11973:22;11952:53;:::i;:::-;11942:63;;11898:117;12054:2;12080:50;12122:7;12113:6;12102:9;12098:22;12080:50;:::i;:::-;12070:60;;12025:115;11679:468;;;;;:::o;12153:307::-;12214:4;12304:18;12296:6;12293:30;12290:56;;;12326:18;;:::i;:::-;12290:56;12364:29;12386:6;12364:29;:::i;:::-;12356:37;;12448:4;12442;12438:15;12430:23;;12153:307;;;:::o;12466:423::-;12543:5;12568:65;12584:48;12625:6;12584:48;:::i;:::-;12568:65;:::i;:::-;12559:74;;12656:6;12649:5;12642:21;12694:4;12687:5;12683:16;12732:3;12723:6;12718:3;12714:16;12711:25;12708:112;;;12739:79;;:::i;:::-;12708:112;12829:54;12876:6;12871:3;12866;12829:54;:::i;:::-;12549:340;12466:423;;;;;:::o;12908:338::-;12963:5;13012:3;13005:4;12997:6;12993:17;12989:27;12979:122;;13020:79;;:::i;:::-;12979:122;13137:6;13124:20;13162:78;13236:3;13228:6;13221:4;13213:6;13209:17;13162:78;:::i;:::-;13153:87;;12969:277;12908:338;;;;:::o;13252:943::-;13347:6;13355;13363;13371;13420:3;13408:9;13399:7;13395:23;13391:33;13388:120;;;13427:79;;:::i;:::-;13388:120;13547:1;13572:53;13617:7;13608:6;13597:9;13593:22;13572:53;:::i;:::-;13562:63;;13518:117;13674:2;13700:53;13745:7;13736:6;13725:9;13721:22;13700:53;:::i;:::-;13690:63;;13645:118;13802:2;13828:53;13873:7;13864:6;13853:9;13849:22;13828:53;:::i;:::-;13818:63;;13773:118;13958:2;13947:9;13943:18;13930:32;13989:18;13981:6;13978:30;13975:117;;;14011:79;;:::i;:::-;13975:117;14116:62;14170:7;14161:6;14150:9;14146:22;14116:62;:::i;:::-;14106:72;;13901:287;13252:943;;;;;;;:::o;14201:474::-;14269:6;14277;14326:2;14314:9;14305:7;14301:23;14297:32;14294:119;;;14332:79;;:::i;:::-;14294:119;14452:1;14477:53;14522:7;14513:6;14502:9;14498:22;14477:53;:::i;:::-;14467:63;;14423:117;14579:2;14605:53;14650:7;14641:6;14630:9;14626:22;14605:53;:::i;:::-;14595:63;;14550:118;14201:474;;;;;:::o;14681:::-;14749:6;14757;14806:2;14794:9;14785:7;14781:23;14777:32;14774:119;;;14812:79;;:::i;:::-;14774:119;14932:1;14957:53;15002:7;14993:6;14982:9;14978:22;14957:53;:::i;:::-;14947:63;;14903:117;15059:2;15085:53;15130:7;15121:6;15110:9;15106:22;15085:53;:::i;:::-;15075:63;;15030:118;14681:474;;;;;:::o;15178:568::-;15251:8;15261:6;15311:3;15304:4;15296:6;15292:17;15288:27;15278:122;;15319:79;;:::i;:::-;15278:122;15432:6;15419:20;15409:30;;15462:18;15454:6;15451:30;15448:117;;;15484:79;;:::i;:::-;15448:117;15598:4;15590:6;15586:17;15574:29;;15652:3;15644:4;15636:6;15632:17;15622:8;15618:32;15615:41;15612:128;;;15659:79;;:::i;:::-;15612:128;15178:568;;;;;:::o;15752:704::-;15847:6;15855;15863;15912:2;15900:9;15891:7;15887:23;15883:32;15880:119;;;15918:79;;:::i;:::-;15880:119;16038:1;16063:53;16108:7;16099:6;16088:9;16084:22;16063:53;:::i;:::-;16053:63;;16009:117;16193:2;16182:9;16178:18;16165:32;16224:18;16216:6;16213:30;16210:117;;;16246:79;;:::i;:::-;16210:117;16359:80;16431:7;16422:6;16411:9;16407:22;16359:80;:::i;:::-;16341:98;;;;16136:313;15752:704;;;;;:::o;16462:180::-;16510:77;16507:1;16500:88;16607:4;16604:1;16597:15;16631:4;16628:1;16621:15;16648:320;16692:6;16729:1;16723:4;16719:12;16709:22;;16776:1;16770:4;16766:12;16797:18;16787:81;;16853:4;16845:6;16841:17;16831:27;;16787:81;16915:2;16907:6;16904:14;16884:18;16881:38;16878:84;;16934:18;;:::i;:::-;16878:84;16699:269;16648:320;;;:::o;16974:181::-;17114:33;17110:1;17102:6;17098:14;17091:57;16974:181;:::o;17161:366::-;17303:3;17324:67;17388:2;17383:3;17324:67;:::i;:::-;17317:74;;17400:93;17489:3;17400:93;:::i;:::-;17518:2;17513:3;17509:12;17502:19;;17161:366;;;:::o;17533:419::-;17699:4;17737:2;17726:9;17722:18;17714:26;;17786:9;17780:4;17776:20;17772:1;17761:9;17757:17;17750:47;17814:131;17940:4;17814:131;:::i;:::-;17806:139;;17533:419;;;:::o;17958:180::-;18006:77;18003:1;17996:88;18103:4;18100:1;18093:15;18127:4;18124:1;18117:15;18144:410;18184:7;18207:20;18225:1;18207:20;:::i;:::-;18202:25;;18241:20;18259:1;18241:20;:::i;:::-;18236:25;;18296:1;18293;18289:9;18318:30;18336:11;18318:30;:::i;:::-;18307:41;;18497:1;18488:7;18484:15;18481:1;18478:22;18458:1;18451:9;18431:83;18408:139;;18527:18;;:::i;:::-;18408:139;18192:362;18144:410;;;;:::o;18560:180::-;18608:77;18605:1;18598:88;18705:4;18702:1;18695:15;18729:4;18726:1;18719:15;18746:185;18786:1;18803:20;18821:1;18803:20;:::i;:::-;18798:25;;18837:20;18855:1;18837:20;:::i;:::-;18832:25;;18876:1;18866:35;;18881:18;;:::i;:::-;18866:35;18923:1;18920;18916:9;18911:14;;18746:185;;;;:::o;18937:141::-;18986:4;19009:3;19001:11;;19032:3;19029:1;19022:14;19066:4;19063:1;19053:18;19045:26;;18937:141;;;:::o;19084:93::-;19121:6;19168:2;19163;19156:5;19152:14;19148:23;19138:33;;19084:93;;;:::o;19183:107::-;19227:8;19277:5;19271:4;19267:16;19246:37;;19183:107;;;;:::o;19296:393::-;19365:6;19415:1;19403:10;19399:18;19438:97;19468:66;19457:9;19438:97;:::i;:::-;19556:39;19586:8;19575:9;19556:39;:::i;:::-;19544:51;;19628:4;19624:9;19617:5;19613:21;19604:30;;19677:4;19667:8;19663:19;19656:5;19653:30;19643:40;;19372:317;;19296:393;;;;;:::o;19695:60::-;19723:3;19744:5;19737:12;;19695:60;;;:::o;19761:142::-;19811:9;19844:53;19862:34;19871:24;19889:5;19871:24;:::i;:::-;19862:34;:::i;:::-;19844:53;:::i;:::-;19831:66;;19761:142;;;:::o;19909:75::-;19952:3;19973:5;19966:12;;19909:75;;;:::o;19990:269::-;20100:39;20131:7;20100:39;:::i;:::-;20161:91;20210:41;20234:16;20210:41;:::i;:::-;20202:6;20195:4;20189:11;20161:91;:::i;:::-;20155:4;20148:105;20066:193;19990:269;;;:::o;20265:73::-;20310:3;20265:73;:::o;20344:189::-;20421:32;;:::i;:::-;20462:65;20520:6;20512;20506:4;20462:65;:::i;:::-;20397:136;20344:189;;:::o;20539:186::-;20599:120;20616:3;20609:5;20606:14;20599:120;;;20670:39;20707:1;20700:5;20670:39;:::i;:::-;20643:1;20636:5;20632:13;20623:22;;20599:120;;;20539:186;;:::o;20731:543::-;20832:2;20827:3;20824:11;20821:446;;;20866:38;20898:5;20866:38;:::i;:::-;20950:29;20968:10;20950:29;:::i;:::-;20940:8;20936:44;21133:2;21121:10;21118:18;21115:49;;;21154:8;21139:23;;21115:49;21177:80;21233:22;21251:3;21233:22;:::i;:::-;21223:8;21219:37;21206:11;21177:80;:::i;:::-;20836:431;;20821:446;20731:543;;;:::o;21280:117::-;21334:8;21384:5;21378:4;21374:16;21353:37;;21280:117;;;;:::o;21403:169::-;21447:6;21480:51;21528:1;21524:6;21516:5;21513:1;21509:13;21480:51;:::i;:::-;21476:56;21561:4;21555;21551:15;21541:25;;21454:118;21403:169;;;;:::o;21577:295::-;21653:4;21799:29;21824:3;21818:4;21799:29;:::i;:::-;21791:37;;21861:3;21858:1;21854:11;21848:4;21845:21;21837:29;;21577:295;;;;:::o;21877:1395::-;21994:37;22027:3;21994:37;:::i;:::-;22096:18;22088:6;22085:30;22082:56;;;22118:18;;:::i;:::-;22082:56;22162:38;22194:4;22188:11;22162:38;:::i;:::-;22247:67;22307:6;22299;22293:4;22247:67;:::i;:::-;22341:1;22365:4;22352:17;;22397:2;22389:6;22386:14;22414:1;22409:618;;;;23071:1;23088:6;23085:77;;;23137:9;23132:3;23128:19;23122:26;23113:35;;23085:77;23188:67;23248:6;23241:5;23188:67;:::i;:::-;23182:4;23175:81;23044:222;22379:887;;22409:618;22461:4;22457:9;22449:6;22445:22;22495:37;22527:4;22495:37;:::i;:::-;22554:1;22568:208;22582:7;22579:1;22576:14;22568:208;;;22661:9;22656:3;22652:19;22646:26;22638:6;22631:42;22712:1;22704:6;22700:14;22690:24;;22759:2;22748:9;22744:18;22731:31;;22605:4;22602:1;22598:12;22593:17;;22568:208;;;22804:6;22795:7;22792:19;22789:179;;;22862:9;22857:3;22853:19;22847:26;22905:48;22947:4;22939:6;22935:17;22924:9;22905:48;:::i;:::-;22897:6;22890:64;22812:156;22789:179;23014:1;23010;23002:6;22998:14;22994:22;22988:4;22981:36;22416:611;;;22379:887;;21969:1303;;;21877:1395;;:::o;23278:165::-;23418:17;23414:1;23406:6;23402:14;23395:41;23278:165;:::o;23449:366::-;23591:3;23612:67;23676:2;23671:3;23612:67;:::i;:::-;23605:74;;23688:93;23777:3;23688:93;:::i;:::-;23806:2;23801:3;23797:12;23790:19;;23449:366;;;:::o;23821:419::-;23987:4;24025:2;24014:9;24010:18;24002:26;;24074:9;24068:4;24064:20;24060:1;24049:9;24045:17;24038:47;24102:131;24228:4;24102:131;:::i;:::-;24094:139;;23821:419;;;:::o;24246:171::-;24386:23;24382:1;24374:6;24370:14;24363:47;24246:171;:::o;24423:366::-;24565:3;24586:67;24650:2;24645:3;24586:67;:::i;:::-;24579:74;;24662:93;24751:3;24662:93;:::i;:::-;24780:2;24775:3;24771:12;24764:19;;24423:366;;;:::o;24795:419::-;24961:4;24999:2;24988:9;24984:18;24976:26;;25048:9;25042:4;25038:20;25034:1;25023:9;25019:17;25012:47;25076:131;25202:4;25076:131;:::i;:::-;25068:139;;24795:419;;;:::o;25220:177::-;25360:29;25356:1;25348:6;25344:14;25337:53;25220:177;:::o;25403:366::-;25545:3;25566:67;25630:2;25625:3;25566:67;:::i;:::-;25559:74;;25642:93;25731:3;25642:93;:::i;:::-;25760:2;25755:3;25751:12;25744:19;;25403:366;;;:::o;25775:419::-;25941:4;25979:2;25968:9;25964:18;25956:26;;26028:9;26022:4;26018:20;26014:1;26003:9;25999:17;25992:47;26056:131;26182:4;26056:131;:::i;:::-;26048:139;;25775:419;;;:::o;26200:191::-;26240:3;26259:20;26277:1;26259:20;:::i;:::-;26254:25;;26293:20;26311:1;26293:20;:::i;:::-;26288:25;;26336:1;26333;26329:9;26322:16;;26357:3;26354:1;26351:10;26348:36;;;26364:18;;:::i;:::-;26348:36;26200:191;;;;:::o;26397:182::-;26537:34;26533:1;26525:6;26521:14;26514:58;26397:182;:::o;26585:366::-;26727:3;26748:67;26812:2;26807:3;26748:67;:::i;:::-;26741:74;;26824:93;26913:3;26824:93;:::i;:::-;26942:2;26937:3;26933:12;26926:19;;26585:366;;;:::o;26957:419::-;27123:4;27161:2;27150:9;27146:18;27138:26;;27210:9;27204:4;27200:20;27196:1;27185:9;27181:17;27174:47;27238:131;27364:4;27238:131;:::i;:::-;27230:139;;26957:419;;;:::o;27382:94::-;27415:8;27463:5;27459:2;27455:14;27434:35;;27382:94;;;:::o;27482:::-;27521:7;27550:20;27564:5;27550:20;:::i;:::-;27539:31;;27482:94;;;:::o;27582:100::-;27621:7;27650:26;27670:5;27650:26;:::i;:::-;27639:37;;27582:100;;;:::o;27688:157::-;27793:45;27813:24;27831:5;27813:24;:::i;:::-;27793:45;:::i;:::-;27788:3;27781:58;27688:157;;:::o;27851:256::-;27963:3;27978:75;28049:3;28040:6;27978:75;:::i;:::-;28078:2;28073:3;28069:12;28062:19;;28098:3;28091:10;;27851:256;;;;:::o;28113:194::-;28153:4;28173:20;28191:1;28173:20;:::i;:::-;28168:25;;28207:20;28225:1;28207:20;:::i;:::-;28202:25;;28251:1;28248;28244:9;28236:17;;28275:1;28269:4;28266:11;28263:37;;;28280:18;;:::i;:::-;28263:37;28113:194;;;;:::o;28313:179::-;28453:31;28449:1;28441:6;28437:14;28430:55;28313:179;:::o;28498:366::-;28640:3;28661:67;28725:2;28720:3;28661:67;:::i;:::-;28654:74;;28737:93;28826:3;28737:93;:::i;:::-;28855:2;28850:3;28846:12;28839:19;;28498:366;;;:::o;28870:419::-;29036:4;29074:2;29063:9;29059:18;29051:26;;29123:9;29117:4;29113:20;29109:1;29098:9;29094:17;29087:47;29151:131;29277:4;29151:131;:::i;:::-;29143:139;;28870:419;;;:::o;29295:179::-;29435:31;29431:1;29423:6;29419:14;29412:55;29295:179;:::o;29480:366::-;29622:3;29643:67;29707:2;29702:3;29643:67;:::i;:::-;29636:74;;29719:93;29808:3;29719:93;:::i;:::-;29837:2;29832:3;29828:12;29821:19;;29480:366;;;:::o;29852:419::-;30018:4;30056:2;30045:9;30041:18;30033:26;;30105:9;30099:4;30095:20;30091:1;30080:9;30076:17;30069:47;30133:131;30259:4;30133:131;:::i;:::-;30125:139;;29852:419;;;:::o;30277:174::-;30417:26;30413:1;30405:6;30401:14;30394:50;30277:174;:::o;30457:366::-;30599:3;30620:67;30684:2;30679:3;30620:67;:::i;:::-;30613:74;;30696:93;30785:3;30696:93;:::i;:::-;30814:2;30809:3;30805:12;30798:19;;30457:366;;;:::o;30829:419::-;30995:4;31033:2;31022:9;31018:18;31010:26;;31082:9;31076:4;31072:20;31068:1;31057:9;31053:17;31046:47;31110:131;31236:4;31110:131;:::i;:::-;31102:139;;30829:419;;;:::o;31254:172::-;31394:24;31390:1;31382:6;31378:14;31371:48;31254:172;:::o;31432:366::-;31574:3;31595:67;31659:2;31654:3;31595:67;:::i;:::-;31588:74;;31671:93;31760:3;31671:93;:::i;:::-;31789:2;31784:3;31780:12;31773:19;;31432:366;;;:::o;31804:419::-;31970:4;32008:2;31997:9;31993:18;31985:26;;32057:9;32051:4;32047:20;32043:1;32032:9;32028:17;32021:47;32085:131;32211:4;32085:131;:::i;:::-;32077:139;;31804:419;;;:::o;32229:180::-;32369:32;32365:1;32357:6;32353:14;32346:56;32229:180;:::o;32415:366::-;32557:3;32578:67;32642:2;32637:3;32578:67;:::i;:::-;32571:74;;32654:93;32743:3;32654:93;:::i;:::-;32772:2;32767:3;32763:12;32756:19;;32415:366;;;:::o;32787:419::-;32953:4;32991:2;32980:9;32976:18;32968:26;;33040:9;33034:4;33030:20;33026:1;33015:9;33011:17;33004:47;33068:131;33194:4;33068:131;:::i;:::-;33060:139;;32787:419;;;:::o;33212:169::-;33352:21;33348:1;33340:6;33336:14;33329:45;33212:169;:::o;33387:366::-;33529:3;33550:67;33614:2;33609:3;33550:67;:::i;:::-;33543:74;;33626:93;33715:3;33626:93;:::i;:::-;33744:2;33739:3;33735:12;33728:19;;33387:366;;;:::o;33759:419::-;33925:4;33963:2;33952:9;33948:18;33940:26;;34012:9;34006:4;34002:20;33998:1;33987:9;33983:17;33976:47;34040:131;34166:4;34040:131;:::i;:::-;34032:139;;33759:419;;;:::o;34184:148::-;34286:11;34323:3;34308:18;;34184:148;;;;:::o;34338:390::-;34444:3;34472:39;34505:5;34472:39;:::i;:::-;34527:89;34609:6;34604:3;34527:89;:::i;:::-;34520:96;;34625:65;34683:6;34678:3;34671:4;34664:5;34660:16;34625:65;:::i;:::-;34715:6;34710:3;34706:16;34699:23;;34448:280;34338:390;;;;:::o;34734:435::-;34914:3;34936:95;35027:3;35018:6;34936:95;:::i;:::-;34929:102;;35048:95;35139:3;35130:6;35048:95;:::i;:::-;35041:102;;35160:3;35153:10;;34734:435;;;;;:::o;35175:225::-;35315:34;35311:1;35303:6;35299:14;35292:58;35384:8;35379:2;35371:6;35367:15;35360:33;35175:225;:::o;35406:366::-;35548:3;35569:67;35633:2;35628:3;35569:67;:::i;:::-;35562:74;;35645:93;35734:3;35645:93;:::i;:::-;35763:2;35758:3;35754:12;35747:19;;35406:366;;;:::o;35778:419::-;35944:4;35982:2;35971:9;35967:18;35959:26;;36031:9;36025:4;36021:20;36017:1;36006:9;36002:17;35995:47;36059:131;36185:4;36059:131;:::i;:::-;36051:139;;35778:419;;;:::o;36203:180::-;36251:77;36248:1;36241:88;36348:4;36345:1;36338:15;36372:4;36369:1;36362:15;36389:174;36529:26;36525:1;36517:6;36513:14;36506:50;36389:174;:::o;36569:366::-;36711:3;36732:67;36796:2;36791:3;36732:67;:::i;:::-;36725:74;;36808:93;36897:3;36808:93;:::i;:::-;36926:2;36921:3;36917:12;36910:19;;36569:366;;;:::o;36941:419::-;37107:4;37145:2;37134:9;37130:18;37122:26;;37194:9;37188:4;37184:20;37180:1;37169:9;37165:17;37158:47;37222:131;37348:4;37222:131;:::i;:::-;37214:139;;36941:419;;;:::o;37366:233::-;37405:3;37428:24;37446:5;37428:24;:::i;:::-;37419:33;;37474:66;37467:5;37464:77;37461:103;;37544:18;;:::i;:::-;37461:103;37591:1;37584:5;37580:13;37573:20;;37366:233;;;:::o;37605:182::-;37745:34;37741:1;37733:6;37729:14;37722:58;37605:182;:::o;37793:366::-;37935:3;37956:67;38020:2;38015:3;37956:67;:::i;:::-;37949:74;;38032:93;38121:3;38032:93;:::i;:::-;38150:2;38145:3;38141:12;38134:19;;37793:366;;;:::o;38165:419::-;38331:4;38369:2;38358:9;38354:18;38346:26;;38418:9;38412:4;38408:20;38404:1;38393:9;38389:17;38382:47;38446:131;38572:4;38446:131;:::i;:::-;38438:139;;38165:419;;;:::o;38590:179::-;38730:31;38726:1;38718:6;38714:14;38707:55;38590:179;:::o;38775:366::-;38917:3;38938:67;39002:2;38997:3;38938:67;:::i;:::-;38931:74;;39014:93;39103:3;39014:93;:::i;:::-;39132:2;39127:3;39123:12;39116:19;;38775:366;;;:::o;39147:419::-;39313:4;39351:2;39340:9;39336:18;39328:26;;39400:9;39394:4;39390:20;39386:1;39375:9;39371:17;39364:47;39428:131;39554:4;39428:131;:::i;:::-;39420:139;;39147:419;;;:::o;39572:147::-;39673:11;39710:3;39695:18;;39572:147;;;;:::o;39725:114::-;;:::o;39845:398::-;40004:3;40025:83;40106:1;40101:3;40025:83;:::i;:::-;40018:90;;40117:93;40206:3;40117:93;:::i;:::-;40235:1;40230:3;40226:11;40219:18;;39845:398;;;:::o;40249:379::-;40433:3;40455:147;40598:3;40455:147;:::i;:::-;40448:154;;40619:3;40612:10;;40249:379;;;:::o;40634:245::-;40774:34;40770:1;40762:6;40758:14;40751:58;40843:28;40838:2;40830:6;40826:15;40819:53;40634:245;:::o;40885:366::-;41027:3;41048:67;41112:2;41107:3;41048:67;:::i;:::-;41041:74;;41124:93;41213:3;41124:93;:::i;:::-;41242:2;41237:3;41233:12;41226:19;;40885:366;;;:::o;41257:419::-;41423:4;41461:2;41450:9;41446:18;41438:26;;41510:9;41504:4;41500:20;41496:1;41485:9;41481:17;41474:47;41538:131;41664:4;41538:131;:::i;:::-;41530:139;;41257:419;;;:::o;41682:98::-;41733:6;41767:5;41761:12;41751:22;;41682:98;;;:::o;41786:168::-;41869:11;41903:6;41898:3;41891:19;41943:4;41938:3;41934:14;41919:29;;41786:168;;;;:::o;41960:373::-;42046:3;42074:38;42106:5;42074:38;:::i;:::-;42128:70;42191:6;42186:3;42128:70;:::i;:::-;42121:77;;42207:65;42265:6;42260:3;42253:4;42246:5;42242:16;42207:65;:::i;:::-;42297:29;42319:6;42297:29;:::i;:::-;42292:3;42288:39;42281:46;;42050:283;41960:373;;;;:::o;42339:640::-;42534:4;42572:3;42561:9;42557:19;42549:27;;42586:71;42654:1;42643:9;42639:17;42630:6;42586:71;:::i;:::-;42667:72;42735:2;42724:9;42720:18;42711:6;42667:72;:::i;:::-;42749;42817:2;42806:9;42802:18;42793:6;42749:72;:::i;:::-;42868:9;42862:4;42858:20;42853:2;42842:9;42838:18;42831:48;42896:76;42967:4;42958:6;42896:76;:::i;:::-;42888:84;;42339:640;;;;;;;:::o;42985:141::-;43041:5;43072:6;43066:13;43057:22;;43088:32;43114:5;43088:32;:::i;:::-;42985:141;;;;:::o;43132:349::-;43201:6;43250:2;43238:9;43229:7;43225:23;43221:32;43218:119;;;43256:79;;:::i;:::-;43218:119;43376:1;43401:63;43456:7;43447:6;43436:9;43432:22;43401:63;:::i;:::-;43391:73;;43347:127;43132:349;;;;:::o

Swarm Source

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