ETH Price: $2,996.43 (+3.94%)
Gas: 3 Gwei

Token

PILOT (PILOT)
 

Overview

Max Total Supply

1,140 PILOT

Holders

286

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 PILOT
0xd537413a3651fe87443526c38977b9ce86448696
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:
PilotNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 17 : PilotNFT.sol
pragma solidity ^0.8.4;

import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "hardhat/console.sol";

interface IExordium {
    function getCitadelStaker(uint256 tokenId) external view returns (address);
}

contract PilotNFT is ERC721A, Ownable, ReentrancyGuard {
    using SafeMath for uint256;
    using SafeMath for uint8;
    using SafeERC20 for IERC20;

    struct Sovereign {
        uint8 kult;
        bool isSovereign;
        uint256[] charges;
        uint8 chargeCount;
    }

    mapping(uint256 => uint8) public levels;
    mapping(uint256 => uint256) public claimed;
    mapping(uint256 => Sovereign) public collective;
    uint256 public constant MAX_PILOT = 2048;
    uint256 public constant MAX_LEVEL = 9;
    uint256 public constant PILOT_CLAIM_PRICE = 64000000000000000000000; //64,000 DK
    uint256 public constant PILOT_UPLEVEL_PRICE = 100000000000000000000000; //100,000 DK
    string private baseTokenURI;
    IExordium public immutable exordium;
    IERC20 public immutable drakma;
    uint256 public pilotPrice = 125000000000000000; //0.125 ETH
    uint256 public pilotMintMax = 128;
    uint256 public pilotMintIndex = 0;
    bool public pilotMintOn = false;
    bool public pilotClaimOn = true;
    uint8 public sovereignCounter = 0;
    uint8 public constant MAX_SOVEREIGN = 64;
    uint256 public sovereignPrice = 4000000000000000000000000; //4M DK
    uint256 public kultPrice = 100000000000000000000000; //100K DK

    constructor(
        IERC20 _drakma,
        IExordium _exordium,
        string memory _baseTokenURI
        ) ERC721A("PILOT", "PILOT") {
        
        baseTokenURI = _baseTokenURI;
        exordium = _exordium;
        drakma = _drakma;
    }

    function claim(uint256 tokenId) external nonReentrant {
        require(pilotClaimOn == true, "PILOT claim is currently off");
        require(msg.sender == exordium.getCitadelStaker(tokenId), "CITADEL must be staked to EXORDIUM to claim PILOT");
        require(totalSupply().add(1) <= MAX_PILOT, "Claim would exceed max supply of pilot nft");
        require(drakma.transferFrom(msg.sender, address(this), PILOT_CLAIM_PRICE));
        require(claimed[tokenId] == 0, "CITADEL has already claimed a PILOT");
        claimed[tokenId] = _currentIndex;
        if(tokenId < 64) {
            initializeSovereign(_currentIndex);
        }
        levels[_currentIndex] = 0;
        _safeMint(msg.sender, 1);
    }

    function mintPilot(uint256 numberOfTokens) public payable nonReentrant {
        require(pilotMintOn == true, "PILOT mint is currently off");
        require(numberOfTokens <= 5, "Cannot mint more than 5 PILOT in one transaction");
        require(totalSupply().add(numberOfTokens) <= MAX_PILOT, "Purchase would exceed max supply of pilot nft");
        require(pilotPrice.mul(numberOfTokens) <= msg.value, "Not enough eth sent with transaction");
        require(pilotMintIndex.add(numberOfTokens) <= pilotMintMax, "Mint amount exceeded max pilot count");
        pilotMintIndex = pilotMintIndex + numberOfTokens;
        initializePILOT(numberOfTokens);
        _safeMint(msg.sender, numberOfTokens);
    }

    function reservePILOT(uint256 num) external onlyOwner {
        require(totalSupply() + num <= MAX_PILOT, "MAX_SUPPLY");
        initializePILOT(num);
        _safeMint(msg.sender, num);
    }

    function upLevel(uint256 tokenId) external nonReentrant {
        uint8 newLevel = levels[tokenId] + 1;
        uint256 upLevelPrice = PILOT_UPLEVEL_PRICE.mul(newLevel);
        require(newLevel <= MAX_LEVEL, "MAX_LEVEL");
        require(drakma.transferFrom(msg.sender, address(this), upLevelPrice));
        levels[tokenId] = newLevel;
    }

    function sovereignty(uint256 tokenId) external nonReentrant {
        require(sovereignCounter + 1 <= MAX_SOVEREIGN, "MAX_SOVEREIGN");
        require(drakma.transferFrom(msg.sender, address(this), sovereignPrice));
        initializeSovereign(tokenId);
        sovereignCounter++;
    }

    function bribeKult(uint256 sovereignId, uint8 kult) external nonReentrant {
        require(collective[sovereignId].isSovereign == true, "Must be sovereign to bribe");
        require(kult >= 0 && kult < 8, "Invalid KULT");
        require(sovereignChargeCount(sovereignId) < 8, "Sovereign is fully charged");
        require(drakma.transferFrom(msg.sender, address(this), kultPrice));
        collective[sovereignId].kult = kult;
        collective[sovereignId].chargeCount = collective[sovereignId].chargeCount + 1;
        uint256 sovereignExpire = block.timestamp + 90 days;
        for (uint8 i = 0; i < collective[sovereignId].charges.length; i++) {
            if(collective[sovereignId].charges[i] <= block.timestamp) {
                collective[sovereignId].charges[i] = sovereignExpire;
                break;
            }
        }
    }

    function overthrowSovereign(uint256 tokenIdIncumbent, uint256 tokenIdInsurgent) external nonReentrant {
        require(collective[tokenIdIncumbent].isSovereign == true, "Must overthrow existing sovereign");
        uint8 sovereignCharges = sovereignChargeCount(tokenIdIncumbent);
        uint256 overthrowPrice = sovereignPrice + kultPrice.mul(sovereignCharges).mul(10);
        require(drakma.transferFrom(msg.sender, address(this), overthrowPrice));
        delete collective[tokenIdIncumbent];
        initializeSovereign(tokenIdInsurgent);
    }

    function initializeSovereign(uint256 tokenId) private {
        collective[tokenId].isSovereign = true;
        collective[tokenId].charges = new uint256[](8);
        collective[tokenId].chargeCount = 0;
    }

    // withdraw DRAKMA from contract
    function withdrawDrakma(uint256 amount) external onlyOwner {
        drakma.safeTransfer(msg.sender, amount);
    }
    
    // withdraw ETH from contract
    function withdrawEth() external onlyOwner {
        uint balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function initializePILOT(uint256 numberOfTokens) private {
        for (uint256 i = 0; i < numberOfTokens; i++) {
            uint256 index = _currentIndex + i;
            levels[index] = 0;
        }
    }

    function updateBaseURI(string memory _baseTokenURI) external onlyOwner {
        baseTokenURI = _baseTokenURI;
    }

    function updateMintParams(uint256 _pilotPrice, uint256 _pilotMintMax, bool _pilotMintOn, uint256 _sovereignPrice, uint256 _kultPrice) external onlyOwner {
        pilotMintIndex = 0;
        pilotPrice = _pilotPrice;
        pilotMintMax = _pilotMintMax;
        pilotMintOn = _pilotMintOn;
        sovereignPrice = _sovereignPrice;
        kultPrice = _kultPrice;
    }

    function updateClaimParams(bool _pilotClaimOn) external onlyOwner {
        pilotClaimOn = _pilotClaimOn;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
    
    function sovereignChargeCount(uint256 sovereignId) internal returns (uint8) {
        uint8 chargeCount = 0;
        if(collective[sovereignId].isSovereign == true) {
            for (uint8 i = 0; i < collective[sovereignId].charges.length; i++) {
                if(collective[sovereignId].charges[i] >= block.timestamp) {
                    chargeCount++;
                }
            }
        }
        collective[sovereignId].chargeCount = chargeCount;
        return chargeCount;
    }

    // public views
    function getSovereign(uint256 sovereignId) public view returns (bool, uint8, uint8) {
        return (
            collective[sovereignId].isSovereign, 
            collective[sovereignId].chargeCount, 
            collective[sovereignId].kult
        );
    }

    function getSovereignCharge(uint256 sovereignId, uint8 chargeIndex) public view returns (uint256) {
        return collective[sovereignId].charges[chargeIndex];
    }

    function getCitadelClaim(uint256 tokenId) public view returns (uint256) {
        return claimed[tokenId];
    }

    function getOnchainPILOT(uint256 tokenId) public view returns (bool, uint8) {
        return (collective[tokenId].isSovereign, levels[tokenId]);
    }
}

File 2 of 17 : ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';

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

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

    // The number of tokens burned.
    uint256 internal _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 _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

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

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

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

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

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

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

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

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

        unchecked {
            if (_startTokenId() <= curr) if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex < end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex < end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

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

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

        // Clear approvals from the previous owner
        _approve(address(0), tokenId, from);

        // 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 {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

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

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

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

File 3 of 17 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 4 of 17 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 5 of 17 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 6 of 17 : 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].
 */
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;
    }
}

File 7 of 17 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 17 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 9 of 17 : console.sol
// SPDX-License-Identifier: MIT
pragma solidity >= 0.4.22 <0.9.0;

