ETH Price: $2,526.47 (+0.35%)

Bull Time (BULL_TIME)
 

Overview

TokenID

17

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
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:
BullTime

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : BullTime.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

import "hardhat/console.sol";

contract BullTime is Ownable, ERC721A, ReentrancyGuard {
    using Strings for uint256;

    enum MintStatus {
        CLOSED,
        GENESIS,
        PRESALE,
        PUBLIC
    }

    string private _baseTokenURI;
    string internal _unrevealedURI;

    uint256 public constant MAX_SUPPLY = 3433;

    uint256 public constant GIFT_LIMIT = 100;
    uint256 public constant GENESIS_LIMIT = 100;
    uint256 public constant PRESALE_LIMIT = 2000;

    uint256 public constant GENESIS_PER_ADDRESS = 1;
    uint256 public constant GIFT_PER_ADDRESS = 1;
    // presale and public sale per address limitation
    uint256 public constant SALE_PER_ADDRESS = 3;

    uint256 public constant GENESIS_PRICE = 0.19 ether;
    uint256 public constant PRESALE_PRICE = 0.088 ether;
    uint256 public constant PUBLIC_PRICE = 0.098 ether;

    mapping(address => bool) public giftedList;

    mapping(address => bool) public genesisList;
    mapping(address => uint256) public genesisListPurchases;

    mapping(address => bool) public presaleList;
    mapping(address => uint256) public presaleListPurchases;

    mapping(address => uint256) public publicListPurchases;

    uint256 public giftedAmount;

    uint256 public genesisAmountMinted;
    uint256 public preSaleAmountMinted;
    uint256 public publicAmountMinted;

    bool public revealed;

    MintStatus public mintStatus = MintStatus.CLOSED;

    address private Kaddr = 0x8C03484009250Ea8a44CC0190ACbbdD6b7c7124e; // 5%
    address private Daddr = 0x0e9C942b21e173FE16EbF196D04C37ac37312f21; // 5%
    address private Laddr = 0x0F2Cc53B44DCAA0618772df7F75e8e979885b192; // 5%
    address private Taddr = 0x01F40ca319868e5c3eAE40C53d1962B22F8F9fAC; // 5%
    address private DAaddr = 0xc790E747F6E333c9845143A1e823f6013e36293f; // 5%
    address private Zaddr = 0x0cA9128306B869fb405D29800B397D2829016c04; // 14%
    address private Caddr = 0xb54Ca7687eF3E6FdE424c797C968b47b9fC408f4; // 1.5%
    address private Iaddr = 0xfa11b64407Cda9bD62EB8264aD7D888927A65cf4; // 0.5%
    address private Aaddr = 0x1D37BB037c057D452B6903F8F661C7eA4E13a145; // 0.5%

    constructor(
        string memory hiddenUri
    ) ERC721A("Bull Time", "BULL_TIME") {
        _unrevealedURI = hiddenUri;
    }

    modifier canBuy(uint256 quantity) {
        require(quantity >= 0, "WRONG_QUANTITY");
        require(mintStatus != MintStatus.CLOSED, "CONTRACT_LOCKED");
        require(totalMinted() + quantity <= MAX_SUPPLY, "TOKENS_EXPIRED");

        // check restrictions
        require(walletWhitelisted(msg.sender), "NOT_WHITELISTED");
        require(!walletPerLimitExpired(msg.sender, quantity), "EXPIRED_PER_WALLET_TRANSACTION");
        require(!supplyLimitExpired(quantity), "SUPPLY_LIMIT_EXPIRED");

        uint256 price = activePrice();
        require(msg.value >= price * quantity, "INSUFFICIENT_VALUE");
        _;
    }

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

    function _addToList(address[] calldata entries, mapping(address => bool) storage list) private {
        for (uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            require(!list[entry], "DUPLICATE_ENTRY");
            list[entry] = true;
        }
    }

    function _removeFromList(address[] calldata entries, mapping(address => bool) storage list) private {
        for (uint256 i = 0; i < entries.length; i++) {
            address entry = entries[i];
            require(entry != address(0), "NULL_ADDRESS");
            list[entry] = false;
        }
    }

    // --- gift
    function freeMint(uint256 quantity) external {
        require(giftedList[msg.sender], "NOT_WHITELISTED");
        require(quantity <= GIFT_PER_ADDRESS, "ONLY_ONE_GIFT");
        require(giftedAmount + quantity <= GIFT_LIMIT, "SUPPLY_LIMIT_EXPIRED");
        require(totalMinted() + quantity <= MAX_SUPPLY, "TOKENS_EXPIRED");

        giftedAmount += quantity;

        delete giftedList[msg.sender];

        _safeMint(msg.sender, quantity);
    }

    function addToGiftList(address[] calldata entries) external onlyOwner {
        _addToList(entries, giftedList);
    }

    function removeFromGiftList(address[] calldata entries) external onlyOwner {
        _removeFromList(entries, giftedList);
    }

    // --- genesis
    function genesisMint(uint256 quantity) external payable canBuy(quantity) {
        genesisAmountMinted += quantity;
        genesisListPurchases[msg.sender] += quantity;

        _safeMint(msg.sender, quantity);
    }

    function addToGenesisList(address[] calldata entries) external onlyOwner {
        _addToList(entries, genesisList);
    }

    function removeFromGenesisList(address[] calldata entries) external onlyOwner {
        _removeFromList(entries, genesisList);
    }

    // --- presale
    function preSaleMint(uint256 quantity) external payable canBuy(quantity) {
        preSaleAmountMinted += quantity;
        presaleListPurchases[msg.sender] += quantity;

        _safeMint(msg.sender, quantity);
    }

    function addToPresaleList(address[] calldata entries) external onlyOwner {
        _addToList(entries, presaleList);
    }

    function removeFromPresaleList(address[] calldata entries) external onlyOwner {
        _removeFromList(entries, presaleList);
    }

    // --- public mint
    function publicMint(uint256 quantity) external payable canBuy(quantity) {
        publicAmountMinted += quantity;
        publicListPurchases[msg.sender] += quantity;

        _safeMint(msg.sender, quantity);
    }

    // erc721 and ownable specific
    function setBaseURI(string calldata baseURI) external onlyOwner {
        _baseTokenURI = baseURI;
    }

    function reveal() external onlyOwner {
        revealed = true;
    }

    function setUnrevealedURI(string calldata unrevealedURI) external onlyOwner {
        _unrevealedURI = unrevealedURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override(ERC721A) returns (string memory) {
        if (!revealed) {
            return _unrevealedURI;
        }

        string memory baseURI = _baseURI();
        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }

    function withdraw() external onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        uint256 fivePercent = balance * 5 / 100;

        payable(Kaddr).transfer(fivePercent);
        payable(Daddr).transfer(fivePercent);
        payable(Laddr).transfer(fivePercent);
        payable(Taddr).transfer(fivePercent);
        payable(DAaddr).transfer(fivePercent);

        payable(Zaddr).transfer(balance * 14 / 100);
        payable(Caddr).transfer(balance * 15 / 1000);
        payable(Iaddr).transfer(fivePercent / 10);
        payable(Aaddr).transfer(fivePercent / 10);

        payable(msg.sender).transfer(address(this).balance);
    }

    function withdrawGenesis() external onlyOwner nonReentrant {
        payable(msg.sender).transfer(address(this).balance);
    }

    function closeContract() external onlyOwner {
        mintStatus = MintStatus.CLOSED;
    }

    function enableGenesisMint() external onlyOwner {
        mintStatus = MintStatus.GENESIS;
    }

    function enablePresaleMint() external onlyOwner {
        mintStatus = MintStatus.PRESALE;
    }

    function enablePublicMint() external onlyOwner {
        mintStatus = MintStatus.PUBLIC;
    }
    // helpers
    function genesisActive() public view returns (bool) {
        return mintStatus == MintStatus.GENESIS;
    }

    function preSaleActive() public view returns (bool) {
        return mintStatus == MintStatus.PRESALE;
    }

    function publicSaleActive() public view returns (bool) {
        return mintStatus == MintStatus.PUBLIC;
    }

    function activePrice() public view returns (uint256) {
        return genesisActive() ? GENESIS_PRICE
        : preSaleActive()
        ? PRESALE_PRICE : PUBLIC_PRICE;
    }

    function walletWhitelisted(address sender) public view returns (bool) {
        return genesisActive() ? genesisList[sender] : preSaleActive() ? presaleList[sender] : true;
    }

    function walletPerLimitExpired(address sender, uint256 number) public view returns (bool) {
        uint256 addressLimit = genesisActive() ? GENESIS_PER_ADDRESS : SALE_PER_ADDRESS;
        mapping(address => uint256) storage purchaseList = genesisActive()
        ? genesisListPurchases : preSaleActive()
        ? presaleListPurchases : publicListPurchases;

        return purchaseList[sender] + number > addressLimit;
    }

    function supplyLimitExpired(uint256 number) public view returns (bool) {
        uint256 supplyLimit = genesisActive() ? GENESIS_LIMIT
        : preSaleActive()
        ? PRESALE_LIMIT : MAX_SUPPLY;

        uint256 mintAmount = genesisActive() ? genesisAmountMinted
        : preSaleActive()
        ? preSaleAmountMinted : publicAmountMinted;

        return mintAmount + number > supplyLimit;
    }

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

    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }
}

File 2 of 15 : 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 3 of 15 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 4 of 15 : 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 5 of 15 : 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 6 of 15 : 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 15 : 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 8 of 15 : 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 9 of 15 : 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 10 of 15 : 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 11 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 15 : 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 13 of 15 : 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 14 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

File 15 of 15 : 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"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"hiddenUri","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":"GENESIS_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GENESIS_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GENESIS_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIFT_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIFT_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToGenesisList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToGiftList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableGenesisMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePresaleMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesisActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"genesisAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"genesisList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"genesisListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"genesisMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"giftedList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"enum BullTime.MintStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicAmountMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicListPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromGenesisList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromGiftList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"entries","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"unrevealedURI","type":"string"}],"name":"setUnrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"}],"name":"supplyLimitExpired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"number","type":"uint256"}],"name":"walletPerLimitExpired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"walletWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawGenesis","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000601660016101000a81548160ff021916908360038111156200002d576200002c620007b1565b5b0217905550738c03484009250ea8a44cc0190acbbdd6b7c7124e601660026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730e9c942b21e173fe16ebf196d04c37ac37312f21601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730f2cc53b44dcaa0618772df7f75e8e979885b192601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507301f40ca319868e5c3eae40c53d1962b22f8f9fac601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073c790e747f6e333c9845143a1e823f6013e36293f601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730ca9128306b869fb405d29800b397d2829016c04601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b54ca7687ef3e6fde424c797c968b47b9fc408f4601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fa11b64407cda9bd62eb8264ad7d888927a65cf4601d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731d37bb037c057d452b6903f8f661c7ea4e13a145601e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200033c57600080fd5b506040516200649e3803806200649e83398181016040528101906200036291906200065f565b6040518060400160405280600981526020017f42756c6c2054696d6500000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f42554c4c5f54494d450000000000000000000000000000000000000000000000815250620003ee620003e26200046060201b60201c565b6200046860201b60201c565b81600390805190602001906200040692919062000531565b5080600490805190602001906200041f92919062000531565b50620004306200052c60201b60201c565b6001819055505050600160098190555080600b90805190602001906200045892919062000531565b505062000863565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600090565b8280546200053f9062000745565b90600052602060002090601f016020900481019282620005635760008555620005af565b82601f106200057e57805160ff1916838001178555620005af565b82800160010185558215620005af579182015b82811115620005ae57825182559160200191906001019062000591565b5b509050620005be9190620005c2565b5090565b5b80821115620005dd576000816000905550600101620005c3565b5090565b6000620005f8620005f284620006d9565b620006b0565b90508281526020810184848401111562000617576200061662000843565b5b620006248482856200070f565b509392505050565b600082601f8301126200064457620006436200083e565b5b815162000656848260208601620005e1565b91505092915050565b6000602082840312156200067857620006776200084d565b5b600082015167ffffffffffffffff81111562000699576200069862000848565b5b620006a7848285016200062c565b91505092915050565b6000620006bc620006cf565b9050620006ca82826200077b565b919050565b6000604051905090565b600067ffffffffffffffff821115620006f757620006f66200080f565b5b620007028262000852565b9050602081019050919050565b60005b838110156200072f57808201518184015260208101905062000712565b838111156200073f576000848401525b50505050565b600060028204905060018216806200075e57607f821691505b60208210811415620007755762000774620007e0565b5b50919050565b620007868262000852565b810181811067ffffffffffffffff82111715620007a857620007a76200080f565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b615c2b80620008736000396000f3fe6080604052600436106103e45760003560e01c80637c928fe911610208578063b88d4fde11610118578063d62f3b1c116100ab578063f2fde38b1161007a578063f2fde38b14610e77578063f3b9e96214610ea0578063fa8803ed14610edd578063fb5d96c314610f1a578063fe2c7fee14610f36576103e4565b8063d62f3b1c14610dbd578063d6c309b214610dd4578063dc33e68114610dfd578063e985e9c514610e3a576103e4565b8063cd6bf130116100e7578063cd6bf13014610d01578063cfaab83814610d2a578063d15e9a4514610d55578063d46d35ad14610d80576103e4565b8063b88d4fde14610c45578063b9fa49b314610c6e578063bc8893b414610c99578063c87b56dd14610cc4576103e4565b80639da3f8fd1161019b578063a475b5dd1161016a578063a475b5dd14610b72578063a7fe9c8f14610b89578063a9aaaf5614610bb4578063b179e06014610bf1578063b85f3fb814610c1a576103e4565b80639da3f8fd14610ac8578063a22cb46514610af3578063a2309ff814610b1c578063a2c6413614610b47576103e4565b8063940f1ada116101d7578063940f1ada14610a0c578063953dafe014610a3757806395d89b4114610a745780639948ded514610a9f576103e4565b80637c928fe91461096257806380f33e4f1461098b57806384494708146109b65780638da5cb5b146109e1576103e4565b806341603eba11610303578063610be654116102965780637023771811610265578063702377181461089e57806370a08231146108c9578063715018a6146109065780637204a3c91461091d5780637835c63514610946576103e4565b8063610be654146107f4578063611f3f101461080b57806362dc6e21146108365780636352211e14610861576103e4565b806351830227116102d2578063518302271461074c57806352a303841461077757806355f804b3146107a257806360e51a39146107cb576103e4565b806341603eba146106a457806342842e0e146106bb57806343463394146106e457806345ddf4d01461070f576103e4565b80631b57190e1161037b5780632db115441161034a5780632db1154414610609578063310e92a51461062557806332cb6b0c146106625780633ccfd60b1461068d576103e4565b80631b57190e146105875780631debb685146105b257806323b872dd146105c957806329cf3544146105f2576103e4565b806312fb92e0116103b757806312fb92e0146104b757806318160ddd146104f45780631a61985f1461051f5780631aee3f911461055c576103e4565b806301ffc9a7146103e957806306fdde0314610426578063081812fc14610451578063095ea7b31461048e575b600080fd5b3480156103f557600080fd5b50610410600480360381019061040b9190614e2c565b610f5f565b60405161041d919061525f565b60405180910390f35b34801561043257600080fd5b5061043b611041565b6040516104489190615295565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614ed3565b6110d3565b60405161048591906151f8565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190614d9f565b61114f565b005b3480156104c357600080fd5b506104de60048036038101906104d99190614c1c565b611254565b6040516104eb919061525f565b60405180910390f35b34801561050057600080fd5b50610509611274565b6040516105169190615457565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190614c1c565b61128b565b604051610553919061525f565b60405180910390f35b34801561056857600080fd5b50610571611354565b60405161057e9190615457565b60405180910390f35b34801561059357600080fd5b5061059c61135a565b6040516105a99190615457565b60405180910390f35b3480156105be57600080fd5b506105c7611360565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190614c89565b611409565b005b3480156105fe57600080fd5b50610607611419565b005b610623600480360381019061061e9190614ed3565b611534565b005b34801561063157600080fd5b5061064c60048036038101906106479190614c1c565b6117fa565b604051610659919061525f565b60405180910390f35b34801561066e57600080fd5b5061067761181a565b6040516106849190615457565b60405180910390f35b34801561069957600080fd5b506106a2611820565b005b3480156106b057600080fd5b506106b9611d59565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190614c89565b611e02565b005b3480156106f057600080fd5b506106f9611e22565b6040516107069190615457565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190614d9f565b611e27565b604051610743919061525f565b60405180910390f35b34801561075857600080fd5b50610761611ec6565b60405161076e919061525f565b60405180910390f35b34801561078357600080fd5b5061078c611ed9565b6040516107999190615457565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190614e86565b611f1f565b005b3480156107d757600080fd5b506107f260048036038101906107ed9190614ddf565b611fb1565b005b34801561080057600080fd5b5061080961203d565b005b34801561081757600080fd5b506108206120e6565b60405161082d9190615457565b60405180910390f35b34801561084257600080fd5b5061084b6120f2565b6040516108589190615457565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190614ed3565b6120fe565b60405161089591906151f8565b60405180910390f35b3480156108aa57600080fd5b506108b3612114565b6040516108c09190615457565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb9190614c1c565b61211a565b6040516108fd9190615457565b60405180910390f35b34801561091257600080fd5b5061091b6121ea565b005b34801561092957600080fd5b50610944600480360381019061093f9190614ddf565b612272565b005b610960600480360381019061095b9190614ed3565b6122fe565b005b34801561096e57600080fd5b5061098960048036038101906109849190614ed3565b6125c4565b005b34801561099757600080fd5b506109a06127b1565b6040516109ad9190615457565b60405180910390f35b3480156109c257600080fd5b506109cb6127b6565b6040516109d8919061525f565b60405180910390f35b3480156109ed57600080fd5b506109f66127f4565b604051610a0391906151f8565b60405180910390f35b348015610a1857600080fd5b50610a2161281d565b604051610a2e9190615457565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614c1c565b612823565b604051610a6b9190615457565b60405180910390f35b348015610a8057600080fd5b50610a8961283b565b604051610a969190615295565b60405180910390f35b348015610aab57600080fd5b50610ac66004803603810190610ac19190614ddf565b6128cd565b005b348015610ad457600080fd5b50610add612959565b604051610aea919061527a565b60405180910390f35b348015610aff57600080fd5b50610b1a6004803603810190610b159190614d5f565b61296c565b005b348015610b2857600080fd5b50610b31612ae4565b604051610b3e9190615457565b60405180910390f35b348015610b5357600080fd5b50610b5c612af3565b604051610b699190615457565b60405180910390f35b348015610b7e57600080fd5b50610b87612af8565b005b348015610b9557600080fd5b50610b9e612b91565b604051610bab9190615457565b60405180910390f35b348015610bc057600080fd5b50610bdb6004803603810190610bd69190614c1c565b612b96565b604051610be89190615457565b60405180910390f35b348015610bfd57600080fd5b50610c186004803603810190610c139190614ddf565b612bae565b005b348015610c2657600080fd5b50610c2f612c3a565b604051610c3c9190615457565b60405180910390f35b348015610c5157600080fd5b50610c6c6004803603810190610c679190614cdc565b612c46565b005b348015610c7a57600080fd5b50610c83612cbe565b604051610c90919061525f565b60405180910390f35b348015610ca557600080fd5b50610cae612cfc565b604051610cbb919061525f565b60405180910390f35b348015610cd057600080fd5b50610ceb6004803603810190610ce69190614ed3565b612d39565b604051610cf89190615295565b60405180910390f35b348015610d0d57600080fd5b50610d286004803603810190610d239190614ddf565b612e20565b005b348015610d3657600080fd5b50610d3f612eac565b604051610d4c9190615457565b60405180910390f35b348015610d6157600080fd5b50610d6a612eb2565b604051610d779190615457565b60405180910390f35b348015610d8c57600080fd5b50610da76004803603810190610da29190614c1c565b612eb7565b604051610db49190615457565b60405180910390f35b348015610dc957600080fd5b50610dd2612ecf565b005b348015610de057600080fd5b50610dfb6004803603810190610df69190614ddf565b612f78565b005b348015610e0957600080fd5b50610e246004803603810190610e1f9190614c1c565b613004565b604051610e319190615457565b60405180910390f35b348015610e4657600080fd5b50610e616004803603810190610e5c9190614c49565b613016565b604051610e6e919061525f565b60405180910390f35b348015610e8357600080fd5b50610e9e6004803603810190610e999190614c1c565b6130aa565b005b348015610eac57600080fd5b50610ec76004803603810190610ec29190614c1c565b6131a2565b604051610ed4919061525f565b60405180910390f35b348015610ee957600080fd5b50610f046004803603810190610eff9190614ed3565b6131c2565b604051610f11919061525f565b60405180910390f35b610f346004803603810190610f2f9190614ed3565b61323b565b005b348015610f4257600080fd5b50610f5d6004803603810190610f589190614e86565b613501565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061102a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061103a575061103982613593565b5b9050919050565b606060038054611050906156fb565b80601f016020809104026020016040519081016040528092919081815260200182805461107c906156fb565b80156110c95780601f1061109e576101008083540402835291602001916110c9565b820191906000526020600020905b8154815290600101906020018083116110ac57829003601f168201915b5050505050905090565b60006110de826135fd565b611114576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061115a826120fe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111c2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166111e161364b565b73ffffffffffffffffffffffffffffffffffffffff16146112445761120d8161120861364b565b613016565b611243576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b61124f838383613653565b505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600061127e613705565b6002546001540303905090565b6000611295612cbe565b6112ff576112a16127b6565b6112ac5760016112fa565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61134d565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b9050919050565b6107d081565b60125481565b61136861364b565b73ffffffffffffffffffffffffffffffffffffffff166113866127f4565b73ffffffffffffffffffffffffffffffffffffffff16146113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390615397565b60405180910390fd5b6001601660016101000a81548160ff0219169083600381111561140257611401615836565b5b0217905550565b61141483838361370a565b505050565b61142161364b565b73ffffffffffffffffffffffffffffffffffffffff1661143f6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90615397565b60405180910390fd5b600260095414156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d2906153f7565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611529573d6000803e3d6000fd5b506001600981905550565b806000811015611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090615377565b60405180910390fd5b6000600381111561158d5761158c615836565b5b601660019054906101000a900460ff1660038111156115af576115ae615836565b5b14156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e7906153d7565b60405180910390fd5b610d69816115fc612ae4565b611606919061550b565b1115611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e906153b7565b60405180910390fd5b6116503361128b565b61168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168690615437565b60405180910390fd5b6116993382611e27565b156116d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d090615417565b60405180910390fd5b6116e2816131c2565b15611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990615337565b60405180910390fd5b600061172c611ed9565b9050818161173a9190615592565b34101561177c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177390615357565b60405180910390fd5b826015600082825461178e919061550b565b9250508190555082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e4919061550b565b925050819055506117f53384613bc0565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b610d6981565b61182861364b565b73ffffffffffffffffffffffffffffffffffffffff166118466127f4565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390615397565b60405180910390fd5b600260095414156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d9906153f7565b60405180910390fd5b60026009819055506000479050600060646005836119009190615592565b61190a9190615561565b9050601660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611974573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156119dd573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611a46573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611aaf573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611b18573d6000803e3d6000fd5b50601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600e85611b649190615592565b611b6e9190615561565b9081150290604051600060405180830381858888f19350505050158015611b99573d6000803e3d6000fd5b50601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8600f85611be69190615592565b611bf09190615561565b9081150290604051600060405180830381858888f19350505050158015611c1b573d6000803e3d6000fd5b50601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600a83611c659190615561565b9081150290604051600060405180830381858888f19350505050158015611c90573d6000803e3d6000fd5b50601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600a83611cda9190615561565b9081150290604051600060405180830381858888f19350505050158015611d05573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611d4c573d6000803e3d6000fd5b5050506001600981905550565b611d6161364b565b73ffffffffffffffffffffffffffffffffffffffff16611d7f6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90615397565b60405180910390fd5b6002601660016101000a81548160ff02191690836003811115611dfb57611dfa615836565b5b0217905550565b611e1d83838360405180602001604052806000815250612c46565b505050565b606481565b600080611e32612cbe565b611e3d576003611e40565b60015b90506000611e4c612cbe565b611e6b57611e586127b6565b611e63576011611e66565b60105b611e6e565b600e5b905081848260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ebb919061550b565b119250505092915050565b601660009054906101000a900460ff1681565b6000611ee3612cbe565b611f1057611eef6127b6565b611f015767015c2a7b13fd0000611f0b565b670138a388a43c00005b611f1a565b6702a303fe4b5300005b905090565b611f2761364b565b73ffffffffffffffffffffffffffffffffffffffff16611f456127f4565b73ffffffffffffffffffffffffffffffffffffffff1614611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290615397565b60405180910390fd5b8181600a9190611fac9291906149b1565b505050565b611fb961364b565b73ffffffffffffffffffffffffffffffffffffffff16611fd76127f4565b73ffffffffffffffffffffffffffffffffffffffff161461202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490615397565b60405180910390fd5b6120398282600d613bde565b5050565b61204561364b565b73ffffffffffffffffffffffffffffffffffffffff166120636127f4565b73ffffffffffffffffffffffffffffffffffffffff16146120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b090615397565b60405180910390fd5b6000601660016101000a81548160ff021916908360038111156120df576120de615836565b5b0217905550565b67015c2a7b13fd000081565b670138a388a43c000081565b600061210982613d85565b600001519050919050565b60145481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612182576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6121f261364b565b73ffffffffffffffffffffffffffffffffffffffff166122106127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225d90615397565b60405180910390fd5b6122706000614010565b565b61227a61364b565b73ffffffffffffffffffffffffffffffffffffffff166122986127f4565b73ffffffffffffffffffffffffffffffffffffffff16146122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e590615397565b60405180910390fd5b6122fa8282600f613bde565b5050565b806000811015612343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233a90615377565b60405180910390fd5b6000600381111561235757612356615836565b5b601660019054906101000a900460ff16600381111561237957612378615836565b5b14156123ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b1906153d7565b60405180910390fd5b610d69816123c6612ae4565b6123d0919061550b565b1115612411576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612408906153b7565b60405180910390fd5b61241a3361128b565b612459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245090615437565b60405180910390fd5b6124633382611e27565b156124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90615417565b60405180910390fd5b6124ac816131c2565b156124ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e390615337565b60405180910390fd5b60006124f6611ed9565b905081816125049190615592565b341015612546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253d90615357565b60405180910390fd5b8260146000828254612558919061550b565b9250508190555082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ae919061550b565b925050819055506125bf3384613bc0565b505050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264790615437565b60405180910390fd5b6001811115612694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268b906152d7565b60405180910390fd5b6064816012546126a4919061550b565b11156126e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dc90615337565b60405180910390fd5b610d69816126f1612ae4565b6126fb919061550b565b111561273c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612733906153b7565b60405180910390fd5b806012600082825461274e919061550b565b92505081905550600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690556127ae3382613bc0565b50565b606481565b6000600260038111156127cc576127cb615836565b5b601660019054906101000a900460ff1660038111156127ee576127ed615836565b5b14905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b60116020528060005260406000206000915090505481565b60606004805461284a906156fb565b80601f0160208091040260200160405190810160405280929190818152602001828054612876906156fb565b80156128c35780601f10612898576101008083540402835291602001916128c3565b820191906000526020600020905b8154815290600101906020018083116128a657829003601f168201915b5050505050905090565b6128d561364b565b73ffffffffffffffffffffffffffffffffffffffff166128f36127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294090615397565b60405180910390fd5b6129558282600c6140d4565b5050565b601660019054906101000a900460ff1681565b61297461364b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006129e661364b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612a9361364b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ad8919061525f565b60405180910390a35050565b6000612aee6141ef565b905090565b600181565b612b0061364b565b73ffffffffffffffffffffffffffffffffffffffff16612b1e6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6b90615397565b60405180910390fd5b6001601660006101000a81548160ff021916908315150217905550565b600381565b600e6020528060005260406000206000915090505481565b612bb661364b565b73ffffffffffffffffffffffffffffffffffffffff16612bd46127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2190615397565b60405180910390fd5b612c368282600f6140d4565b5050565b6702a303fe4b53000081565b612c5184848461370a565b612c708373ffffffffffffffffffffffffffffffffffffffff16614202565b15612cb857612c8184848484614225565b612cb7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600060016003811115612cd457612cd3615836565b5b601660019054906101000a900460ff166003811115612cf657612cf5615836565b5b14905090565b6000600380811115612d1157612d10615836565b5b601660019054906101000a900460ff166003811115612d3357612d32615836565b5b14905090565b6060601660009054906101000a900460ff16612de157600b8054612d5c906156fb565b80601f0160208091040260200160405190810160405280929190818152602001828054612d88906156fb565b8015612dd55780601f10612daa57610100808354040283529160200191612dd5565b820191906000526020600020905b815481529060010190602001808311612db857829003601f168201915b50505050509050612e1b565b6000612deb614385565b905080612df784614417565b604051602001612e089291906151c9565b6040516020818303038152906040529150505b919050565b612e2861364b565b73ffffffffffffffffffffffffffffffffffffffff16612e466127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9390615397565b60405180910390fd5b612ea88282600c613bde565b5050565b60135481565b600181565b60106020528060005260406000206000915090505481565b612ed761364b565b73ffffffffffffffffffffffffffffffffffffffff16612ef56127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4290615397565b60405180910390fd5b6003601660016101000a81548160ff02191690836003811115612f7157612f70615836565b5b0217905550565b612f8061364b565b73ffffffffffffffffffffffffffffffffffffffff16612f9e6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612feb90615397565b60405180910390fd5b6130008282600d6140d4565b5050565b600061300f82614578565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6130b261364b565b73ffffffffffffffffffffffffffffffffffffffff166130d06127f4565b73ffffffffffffffffffffffffffffffffffffffff1614613126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311d90615397565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318d906152f7565b60405180910390fd5b61319f81614010565b50565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000806131cd612cbe565b6131ee576131d96127b6565b6131e557610d696131e9565b6107d05b6131f1565b60645b905060006131fd612cbe565b61321e576132096127b6565b61321557601554613219565b6014545b613222565b6013545b9050818482613231919061550b565b1192505050919050565b806000811015613280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327790615377565b60405180910390fd5b6000600381111561329457613293615836565b5b601660019054906101000a900460ff1660038111156132b6576132b5615836565b5b14156132f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ee906153d7565b60405180910390fd5b610d6981613303612ae4565b61330d919061550b565b111561334e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613345906153b7565b60405180910390fd5b6133573361128b565b613396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338d90615437565b60405180910390fd5b6133a03382611e27565b156133e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d790615417565b60405180910390fd5b6133e9816131c2565b15613429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342090615337565b60405180910390fd5b6000613433611ed9565b905081816134419190615592565b341015613483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347a90615357565b60405180910390fd5b8260136000828254613495919061550b565b9250508190555082600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134eb919061550b565b925050819055506134fc3384613bc0565b505050565b61350961364b565b73ffffffffffffffffffffffffffffffffffffffff166135276127f4565b73ffffffffffffffffffffffffffffffffffffffff161461357d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357490615397565b60405180910390fd5b8181600b919061358e9291906149b1565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081613608613705565b11158015613617575060015482105b8015613644575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061371582613d85565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613780576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166137a161364b565b73ffffffffffffffffffffffffffffffffffffffff1614806137d057506137cf856137ca61364b565b613016565b5b8061381557506137de61364b565b73ffffffffffffffffffffffffffffffffffffffff166137fd846110d3565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061384e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156138b5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138c285858560016145e2565b6138ce60008487613653565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613b4e576001548214613b4d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613bb985858560016145e8565b5050505050565b613bda8282604051806020016040528060008152506145ee565b5050565b60005b83839050811015613d7f576000848483818110613c0157613c00615894565b5b9050602002016020810190613c169190614c1c565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c7f906152b7565b60405180910390fd5b8260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d0b90615317565b60405180910390fd5b60018360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080613d779061575e565b915050613be1565b50505050565b613d8d614a37565b600082905080613d9b613705565b11613fd957600154811015613fd8576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613fd657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613eba57809250505061400b565b5b600115613fd557818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613fd057809250505061400b565b613ebb565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b838390508110156141e95760008484838181106140f7576140f6615894565b5b905060200201602081019061410c9190614c1c565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561417e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614175906152b7565b60405180910390fd5b60008360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505080806141e19061575e565b9150506140d7565b50505050565b60006141f9613705565b60015403905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261424b61364b565b8786866040518563ffffffff1660e01b815260040161426d9493929190615213565b602060405180830381600087803b15801561428757600080fd5b505af19250505080156142b857506040513d601f19601f820116820180604052508101906142b59190614e59565b60015b614332573d80600081146142e8576040519150601f19603f3d011682016040523d82523d6000602084013e6142ed565b606091505b5060008151141561432a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054614394906156fb565b80601f01602080910402602001604051908101604052809291908181526020018280546143c0906156fb565b801561440d5780601f106143e25761010080835404028352916020019161440d565b820191906000526020600020905b8154815290600101906020018083116143f057829003601f168201915b5050505050905090565b6060600082141561445f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614573565b600082905060005b6000821461449157808061447a9061575e565b915050600a8261448a9190615561565b9150614467565b60008167ffffffffffffffff8111156144ad576144ac6158c3565b5b6040519080825280601f01601f1916602001820160405280156144df5781602001600182028036833780820191505090505b5090505b6000851461456c576001826144f891906155ec565b9150600a8561450791906157a7565b6030614513919061550b565b60f81b81838151811061452957614528615894565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856145659190615561565b94506144e3565b8093505050505b919050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561465c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415614697576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6146a460008583866145e2565b82600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506148658673ffffffffffffffffffffffffffffffffffffffff16614202565b1561492a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46148da6000878480600101955087614225565b614910576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061486b57826001541461492557600080fd5b614995565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061492b575b8160018190555050506149ab60008583866145e8565b50505050565b8280546149bd906156fb565b90600052602060002090601f0160209004810192826149df5760008555614a26565b82601f106149f857803560ff1916838001178555614a26565b82800160010185558215614a26579182015b82811115614a25578235825591602001919060010190614a0a565b5b509050614a339190614a7a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115614a93576000816000905550600101614a7b565b5090565b6000614aaa614aa584615497565b615472565b905082815260208101848484011115614ac657614ac5615901565b5b614ad18482856156b9565b509392505050565b600081359050614ae881615b99565b92915050565b60008083601f840112614b0457614b036158f7565b5b8235905067ffffffffffffffff811115614b2157614b206158f2565b5b602083019150836020820283011115614b3d57614b3c6158fc565b5b9250929050565b600081359050614b5381615bb0565b92915050565b600081359050614b6881615bc7565b92915050565b600081519050614b7d81615bc7565b92915050565b600082601f830112614b9857614b976158f7565b5b8135614ba8848260208601614a97565b91505092915050565b60008083601f840112614bc757614bc66158f7565b5b8235905067ffffffffffffffff811115614be457614be36158f2565b5b602083019150836001820283011115614c0057614bff6158fc565b5b9250929050565b600081359050614c1681615bde565b92915050565b600060208284031215614c3257614c3161590b565b5b6000614c4084828501614ad9565b91505092915050565b60008060408385031215614c6057614c5f61590b565b5b6000614c6e85828601614ad9565b9250506020614c7f85828601614ad9565b9150509250929050565b600080600060608486031215614ca257614ca161590b565b5b6000614cb086828701614ad9565b9350506020614cc186828701614ad9565b9250506040614cd286828701614c07565b9150509250925092565b60008060008060808587031215614cf657614cf561590b565b5b6000614d0487828801614ad9565b9450506020614d1587828801614ad9565b9350506040614d2687828801614c07565b925050606085013567ffffffffffffffff811115614d4757614d46615906565b5b614d5387828801614b83565b91505092959194509250565b60008060408385031215614d7657614d7561590b565b5b6000614d8485828601614ad9565b9250506020614d9585828601614b44565b9150509250929050565b60008060408385031215614db657614db561590b565b5b6000614dc485828601614ad9565b9250506020614dd585828601614c07565b9150509250929050565b60008060208385031215614df657614df561590b565b5b600083013567ffffffffffffffff811115614e1457614e13615906565b5b614e2085828601614aee565b92509250509250929050565b600060208284031215614e4257614e4161590b565b5b6000614e5084828501614b59565b91505092915050565b600060208284031215614e6f57614e6e61590b565b5b6000614e7d84828501614b6e565b91505092915050565b60008060208385031215614e9d57614e9c61590b565b5b600083013567ffffffffffffffff811115614ebb57614eba615906565b5b614ec785828601614bb1565b92509250509250929050565b600060208284031215614ee957614ee861590b565b5b6000614ef784828501614c07565b91505092915050565b614f0981615620565b82525050565b614f1881615632565b82525050565b6000614f29826154c8565b614f3381856154de565b9350614f438185602086016156c8565b614f4c81615910565b840191505092915050565b614f60816156a7565b82525050565b6000614f71826154d3565b614f7b81856154ef565b9350614f8b8185602086016156c8565b614f9481615910565b840191505092915050565b6000614faa826154d3565b614fb48185615500565b9350614fc48185602086016156c8565b80840191505092915050565b6000614fdd600c836154ef565b9150614fe882615921565b602082019050919050565b6000615000600d836154ef565b915061500b8261594a565b602082019050919050565b60006150236026836154ef565b915061502e82615973565b604082019050919050565b6000615046600f836154ef565b9150615051826159c2565b602082019050919050565b60006150696014836154ef565b9150615074826159eb565b602082019050919050565b600061508c6012836154ef565b915061509782615a14565b602082019050919050565b60006150af600e836154ef565b91506150ba82615a3d565b602082019050919050565b60006150d2600583615500565b91506150dd82615a66565b600582019050919050565b60006150f56020836154ef565b915061510082615a8f565b602082019050919050565b6000615118600e836154ef565b915061512382615ab8565b602082019050919050565b600061513b600f836154ef565b915061514682615ae1565b602082019050919050565b600061515e601f836154ef565b915061516982615b0a565b602082019050919050565b6000615181601e836154ef565b915061518c82615b33565b602082019050919050565b60006151a4600f836154ef565b91506151af82615b5c565b602082019050919050565b6151c38161569d565b82525050565b60006151d58285614f9f565b91506151e18284614f9f565b91506151ec826150c5565b91508190509392505050565b600060208201905061520d6000830184614f00565b92915050565b60006080820190506152286000830187614f00565b6152356020830186614f00565b61524260408301856151ba565b81810360608301526152548184614f1e565b905095945050505050565b60006020820190506152746000830184614f0f565b92915050565b600060208201905061528f6000830184614f57565b92915050565b600060208201905081810360008301526152af8184614f66565b905092915050565b600060208201905081810360008301526152d081614fd0565b9050919050565b600060208201905081810360008301526152f081614ff3565b9050919050565b6000602082019050818103600083015261531081615016565b9050919050565b6000602082019050818103600083015261533081615039565b9050919050565b600060208201905081810360008301526153508161505c565b9050919050565b600060208201905081810360008301526153708161507f565b9050919050565b60006020820190508181036000830152615390816150a2565b9050919050565b600060208201905081810360008301526153b0816150e8565b9050919050565b600060208201905081810360008301526153d08161510b565b9050919050565b600060208201905081810360008301526153f08161512e565b9050919050565b6000602082019050818103600083015261541081615151565b9050919050565b6000602082019050818103600083015261543081615174565b9050919050565b6000602082019050818103600083015261545081615197565b9050919050565b600060208201905061546c60008301846151ba565b92915050565b600061547c61548d565b9050615488828261572d565b919050565b6000604051905090565b600067ffffffffffffffff8211156154b2576154b16158c3565b5b6154bb82615910565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006155168261569d565b91506155218361569d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615556576155556157d8565b5b828201905092915050565b600061556c8261569d565b91506155778361569d565b92508261558757615586615807565b5b828204905092915050565b600061559d8261569d565b91506155a88361569d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156155e1576155e06157d8565b5b828202905092915050565b60006155f78261569d565b91506156028361569d565b925082821015615615576156146157d8565b5b828203905092915050565b600061562b8261567d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061567882615b85565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006156b28261566a565b9050919050565b82818337600083830152505050565b60005b838110156156e65780820151818401526020810190506156cb565b838111156156f5576000848401525b50505050565b6000600282049050600182168061571357607f821691505b6020821081141561572757615726615865565b5b50919050565b61573682615910565b810181811067ffffffffffffffff82111715615755576157546158c3565b5b80604052505050565b60006157698261569d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561579c5761579b6157d8565b5b600182019050919050565b60006157b28261569d565b91506157bd8361569d565b9250826157cd576157cc615807565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f4f4e4c595f4f4e455f4749465400000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f535550504c595f4c494d49545f45585049524544000000000000000000000000600082015250565b7f494e53554646494349454e545f56414c55450000000000000000000000000000600082015250565b7f57524f4e475f5155414e54495459000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f544f4b454e535f45585049524544000000000000000000000000000000000000600082015250565b7f434f4e54524143545f4c4f434b45440000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455850495245445f5045525f57414c4c45545f5452414e53414354494f4e0000600082015250565b7f4e4f545f57484954454c49535445440000000000000000000000000000000000600082015250565b60048110615b9657615b95615836565b5b50565b615ba281615620565b8114615bad57600080fd5b50565b615bb981615632565b8114615bc457600080fd5b50565b615bd08161563e565b8114615bdb57600080fd5b50565b615be78161569d565b8114615bf257600080fd5b5056fea26469706673582212200604cb8774f9dcd3fe45b6aec20c1df20c270fb79d381f1404191eae7d59787c64736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d5972697572793648616d3532686a4b79365a7748396e6e736b746450747775484a4b7372526169374b4b33740000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103e45760003560e01c80637c928fe911610208578063b88d4fde11610118578063d62f3b1c116100ab578063f2fde38b1161007a578063f2fde38b14610e77578063f3b9e96214610ea0578063fa8803ed14610edd578063fb5d96c314610f1a578063fe2c7fee14610f36576103e4565b8063d62f3b1c14610dbd578063d6c309b214610dd4578063dc33e68114610dfd578063e985e9c514610e3a576103e4565b8063cd6bf130116100e7578063cd6bf13014610d01578063cfaab83814610d2a578063d15e9a4514610d55578063d46d35ad14610d80576103e4565b8063b88d4fde14610c45578063b9fa49b314610c6e578063bc8893b414610c99578063c87b56dd14610cc4576103e4565b80639da3f8fd1161019b578063a475b5dd1161016a578063a475b5dd14610b72578063a7fe9c8f14610b89578063a9aaaf5614610bb4578063b179e06014610bf1578063b85f3fb814610c1a576103e4565b80639da3f8fd14610ac8578063a22cb46514610af3578063a2309ff814610b1c578063a2c6413614610b47576103e4565b8063940f1ada116101d7578063940f1ada14610a0c578063953dafe014610a3757806395d89b4114610a745780639948ded514610a9f576103e4565b80637c928fe91461096257806380f33e4f1461098b57806384494708146109b65780638da5cb5b146109e1576103e4565b806341603eba11610303578063610be654116102965780637023771811610265578063702377181461089e57806370a08231146108c9578063715018a6146109065780637204a3c91461091d5780637835c63514610946576103e4565b8063610be654146107f4578063611f3f101461080b57806362dc6e21146108365780636352211e14610861576103e4565b806351830227116102d2578063518302271461074c57806352a303841461077757806355f804b3146107a257806360e51a39146107cb576103e4565b806341603eba146106a457806342842e0e146106bb57806343463394146106e457806345ddf4d01461070f576103e4565b80631b57190e1161037b5780632db115441161034a5780632db1154414610609578063310e92a51461062557806332cb6b0c146106625780633ccfd60b1461068d576103e4565b80631b57190e146105875780631debb685146105b257806323b872dd146105c957806329cf3544146105f2576103e4565b806312fb92e0116103b757806312fb92e0146104b757806318160ddd146104f45780631a61985f1461051f5780631aee3f911461055c576103e4565b806301ffc9a7146103e957806306fdde0314610426578063081812fc14610451578063095ea7b31461048e575b600080fd5b3480156103f557600080fd5b50610410600480360381019061040b9190614e2c565b610f5f565b60405161041d919061525f565b60405180910390f35b34801561043257600080fd5b5061043b611041565b6040516104489190615295565b60405180910390f35b34801561045d57600080fd5b5061047860048036038101906104739190614ed3565b6110d3565b60405161048591906151f8565b60405180910390f35b34801561049a57600080fd5b506104b560048036038101906104b09190614d9f565b61114f565b005b3480156104c357600080fd5b506104de60048036038101906104d99190614c1c565b611254565b6040516104eb919061525f565b60405180910390f35b34801561050057600080fd5b50610509611274565b6040516105169190615457565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190614c1c565b61128b565b604051610553919061525f565b60405180910390f35b34801561056857600080fd5b50610571611354565b60405161057e9190615457565b60405180910390f35b34801561059357600080fd5b5061059c61135a565b6040516105a99190615457565b60405180910390f35b3480156105be57600080fd5b506105c7611360565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190614c89565b611409565b005b3480156105fe57600080fd5b50610607611419565b005b610623600480360381019061061e9190614ed3565b611534565b005b34801561063157600080fd5b5061064c60048036038101906106479190614c1c565b6117fa565b604051610659919061525f565b60405180910390f35b34801561066e57600080fd5b5061067761181a565b6040516106849190615457565b60405180910390f35b34801561069957600080fd5b506106a2611820565b005b3480156106b057600080fd5b506106b9611d59565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190614c89565b611e02565b005b3480156106f057600080fd5b506106f9611e22565b6040516107069190615457565b60405180910390f35b34801561071b57600080fd5b5061073660048036038101906107319190614d9f565b611e27565b604051610743919061525f565b60405180910390f35b34801561075857600080fd5b50610761611ec6565b60405161076e919061525f565b60405180910390f35b34801561078357600080fd5b5061078c611ed9565b6040516107999190615457565b60405180910390f35b3480156107ae57600080fd5b506107c960048036038101906107c49190614e86565b611f1f565b005b3480156107d757600080fd5b506107f260048036038101906107ed9190614ddf565b611fb1565b005b34801561080057600080fd5b5061080961203d565b005b34801561081757600080fd5b506108206120e6565b60405161082d9190615457565b60405180910390f35b34801561084257600080fd5b5061084b6120f2565b6040516108589190615457565b60405180910390f35b34801561086d57600080fd5b5061088860048036038101906108839190614ed3565b6120fe565b60405161089591906151f8565b60405180910390f35b3480156108aa57600080fd5b506108b3612114565b6040516108c09190615457565b60405180910390f35b3480156108d557600080fd5b506108f060048036038101906108eb9190614c1c565b61211a565b6040516108fd9190615457565b60405180910390f35b34801561091257600080fd5b5061091b6121ea565b005b34801561092957600080fd5b50610944600480360381019061093f9190614ddf565b612272565b005b610960600480360381019061095b9190614ed3565b6122fe565b005b34801561096e57600080fd5b5061098960048036038101906109849190614ed3565b6125c4565b005b34801561099757600080fd5b506109a06127b1565b6040516109ad9190615457565b60405180910390f35b3480156109c257600080fd5b506109cb6127b6565b6040516109d8919061525f565b60405180910390f35b3480156109ed57600080fd5b506109f66127f4565b604051610a0391906151f8565b60405180910390f35b348015610a1857600080fd5b50610a2161281d565b604051610a2e9190615457565b60405180910390f35b348015610a4357600080fd5b50610a5e6004803603810190610a599190614c1c565b612823565b604051610a6b9190615457565b60405180910390f35b348015610a8057600080fd5b50610a8961283b565b604051610a969190615295565b60405180910390f35b348015610aab57600080fd5b50610ac66004803603810190610ac19190614ddf565b6128cd565b005b348015610ad457600080fd5b50610add612959565b604051610aea919061527a565b60405180910390f35b348015610aff57600080fd5b50610b1a6004803603810190610b159190614d5f565b61296c565b005b348015610b2857600080fd5b50610b31612ae4565b604051610b3e9190615457565b60405180910390f35b348015610b5357600080fd5b50610b5c612af3565b604051610b699190615457565b60405180910390f35b348015610b7e57600080fd5b50610b87612af8565b005b348015610b9557600080fd5b50610b9e612b91565b604051610bab9190615457565b60405180910390f35b348015610bc057600080fd5b50610bdb6004803603810190610bd69190614c1c565b612b96565b604051610be89190615457565b60405180910390f35b348015610bfd57600080fd5b50610c186004803603810190610c139190614ddf565b612bae565b005b348015610c2657600080fd5b50610c2f612c3a565b604051610c3c9190615457565b60405180910390f35b348015610c5157600080fd5b50610c6c6004803603810190610c679190614cdc565b612c46565b005b348015610c7a57600080fd5b50610c83612cbe565b604051610c90919061525f565b60405180910390f35b348015610ca557600080fd5b50610cae612cfc565b604051610cbb919061525f565b60405180910390f35b348015610cd057600080fd5b50610ceb6004803603810190610ce69190614ed3565b612d39565b604051610cf89190615295565b60405180910390f35b348015610d0d57600080fd5b50610d286004803603810190610d239190614ddf565b612e20565b005b348015610d3657600080fd5b50610d3f612eac565b604051610d4c9190615457565b60405180910390f35b348015610d6157600080fd5b50610d6a612eb2565b604051610d779190615457565b60405180910390f35b348015610d8c57600080fd5b50610da76004803603810190610da29190614c1c565b612eb7565b604051610db49190615457565b60405180910390f35b348015610dc957600080fd5b50610dd2612ecf565b005b348015610de057600080fd5b50610dfb6004803603810190610df69190614ddf565b612f78565b005b348015610e0957600080fd5b50610e246004803603810190610e1f9190614c1c565b613004565b604051610e319190615457565b60405180910390f35b348015610e4657600080fd5b50610e616004803603810190610e5c9190614c49565b613016565b604051610e6e919061525f565b60405180910390f35b348015610e8357600080fd5b50610e9e6004803603810190610e999190614c1c565b6130aa565b005b348015610eac57600080fd5b50610ec76004803603810190610ec29190614c1c565b6131a2565b604051610ed4919061525f565b60405180910390f35b348015610ee957600080fd5b50610f046004803603810190610eff9190614ed3565b6131c2565b604051610f11919061525f565b60405180910390f35b610f346004803603810190610f2f9190614ed3565b61323b565b005b348015610f4257600080fd5b50610f5d6004803603810190610f589190614e86565b613501565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061102a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061103a575061103982613593565b5b9050919050565b606060038054611050906156fb565b80601f016020809104026020016040519081016040528092919081815260200182805461107c906156fb565b80156110c95780601f1061109e576101008083540402835291602001916110c9565b820191906000526020600020905b8154815290600101906020018083116110ac57829003601f168201915b5050505050905090565b60006110de826135fd565b611114576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6007600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061115a826120fe565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111c2576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166111e161364b565b73ffffffffffffffffffffffffffffffffffffffff16146112445761120d8161120861364b565b613016565b611243576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b61124f838383613653565b505050565b600f6020528060005260406000206000915054906101000a900460ff1681565b600061127e613705565b6002546001540303905090565b6000611295612cbe565b6112ff576112a16127b6565b6112ac5760016112fa565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61134d565b600d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b9050919050565b6107d081565b60125481565b61136861364b565b73ffffffffffffffffffffffffffffffffffffffff166113866127f4565b73ffffffffffffffffffffffffffffffffffffffff16146113dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d390615397565b60405180910390fd5b6001601660016101000a81548160ff0219169083600381111561140257611401615836565b5b0217905550565b61141483838361370a565b505050565b61142161364b565b73ffffffffffffffffffffffffffffffffffffffff1661143f6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614611495576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148c90615397565b60405180910390fd5b600260095414156114db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d2906153f7565b60405180910390fd5b60026009819055503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611529573d6000803e3d6000fd5b506001600981905550565b806000811015611579576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157090615377565b60405180910390fd5b6000600381111561158d5761158c615836565b5b601660019054906101000a900460ff1660038111156115af576115ae615836565b5b14156115f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e7906153d7565b60405180910390fd5b610d69816115fc612ae4565b611606919061550b565b1115611647576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163e906153b7565b60405180910390fd5b6116503361128b565b61168f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168690615437565b60405180910390fd5b6116993382611e27565b156116d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d090615417565b60405180910390fd5b6116e2816131c2565b15611722576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171990615337565b60405180910390fd5b600061172c611ed9565b9050818161173a9190615592565b34101561177c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177390615357565b60405180910390fd5b826015600082825461178e919061550b565b9250508190555082601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117e4919061550b565b925050819055506117f53384613bc0565b505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b610d6981565b61182861364b565b73ffffffffffffffffffffffffffffffffffffffff166118466127f4565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390615397565b60405180910390fd5b600260095414156118e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d9906153f7565b60405180910390fd5b60026009819055506000479050600060646005836119009190615592565b61190a9190615561565b9050601660029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611974573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156119dd573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611a46573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611aaf573d6000803e3d6000fd5b50601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611b18573d6000803e3d6000fd5b50601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6064600e85611b649190615592565b611b6e9190615561565b9081150290604051600060405180830381858888f19350505050158015611b99573d6000803e3d6000fd5b50601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6103e8600f85611be69190615592565b611bf09190615561565b9081150290604051600060405180830381858888f19350505050158015611c1b573d6000803e3d6000fd5b50601d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600a83611c659190615561565b9081150290604051600060405180830381858888f19350505050158015611c90573d6000803e3d6000fd5b50601e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc600a83611cda9190615561565b9081150290604051600060405180830381858888f19350505050158015611d05573d6000803e3d6000fd5b503373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015611d4c573d6000803e3d6000fd5b5050506001600981905550565b611d6161364b565b73ffffffffffffffffffffffffffffffffffffffff16611d7f6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90615397565b60405180910390fd5b6002601660016101000a81548160ff02191690836003811115611dfb57611dfa615836565b5b0217905550565b611e1d83838360405180602001604052806000815250612c46565b505050565b606481565b600080611e32612cbe565b611e3d576003611e40565b60015b90506000611e4c612cbe565b611e6b57611e586127b6565b611e63576011611e66565b60105b611e6e565b600e5b905081848260008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611ebb919061550b565b119250505092915050565b601660009054906101000a900460ff1681565b6000611ee3612cbe565b611f1057611eef6127b6565b611f015767015c2a7b13fd0000611f0b565b670138a388a43c00005b611f1a565b6702a303fe4b5300005b905090565b611f2761364b565b73ffffffffffffffffffffffffffffffffffffffff16611f456127f4565b73ffffffffffffffffffffffffffffffffffffffff1614611f9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9290615397565b60405180910390fd5b8181600a9190611fac9291906149b1565b505050565b611fb961364b565b73ffffffffffffffffffffffffffffffffffffffff16611fd76127f4565b73ffffffffffffffffffffffffffffffffffffffff161461202d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202490615397565b60405180910390fd5b6120398282600d613bde565b5050565b61204561364b565b73ffffffffffffffffffffffffffffffffffffffff166120636127f4565b73ffffffffffffffffffffffffffffffffffffffff16146120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b090615397565b60405180910390fd5b6000601660016101000a81548160ff021916908360038111156120df576120de615836565b5b0217905550565b67015c2a7b13fd000081565b670138a388a43c000081565b600061210982613d85565b600001519050919050565b60145481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612182576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6121f261364b565b73ffffffffffffffffffffffffffffffffffffffff166122106127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225d90615397565b60405180910390fd5b6122706000614010565b565b61227a61364b565b73ffffffffffffffffffffffffffffffffffffffff166122986127f4565b73ffffffffffffffffffffffffffffffffffffffff16146122ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e590615397565b60405180910390fd5b6122fa8282600f613bde565b5050565b806000811015612343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233a90615377565b60405180910390fd5b6000600381111561235757612356615836565b5b601660019054906101000a900460ff16600381111561237957612378615836565b5b14156123ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123b1906153d7565b60405180910390fd5b610d69816123c6612ae4565b6123d0919061550b565b1115612411576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612408906153b7565b60405180910390fd5b61241a3361128b565b612459576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245090615437565b60405180910390fd5b6124633382611e27565b156124a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161249a90615417565b60405180910390fd5b6124ac816131c2565b156124ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e390615337565b60405180910390fd5b60006124f6611ed9565b905081816125049190615592565b341015612546576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253d90615357565b60405180910390fd5b8260146000828254612558919061550b565b9250508190555082601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125ae919061550b565b925050819055506125bf3384613bc0565b505050565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264790615437565b60405180910390fd5b6001811115612694576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268b906152d7565b60405180910390fd5b6064816012546126a4919061550b565b11156126e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126dc90615337565b60405180910390fd5b610d69816126f1612ae4565b6126fb919061550b565b111561273c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612733906153b7565b60405180910390fd5b806012600082825461274e919061550b565b92505081905550600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81549060ff02191690556127ae3382613bc0565b50565b606481565b6000600260038111156127cc576127cb615836565b5b601660019054906101000a900460ff1660038111156127ee576127ed615836565b5b14905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60155481565b60116020528060005260406000206000915090505481565b60606004805461284a906156fb565b80601f0160208091040260200160405190810160405280929190818152602001828054612876906156fb565b80156128c35780601f10612898576101008083540402835291602001916128c3565b820191906000526020600020905b8154815290600101906020018083116128a657829003601f168201915b5050505050905090565b6128d561364b565b73ffffffffffffffffffffffffffffffffffffffff166128f36127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612949576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294090615397565b60405180910390fd5b6129558282600c6140d4565b5050565b601660019054906101000a900460ff1681565b61297461364b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129d9576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600860006129e661364b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612a9361364b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612ad8919061525f565b60405180910390a35050565b6000612aee6141ef565b905090565b600181565b612b0061364b565b73ffffffffffffffffffffffffffffffffffffffff16612b1e6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612b74576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6b90615397565b60405180910390fd5b6001601660006101000a81548160ff021916908315150217905550565b600381565b600e6020528060005260406000206000915090505481565b612bb661364b565b73ffffffffffffffffffffffffffffffffffffffff16612bd46127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612c2a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2190615397565b60405180910390fd5b612c368282600f6140d4565b5050565b6702a303fe4b53000081565b612c5184848461370a565b612c708373ffffffffffffffffffffffffffffffffffffffff16614202565b15612cb857612c8184848484614225565b612cb7576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600060016003811115612cd457612cd3615836565b5b601660019054906101000a900460ff166003811115612cf657612cf5615836565b5b14905090565b6000600380811115612d1157612d10615836565b5b601660019054906101000a900460ff166003811115612d3357612d32615836565b5b14905090565b6060601660009054906101000a900460ff16612de157600b8054612d5c906156fb565b80601f0160208091040260200160405190810160405280929190818152602001828054612d88906156fb565b8015612dd55780601f10612daa57610100808354040283529160200191612dd5565b820191906000526020600020905b815481529060010190602001808311612db857829003601f168201915b50505050509050612e1b565b6000612deb614385565b905080612df784614417565b604051602001612e089291906151c9565b6040516020818303038152906040529150505b919050565b612e2861364b565b73ffffffffffffffffffffffffffffffffffffffff16612e466127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9390615397565b60405180910390fd5b612ea88282600c613bde565b5050565b60135481565b600181565b60106020528060005260406000206000915090505481565b612ed761364b565b73ffffffffffffffffffffffffffffffffffffffff16612ef56127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4290615397565b60405180910390fd5b6003601660016101000a81548160ff02191690836003811115612f7157612f70615836565b5b0217905550565b612f8061364b565b73ffffffffffffffffffffffffffffffffffffffff16612f9e6127f4565b73ffffffffffffffffffffffffffffffffffffffff1614612ff4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612feb90615397565b60405180910390fd5b6130008282600d6140d4565b5050565b600061300f82614578565b9050919050565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6130b261364b565b73ffffffffffffffffffffffffffffffffffffffff166130d06127f4565b73ffffffffffffffffffffffffffffffffffffffff1614613126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311d90615397565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161318d906152f7565b60405180910390fd5b61319f81614010565b50565b600d6020528060005260406000206000915054906101000a900460ff1681565b6000806131cd612cbe565b6131ee576131d96127b6565b6131e557610d696131e9565b6107d05b6131f1565b60645b905060006131fd612cbe565b61321e576132096127b6565b61321557601554613219565b6014545b613222565b6013545b9050818482613231919061550b565b1192505050919050565b806000811015613280576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161327790615377565b60405180910390fd5b6000600381111561329457613293615836565b5b601660019054906101000a900460ff1660038111156132b6576132b5615836565b5b14156132f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132ee906153d7565b60405180910390fd5b610d6981613303612ae4565b61330d919061550b565b111561334e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613345906153b7565b60405180910390fd5b6133573361128b565b613396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161338d90615437565b60405180910390fd5b6133a03382611e27565b156133e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d790615417565b60405180910390fd5b6133e9816131c2565b15613429576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342090615337565b60405180910390fd5b6000613433611ed9565b905081816134419190615592565b341015613483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161347a90615357565b60405180910390fd5b8260136000828254613495919061550b565b9250508190555082600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134eb919061550b565b925050819055506134fc3384613bc0565b505050565b61350961364b565b73ffffffffffffffffffffffffffffffffffffffff166135276127f4565b73ffffffffffffffffffffffffffffffffffffffff161461357d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161357490615397565b60405180910390fd5b8181600b919061358e9291906149b1565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081613608613705565b11158015613617575060015482105b8015613644575060056000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826007600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b600061371582613d85565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613780576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166137a161364b565b73ffffffffffffffffffffffffffffffffffffffff1614806137d057506137cf856137ca61364b565b613016565b5b8061381557506137de61364b565b73ffffffffffffffffffffffffffffffffffffffff166137fd846110d3565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061384e576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156138b5576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6138c285858560016145e2565b6138ce60008487613653565b6001600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600560008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600560008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415613b4e576001548214613b4d57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613bb985858560016145e8565b5050505050565b613bda8282604051806020016040528060008152506145ee565b5050565b60005b83839050811015613d7f576000848483818110613c0157613c00615894565b5b9050602002016020810190613c169190614c1c565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c7f906152b7565b60405180910390fd5b8260008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615613d14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d0b90615317565b60405180910390fd5b60018360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550508080613d779061575e565b915050613be1565b50505050565b613d8d614a37565b600082905080613d9b613705565b11613fd957600154811015613fd8576000600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151613fd657600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613eba57809250505061400b565b5b600115613fd557818060019003925050600560008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614613fd057809250505061400b565b613ebb565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b838390508110156141e95760008484838181106140f7576140f6615894565b5b905060200201602081019061410c9190614c1c565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561417e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614175906152b7565b60405180910390fd5b60008360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505080806141e19061575e565b9150506140d7565b50505050565b60006141f9613705565b60015403905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261424b61364b565b8786866040518563ffffffff1660e01b815260040161426d9493929190615213565b602060405180830381600087803b15801561428757600080fd5b505af19250505080156142b857506040513d601f19601f820116820180604052508101906142b59190614e59565b60015b614332573d80600081146142e8576040519150601f19603f3d011682016040523d82523d6000602084013e6142ed565b606091505b5060008151141561432a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054614394906156fb565b80601f01602080910402602001604051908101604052809291908181526020018280546143c0906156fb565b801561440d5780601f106143e25761010080835404028352916020019161440d565b820191906000526020600020905b8154815290600101906020018083116143f057829003601f168201915b5050505050905090565b6060600082141561445f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050614573565b600082905060005b6000821461449157808061447a9061575e565b915050600a8261448a9190615561565b9150614467565b60008167ffffffffffffffff8111156144ad576144ac6158c3565b5b6040519080825280601f01601f1916602001820160405280156144df5781602001600182028036833780820191505090505b5090505b6000851461456c576001826144f891906155ec565b9150600a8561450791906157a7565b6030614513919061550b565b60f81b81838151811061452957614528615894565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856145659190615561565b94506144e3565b8093505050505b919050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b50505050565b50505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561465c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415614697576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6146a460008583866145e2565b82600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836005600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426005600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000819050600084820190506148658673ffffffffffffffffffffffffffffffffffffffff16614202565b1561492a575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46148da6000878480600101955087614225565b614910576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821061486b57826001541461492557600080fd5b614995565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061492b575b8160018190555050506149ab60008583866145e8565b50505050565b8280546149bd906156fb565b90600052602060002090601f0160209004810192826149df5760008555614a26565b82601f106149f857803560ff1916838001178555614a26565b82800160010185558215614a26579182015b82811115614a25578235825591602001919060010190614a0a565b5b509050614a339190614a7a565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115614a93576000816000905550600101614a7b565b5090565b6000614aaa614aa584615497565b615472565b905082815260208101848484011115614ac657614ac5615901565b5b614ad18482856156b9565b509392505050565b600081359050614ae881615b99565b92915050565b60008083601f840112614b0457614b036158f7565b5b8235905067ffffffffffffffff811115614b2157614b206158f2565b5b602083019150836020820283011115614b3d57614b3c6158fc565b5b9250929050565b600081359050614b5381615bb0565b92915050565b600081359050614b6881615bc7565b92915050565b600081519050614b7d81615bc7565b92915050565b600082601f830112614b9857614b976158f7565b5b8135614ba8848260208601614a97565b91505092915050565b60008083601f840112614bc757614bc66158f7565b5b8235905067ffffffffffffffff811115614be457614be36158f2565b5b602083019150836001820283011115614c0057614bff6158fc565b5b9250929050565b600081359050614c1681615bde565b92915050565b600060208284031215614c3257614c3161590b565b5b6000614c4084828501614ad9565b91505092915050565b60008060408385031215614c6057614c5f61590b565b5b6000614c6e85828601614ad9565b9250506020614c7f85828601614ad9565b9150509250929050565b600080600060608486031215614ca257614ca161590b565b5b6000614cb086828701614ad9565b9350506020614cc186828701614ad9565b9250506040614cd286828701614c07565b9150509250925092565b60008060008060808587031215614cf657614cf561590b565b5b6000614d0487828801614ad9565b9450506020614d1587828801614ad9565b9350506040614d2687828801614c07565b925050606085013567ffffffffffffffff811115614d4757614d46615906565b5b614d5387828801614b83565b91505092959194509250565b60008060408385031215614d7657614d7561590b565b5b6000614d8485828601614ad9565b9250506020614d9585828601614b44565b9150509250929050565b60008060408385031215614db657614db561590b565b5b6000614dc485828601614ad9565b9250506020614dd585828601614c07565b9150509250929050565b60008060208385031215614df657614df561590b565b5b600083013567ffffffffffffffff811115614e1457614e13615906565b5b614e2085828601614aee565b92509250509250929050565b600060208284031215614e4257614e4161590b565b5b6000614e5084828501614b59565b91505092915050565b600060208284031215614e6f57614e6e61590b565b5b6000614e7d84828501614b6e565b91505092915050565b60008060208385031215614e9d57614e9c61590b565b5b600083013567ffffffffffffffff811115614ebb57614eba615906565b5b614ec785828601614bb1565b92509250509250929050565b600060208284031215614ee957614ee861590b565b5b6000614ef784828501614c07565b91505092915050565b614f0981615620565b82525050565b614f1881615632565b82525050565b6000614f29826154c8565b614f3381856154de565b9350614f438185602086016156c8565b614f4c81615910565b840191505092915050565b614f60816156a7565b82525050565b6000614f71826154d3565b614f7b81856154ef565b9350614f8b8185602086016156c8565b614f9481615910565b840191505092915050565b6000614faa826154d3565b614fb48185615500565b9350614fc48185602086016156c8565b80840191505092915050565b6000614fdd600c836154ef565b9150614fe882615921565b602082019050919050565b6000615000600d836154ef565b915061500b8261594a565b602082019050919050565b60006150236026836154ef565b915061502e82615973565b604082019050919050565b6000615046600f836154ef565b9150615051826159c2565b602082019050919050565b60006150696014836154ef565b9150615074826159eb565b602082019050919050565b600061508c6012836154ef565b915061509782615a14565b602082019050919050565b60006150af600e836154ef565b91506150ba82615a3d565b602082019050919050565b60006150d2600583615500565b91506150dd82615a66565b600582019050919050565b60006150f56020836154ef565b915061510082615a8f565b602082019050919050565b6000615118600e836154ef565b915061512382615ab8565b602082019050919050565b600061513b600f836154ef565b915061514682615ae1565b602082019050919050565b600061515e601f836154ef565b915061516982615b0a565b602082019050919050565b6000615181601e836154ef565b915061518c82615b33565b602082019050919050565b60006151a4600f836154ef565b91506151af82615b5c565b602082019050919050565b6151c38161569d565b82525050565b60006151d58285614f9f565b91506151e18284614f9f565b91506151ec826150c5565b91508190509392505050565b600060208201905061520d6000830184614f00565b92915050565b60006080820190506152286000830187614f00565b6152356020830186614f00565b61524260408301856151ba565b81810360608301526152548184614f1e565b905095945050505050565b60006020820190506152746000830184614f0f565b92915050565b600060208201905061528f6000830184614f57565b92915050565b600060208201905081810360008301526152af8184614f66565b905092915050565b600060208201905081810360008301526152d081614fd0565b9050919050565b600060208201905081810360008301526152f081614ff3565b9050919050565b6000602082019050818103600083015261531081615016565b9050919050565b6000602082019050818103600083015261533081615039565b9050919050565b600060208201905081810360008301526153508161505c565b9050919050565b600060208201905081810360008301526153708161507f565b9050919050565b60006020820190508181036000830152615390816150a2565b9050919050565b600060208201905081810360008301526153b0816150e8565b9050919050565b600060208201905081810360008301526153d08161510b565b9050919050565b600060208201905081810360008301526153f08161512e565b9050919050565b6000602082019050818103600083015261541081615151565b9050919050565b6000602082019050818103600083015261543081615174565b9050919050565b6000602082019050818103600083015261545081615197565b9050919050565b600060208201905061546c60008301846151ba565b92915050565b600061547c61548d565b9050615488828261572d565b919050565b6000604051905090565b600067ffffffffffffffff8211156154b2576154b16158c3565b5b6154bb82615910565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006155168261569d565b91506155218361569d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615556576155556157d8565b5b828201905092915050565b600061556c8261569d565b91506155778361569d565b92508261558757615586615807565b5b828204905092915050565b600061559d8261569d565b91506155a88361569d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156155e1576155e06157d8565b5b828202905092915050565b60006155f78261569d565b91506156028361569d565b925082821015615615576156146157d8565b5b828203905092915050565b600061562b8261567d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600081905061567882615b85565b919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006156b28261566a565b9050919050565b82818337600083830152505050565b60005b838110156156e65780820151818401526020810190506156cb565b838111156156f5576000848401525b50505050565b6000600282049050600182168061571357607f821691505b6020821081141561572757615726615865565b5b50919050565b61573682615910565b810181811067ffffffffffffffff82111715615755576157546158c3565b5b80604052505050565b60006157698261569d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561579c5761579b6157d8565b5b600182019050919050565b60006157b28261569d565b91506157bd8361569d565b9250826157cd576157cc615807565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e554c4c5f414444524553530000000000000000000000000000000000000000600082015250565b7f4f4e4c595f4f4e455f4749465400000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4455504c49434154455f454e5452590000000000000000000000000000000000600082015250565b7f535550504c595f4c494d49545f45585049524544000000000000000000000000600082015250565b7f494e53554646494349454e545f56414c55450000000000000000000000000000600082015250565b7f57524f4e475f5155414e54495459000000000000000000000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f544f4b454e535f45585049524544000000000000000000000000000000000000600082015250565b7f434f4e54524143545f4c4f434b45440000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f455850495245445f5045525f57414c4c45545f5452414e53414354494f4e0000600082015250565b7f4e4f545f57484954454c49535445440000000000000000000000000000000000600082015250565b60048110615b9657615b95615836565b5b50565b615ba281615620565b8114615bad57600080fd5b50565b615bb981615632565b8114615bc457600080fd5b50565b615bd08161563e565b8114615bdb57600080fd5b50565b615be78161569d565b8114615bf257600080fd5b5056fea26469706673582212200604cb8774f9dcd3fe45b6aec20c1df20c270fb79d381f1404191eae7d59787c64736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004368747470733a2f2f697066732e696f2f697066732f516d5972697572793648616d3532686a4b79365a7748396e6e736b746450747775484a4b7372526169374b4b33740000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : hiddenUri (string): https://ipfs.io/ipfs/QmYriury6Ham52hjKy6ZwH9nnsktdPtwuHJKsrRai7KK3t

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [2] : 68747470733a2f2f697066732e696f2f697066732f516d597269757279364861
Arg [3] : 6d3532686a4b79365a7748396e6e736b746450747775484a4b7372526169374b
Arg [4] : 4b33740000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ 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.