library console {
	address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67);

	function _sendLogPayload(bytes memory payload) private view {
		uint256 payloadLength = payload.length;
		address consoleAddress = CONSOLE_ADDRESS;
		assembly {
			let payloadStart := add(payload, 32)
			let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0)
		}
	}

	function log() internal view {
		_sendLogPayload(abi.encodeWithSignature("log()"));
	}

	function logInt(int p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(int)", p0));
	}

	function logUint(uint p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));
	}

	function logString(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function logBool(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function logAddress(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function logBytes(bytes memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes)", p0));
	}

	function logBytes1(bytes1 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0));
	}

	function logBytes2(bytes2 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0));
	}

	function logBytes3(bytes3 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0));
	}

	function logBytes4(bytes4 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0));
	}

	function logBytes5(bytes5 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0));
	}

	function logBytes6(bytes6 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0));
	}

	function logBytes7(bytes7 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0));
	}

	function logBytes8(bytes8 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0));
	}

	function logBytes9(bytes9 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0));
	}

	function logBytes10(bytes10 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0));
	}

	function logBytes11(bytes11 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0));
	}

	function logBytes12(bytes12 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0));
	}

	function logBytes13(bytes13 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0));
	}

	function logBytes14(bytes14 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0));
	}

	function logBytes15(bytes15 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0));
	}

	function logBytes16(bytes16 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0));
	}

	function logBytes17(bytes17 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0));
	}

	function logBytes18(bytes18 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0));
	}

	function logBytes19(bytes19 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0));
	}

	function logBytes20(bytes20 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0));
	}

	function logBytes21(bytes21 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0));
	}

	function logBytes22(bytes22 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0));
	}

	function logBytes23(bytes23 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0));
	}

	function logBytes24(bytes24 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0));
	}

	function logBytes25(bytes25 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0));
	}

	function logBytes26(bytes26 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0));
	}

	function logBytes27(bytes27 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0));
	}

	function logBytes28(bytes28 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0));
	}

	function logBytes29(bytes29 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0));
	}

	function logBytes30(bytes30 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0));
	}

	function logBytes31(bytes31 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0));
	}

	function logBytes32(bytes32 p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0));
	}

	function log(uint p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint)", p0));
	}

	function log(string memory p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string)", p0));
	}

	function log(bool p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool)", p0));
	}

	function log(address p0) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address)", p0));
	}

	function log(uint p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint)", p0, p1));
	}

	function log(uint p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string)", p0, p1));
	}

	function log(uint p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool)", p0, p1));
	}

	function log(uint p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address)", p0, p1));
	}

	function log(string memory p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint)", p0, p1));
	}

	function log(string memory p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1));
	}

	function log(string memory p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1));
	}

	function log(string memory p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1));
	}

	function log(bool p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint)", p0, p1));
	}

	function log(bool p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1));
	}

	function log(bool p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1));
	}

	function log(bool p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1));
	}

	function log(address p0, uint p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint)", p0, p1));
	}

	function log(address p0, string memory p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1));
	}

	function log(address p0, bool p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1));
	}

	function log(address p0, address p1) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1));
	}

	function log(uint p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint)", p0, p1, p2));
	}

	function log(uint p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string)", p0, p1, p2));
	}

	function log(uint p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool)", p0, p1, p2));
	}

	function log(uint p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool)", p0, p1, p2));
	}

	function log(uint p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address)", p0, p1, p2));
	}

	function log(uint p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint)", p0, p1, p2));
	}

	function log(uint p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string)", p0, p1, p2));
	}

	function log(uint p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool)", p0, p1, p2));
	}

	function log(uint p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address)", p0, p1, p2));
	}

	function log(uint p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint)", p0, p1, p2));
	}

	function log(uint p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string)", p0, p1, p2));
	}

	function log(uint p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool)", p0, p1, p2));
	}

	function log(uint p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool)", p0, p1, p2));
	}

	function log(string memory p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2));
	}

	function log(string memory p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2));
	}

	function log(string memory p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2));
	}

	function log(string memory p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint)", p0, p1, p2));
	}

	function log(string memory p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2));
	}

	function log(string memory p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2));
	}

	function log(string memory p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2));
	}

	function log(bool p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint)", p0, p1, p2));
	}

	function log(bool p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string)", p0, p1, p2));
	}

	function log(bool p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool)", p0, p1, p2));
	}

	function log(bool p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2));
	}

	function log(bool p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2));
	}

	function log(bool p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint)", p0, p1, p2));
	}

	function log(bool p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2));
	}

	function log(bool p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2));
	}

	function log(bool p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2));
	}

	function log(bool p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint)", p0, p1, p2));
	}

	function log(bool p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2));
	}

	function log(bool p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2));
	}

	function log(bool p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2));
	}

	function log(address p0, uint p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint)", p0, p1, p2));
	}

	function log(address p0, uint p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string)", p0, p1, p2));
	}

	function log(address p0, uint p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool)", p0, p1, p2));
	}

	function log(address p0, uint p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address)", p0, p1, p2));
	}

	function log(address p0, string memory p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint)", p0, p1, p2));
	}

	function log(address p0, string memory p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2));
	}

	function log(address p0, string memory p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2));
	}

	function log(address p0, string memory p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2));
	}

	function log(address p0, bool p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint)", p0, p1, p2));
	}

	function log(address p0, bool p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2));
	}

	function log(address p0, bool p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2));
	}

	function log(address p0, bool p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2));
	}

	function log(address p0, address p1, uint p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint)", p0, p1, p2));
	}

	function log(address p0, address p1, string memory p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2));
	}

	function log(address p0, address p1, bool p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2));
	}

	function log(address p0, address p1, address p2) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2));
	}

	function log(uint p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,string,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,string,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,address)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,uint)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,string)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,bool)", p0, p1, p2, p3));
	}

	function log(uint p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(uint,address,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,uint,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,uint,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3));
	}

	function log(string memory p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3));
	}

	function log(bool p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, uint p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,uint,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, string memory p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, bool p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, uint p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,uint,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, string memory p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, bool p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, uint p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, string memory p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, bool p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3));
	}

	function log(address p0, address p1, address p2, address p3) internal view {
		_sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3));
	}

}

File 10 of 17 : IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';

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

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

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

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

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

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

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

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

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

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

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

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

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

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

File 11 of 17 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.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

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 13 of 17 : 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 14 of 17 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 15 of 17 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @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
    ) external;

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

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

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

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

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

File 16 of 17 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

File 17 of 17 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IERC20","name":"_drakma","type":"address"},{"internalType":"contract IExordium","name":"_exordium","type":"address"},{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_LEVEL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PILOT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SOVEREIGN","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PILOT_CLAIM_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PILOT_UPLEVEL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"sovereignId","type":"uint256"},{"internalType":"uint8","name":"kult","type":"uint8"}],"name":"bribeKult","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"collective","outputs":[{"internalType":"uint8","name":"kult","type":"uint8"},{"internalType":"bool","name":"isSovereign","type":"bool"},{"internalType":"uint8","name":"chargeCount","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"drakma","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"exordium","outputs":[{"internalType":"contract IExordium","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getCitadelClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOnchainPILOT","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"sovereignId","type":"uint256"}],"name":"getSovereign","outputs":[{"internalType":"bool","name":"","type":"bool"},{"internalType":"uint8","name":"","type":"uint8"},{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"sovereignId","type":"uint256"},{"internalType":"uint8","name":"chargeIndex","type":"uint8"}],"name":"getSovereignCharge","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"kultPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"levels","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintPilot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenIdIncumbent","type":"uint256"},{"internalType":"uint256","name":"tokenIdInsurgent","type":"uint256"}],"name":"overthrowSovereign","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pilotClaimOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pilotMintIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pilotMintMax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pilotMintOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pilotPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"reservePILOT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sovereignCounter","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sovereignPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"sovereignty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"upLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pilotClaimOn","type":"bool"}],"name":"updateClaimParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pilotPrice","type":"uint256"},{"internalType":"uint256","name":"_pilotMintMax","type":"uint256"},{"internalType":"bool","name":"_pilotMintOn","type":"bool"},{"internalType":"uint256","name":"_sovereignPrice","type":"uint256"},{"internalType":"uint256","name":"_kultPrice","type":"uint256"}],"name":"updateMintParams","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawDrakma","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526701bc16d674ec8000600e556080600f5560006010556000601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff021916908360ff1602179055506a034f086f3b33b68400000060125569152d02c7e14af68000006013553480156200009657600080fd5b5060405162006465380380620064658339818101604052810190620000bc91906200044d565b6040518060400160405280600581526020017f50494c4f540000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f50494c4f54000000000000000000000000000000000000000000000000000000815250816002908051906020019062000140929190620002fd565b50806003908051906020019062000159929190620002fd565b506200016a6200022a60201b60201c565b600081905550505062000192620001866200022f60201b60201c565b6200023760201b60201c565b600160098190555080600d9080519060200190620001b2929190620002fd565b508173ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250508273ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1660601b81525050505050620006bc565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200030b90620005ad565b90600052602060002090601f0160209004810192826200032f57600085556200037b565b82601f106200034a57805160ff19168380011785556200037b565b828001600101855582156200037b579182015b828111156200037a5782518255916020019190600101906200035d565b5b5090506200038a91906200038e565b5090565b5b80821115620003a95760008160009055506001016200038f565b5090565b6000620003c4620003be84620004e5565b620004bc565b905082815260208101848484011115620003dd57600080fd5b620003ea84828562000577565b509392505050565b600081519050620004038162000688565b92915050565b6000815190506200041a81620006a2565b92915050565b600082601f8301126200043257600080fd5b815162000444848260208601620003ad565b91505092915050565b6000806000606084860312156200046357600080fd5b60006200047386828701620003f2565b9350506020620004868682870162000409565b925050604084015167ffffffffffffffff811115620004a457600080fd5b620004b28682870162000420565b9150509250925092565b6000620004c8620004db565b9050620004d68282620005e3565b919050565b6000604051905090565b600067ffffffffffffffff82111562000503576200050262000648565b5b6200050e8262000677565b9050602081019050919050565b6000620005288262000557565b9050919050565b60006200053c826200051b565b9050919050565b600062000550826200051b565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620005975780820151818401526020810190506200057a565b83811115620005a7576000848401525b50505050565b60006002820490506001821680620005c657607f821691505b60208210811415620005dd57620005dc62000619565b5b50919050565b620005ee8262000677565b810181811067ffffffffffffffff8211171562000610576200060f62000648565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000693816200052f565b81146200069f57600080fd5b50565b620006ad8162000543565b8114620006b957600080fd5b50565b60805160601c60a05160601c615d4c620007196000396000818161107e015281816113b6015281816115bd015281816117e801528181611d200152818161200c01526126ef015260008181611bab01526129220152615d4c6000f3fe6080604052600436106102e45760003560e01c806373af3ee511610190578063b2596a67116100dc578063c87b56dd11610095578063dfc882fa1161006f578063dfc882fa14610b43578063e56a907714610b81578063e985e9c514610bac578063f2fde38b14610be9576102e4565b8063c87b56dd14610a9e578063c94f2ad814610adb578063dbe7e3bd14610b06576102e4565b8063b2596a671461097c578063b68a922d146109b9578063b88d4fde146109f6578063b8abd08c14610a1f578063bcfc2c2714610a48578063c819363914610a73576102e4565b80639592201611610149578063a22cb46511610123578063a22cb465146108c2578063a49062d4146108eb578063a8c2dddb14610916578063b09d9c6b1461093f576102e4565b8063959220161461085757806395d89b4114610880578063a0ef91df146108ab576102e4565b806373af3ee51461074357806383b3ff9014610782578063850e32da146107ad57806387a14627146107d85780638da5cb5b14610803578063931688cb1461082e576102e4565b8063254df9631161024f57806356f072d3116102085780636352211e116101e25780636352211e146106875780636d2b31ef146106c457806370a08231146106ef578063715018a61461072c576102e4565b806356f072d3146105f4578063593a363d146106335780635f5743011461065c576102e4565b8063254df963146105075780632b1f48a2146105305780632c0345021461054c578063379607f51461057757806342842e0e146105a057806355eb15eb146105c9576102e4565b80630ccbc769116102a15780630ccbc7691461040d578063119cb1751461043657806318160ddd1461046157806319c75e331461048c5780631d9aae31146104b557806323b872dd146104de576102e4565b8063017396dd146102e957806301ffc9a71461031457806306fdde0314610351578063081812fc1461037c578063095ea7b3146103b95780630aff2ee4146103e2575b600080fd5b3480156102f557600080fd5b506102fe610c12565b60405161030b919061520e565b60405180910390f35b34801561032057600080fd5b5061033b6004803603810190610336919061479e565b610c18565b6040516103489190614e7b565b60405180910390f35b34801561035d57600080fd5b50610366610cfa565b6040516103739190614f2c565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190614831565b610d8c565b6040516103b09190614db4565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190614710565b610e08565b005b3480156103ee57600080fd5b506103f7610f0d565b6040516104049190614e7b565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f919061490d565b610f20565b005b34801561044257600080fd5b5061044b6112e5565b6040516104589190615229565b60405180910390f35b34801561046d57600080fd5b506104766112ea565b604051610483919061520e565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190614831565b611301565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061485a565b6114ba565b005b3480156104ea57600080fd5b506105056004803603810190610500919061460a565b6116ec565b005b34801561051357600080fd5b5061052e60048036038101906105299190614831565b6116fc565b005b61054a60048036038101906105459190614831565b6118d7565b005b34801561055857600080fd5b50610561611aff565b60405161056e919061520e565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190614831565b611b05565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061460a565b611ea9565b005b3480156105d557600080fd5b506105de611ec9565b6040516105eb919061520e565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190614831565b611ecf565b60405161062a93929190614ebf565b60405180910390f35b34801561063f57600080fd5b5061065a6004803603810190610655919061474c565b611f4d565b005b34801561066857600080fd5b50610671611fe6565b60405161067e919061520e565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190614831565b611ff4565b6040516106bb9190614db4565b60405180910390f35b3480156106d057600080fd5b506106d961200a565b6040516106e69190614ef6565b60405180910390f35b3480156106fb57600080fd5b506107166004803603810190610711919061457c565b61202e565b604051610723919061520e565b60405180910390f35b34801561073857600080fd5b506107416120fe565b005b34801561074f57600080fd5b5061076a60048036038101906107659190614831565b612186565b60405161077993929190615244565b60405180910390f35b34801561078e57600080fd5b506107976121d7565b6040516107a4919061520e565b60405180910390f35b3480156107b957600080fd5b506107c26121dd565b6040516107cf919061520e565b60405180910390f35b3480156107e457600080fd5b506107ed6121e3565b6040516107fa919061520e565b60405180910390f35b34801561080f57600080fd5b506108186121e9565b6040516108259190614db4565b60405180910390f35b34801561083a57600080fd5b50610855600480360381019061085091906147f0565b612213565b005b34801561086357600080fd5b5061087e60048036038101906108799190614831565b6122a9565b005b34801561088c57600080fd5b50610895612392565b6040516108a29190614f2c565b60405180910390f35b3480156108b757600080fd5b506108c0612424565b005b3480156108ce57600080fd5b506108e960048036038101906108e491906146d4565b6124ef565b005b3480156108f757600080fd5b50610900612667565b60405161090d919061520e565b60405180910390f35b34801561092257600080fd5b5061093d60048036038101906109389190614831565b61266c565b005b34801561094b57600080fd5b5061096660048036038101906109619190614831565b612736565b604051610973919061520e565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190614831565b612753565b6040516109b09190615229565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db919061490d565b612773565b6040516109ed919061520e565b60405180910390f35b348015610a0257600080fd5b50610a1d6004803603810190610a189190614659565b6127d9565b005b348015610a2b57600080fd5b50610a466004803603810190610a419190614896565b612851565b005b348015610a5457600080fd5b50610a5d612912565b604051610a6a919061520e565b60405180910390f35b348015610a7f57600080fd5b50610a88612920565b604051610a959190614f11565b60405180910390f35b348015610aaa57600080fd5b50610ac56004803603810190610ac09190614831565b612944565b604051610ad29190614f2c565b60405180910390f35b348015610ae757600080fd5b50610af06129e3565b604051610afd9190614e7b565b60405180910390f35b348015610b1257600080fd5b50610b2d6004803603810190610b289190614831565b6129f6565b604051610b3a919061520e565b60405180910390f35b348015610b4f57600080fd5b50610b6a6004803603810190610b659190614831565b612a0e565b604051610b78929190614e96565b60405180910390f35b348015610b8d57600080fd5b50610b96612a5f565b604051610ba39190615229565b60405180910390f35b348015610bb857600080fd5b50610bd36004803603810190610bce91906145ce565b612a72565b604051610be09190614e7b565b60405180910390f35b348015610bf557600080fd5b50610c106004803603810190610c0b919061457c565b612b06565b005b60105481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ce357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cf35750610cf282612bfe565b5b9050919050565b606060028054610d09906155a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d35906155a7565b8015610d825780601f10610d5757610100808354040283529160200191610d82565b820191906000526020600020905b815481529060010190602001808311610d6557829003601f168201915b5050505050905090565b6000610d9782612c68565b610dcd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e1382611ff4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e7b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e9a612cb6565b73ffffffffffffffffffffffffffffffffffffffff1614610efd57610ec681610ec1612cb6565b612a72565b610efc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610f08838383612cbe565b505050565b601160009054906101000a900460ff1681565b60026009541415610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d906151ee565b60405180910390fd5b600260098190555060011515600c600084815260200190815260200160002060000160019054906101000a900460ff16151514610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90614f8e565b60405180910390fd5b60008160ff1610158015610fef575060088160ff16105b61102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110259061518e565b60405180910390fd5b600861103983612d70565b60ff161061107c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611073906150ae565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd33306013546040518463ffffffff1660e01b81526004016110db93929190614dcf565b602060405180830381600087803b1580156110f557600080fd5b505af1158015611109573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112d9190614775565b61113657600080fd5b80600c600084815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055506001600c600084815260200190815260200160002060020160009054906101000a900460ff1661119591906153a6565b600c600084815260200190815260200160002060020160006101000a81548160ff021916908360ff16021790555060006276a700426111d49190615350565b905060005b600c6000858152602001908152602001600020600101805490508160ff1610156112d75742600c60008681526020019081526020016000206001018260ff168154811061124f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154116112c45781600c60008681526020019081526020016000206001018260ff16815481106112b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055506112d7565b80806112cf90615653565b9150506111d9565b505060016009819055505050565b604081565b60006112f4612e8c565b6001546000540303905090565b60026009541415611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e906151ee565b60405180910390fd5b6002600981905550604060ff166001601160029054906101000a900460ff1661137091906153a6565b60ff1611156113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90614fce565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd33306012546040518463ffffffff1660e01b815260040161141393929190614dcf565b602060405180830381600087803b15801561142d57600080fd5b505af1158015611441573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114659190614775565b61146e57600080fd5b61147781612e91565b6011600281819054906101000a900460ff168092919061149690615653565b91906101000a81548160ff021916908360ff16021790555050600160098190555050565b60026009541415611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f7906151ee565b60405180910390fd5b600260098190555060011515600c600084815260200190815260200160002060000160019054906101000a900460ff16151514611572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611569906151ce565b60405180910390fd5b600061157d83612d70565b905060006115ac600a61159e8460ff16601354612f8d90919063ffffffff16565b612f8d90919063ffffffff16565b6012546115b99190615350565b90507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b815260040161161893929190614dcf565b602060405180830381600087803b15801561163257600080fd5b505af1158015611646573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166a9190614775565b61167357600080fd5b600c6000858152602001908152602001600020600080820160006101000a81549060ff02191690556000820160016101000a81549060ff02191690556001820160006116bf91906142b0565b6002820160006101000a81549060ff021916905550506116de83612e91565b505060016009819055505050565b6116f7838383612fa3565b505050565b60026009541415611742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611739906151ee565b60405180910390fd5b600260098190555060006001600a600084815260200190815260200160002060009054906101000a900460ff1661177991906153a6565b9050600061179d8260ff1669152d02c7e14af6800000612f8d90919063ffffffff16565b905060098260ff1611156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd9061502e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b815260040161184393929190614dcf565b602060405180830381600087803b15801561185d57600080fd5b505af1158015611871573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118959190614775565b61189e57600080fd5b81600a600085815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505050600160098190555050565b6002600954141561191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906151ee565b60405180910390fd5b600260098190555060011515601160009054906101000a900460ff1615151461197b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119729061510e565b60405180910390fd5b60058111156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690614f6e565b60405180910390fd5b6108006119dc826119ce6112ea565b61345990919063ffffffff16565b1115611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a149061500e565b60405180910390fd5b34611a3382600e54612f8d90919063ffffffff16565b1115611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b906150ce565b60405180910390fd5b600f54611a8c8260105461345990919063ffffffff16565b1115611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac4906150ee565b60405180910390fd5b80601054611adb9190615350565b601081905550611aea8161346f565b611af433826134d1565b600160098190555050565b60125481565b60026009541415611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b42906151ee565b60405180910390fd5b600260098190555060011515601160019054906101000a900460ff16151514611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba09061506e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16639b9a7f7e826040518263ffffffff1660e01b8152600401611c02919061520e565b60206040518083038186803b158015611c1a57600080fd5b505afa158015611c2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5291906145a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb69061504e565b60405180910390fd5b610800611cdd6001611ccf6112ea565b61345990919063ffffffff16565b1115611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d159061514e565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166323b872dd3330690d8d726b7177a80000006040518463ffffffff1660e01b8152600401611d8593929190614dcf565b602060405180830381600087803b158015611d9f57600080fd5b505af1158015611db3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd79190614775565b611de057600080fd5b6000600b60008381526020019081526020016000205414611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d90614f4e565b60405180910390fd5b600054600b6000838152602001908152602001600020819055506040811015611e6557611e64600054612e91565b5b6000600a60008054815260200190815260200160002060006101000a81548160ff021916908360ff160217905550611e9e3360016134d1565b600160098190555050565b611ec4838383604051806020016040528060008152506127d9565b505050565b600f5481565b6000806000600c600085815260200190815260200160002060000160019054906101000a900460ff16600c600086815260200190815260200160002060020160009054906101000a900460ff16600c600087815260200190815260200160002060000160009054906101000a900460ff169250925092509193909250565b611f55612cb6565b73ffffffffffffffffffffffffffffffffffffffff16611f736121e9565b73ffffffffffffffffffffffffffffffffffffffff1614611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc09061508e565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b69152d02c7e14af680000081565b6000611fff826134ef565b600001519050919050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612096576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612106612cb6565b73ffffffffffffffffffffffffffffffffffffffff166121246121e9565b73ffffffffffffffffffffffffffffffffffffffff161461217a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121719061508e565b60405180910390fd5b612184600061377a565b565b600c6020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060020160009054906101000a900460ff16905083565b600e5481565b61080081565b60135481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61221b612cb6565b73ffffffffffffffffffffffffffffffffffffffff166122396121e9565b73ffffffffffffffffffffffffffffffffffffffff161461228f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122869061508e565b60405180910390fd5b80600d90805190602001906122a59291906142d1565b5050565b6122b1612cb6565b73ffffffffffffffffffffffffffffffffffffffff166122cf6121e9565b73ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c9061508e565b60405180910390fd5b610800816123316112ea565b61233b9190615350565b111561237c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123739061516e565b60405180910390fd5b6123858161346f565b61238f33826134d1565b50565b6060600380546123a1906155a7565b80601f01602080910402602001604051908101604052809291908181526020018280546123cd906155a7565b801561241a5780601f106123ef5761010080835404028352916020019161241a565b820191906000526020600020905b8154815290600101906020018083116123fd57829003601f168201915b5050505050905090565b61242c612cb6565b73ffffffffffffffffffffffffffffffffffffffff1661244a6121e9565b73ffffffffffffffffffffffffffffffffffffffff16146124a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124979061508e565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156124eb573d6000803e3d6000fd5b5050565b6124f7612cb6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561255c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612569612cb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612616612cb6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161265b9190614e7b565b60405180910390a35050565b600981565b612674612cb6565b73ffffffffffffffffffffffffffffffffffffffff166126926121e9565b73ffffffffffffffffffffffffffffffffffffffff16146126e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126df9061508e565b60405180910390fd5b61273333827f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166138409092919063ffffffff16565b50565b6000600b6000838152602001908152602001600020549050919050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600c60008481526020019081526020016000206001018260ff16815481106127c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6127e4848484612fa3565b6128038373ffffffffffffffffffffffffffffffffffffffff166138c6565b1561284b57612814848484846138e9565b61284a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612859612cb6565b73ffffffffffffffffffffffffffffffffffffffff166128776121e9565b73ffffffffffffffffffffffffffffffffffffffff16146128cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c49061508e565b60405180910390fd5b600060108190555084600e8190555083600f8190555082601160006101000a81548160ff02191690831515021790555081601281905550806013819055505050505050565b690d8d726b7177a800000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b606061294f82612c68565b612985576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061298f613a49565b90506000815114156129b057604051806020016040528060008152506129db565b806129ba84613adb565b6040516020016129cb929190614d90565b6040516020818303038152906040525b915050919050565b601160019054906101000a900460ff1681565b600b6020528060005260406000206000915090505481565b600080600c600084815260200190815260200160002060000160019054906101000a900460ff16600a600085815260200190815260200160002060009054906101000a900460ff1691509150915091565b601160029054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b0e612cb6565b73ffffffffffffffffffffffffffffffffffffffff16612b2c6121e9565b73ffffffffffffffffffffffffffffffffffffffff1614612b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b799061508e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be990614fae565b60405180910390fd5b612bfb8161377a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612c73612e8c565b11158015612c82575060005482105b8015612caf575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000806000905060011515600c600085815260200190815260200160002060000160019054906101000a900460ff1615151415612e545760005b600c6000858152602001908152602001600020600101805490508160ff161015612e525742600c60008681526020019081526020016000206001018260ff1681548110612e20577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015410612e3f578180612e3b90615653565b9250505b8080612e4a90615653565b915050612daa565b505b80600c600085815260200190815260200160002060020160006101000a81548160ff021916908360ff16021790555080915050919050565b600090565b6001600c600083815260200190815260200160002060000160016101000a81548160ff021916908315150217905550600867ffffffffffffffff811115612f01577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612f2f5781602001602082028036833780820191505090505b50600c60008381526020019081526020016000206001019080519060200190612f59929190614357565b506000600c600083815260200190815260200160002060020160006101000a81548160ff021916908360ff16021790555050565b60008183612f9b919061540e565b905092915050565b6000612fae826134ef565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613019576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661303a612cb6565b73ffffffffffffffffffffffffffffffffffffffff161480613069575061306885613063612cb6565b612a72565b5b806130ae5750613077612cb6565b73ffffffffffffffffffffffffffffffffffffffff1661309684610d8c565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806130e7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561314e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61315b8585856001613c88565b61316760008487612cbe565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156133e75760005482146133e657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134528585856001613c8e565b5050505050565b600081836134679190615350565b905092915050565b60005b818110156134cd5760008160005461348a9190615350565b90506000600a600083815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505080806134c59061560a565b915050613472565b5050565b6134eb828260405180602001604052806000815250613c94565b5050565b6134f76143a4565b600082905080613505612e8c565b1161374357600054811015613742576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161374057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613624578092505050613775565b5b60011561373f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461373a578092505050613775565b613625565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6138c18363a9059cbb60e01b848460405160240161385f929190614e52565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050614056565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261390f612cb6565b8786866040518563ffffffff1660e01b81526004016139319493929190614e06565b602060405180830381600087803b15801561394b57600080fd5b505af192505050801561397c57506040513d601f19601f8201168201806040525081019061397991906147c7565b60015b6139f6573d80600081146139ac576040519150601f19603f3d011682016040523d82523d6000602084013e6139b1565b606091505b506000815114156139ee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054613a58906155a7565b80601f0160208091040260200160405190810160405280929190818152602001828054613a84906155a7565b8015613ad15780601f10613aa657610100808354040283529160200191613ad1565b820191906000526020600020905b815481529060010190602001808311613ab457829003601f168201915b5050505050905090565b60606000821415613b23576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613c83565b600082905060005b60008214613b55578080613b3e9061560a565b915050600a82613b4e91906153dd565b9150613b2b565b60008167ffffffffffffffff811115613b97577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613bc95781602001600182028036833780820191505090505b5090505b60008514613c7c57600182613be29190615468565b9150600a85613bf1919061567d565b6030613bfd9190615350565b60f81b818381518110613c39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613c7591906153dd565b9450613bcd565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613d01576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613d3c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613d496000858386613c88565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050613f0a8673ffffffffffffffffffffffffffffffffffffffff166138c6565b15613fcf575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613f7f60008784806001019550876138e9565b613fb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210613f10578260005414613fca57600080fd5b61403a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613fd0575b8160008190555050506140506000858386613c8e565b50505050565b60006140b8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661411d9092919063ffffffff16565b905060008151111561411857808060200190518101906140d89190614775565b614117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161410e906151ae565b60405180910390fd5b5b505050565b606061412c8484600085614135565b90509392505050565b60608247101561417a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161417190614fee565b60405180910390fd5b614183856138c6565b6141c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141b99061512e565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516141eb9190614d79565b60006040518083038185875af1925050503d8060008114614228576040519150601f19603f3d011682016040523d82523d6000602084013e61422d565b606091505b509150915061423d828286614249565b92505050949350505050565b60608315614259578290506142a9565b60008351111561426c5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016142a09190614f2c565b60405180910390fd5b9392505050565b50805460008255906000526020600020908101906142ce91906143e7565b50565b8280546142dd906155a7565b90600052602060002090601f0160209004810192826142ff5760008555614346565b82601f1061431857805160ff1916838001178555614346565b82800160010185558215614346579182015b8281111561434557825182559160200191906001019061432a565b5b50905061435391906143e7565b5090565b828054828255906000526020600020908101928215614393579160200282015b82811115614392578251825591602001919060010190614377565b5b5090506143a091906143e7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156144005760008160009055506001016143e8565b5090565b6000614417614412846152a0565b61527b565b90508281526020810184848401111561442f57600080fd5b61443a848285615565565b509392505050565b6000614455614450846152d1565b61527b565b90508281526020810184848401111561446d57600080fd5b614478848285615565565b509392505050565b60008135905061448f81615ca3565b92915050565b6000815190506144a481615ca3565b92915050565b6000813590506144b981615cba565b92915050565b6000815190506144ce81615cba565b92915050565b6000813590506144e381615cd1565b92915050565b6000815190506144f881615cd1565b92915050565b600082601f83011261450f57600080fd5b813561451f848260208601614404565b91505092915050565b600082601f83011261453957600080fd5b8135614549848260208601614442565b91505092915050565b60008135905061456181615ce8565b92915050565b60008135905061457681615cff565b92915050565b60006020828403121561458e57600080fd5b600061459c84828501614480565b91505092915050565b6000602082840312156145b757600080fd5b60006145c584828501614495565b91505092915050565b600080604083850312156145e157600080fd5b60006145ef85828601614480565b925050602061460085828601614480565b9150509250929050565b60008060006060848603121561461f57600080fd5b600061462d86828701614480565b935050602061463e86828701614480565b925050604061464f86828701614552565b9150509250925092565b6000806000806080858703121561466f57600080fd5b600061467d87828801614480565b945050602061468e87828801614480565b935050604061469f87828801614552565b925050606085013567ffffffffffffffff8111156146bc57600080fd5b6146c8878288016144fe565b91505092959194509250565b600080604083850312156146e757600080fd5b60006146f585828601614480565b9250506020614706858286016144aa565b9150509250929050565b6000806040838503121561472357600080fd5b600061473185828601614480565b925050602061474285828601614552565b9150509250929050565b60006020828403121561475e57600080fd5b600061476c848285016144aa565b91505092915050565b60006020828403121561478757600080fd5b6000614795848285016144bf565b91505092915050565b6000602082840312156147b057600080fd5b60006147be848285016144d4565b91505092915050565b6000602082840312156147d957600080fd5b60006147e7848285016144e9565b91505092915050565b60006020828403121561480257600080fd5b600082013567ffffffffffffffff81111561481c57600080fd5b61482884828501614528565b91505092915050565b60006020828403121561484357600080fd5b600061485184828501614552565b91505092915050565b6000806040838503121561486d57600080fd5b600061487b85828601614552565b925050602061488c85828601614552565b9150509250929050565b600080600080600060a086880312156148ae57600080fd5b60006148bc88828901614552565b95505060206148cd88828901614552565b94505060406148de888289016144aa565b93505060606148ef88828901614552565b925050608061490088828901614552565b9150509295509295909350565b6000806040838503121561492057600080fd5b600061492e85828601614552565b925050602061493f85828601614567565b9150509250929050565b6149528161549c565b82525050565b614961816154ae565b82525050565b600061497282615302565b61497c8185615318565b935061498c818560208601615574565b6149958161576a565b840191505092915050565b60006149ab82615302565b6149b58185615329565b93506149c5818560208601615574565b80840191505092915050565b6149da8161551d565b82525050565b6149e981615541565b82525050565b60006149fa8261530d565b614a048185615334565b9350614a14818560208601615574565b614a1d8161576a565b840191505092915050565b6000614a338261530d565b614a3d8185615345565b9350614a4d818560208601615574565b80840191505092915050565b6000614a66602383615334565b9150614a718261577b565b604082019050919050565b6000614a89603083615334565b9150614a94826157ca565b604082019050919050565b6000614aac601a83615334565b9150614ab782615819565b602082019050919050565b6000614acf602683615334565b9150614ada82615842565b604082019050919050565b6000614af2600d83615334565b9150614afd82615891565b602082019050919050565b6000614b15602683615334565b9150614b20826158ba565b604082019050919050565b6000614b38602d83615334565b9150614b4382615909565b604082019050919050565b6000614b5b600983615334565b9150614b6682615958565b602082019050919050565b6000614b7e603183615334565b9150614b8982615981565b604082019050919050565b6000614ba1601c83615334565b9150614bac826159d0565b602082019050919050565b6000614bc4602083615334565b9150614bcf826159f9565b602082019050919050565b6000614be7601a83615334565b9150614bf282615a22565b602082019050919050565b6000614c0a602483615334565b9150614c1582615a4b565b604082019050919050565b6000614c2d602483615334565b9150614c3882615a9a565b604082019050919050565b6000614c50601b83615334565b9150614c5b82615ae9565b602082019050919050565b6000614c73601d83615334565b9150614c7e82615b12565b602082019050919050565b6000614c96602a83615334565b9150614ca182615b3b565b604082019050919050565b6000614cb9600a83615334565b9150614cc482615b8a565b602082019050919050565b6000614cdc600c83615334565b9150614ce782615bb3565b602082019050919050565b6000614cff602a83615334565b9150614d0a82615bdc565b604082019050919050565b6000614d22602183615334565b9150614d2d82615c2b565b604082019050919050565b6000614d45601f83615334565b9150614d5082615c7a565b602082019050919050565b614d6481615506565b82525050565b614d7381615510565b82525050565b6000614d8582846149a0565b915081905092915050565b6000614d9c8285614a28565b9150614da88284614a28565b91508190509392505050565b6000602082019050614dc96000830184614949565b92915050565b6000606082019050614de46000830186614949565b614df16020830185614949565b614dfe6040830184614d5b565b949350505050565b6000608082019050614e1b6000830187614949565b614e286020830186614949565b614e356040830185614d5b565b8181036060830152614e478184614967565b905095945050505050565b6000604082019050614e676000830185614949565b614e746020830184614d5b565b9392505050565b6000602082019050614e906000830184614958565b92915050565b6000604082019050614eab6000830185614958565b614eb86020830184614d6a565b9392505050565b6000606082019050614ed46000830186614958565b614ee16020830185614d6a565b614eee6040830184614d6a565b949350505050565b6000602082019050614f0b60008301846149d1565b92915050565b6000602082019050614f2660008301846149e0565b92915050565b60006020820190508181036000830152614f4681846149ef565b905092915050565b60006020820190508181036000830152614f6781614a59565b9050919050565b60006020820190508181036000830152614f8781614a7c565b9050919050565b60006020820190508181036000830152614fa781614a9f565b9050919050565b60006020820190508181036000830152614fc781614ac2565b9050919050565b60006020820190508181036000830152614fe781614ae5565b9050919050565b6000602082019050818103600083015261500781614b08565b9050919050565b6000602082019050818103600083015261502781614b2b565b9050919050565b6000602082019050818103600083015261504781614b4e565b9050919050565b6000602082019050818103600083015261506781614b71565b9050919050565b6000602082019050818103600083015261508781614b94565b9050919050565b600060208201905081810360008301526150a781614bb7565b9050919050565b600060208201905081810360008301526150c781614bda565b9050919050565b600060208201905081810360008301526150e781614bfd565b9050919050565b6000602082019050818103600083015261510781614c20565b9050919050565b6000602082019050818103600083015261512781614c43565b9050919050565b6000602082019050818103600083015261514781614c66565b9050919050565b6000602082019050818103600083015261516781614c89565b9050919050565b6000602082019050818103600083015261518781614cac565b9050919050565b600060208201905081810360008301526151a781614ccf565b9050919050565b600060208201905081810360008301526151c781614cf2565b9050919050565b600060208201905081810360008301526151e781614d15565b9050919050565b6000602082019050818103600083015261520781614d38565b9050919050565b60006020820190506152236000830184614d5b565b92915050565b600060208201905061523e6000830184614d6a565b92915050565b60006060820190506152596000830186614d6a565b6152666020830185614958565b6152736040830184614d6a565b949350505050565b6000615285615296565b905061529182826155d9565b919050565b6000604051905090565b600067ffffffffffffffff8211156152bb576152ba61573b565b5b6152c48261576a565b9050602081019050919050565b600067ffffffffffffffff8211156152ec576152eb61573b565b5b6152f58261576a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061535b82615506565b915061536683615506565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561539b5761539a6156ae565b5b828201905092915050565b60006153b182615510565b91506153bc83615510565b92508260ff038211156153d2576153d16156ae565b5b828201905092915050565b60006153e882615506565b91506153f383615506565b925082615403576154026156dd565b5b828204905092915050565b600061541982615506565b915061542483615506565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561545d5761545c6156ae565b5b828202905092915050565b600061547382615506565b915061547e83615506565b925082821015615491576154906156ae565b5b828203905092915050565b60006154a7826154e6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006155288261552f565b9050919050565b600061553a826154e6565b9050919050565b600061554c82615553565b9050919050565b600061555e826154e6565b9050919050565b82818337600083830152505050565b60005b83811015615592578082015181840152602081019050615577565b838111156155a1576000848401525b50505050565b600060028204905060018216806155bf57607f821691505b602082108114156155d3576155d261570c565b5b50919050565b6155e28261576a565b810181811067ffffffffffffffff821117156156015761560061573b565b5b80604052505050565b600061561582615506565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615648576156476156ae565b5b600182019050919050565b600061565e82615510565b915060ff821415615672576156716156ae565b5b600182019050919050565b600061568882615506565b915061569383615506565b9250826156a3576156a26156dd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4349544144454c2068617320616c726561647920636c61696d6564206120504960008201527f4c4f540000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e20352050494c4f5420696e60008201527f206f6e65207472616e73616374696f6e00000000000000000000000000000000602082015250565b7f4d75737420626520736f7665726569676e20746f206272696265000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d41585f534f5645524549474e00000000000000000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662070696c6f74206e667400000000000000000000000000000000000000602082015250565b7f4d41585f4c4556454c0000000000000000000000000000000000000000000000600082015250565b7f4349544144454c206d757374206265207374616b656420746f2045584f52444960008201527f554d20746f20636c61696d2050494c4f54000000000000000000000000000000602082015250565b7f50494c4f5420636c61696d2069732063757272656e746c79206f666600000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f7665726569676e2069732066756c6c792063686172676564000000000000600082015250565b7f4e6f7420656e6f756768206574682073656e742077697468207472616e73616360008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e74206578636565646564206d61782070696c6f74206360008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b7f50494c4f54206d696e742069732063757272656e746c79206f66660000000000600082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f436c61696d20776f756c6420657863656564206d617820737570706c79206f6660008201527f2070696c6f74206e667400000000000000000000000000000000000000000000602082015250565b7f4d41585f535550504c5900000000000000000000000000000000000000000000600082015250565b7f496e76616c6964204b554c540000000000000000000000000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f4d757374206f7665727468726f77206578697374696e6720736f76657265696760008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b615cac8161549c565b8114615cb757600080fd5b50565b615cc3816154ae565b8114615cce57600080fd5b50565b615cda816154ba565b8114615ce557600080fd5b50565b615cf181615506565b8114615cfc57600080fd5b50565b615d0881615510565b8114615d1357600080fd5b5056fea26469706673582212205afe8c13a039d65d6315967a2f24f4538eaa1ef4f7bd5f373dc0ea1870f9688d64736f6c63430008040033000000000000000000000000927ce35c89ab901eefbc0675336ae4a31e658b0e000000000000000000000000fbf5a1f788e5f107d25fc0824ed5e105b90fe0270000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5969486e59375a35626766523833435771705869366b6a71434d4b6a386a71784768634d664270663478566d2f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c806373af3ee511610190578063b2596a67116100dc578063c87b56dd11610095578063dfc882fa1161006f578063dfc882fa14610b43578063e56a907714610b81578063e985e9c514610bac578063f2fde38b14610be9576102e4565b8063c87b56dd14610a9e578063c94f2ad814610adb578063dbe7e3bd14610b06576102e4565b8063b2596a671461097c578063b68a922d146109b9578063b88d4fde146109f6578063b8abd08c14610a1f578063bcfc2c2714610a48578063c819363914610a73576102e4565b80639592201611610149578063a22cb46511610123578063a22cb465146108c2578063a49062d4146108eb578063a8c2dddb14610916578063b09d9c6b1461093f576102e4565b8063959220161461085757806395d89b4114610880578063a0ef91df146108ab576102e4565b806373af3ee51461074357806383b3ff9014610782578063850e32da146107ad57806387a14627146107d85780638da5cb5b14610803578063931688cb1461082e576102e4565b8063254df9631161024f57806356f072d3116102085780636352211e116101e25780636352211e146106875780636d2b31ef146106c457806370a08231146106ef578063715018a61461072c576102e4565b806356f072d3146105f4578063593a363d146106335780635f5743011461065c576102e4565b8063254df963146105075780632b1f48a2146105305780632c0345021461054c578063379607f51461057757806342842e0e146105a057806355eb15eb146105c9576102e4565b80630ccbc769116102a15780630ccbc7691461040d578063119cb1751461043657806318160ddd1461046157806319c75e331461048c5780631d9aae31146104b557806323b872dd146104de576102e4565b8063017396dd146102e957806301ffc9a71461031457806306fdde0314610351578063081812fc1461037c578063095ea7b3146103b95780630aff2ee4146103e2575b600080fd5b3480156102f557600080fd5b506102fe610c12565b60405161030b919061520e565b60405180910390f35b34801561032057600080fd5b5061033b6004803603810190610336919061479e565b610c18565b6040516103489190614e7b565b60405180910390f35b34801561035d57600080fd5b50610366610cfa565b6040516103739190614f2c565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190614831565b610d8c565b6040516103b09190614db4565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190614710565b610e08565b005b3480156103ee57600080fd5b506103f7610f0d565b6040516104049190614e7b565b60405180910390f35b34801561041957600080fd5b50610434600480360381019061042f919061490d565b610f20565b005b34801561044257600080fd5b5061044b6112e5565b6040516104589190615229565b60405180910390f35b34801561046d57600080fd5b506104766112ea565b604051610483919061520e565b60405180910390f35b34801561049857600080fd5b506104b360048036038101906104ae9190614831565b611301565b005b3480156104c157600080fd5b506104dc60048036038101906104d7919061485a565b6114ba565b005b3480156104ea57600080fd5b506105056004803603810190610500919061460a565b6116ec565b005b34801561051357600080fd5b5061052e60048036038101906105299190614831565b6116fc565b005b61054a60048036038101906105459190614831565b6118d7565b005b34801561055857600080fd5b50610561611aff565b60405161056e919061520e565b60405180910390f35b34801561058357600080fd5b5061059e60048036038101906105999190614831565b611b05565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061460a565b611ea9565b005b3480156105d557600080fd5b506105de611ec9565b6040516105eb919061520e565b60405180910390f35b34801561060057600080fd5b5061061b60048036038101906106169190614831565b611ecf565b60405161062a93929190614ebf565b60405180910390f35b34801561063f57600080fd5b5061065a6004803603810190610655919061474c565b611f4d565b005b34801561066857600080fd5b50610671611fe6565b60405161067e919061520e565b60405180910390f35b34801561069357600080fd5b506106ae60048036038101906106a99190614831565b611ff4565b6040516106bb9190614db4565b60405180910390f35b3480156106d057600080fd5b506106d961200a565b6040516106e69190614ef6565b60405180910390f35b3480156106fb57600080fd5b506107166004803603810190610711919061457c565b61202e565b604051610723919061520e565b60405180910390f35b34801561073857600080fd5b506107416120fe565b005b34801561074f57600080fd5b5061076a60048036038101906107659190614831565b612186565b60405161077993929190615244565b60405180910390f35b34801561078e57600080fd5b506107976121d7565b6040516107a4919061520e565b60405180910390f35b3480156107b957600080fd5b506107c26121dd565b6040516107cf919061520e565b60405180910390f35b3480156107e457600080fd5b506107ed6121e3565b6040516107fa919061520e565b60405180910390f35b34801561080f57600080fd5b506108186121e9565b6040516108259190614db4565b60405180910390f35b34801561083a57600080fd5b50610855600480360381019061085091906147f0565b612213565b005b34801561086357600080fd5b5061087e60048036038101906108799190614831565b6122a9565b005b34801561088c57600080fd5b50610895612392565b6040516108a29190614f2c565b60405180910390f35b3480156108b757600080fd5b506108c0612424565b005b3480156108ce57600080fd5b506108e960048036038101906108e491906146d4565b6124ef565b005b3480156108f757600080fd5b50610900612667565b60405161090d919061520e565b60405180910390f35b34801561092257600080fd5b5061093d60048036038101906109389190614831565b61266c565b005b34801561094b57600080fd5b5061096660048036038101906109619190614831565b612736565b604051610973919061520e565b60405180910390f35b34801561098857600080fd5b506109a3600480360381019061099e9190614831565b612753565b6040516109b09190615229565b60405180910390f35b3480156109c557600080fd5b506109e060048036038101906109db919061490d565b612773565b6040516109ed919061520e565b60405180910390f35b348015610a0257600080fd5b50610a1d6004803603810190610a189190614659565b6127d9565b005b348015610a2b57600080fd5b50610a466004803603810190610a419190614896565b612851565b005b348015610a5457600080fd5b50610a5d612912565b604051610a6a919061520e565b60405180910390f35b348015610a7f57600080fd5b50610a88612920565b604051610a959190614f11565b60405180910390f35b348015610aaa57600080fd5b50610ac56004803603810190610ac09190614831565b612944565b604051610ad29190614f2c565b60405180910390f35b348015610ae757600080fd5b50610af06129e3565b604051610afd9190614e7b565b60405180910390f35b348015610b1257600080fd5b50610b2d6004803603810190610b289190614831565b6129f6565b604051610b3a919061520e565b60405180910390f35b348015610b4f57600080fd5b50610b6a6004803603810190610b659190614831565b612a0e565b604051610b78929190614e96565b60405180910390f35b348015610b8d57600080fd5b50610b96612a5f565b604051610ba39190615229565b60405180910390f35b348015610bb857600080fd5b50610bd36004803603810190610bce91906145ce565b612a72565b604051610be09190614e7b565b60405180910390f35b348015610bf557600080fd5b50610c106004803603810190610c0b919061457c565b612b06565b005b60105481565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610ce357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610cf35750610cf282612bfe565b5b9050919050565b606060028054610d09906155a7565b80601f0160208091040260200160405190810160405280929190818152602001828054610d35906155a7565b8015610d825780601f10610d5757610100808354040283529160200191610d82565b820191906000526020600020905b815481529060010190602001808311610d6557829003601f168201915b5050505050905090565b6000610d9782612c68565b610dcd576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e1382611ff4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e7b576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e9a612cb6565b73ffffffffffffffffffffffffffffffffffffffff1614610efd57610ec681610ec1612cb6565b612a72565b610efc576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610f08838383612cbe565b505050565b601160009054906101000a900460ff1681565b60026009541415610f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5d906151ee565b60405180910390fd5b600260098190555060011515600c600084815260200190815260200160002060000160019054906101000a900460ff16151514610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90614f8e565b60405180910390fd5b60008160ff1610158015610fef575060088160ff16105b61102e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110259061518e565b60405180910390fd5b600861103983612d70565b60ff161061107c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611073906150ae565b60405180910390fd5b7f000000000000000000000000927ce35c89ab901eefbc0675336ae4a31e658b0e73ffffffffffffffffffffffffffffffffffffffff166323b872dd33306013546040518463ffffffff1660e01b81526004016110db93929190614dcf565b602060405180830381600087803b1580156110f557600080fd5b505af1158015611109573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112d9190614775565b61113657600080fd5b80600c600084815260200190815260200160002060000160006101000a81548160ff021916908360ff1602179055506001600c600084815260200190815260200160002060020160009054906101000a900460ff1661119591906153a6565b600c600084815260200190815260200160002060020160006101000a81548160ff021916908360ff16021790555060006276a700426111d49190615350565b905060005b600c6000858152602001908152602001600020600101805490508160ff1610156112d75742600c60008681526020019081526020016000206001018260ff168154811061124f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154116112c45781600c60008681526020019081526020016000206001018260ff16815481106112b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055506112d7565b80806112cf90615653565b9150506111d9565b505060016009819055505050565b604081565b60006112f4612e8c565b6001546000540303905090565b60026009541415611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e906151ee565b60405180910390fd5b6002600981905550604060ff166001601160029054906101000a900460ff1661137091906153a6565b60ff1611156113b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ab90614fce565b60405180910390fd5b7f000000000000000000000000927ce35c89ab901eefbc0675336ae4a31e658b0e73ffffffffffffffffffffffffffffffffffffffff166323b872dd33306012546040518463ffffffff1660e01b815260040161141393929190614dcf565b602060405180830381600087803b15801561142d57600080fd5b505af1158015611441573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114659190614775565b61146e57600080fd5b61147781612e91565b6011600281819054906101000a900460ff168092919061149690615653565b91906101000a81548160ff021916908360ff16021790555050600160098190555050565b60026009541415611500576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f7906151ee565b60405180910390fd5b600260098190555060011515600c600084815260200190815260200160002060000160019054906101000a900460ff16151514611572576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611569906151ce565b60405180910390fd5b600061157d83612d70565b905060006115ac600a61159e8460ff16601354612f8d90919063ffffffff16565b612f8d90919063ffffffff16565b6012546115b99190615350565b90507f000000000000000000000000927ce35c89ab901eefbc0675336ae4a31e658b0e73ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b815260040161161893929190614dcf565b602060405180830381600087803b15801561163257600080fd5b505af1158015611646573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061166a9190614775565b61167357600080fd5b600c6000858152602001908152602001600020600080820160006101000a81549060ff02191690556000820160016101000a81549060ff02191690556001820160006116bf91906142b0565b6002820160006101000a81549060ff021916905550506116de83612e91565b505060016009819055505050565b6116f7838383612fa3565b505050565b60026009541415611742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611739906151ee565b60405180910390fd5b600260098190555060006001600a600084815260200190815260200160002060009054906101000a900460ff1661177991906153a6565b9050600061179d8260ff1669152d02c7e14af6800000612f8d90919063ffffffff16565b905060098260ff1611156117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd9061502e565b60405180910390fd5b7f000000000000000000000000927ce35c89ab901eefbc0675336ae4a31e658b0e73ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b815260040161184393929190614dcf565b602060405180830381600087803b15801561185d57600080fd5b505af1158015611871573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118959190614775565b61189e57600080fd5b81600a600085815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505050600160098190555050565b6002600954141561191d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611914906151ee565b60405180910390fd5b600260098190555060011515601160009054906101000a900460ff1615151461197b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119729061510e565b60405180910390fd5b60058111156119bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b690614f6e565b60405180910390fd5b6108006119dc826119ce6112ea565b61345990919063ffffffff16565b1115611a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a149061500e565b60405180910390fd5b34611a3382600e54612f8d90919063ffffffff16565b1115611a74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6b906150ce565b60405180910390fd5b600f54611a8c8260105461345990919063ffffffff16565b1115611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac4906150ee565b60405180910390fd5b80601054611adb9190615350565b601081905550611aea8161346f565b611af433826134d1565b600160098190555050565b60125481565b60026009541415611b4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b42906151ee565b60405180910390fd5b600260098190555060011515601160019054906101000a900460ff16151514611ba9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba09061506e565b60405180910390fd5b7f000000000000000000000000fbf5a1f788e5f107d25fc0824ed5e105b90fe02773ffffffffffffffffffffffffffffffffffffffff16639b9a7f7e826040518263ffffffff1660e01b8152600401611c02919061520e565b60206040518083038186803b158015611c1a57600080fd5b505afa158015611c2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c5291906145a5565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611cbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb69061504e565b60405180910390fd5b610800611cdd6001611ccf6112ea565b61345990919063ffffffff16565b1115611d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d159061514e565b60405180910390fd5b7f000000000000000000000000927ce35c89ab901eefbc0675336ae4a31e658b0e73ffffffffffffffffffffffffffffffffffffffff166323b872dd3330690d8d726b7177a80000006040518463ffffffff1660e01b8152600401611d8593929190614dcf565b602060405180830381600087803b158015611d9f57600080fd5b505af1158015611db3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dd79190614775565b611de057600080fd5b6000600b60008381526020019081526020016000205414611e36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e2d90614f4e565b60405180910390fd5b600054600b6000838152602001908152602001600020819055506040811015611e6557611e64600054612e91565b5b6000600a60008054815260200190815260200160002060006101000a81548160ff021916908360ff160217905550611e9e3360016134d1565b600160098190555050565b611ec4838383604051806020016040528060008152506127d9565b505050565b600f5481565b6000806000600c600085815260200190815260200160002060000160019054906101000a900460ff16600c600086815260200190815260200160002060020160009054906101000a900460ff16600c600087815260200190815260200160002060000160009054906101000a900460ff169250925092509193909250565b611f55612cb6565b73ffffffffffffffffffffffffffffffffffffffff16611f736121e9565b73ffffffffffffffffffffffffffffffffffffffff1614611fc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc09061508e565b60405180910390fd5b80601160016101000a81548160ff02191690831515021790555050565b69152d02c7e14af680000081565b6000611fff826134ef565b600001519050919050565b7f000000000000000000000000927ce35c89ab901eefbc0675336ae4a31e658b0e81565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612096576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b612106612cb6565b73ffffffffffffffffffffffffffffffffffffffff166121246121e9565b73ffffffffffffffffffffffffffffffffffffffff161461217a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121719061508e565b60405180910390fd5b612184600061377a565b565b600c6020528060005260406000206000915090508060000160009054906101000a900460ff16908060000160019054906101000a900460ff16908060020160009054906101000a900460ff16905083565b600e5481565b61080081565b60135481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61221b612cb6565b73ffffffffffffffffffffffffffffffffffffffff166122396121e9565b73ffffffffffffffffffffffffffffffffffffffff161461228f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122869061508e565b60405180910390fd5b80600d90805190602001906122a59291906142d1565b5050565b6122b1612cb6565b73ffffffffffffffffffffffffffffffffffffffff166122cf6121e9565b73ffffffffffffffffffffffffffffffffffffffff1614612325576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231c9061508e565b60405180910390fd5b610800816123316112ea565b61233b9190615350565b111561237c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123739061516e565b60405180910390fd5b6123858161346f565b61238f33826134d1565b50565b6060600380546123a1906155a7565b80601f01602080910402602001604051908101604052809291908181526020018280546123cd906155a7565b801561241a5780601f106123ef5761010080835404028352916020019161241a565b820191906000526020600020905b8154815290600101906020018083116123fd57829003601f168201915b5050505050905090565b61242c612cb6565b73ffffffffffffffffffffffffffffffffffffffff1661244a6121e9565b73ffffffffffffffffffffffffffffffffffffffff16146124a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124979061508e565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156124eb573d6000803e3d6000fd5b5050565b6124f7612cb6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561255c576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000612569612cb6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612616612cb6565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161265b9190614e7b565b60405180910390a35050565b600981565b612674612cb6565b73ffffffffffffffffffffffffffffffffffffffff166126926121e9565b73ffffffffffffffffffffffffffffffffffffffff16146126e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126df9061508e565b60405180910390fd5b61273333827f000000000000000000000000927ce35c89ab901eefbc0675336ae4a31e658b0e73ffffffffffffffffffffffffffffffffffffffff166138409092919063ffffffff16565b50565b6000600b6000838152602001908152602001600020549050919050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600c60008481526020019081526020016000206001018260ff16815481106127c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905092915050565b6127e4848484612fa3565b6128038373ffffffffffffffffffffffffffffffffffffffff166138c6565b1561284b57612814848484846138e9565b61284a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b612859612cb6565b73ffffffffffffffffffffffffffffffffffffffff166128776121e9565b73ffffffffffffffffffffffffffffffffffffffff16146128cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128c49061508e565b60405180910390fd5b600060108190555084600e8190555083600f8190555082601160006101000a81548160ff02191690831515021790555081601281905550806013819055505050505050565b690d8d726b7177a800000081565b7f000000000000000000000000fbf5a1f788e5f107d25fc0824ed5e105b90fe02781565b606061294f82612c68565b612985576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600061298f613a49565b90506000815114156129b057604051806020016040528060008152506129db565b806129ba84613adb565b6040516020016129cb929190614d90565b6040516020818303038152906040525b915050919050565b601160019054906101000a900460ff1681565b600b6020528060005260406000206000915090505481565b600080600c600084815260200190815260200160002060000160019054906101000a900460ff16600a600085815260200190815260200160002060009054906101000a900460ff1691509150915091565b601160029054906101000a900460ff1681565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b0e612cb6565b73ffffffffffffffffffffffffffffffffffffffff16612b2c6121e9565b73ffffffffffffffffffffffffffffffffffffffff1614612b82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b799061508e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be990614fae565b60405180910390fd5b612bfb8161377a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612c73612e8c565b11158015612c82575060005482105b8015612caf575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000806000905060011515600c600085815260200190815260200160002060000160019054906101000a900460ff1615151415612e545760005b600c6000858152602001908152602001600020600101805490508160ff161015612e525742600c60008681526020019081526020016000206001018260ff1681548110612e20577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015410612e3f578180612e3b90615653565b9250505b8080612e4a90615653565b915050612daa565b505b80600c600085815260200190815260200160002060020160006101000a81548160ff021916908360ff16021790555080915050919050565b600090565b6001600c600083815260200190815260200160002060000160016101000a81548160ff021916908315150217905550600867ffffffffffffffff811115612f01577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612f2f5781602001602082028036833780820191505090505b50600c60008381526020019081526020016000206001019080519060200190612f59929190614357565b506000600c600083815260200190815260200160002060020160006101000a81548160ff021916908360ff16021790555050565b60008183612f9b919061540e565b905092915050565b6000612fae826134ef565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613019576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff1661303a612cb6565b73ffffffffffffffffffffffffffffffffffffffff161480613069575061306885613063612cb6565b612a72565b5b806130ae5750613077612cb6565b73ffffffffffffffffffffffffffffffffffffffff1661309684610d8c565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806130e7576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561314e576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61315b8585856001613c88565b61316760008487612cbe565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156133e75760005482146133e657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134528585856001613c8e565b5050505050565b600081836134679190615350565b905092915050565b60005b818110156134cd5760008160005461348a9190615350565b90506000600a600083815260200190815260200160002060006101000a81548160ff021916908360ff1602179055505080806134c59061560a565b915050613472565b5050565b6134eb828260405180602001604052806000815250613c94565b5050565b6134f76143a4565b600082905080613505612e8c565b1161374357600054811015613742576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161374057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613624578092505050613775565b5b60011561373f57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461373a578092505050613775565b613625565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6138c18363a9059cbb60e01b848460405160240161385f929190614e52565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050614056565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261390f612cb6565b8786866040518563ffffffff1660e01b81526004016139319493929190614e06565b602060405180830381600087803b15801561394b57600080fd5b505af192505050801561397c57506040513d601f19601f8201168201806040525081019061397991906147c7565b60015b6139f6573d80600081146139ac576040519150601f19603f3d011682016040523d82523d6000602084013e6139b1565b606091505b506000815114156139ee576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600d8054613a58906155a7565b80601f0160208091040260200160405190810160405280929190818152602001828054613a84906155a7565b8015613ad15780601f10613aa657610100808354040283529160200191613ad1565b820191906000526020600020905b815481529060010190602001808311613ab457829003601f168201915b5050505050905090565b60606000821415613b23576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613c83565b600082905060005b60008214613b55578080613b3e9061560a565b915050600a82613b4e91906153dd565b9150613b2b565b60008167ffffffffffffffff811115613b97577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613bc95781602001600182028036833780820191505090505b5090505b60008514613c7c57600182613be29190615468565b9150600a85613bf1919061567d565b6030613bfd9190615350565b60f81b818381518110613c39577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613c7591906153dd565b9450613bcd565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613d01576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415613d3c576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613d496000858386613c88565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050613f0a8673ffffffffffffffffffffffffffffffffffffffff166138c6565b15613fcf575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613f7f60008784806001019550876138e9565b613fb5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210613f10578260005414613fca57600080fd5b61403a565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613fd0575b8160008190555050506140506000858386613c8e565b50505050565b60006140b8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661411d9092919063ffffffff16565b905060008151111561411857808060200190518101906140d89190614775565b614117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161410e906151ae565b60405180910390fd5b5b505050565b606061412c8484600085614135565b90509392505050565b60608247101561417a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161417190614fee565b60405180910390fd5b614183856138c6565b6141c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141b99061512e565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516141eb9190614d79565b60006040518083038185875af1925050503d8060008114614228576040519150601f19603f3d011682016040523d82523d6000602084013e61422d565b606091505b509150915061423d828286614249565b92505050949350505050565b60608315614259578290506142a9565b60008351111561426c5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016142a09190614f2c565b60405180910390fd5b9392505050565b50805460008255906000526020600020908101906142ce91906143e7565b50565b8280546142dd906155a7565b90600052602060002090601f0160209004810192826142ff5760008555614346565b82601f1061431857805160ff1916838001178555614346565b82800160010185558215614346579182015b8281111561434557825182559160200191906001019061432a565b5b50905061435391906143e7565b5090565b828054828255906000526020600020908101928215614393579160200282015b82811115614392578251825591602001919060010190614377565b5b5090506143a091906143e7565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156144005760008160009055506001016143e8565b5090565b6000614417614412846152a0565b61527b565b90508281526020810184848401111561442f57600080fd5b61443a848285615565565b509392505050565b6000614455614450846152d1565b61527b565b90508281526020810184848401111561446d57600080fd5b614478848285615565565b509392505050565b60008135905061448f81615ca3565b92915050565b6000815190506144a481615ca3565b92915050565b6000813590506144b981615cba565b92915050565b6000815190506144ce81615cba565b92915050565b6000813590506144e381615cd1565b92915050565b6000815190506144f881615cd1565b92915050565b600082601f83011261450f57600080fd5b813561451f848260208601614404565b91505092915050565b600082601f83011261453957600080fd5b8135614549848260208601614442565b91505092915050565b60008135905061456181615ce8565b92915050565b60008135905061457681615cff565b92915050565b60006020828403121561458e57600080fd5b600061459c84828501614480565b91505092915050565b6000602082840312156145b757600080fd5b60006145c584828501614495565b91505092915050565b600080604083850312156145e157600080fd5b60006145ef85828601614480565b925050602061460085828601614480565b9150509250929050565b60008060006060848603121561461f57600080fd5b600061462d86828701614480565b935050602061463e86828701614480565b925050604061464f86828701614552565b9150509250925092565b6000806000806080858703121561466f57600080fd5b600061467d87828801614480565b945050602061468e87828801614480565b935050604061469f87828801614552565b925050606085013567ffffffffffffffff8111156146bc57600080fd5b6146c8878288016144fe565b91505092959194509250565b600080604083850312156146e757600080fd5b60006146f585828601614480565b9250506020614706858286016144aa565b9150509250929050565b6000806040838503121561472357600080fd5b600061473185828601614480565b925050602061474285828601614552565b9150509250929050565b60006020828403121561475e57600080fd5b600061476c848285016144aa565b91505092915050565b60006020828403121561478757600080fd5b6000614795848285016144bf565b91505092915050565b6000602082840312156147b057600080fd5b60006147be848285016144d4565b91505092915050565b6000602082840312156147d957600080fd5b60006147e7848285016144e9565b91505092915050565b60006020828403121561480257600080fd5b600082013567ffffffffffffffff81111561481c57600080fd5b61482884828501614528565b91505092915050565b60006020828403121561484357600080fd5b600061485184828501614552565b91505092915050565b6000806040838503121561486d57600080fd5b600061487b85828601614552565b925050602061488c85828601614552565b9150509250929050565b600080600080600060a086880312156148ae57600080fd5b60006148bc88828901614552565b95505060206148cd88828901614552565b94505060406148de888289016144aa565b93505060606148ef88828901614552565b925050608061490088828901614552565b9150509295509295909350565b6000806040838503121561492057600080fd5b600061492e85828601614552565b925050602061493f85828601614567565b9150509250929050565b6149528161549c565b82525050565b614961816154ae565b82525050565b600061497282615302565b61497c8185615318565b935061498c818560208601615574565b6149958161576a565b840191505092915050565b60006149ab82615302565b6149b58185615329565b93506149c5818560208601615574565b80840191505092915050565b6149da8161551d565b82525050565b6149e981615541565b82525050565b60006149fa8261530d565b614a048185615334565b9350614a14818560208601615574565b614a1d8161576a565b840191505092915050565b6000614a338261530d565b614a3d8185615345565b9350614a4d818560208601615574565b80840191505092915050565b6000614a66602383615334565b9150614a718261577b565b604082019050919050565b6000614a89603083615334565b9150614a94826157ca565b604082019050919050565b6000614aac601a83615334565b9150614ab782615819565b602082019050919050565b6000614acf602683615334565b9150614ada82615842565b604082019050919050565b6000614af2600d83615334565b9150614afd82615891565b602082019050919050565b6000614b15602683615334565b9150614b20826158ba565b604082019050919050565b6000614b38602d83615334565b9150614b4382615909565b604082019050919050565b6000614b5b600983615334565b9150614b6682615958565b602082019050919050565b6000614b7e603183615334565b9150614b8982615981565b604082019050919050565b6000614ba1601c83615334565b9150614bac826159d0565b602082019050919050565b6000614bc4602083615334565b9150614bcf826159f9565b602082019050919050565b6000614be7601a83615334565b9150614bf282615a22565b602082019050919050565b6000614c0a602483615334565b9150614c1582615a4b565b604082019050919050565b6000614c2d602483615334565b9150614c3882615a9a565b604082019050919050565b6000614c50601b83615334565b9150614c5b82615ae9565b602082019050919050565b6000614c73601d83615334565b9150614c7e82615b12565b602082019050919050565b6000614c96602a83615334565b9150614ca182615b3b565b604082019050919050565b6000614cb9600a83615334565b9150614cc482615b8a565b602082019050919050565b6000614cdc600c83615334565b9150614ce782615bb3565b602082019050919050565b6000614cff602a83615334565b9150614d0a82615bdc565b604082019050919050565b6000614d22602183615334565b9150614d2d82615c2b565b604082019050919050565b6000614d45601f83615334565b9150614d5082615c7a565b602082019050919050565b614d6481615506565b82525050565b614d7381615510565b82525050565b6000614d8582846149a0565b915081905092915050565b6000614d9c8285614a28565b9150614da88284614a28565b91508190509392505050565b6000602082019050614dc96000830184614949565b92915050565b6000606082019050614de46000830186614949565b614df16020830185614949565b614dfe6040830184614d5b565b949350505050565b6000608082019050614e1b6000830187614949565b614e286020830186614949565b614e356040830185614d5b565b8181036060830152614e478184614967565b905095945050505050565b6000604082019050614e676000830185614949565b614e746020830184614d5b565b9392505050565b6000602082019050614e906000830184614958565b92915050565b6000604082019050614eab6000830185614958565b614eb86020830184614d6a565b9392505050565b6000606082019050614ed46000830186614958565b614ee16020830185614d6a565b614eee6040830184614d6a565b949350505050565b6000602082019050614f0b60008301846149d1565b92915050565b6000602082019050614f2660008301846149e0565b92915050565b60006020820190508181036000830152614f4681846149ef565b905092915050565b60006020820190508181036000830152614f6781614a59565b9050919050565b60006020820190508181036000830152614f8781614a7c565b9050919050565b60006020820190508181036000830152614fa781614a9f565b9050919050565b60006020820190508181036000830152614fc781614ac2565b9050919050565b60006020820190508181036000830152614fe781614ae5565b9050919050565b6000602082019050818103600083015261500781614b08565b9050919050565b6000602082019050818103600083015261502781614b2b565b9050919050565b6000602082019050818103600083015261504781614b4e565b9050919050565b6000602082019050818103600083015261506781614b71565b9050919050565b6000602082019050818103600083015261508781614b94565b9050919050565b600060208201905081810360008301526150a781614bb7565b9050919050565b600060208201905081810360008301526150c781614bda565b9050919050565b600060208201905081810360008301526150e781614bfd565b9050919050565b6000602082019050818103600083015261510781614c20565b9050919050565b6000602082019050818103600083015261512781614c43565b9050919050565b6000602082019050818103600083015261514781614c66565b9050919050565b6000602082019050818103600083015261516781614c89565b9050919050565b6000602082019050818103600083015261518781614cac565b9050919050565b600060208201905081810360008301526151a781614ccf565b9050919050565b600060208201905081810360008301526151c781614cf2565b9050919050565b600060208201905081810360008301526151e781614d15565b9050919050565b6000602082019050818103600083015261520781614d38565b9050919050565b60006020820190506152236000830184614d5b565b92915050565b600060208201905061523e6000830184614d6a565b92915050565b60006060820190506152596000830186614d6a565b6152666020830185614958565b6152736040830184614d6a565b949350505050565b6000615285615296565b905061529182826155d9565b919050565b6000604051905090565b600067ffffffffffffffff8211156152bb576152ba61573b565b5b6152c48261576a565b9050602081019050919050565b600067ffffffffffffffff8211156152ec576152eb61573b565b5b6152f58261576a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061535b82615506565b915061536683615506565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561539b5761539a6156ae565b5b828201905092915050565b60006153b182615510565b91506153bc83615510565b92508260ff038211156153d2576153d16156ae565b5b828201905092915050565b60006153e882615506565b91506153f383615506565b925082615403576154026156dd565b5b828204905092915050565b600061541982615506565b915061542483615506565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561545d5761545c6156ae565b5b828202905092915050565b600061547382615506565b915061547e83615506565b925082821015615491576154906156ae565b5b828203905092915050565b60006154a7826154e6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60006155288261552f565b9050919050565b600061553a826154e6565b9050919050565b600061554c82615553565b9050919050565b600061555e826154e6565b9050919050565b82818337600083830152505050565b60005b83811015615592578082015181840152602081019050615577565b838111156155a1576000848401525b50505050565b600060028204905060018216806155bf57607f821691505b602082108114156155d3576155d261570c565b5b50919050565b6155e28261576a565b810181811067ffffffffffffffff821117156156015761560061573b565b5b80604052505050565b600061561582615506565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615648576156476156ae565b5b600182019050919050565b600061565e82615510565b915060ff821415615672576156716156ae565b5b600182019050919050565b600061568882615506565b915061569383615506565b9250826156a3576156a26156dd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4349544144454c2068617320616c726561647920636c61696d6564206120504960008201527f4c4f540000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74206d696e74206d6f7265207468616e20352050494c4f5420696e60008201527f206f6e65207472616e73616374696f6e00000000000000000000000000000000602082015250565b7f4d75737420626520736f7665726569676e20746f206272696265000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d41585f534f5645524549474e00000000000000000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662070696c6f74206e667400000000000000000000000000000000000000602082015250565b7f4d41585f4c4556454c0000000000000000000000000000000000000000000000600082015250565b7f4349544144454c206d757374206265207374616b656420746f2045584f52444960008201527f554d20746f20636c61696d2050494c4f54000000000000000000000000000000602082015250565b7f50494c4f5420636c61696d2069732063757272656e746c79206f666600000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f536f7665726569676e2069732066756c6c792063686172676564000000000000600082015250565b7f4e6f7420656e6f756768206574682073656e742077697468207472616e73616360008201527f74696f6e00000000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e74206578636565646564206d61782070696c6f74206360008201527f6f756e7400000000000000000000000000000000000000000000000000000000602082015250565b7f50494c4f54206d696e742069732063757272656e746c79206f66660000000000600082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f436c61696d20776f756c6420657863656564206d617820737570706c79206f6660008201527f2070696c6f74206e667400000000000000000000000000000000000000000000602082015250565b7f4d41585f535550504c5900000000000000000000000000000000000000000000600082015250565b7f496e76616c6964204b554c540000000000000000000000000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f4d757374206f7665727468726f77206578697374696e6720736f76657265696760008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b615cac8161549c565b8114615cb757600080fd5b50565b615cc3816154ae565b8114615cce57600080fd5b50565b615cda816154ba565b8114615ce557600080fd5b50565b615cf181615506565b8114615cfc57600080fd5b50565b615d0881615510565b8114615d1357600080fd5b5056fea26469706673582212205afe8c13a039d65d6315967a2f24f4538eaa1ef4f7bd5f373dc0ea1870f9688d64736f6c63430008040033

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

000000000000000000000000927ce35c89ab901eefbc0675336ae4a31e658b0e000000000000000000000000fbf5a1f788e5f107d25fc0824ed5e105b90fe0270000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5969486e59375a35626766523833435771705869366b6a71434d4b6a386a71784768634d664270663478566d2f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _drakma (address): 0x927ce35c89ab901eEfBC0675336Ae4A31e658B0e
Arg [1] : _exordium (address): 0xFBF5a1F788E5F107D25Fc0824ed5E105b90fE027
Arg [2] : _baseTokenURI (string): https://gateway.pinata.cloud/ipfs/QmYiHnY7Z5bgfR83CWqpXi6kjqCMKj8jqxGhcMfBpf4xVm/

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 000000000000000000000000927ce35c89ab901eefbc0675336ae4a31e658b0e
Arg [1] : 000000000000000000000000fbf5a1f788e5f107d25fc0824ed5e105b90fe027
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [4] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [5] : 732f516d5969486e59375a35626766523833435771705869366b6a71434d4b6a
Arg [6] : 386a71784768634d664270663478566d2f000000000000000000000000000000


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.