ETH Price: $3,267.69 (+0.51%)
Gas: 1 Gwei

Token

MysteryMints (MysteryMints)
 

Overview

Max Total Supply

644 MysteryMints

Holders

276

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
broskiduder.eth
Balance
2 MysteryMints
0x575353AFd7e6F37A42F808959e34A6F2d01957A9
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:
MysteryMints

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 20000 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity Multiple files format)

File 12 of 18: MysteryMints.sol
// SPDX-License-Identifier: GPL-3.0
// MysteryMints 2021 - The Ultimate NFT Prize Draw
// Huge thanks to ToyBoogers & Pagzi Tech for the optimised ERC721 (goodbye high gas fees)
pragma solidity ^0.8.10;
import "./ERC721Enum.sol";
import "./Ownable.sol";
import "./Strings.sol";
import "./ReentrancyGuard.sol";
import "./VRFConsumerBase.sol";

contract MysteryMints is ERC721Enum, Ownable, ReentrancyGuard, VRFConsumerBase {
    using Strings for uint256;
    string public baseURI;
    
    // Chainlink VRF
    bytes32 public keyHash = 0xAA77729D3466CA35AE8D28B3BBAC7CC36A5031EFDC430821C02BC31A238AF445;
    uint256 public fee = 2 * 10 ** 18; // 2 LINK
    
    // prize blocknumbers (4 draws per month)
    uint256 public constant SALE_START_BLOCK = 13684948;        // 25th Nov 2021 ~1PM EST
    uint256 public draw_block_1 = SALE_START_BLOCK + 63717;     // 05th Dec 2021 ~1PM EST
    uint256 public draw_block_2 = SALE_START_BLOCK + 101947;    // 11th Dec 2021 ~1PM EST
    uint256 public draw_block_3 = SALE_START_BLOCK + 146549;    // 18th Dec 2021 ~1PM EST
    uint256 public draw_block_4 = SALE_START_BLOCK + 191150;    // 25th Dec 2021 ~1PM EST
    
    // current draw number (so that we can assign the randomness result to the correct draw)
    uint256 public currentDrawNumber = 0;
    
    // draw randomness results (set from Chainlink)
    uint256 public randomness_testing = 0;
    uint256 public randomness_draw_1 = 0;
    uint256 public randomness_draw_2 = 0;
    uint256 public randomness_draw_3 = 0;
    uint256 public randomness_draw_4 = 0;
    
    //sale settings
    uint256 public constant SALE_START_TIMESTAMP = 1637863200; // Thursday 25th November 2021, 1PM EST
    uint256 public price = 0.03 ether;
    uint256 public maxSupply = 20000;
    uint256 public reserved = 200; // 200 NFTs reserved for giveaways etc
    uint256 public maxMint = 50;
    bool public salePaused = false;

    // whitelist
    address public constant WHITELIST_SIGNER = 0x8430e0B7be3315735C303b82E4471D59AC152Aa5;
    uint256 public disableWhitelistTimestamp = SALE_START_TIMESTAMP + (86400 * 1); // whitelist active for 1 day
    
    string _name = "MysteryMints";
    string _symbol = "MysteryMints";
    string _initBaseURI = "https://mysterymints.io/api/opensea/";
    
    constructor() ERC721P(_name, _symbol) VRFConsumerBase(
            0xf0d54349aDdcf704F77AE15b96510dEA15cb7952, // VRF Coordinator
            0x514910771AF9Ca656af840dff83E8264EcF986CA  // LINK Token
        ){
        setBaseURI(_initBaseURI);
    }

    /** 
     * Requests true on-chain randomness so we can test everything is working correctly
     */
    function randomnessTest() public onlyOwner {
        require(LINK.balanceOf(address(this)) >= fee, "Not enough LINK - fill contract");
        
        // set current draw number to 0 (testing) so we can assign the randomness result
        currentDrawNumber = 0;
        
        // request randomness via Chainlink VRF
        requestRandomness(keyHash, fee);
    }
    
    /** 
     * Returns the randomness result for a given draw (0 if draw has not occured yet)
     */
    function randomnessForDraw(uint256 drawNumber) public view returns (uint256) {
        if(drawNumber == 1) {
            return randomness_draw_1;
        }
        else if(drawNumber == 2) {
            return randomness_draw_2;
        }
        else if(drawNumber == 3) {
            return randomness_draw_3;
        }
        else if(drawNumber == 4) {
            return randomness_draw_4;
        }
        else {
            return randomness_testing;
        }
    }
    
    /** 
     * For a given draw, returns the block number which must be reached before the draw can be executed
     */
    function blockThresholdForDraw(uint256 drawNumber) public view returns (uint256) {
        require(drawNumber > 0 && drawNumber <= 4, "Invalid drawNumber: must be 1-4");
        if(drawNumber == 1) {
            return draw_block_1;
        }
        else if(drawNumber == 2) {
            return draw_block_2;
        }
        else if(drawNumber == 3) {
            return draw_block_3;
        }
        else {
            return draw_block_4;
        }
    }
    
    /** 
     * Requests true on-chain randomness for a given draw so that winners can be fairly chosen
     * Randomness can only be requested and set once for a given draw
     */
    function prizeDraw(uint256 drawNumber) public onlyOwner {
        require(LINK.balanceOf(address(this)) >= fee, "Not enough LINK - fill contract");
        require(drawNumber > 0 && drawNumber <= 4, "Invalid drawNumber: must be 1-4");
        require(blockThresholdForDraw(drawNumber) <= block.number, "Prize block not reached yet");
        require(randomnessForDraw(drawNumber) == 0, "Randomness already generated for this draw");
        
        // set current draw number so we can correctly assign the randomness result
        currentDrawNumber = drawNumber;
        
        // request randomness via Chainlink VRF
        requestRandomness(keyHash, fee);
    }
    
    /**
     * Callback function used by VRF Coordinator
     * Sets the randomness result to a given draw, which is then used to determine the winners
     */
    function fulfillRandomness(bytes32 requestId, uint256 randomness) internal override {
        if(currentDrawNumber == 1) {
            randomness_draw_1 = randomness;
        }
        else if(currentDrawNumber == 2) {
            randomness_draw_2 = randomness;
        }
        else if(currentDrawNumber == 3) {
            randomness_draw_3 = randomness;
        }
        else if(currentDrawNumber == 4) {
            randomness_draw_4 = randomness;
        }
        else {
            randomness_testing = randomness;
        }
    }

    // internal
    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }
    
    function mintingHasStarted() public view returns (bool) {
        return block.timestamp >= SALE_START_TIMESTAMP;
    }

    function whitelistHasEnded() public view returns (bool) {
        return block.timestamp >= disableWhitelistTimestamp;
    }
    
    /**
     * @dev Gets current NFT Price
     */
    function getNFTPrice() public view returns (uint256) {
        return price;
    }
    
    /* whitelist */
    function isWhitelisted(address user, bytes memory signature) public pure returns (bool) {
        bytes32 messageHash = keccak256(abi.encodePacked(user));
        bytes32 ethSignedMessageHash = keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", messageHash));
        return recoverSigner(ethSignedMessageHash, signature) == WHITELIST_SIGNER;
    }
    
    function recoverSigner(bytes32 _ethSignedMessageHash, bytes memory _signature) private pure returns (address) {
        (bytes32 r, bytes32 s, uint8 v) = splitSignature(_signature);
        return ecrecover(_ethSignedMessageHash, v, r, s);
    }
    
    function splitSignature(bytes memory sig) private pure returns (bytes32 r, bytes32 s, uint8 v) {
        require(sig.length == 65, "invalid signature length");
        assembly {
        /*
        First 32 bytes stores the length of the signature
        add(sig, 32) = pointer of sig + 32
        effectively, skips first 32 bytes of signature
        mload(p) loads next 32 bytes starting at the memory address p into memory
        */
        // first 32 bytes, after the length prefix
            r := mload(add(sig, 32))
        // second 32 bytes
            s := mload(add(sig, 64))
        // final byte (first byte of the next 32 bytes)
            v := byte(0, mload(add(sig, 96)))
        }
        // implicitly return (r, s, v)
    }

    // public minting
    function mintNFT(uint256 numberOfNfts, bytes memory signature) public payable nonReentrant {
        require(block.timestamp >= SALE_START_TIMESTAMP, "Sale has not started");
        uint256 s = totalSupply();
        require(!salePaused, "Sale Paused");
        require(numberOfNfts > 0 && numberOfNfts <= maxMint, "Invalid numberOfNfts");
        require((s + numberOfNfts) <= (maxSupply - reserved), "Exceeds Max Supply");
        require(msg.value >= price * numberOfNfts, "Not Enough ETH");
        
        // whitelist enabled
        if(block.timestamp < disableWhitelistTimestamp) {
            require(isWhitelisted(msg.sender, signature), "Address not whitelisted");
        }
        for (uint256 i = 0; i < numberOfNfts; ++i) {
            _safeMint(msg.sender, s + i, "");
        }
        delete s;
    }

    // admin minting for reserved NFTs
    function giftNFT(uint256[] calldata quantity, address[] calldata recipient) external onlyOwner {
        require(quantity.length == recipient.length, "Invalid quantities and recipients (length mismatch)");
        uint256 totalQuantity = 0;
        uint256 s = totalSupply();
        for (uint256 i = 0; i < quantity.length; ++i) {
            totalQuantity += quantity[i];
        }
        require(s + totalQuantity <= maxSupply, "Exceeds Max Supply");
        require(totalQuantity <= reserved, "Exceeds Max Reserved");

        // update remaining reserved count
        reserved -= totalQuantity;

        delete totalQuantity;
        for (uint256 i = 0; i < recipient.length; ++i) {
            for (uint256 j = 0; j < quantity[i]; ++j) {
                _safeMint(recipient[i], s++, "");
            }
        }
        delete s;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString())) : "";
    }

    /** 
     * Set the block number which must be reached before a given draw can be executed (callable by Owner only)
     */
    function setDrawBlock(uint256 drawNumber, uint256 blockNumber) public onlyOwner {
        require(drawNumber > 0 && drawNumber <= 4, "Invalid drawNumber: must be 1-4");
        if(drawNumber == 1) {
            draw_block_1 = blockNumber;
        }
        else if(drawNumber == 2) {
            draw_block_2 = blockNumber;
        }
        else if(drawNumber == 3) {
            draw_block_3 = blockNumber;
        }
        else {
            draw_block_4 = blockNumber;
        }
    }

    function setPrice(uint256 _newPrice) public onlyOwner {
        price = _newPrice;
    }

    function setMaxMintAmount(uint256 _newMaxMintAmount) public onlyOwner {
        maxMint = _newMaxMintAmount;
    }

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
        maxSupply = _newMaxSupply;
    }

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

    function setSalePaused(bool _salePaused) public onlyOwner {
        salePaused = _salePaused;
    }
    
    function setDisableWhitelistTimestamp(uint256 _disableWhitelistTimestamp) public onlyOwner {
        disableWhitelistTimestamp = _disableWhitelistTimestamp;
    }

    // the following function were added for transparency regarding ETH raised and prize pool calculations
    uint256 totalWithdrawn = 0;

    function getTotalWithdrawn() public view returns (uint256) {
        return totalWithdrawn;
    }

    function getTotalBalance() public view returns (uint256) {
        return address(this).balance;
    }

    function getTotalRaised() public view returns (uint256) {
        return getTotalWithdrawn() + getTotalBalance();
    }

    /**
     * Withdraw ETH from the contract (callable by Owner only)
     */
    function withdraw() public payable onlyOwner {
        uint256 val = address(this).balance;
        (bool success, ) = payable(msg.sender).call{
            value: val
        }("");
        require(success);
        totalWithdrawn += val;
        delete val;
    }

    /**
     * Withdraw LINK tokens from the contract (callable by Owner only)
     */
    function withdrawLINK() public onlyOwner {
        require(LINK.transfer(msg.sender, LINK.balanceOf(address(this))), "Unable to transfer");
    }
}

File 1 of 18: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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 2 of 18: Context.sol
// SPDX-License-Identifier: MIT

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 3 of 18: ERC165.sol
// SPDX-License-Identifier: MIT

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 4 of 18: ERC721Enum.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./ERC721P.sol";
import "./IERC721Enumerable.sol";

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721P)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256 tokenId)
    {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) {
                if (count == index) return i;
                else ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }

    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

File 5 of 18: ERC721P.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./ERC165.sol";

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    
    function getOwners() external view returns (address[] memory) {
        return _owners;
    }

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

    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        uint256 count = 0;
        uint256 length = _owners.length;
        for (uint256 i = 0; i < length; ++i) {
            if (owner == _owners[i]) {
                ++count;
            }
        }
        delete length;
        return count;
    }

    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }

    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721P.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }

    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 18: IERC165.sol
// SPDX-License-Identifier: MIT

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

File 7 of 18: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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

File 8 of 18: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 9 of 18: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

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 10 of 18: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 11 of 18: LinkTokenInterface.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface LinkTokenInterface {

  function allowance(
    address owner,
    address spender
  )
    external
    view
    returns (
      uint256 remaining
    );

  function approve(
    address spender,
    uint256 value
  )
    external
    returns (
      bool success
    );

  function balanceOf(
    address owner
  )
    external
    view
    returns (
      uint256 balance
    );

  function decimals()
    external
    view
    returns (
      uint8 decimalPlaces
    );

  function decreaseApproval(
    address spender,
    uint256 addedValue
  )
    external
    returns (
      bool success
    );

  function increaseApproval(
    address spender,
    uint256 subtractedValue
  ) external;

  function name()
    external
    view
    returns (
      string memory tokenName
    );

  function symbol()
    external
    view
    returns (
      string memory tokenSymbol
    );

  function totalSupply()
    external
    view
    returns (
      uint256 totalTokensIssued
    );

  function transfer(
    address to,
    uint256 value
  )
    external
    returns (
      bool success
    );

  function transferAndCall(
    address to,
    uint256 value,
    bytes calldata data
  )
    external
    returns (
      bool success
    );

  function transferFrom(
    address from,
    address to,
    uint256 value
  )
    external
    returns (
      bool success
    );

}

File 13 of 18: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 14 of 18: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT

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 make 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 15 of 18: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 16 of 18: Strings.sol
// SPDX-License-Identifier: MIT

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 17 of 18: VRFConsumerBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./LinkTokenInterface.sol";

import "./VRFRequestIDBase.sol";

/** ****************************************************************************
 * @notice Interface for contracts using VRF randomness
 * *****************************************************************************
 * @dev PURPOSE
 *
 * @dev Reggie the Random Oracle (not his real job) wants to provide randomness
 * @dev to Vera the verifier in such a way that Vera can be sure he's not
 * @dev making his output up to suit himself. Reggie provides Vera a public key
 * @dev to which he knows the secret key. Each time Vera provides a seed to
 * @dev Reggie, he gives back a value which is computed completely
 * @dev deterministically from the seed and the secret key.
 *
 * @dev Reggie provides a proof by which Vera can verify that the output was
 * @dev correctly computed once Reggie tells it to her, but without that proof,
 * @dev the output is indistinguishable to her from a uniform random sample
 * @dev from the output space.
 *
 * @dev The purpose of this contract is to make it easy for unrelated contracts
 * @dev to talk to Vera the verifier about the work Reggie is doing, to provide
 * @dev simple access to a verifiable source of randomness.
 * *****************************************************************************
 * @dev USAGE
 *
 * @dev Calling contracts must inherit from VRFConsumerBase, and can
 * @dev initialize VRFConsumerBase's attributes in their constructor as
 * @dev shown:
 *
 * @dev   contract VRFConsumer {
 * @dev     constuctor(<other arguments>, address _vrfCoordinator, address _link)
 * @dev       VRFConsumerBase(_vrfCoordinator, _link) public {
 * @dev         <initialization with other arguments goes here>
 * @dev       }
 * @dev   }
 *
 * @dev The oracle will have given you an ID for the VRF keypair they have
 * @dev committed to (let's call it keyHash), and have told you the minimum LINK
 * @dev price for VRF service. Make sure your contract has sufficient LINK, and
 * @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
 * @dev want to generate randomness from.
 *
 * @dev Once the VRFCoordinator has received and validated the oracle's response
 * @dev to your request, it will call your contract's fulfillRandomness method.
 *
 * @dev The randomness argument to fulfillRandomness is the actual random value
 * @dev generated from your seed.
 *
 * @dev The requestId argument is generated from the keyHash and the seed by
 * @dev makeRequestId(keyHash, seed). If your contract could have concurrent
 * @dev requests open, you can use the requestId to track which seed is
 * @dev associated with which randomness. See VRFRequestIDBase.sol for more
 * @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
 * @dev if your contract could have multiple requests in flight simultaneously.)
 *
 * @dev Colliding `requestId`s are cryptographically impossible as long as seeds
 * @dev differ. (Which is critical to making unpredictable randomness! See the
 * @dev next section.)
 *
 * *****************************************************************************
 * @dev SECURITY CONSIDERATIONS
 *
 * @dev A method with the ability to call your fulfillRandomness method directly
 * @dev could spoof a VRF response with any random value, so it's critical that
 * @dev it cannot be directly called by anything other than this base contract
 * @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
 *
 * @dev For your users to trust that your contract's random behavior is free
 * @dev from malicious interference, it's best if you can write it so that all
 * @dev behaviors implied by a VRF response are executed *during* your
 * @dev fulfillRandomness method. If your contract must store the response (or
 * @dev anything derived from it) and use it later, you must ensure that any
 * @dev user-significant behavior which depends on that stored value cannot be
 * @dev manipulated by a subsequent VRF request.
 *
 * @dev Similarly, both miners and the VRF oracle itself have some influence
 * @dev over the order in which VRF responses appear on the blockchain, so if
 * @dev your contract could have multiple VRF requests in flight simultaneously,
 * @dev you must ensure that the order in which the VRF responses arrive cannot
 * @dev be used to manipulate your contract's user-significant behavior.
 *
 * @dev Since the ultimate input to the VRF is mixed with the block hash of the
 * @dev block in which the request is made, user-provided seeds have no impact
 * @dev on its economic security properties. They are only included for API
 * @dev compatability with previous versions of this contract.
 *
 * @dev Since the block hash of the block which contains the requestRandomness
 * @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
 * @dev miner could, in principle, fork the blockchain to evict the block
 * @dev containing the request, forcing the request to be included in a
 * @dev different block with a different hash, and therefore a different input
 * @dev to the VRF. However, such an attack would incur a substantial economic
 * @dev cost. This cost scales with the number of blocks the VRF oracle waits
 * @dev until it calls responds to a request.
 */
abstract contract VRFConsumerBase is VRFRequestIDBase {

  /**
   * @notice fulfillRandomness handles the VRF response. Your contract must
   * @notice implement it. See "SECURITY CONSIDERATIONS" above for important
   * @notice principles to keep in mind when implementing your fulfillRandomness
   * @notice method.
   *
   * @dev VRFConsumerBase expects its subcontracts to have a method with this
   * @dev signature, and will call it once it has verified the proof
   * @dev associated with the randomness. (It is triggered via a call to
   * @dev rawFulfillRandomness, below.)
   *
   * @param requestId The Id initially returned by requestRandomness
   * @param randomness the VRF output
   */
  function fulfillRandomness(
    bytes32 requestId,
    uint256 randomness
  )
    internal
    virtual;

  /**
   * @dev In order to keep backwards compatibility we have kept the user
   * seed field around. We remove the use of it because given that the blockhash
   * enters later, it overrides whatever randomness the used seed provides.
   * Given that it adds no security, and can easily lead to misunderstandings,
   * we have removed it from usage and can now provide a simpler API.
   */
  uint256 constant private USER_SEED_PLACEHOLDER = 0;

  /**
   * @notice requestRandomness initiates a request for VRF output given _seed
   *
   * @dev The fulfillRandomness method receives the output, once it's provided
   * @dev by the Oracle, and verified by the vrfCoordinator.
   *
   * @dev The _keyHash must already be registered with the VRFCoordinator, and
   * @dev the _fee must exceed the fee specified during registration of the
   * @dev _keyHash.
   *
   * @dev The _seed parameter is vestigial, and is kept only for API
   * @dev compatibility with older versions. It can't *hurt* to mix in some of
   * @dev your own randomness, here, but it's not necessary because the VRF
   * @dev oracle will mix the hash of the block containing your request into the
   * @dev VRF seed it ultimately uses.
   *
   * @param _keyHash ID of public key against which randomness is generated
   * @param _fee The amount of LINK to send with the request
   *
   * @return requestId unique ID for this request
   *
   * @dev The returned requestId can be used to distinguish responses to
   * @dev concurrent requests. It is passed as the first argument to
   * @dev fulfillRandomness.
   */
  function requestRandomness(
    bytes32 _keyHash,
    uint256 _fee
  )
    internal
    returns (
      bytes32 requestId
    )
  {
    LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
    // This is the seed passed to VRFCoordinator. The oracle will mix this with
    // the hash of the block containing this request to obtain the seed/input
    // which is finally passed to the VRF cryptographic machinery.
    uint256 vRFSeed  = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
    // nonces[_keyHash] must stay in sync with
    // VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
    // successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
    // This provides protection against the user repeating their input seed,
    // which would result in a predictable/duplicate output, if multiple such
    // requests appeared in the same block.
    nonces[_keyHash] = nonces[_keyHash] + 1;
    return makeRequestId(_keyHash, vRFSeed);
  }

  LinkTokenInterface immutable internal LINK;
  address immutable private vrfCoordinator;

  // Nonces for each VRF key from which randomness has been requested.
  //
  // Must stay in sync with VRFCoordinator[_keyHash][this]
  mapping(bytes32 /* keyHash */ => uint256 /* nonce */) private nonces;

  /**
   * @param _vrfCoordinator address of VRFCoordinator contract
   * @param _link address of LINK token contract
   *
   * @dev https://docs.chain.link/docs/link-token-contracts
   */
  constructor(
    address _vrfCoordinator,
    address _link
  ) {
    vrfCoordinator = _vrfCoordinator;
    LINK = LinkTokenInterface(_link);
  }

  // rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
  // proof. rawFulfillRandomness then calls fulfillRandomness, after validating
  // the origin of the call
  function rawFulfillRandomness(
    bytes32 requestId,
    uint256 randomness
  )
    external
  {
    require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
    fulfillRandomness(requestId, randomness);
  }
}

File 18 of 18: VRFRequestIDBase.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

contract VRFRequestIDBase {

  /**
   * @notice returns the seed which is actually input to the VRF coordinator
   *
   * @dev To prevent repetition of VRF output due to repetition of the
   * @dev user-supplied seed, that seed is combined in a hash with the
   * @dev user-specific nonce, and the address of the consuming contract. The
   * @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
   * @dev the final seed, but the nonce does protect against repetition in
   * @dev requests which are included in a single block.
   *
   * @param _userSeed VRF seed input provided by user
   * @param _requester Address of the requesting contract
   * @param _nonce User-specific nonce at the time of the request
   */
  function makeVRFInputSeed(
    bytes32 _keyHash,
    uint256 _userSeed,
    address _requester,
    uint256 _nonce
  )
    internal
    pure
    returns (
      uint256
    )
  {
    return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
  }

  /**
   * @notice Returns the id for this request
   * @param _keyHash The serviceAgreement ID to be used for this request
   * @param _vRFInputSeed The seed to be passed directly to the VRF
   * @return The id for this request
   *
   * @dev Note that _vRFInputSeed is not the seed passed by the consuming
   * @dev contract, but the one generated by makeVRFInputSeed
   */
  function makeRequestId(
    bytes32 _keyHash,
    uint256 _vRFInputSeed
  )
    internal
    pure
    returns (
      bytes32
    )
  {
    return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":"SALE_START_BLOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_START_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_SIGNER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"drawNumber","type":"uint256"}],"name":"blockThresholdForDraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentDrawNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableWhitelistTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"draw_block_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"draw_block_2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"draw_block_3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"draw_block_4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getNFTPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalRaised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalWithdrawn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"giftNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"keyHash","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfNfts","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingHasStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"drawNumber","type":"uint256"}],"name":"prizeDraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"drawNumber","type":"uint256"}],"name":"randomnessForDraw","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomnessTest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"randomness_draw_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomness_draw_2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomness_draw_3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomness_draw_4","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"randomness_testing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"requestId","type":"bytes32"},{"internalType":"uint256","name":"randomness","type":"uint256"}],"name":"rawFulfillRandomness","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserved","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"salePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_disableWhitelistTimestamp","type":"uint256"}],"name":"setDisableWhitelistTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"drawNumber","type":"uint256"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"setDrawBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_salePaused","type":"bool"}],"name":"setSalePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","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":[],"name":"whitelistHasEnded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawLINK","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040527faa77729d3466ca35ae8d28b3bbac7cc36a5031efdc430821c02bc31a238af445600955671bc16d674ec80000600a556200004562d0d0d461f8e562000559565b600b556200005a62d0d0d462018e3b62000559565b600c556200006f62d0d0d462023c7562000559565b600d556200008462d0d0d46202eaae62000559565b600e556000600f8190556010819055601181905560128190556013819055601455666a94d74f430000601555614e2060165560c860175560326018556019805460ff19169055620000dd63619fcf206201518062000559565b601a5560408051808201909152600c8082526b4d7973746572794d696e747360a01b60209092019182526200011591601b91620004b3565b5060408051808201909152600c8082526b4d7973746572794d696e747360a01b60209092019182526200014b91601c91620004b3565b50604051806060016040528060248152602001620047886024913980516200017c91601d91602090910190620004b3565b506000601e553480156200018f57600080fd5b5073f0d54349addcf704f77ae15b96510dea15cb795273514910771af9ca656af840dff83e8264ecf986ca601b8054620001c99062000580565b80601f0160208091040260200160405190810160405280929190818152602001828054620001f79062000580565b8015620002485780601f106200021c5761010080835404028352916020019162000248565b820191906000526020600020905b8154815290600101906020018083116200022a57829003601f168201915b5050505050601c80546200025c9062000580565b80601f01602080910402602001604051908101604052809291908181526020018280546200028a9062000580565b8015620002db5780601f10620002af57610100808354040283529160200191620002db565b820191906000526020600020905b815481529060010190602001808311620002bd57829003601f168201915b50508451620002f5935060009250602086019150620004b3565b5080516200030b906001906020840190620004b3565b5050506200032862000322620003e560201b60201c565b620003e9565b60016006556001600160a01b0391821660a05216608052601d8054620003df9190620003549062000580565b80601f0160208091040260200160405190810160405280929190818152602001828054620003829062000580565b8015620003d35780601f10620003a757610100808354040283529160200191620003d3565b820191906000526020600020905b815481529060010190602001808311620003b557829003601f168201915b50506200043b92505050565b620005bd565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b031633146200049a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620004af906008906020840190620004b3565b5050565b828054620004c19062000580565b90600052602060002090601f016020900481019282620004e5576000855562000530565b82601f106200050057805160ff191683800117855562000530565b8280016001018555821562000530579182015b828111156200053057825182559160200191906001019062000513565b506200053e92915062000542565b5090565b5b808211156200053e576000815560010162000543565b600082198211156200057b57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200059557607f821691505b60208210811415620005b757634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051614189620005ff6000396000818161201f01526130df0152600081816118b0015281816122ba0152818161254a01526130a301526141896000f3fe6080604052600436106103f95760003560e01c80638462151c1161020d578063a22cb46511610128578063d22f9743116100bb578063e985e9c51161008a578063f632fdb01161006f578063f632fdb014610b37578063fb107a4f14610b4f578063fe60d12c14610b6457600080fd5b8063e985e9c514610ac1578063f2fde38b14610b1757600080fd5b8063d22f974314610a69578063d5abeb0114610a7f578063ddca3f4314610a95578063e5a3044014610aab57600080fd5b8063b88d4fde116100f7578063b88d4fde146109f4578063c18fdebb14610a14578063c29af27414610a29578063c87b56dd14610a4957600080fd5b8063a22cb46514610992578063adc2112f146109b2578063b2c2c5ed146109c7578063b48db6ad146109de57600080fd5b8063946807fd116101a05780639ba723761161016f5780639ba723761461092f5780639f55029314610945578063a035b1fe1461095a578063a0e67e2b1461097057600080fd5b8063946807fd146108cc57806394985ddd146108e457806395d89b41146109045780639a333f581461091957600080fd5b80638da5cb5b116101dc5780638da5cb5b1461084e578063910dc0d81461087957806391b7f5ed146108995780639224a33f146108b957600080fd5b80638462151c146107d657806388f620d41461080357806389404a79146108195780638d92becd1461082e57600080fd5b806342842e0e116103185780636352211e116102ab57806370a082311161027a5780637501f7411161025f5780637501f7411461078a57806380a6f05c146107a057806383f9f4d2146107b657600080fd5b806370a0823114610755578063715018a61461077557600080fd5b80636352211e146106e05780636c0360eb146107005780636fbb8364146107155780636fd9bed01461073557600080fd5b806355f804b3116102e757806355f804b31461067a5780635abf4ee81461069a5780635d08c1ae146106b057806361728f39146106ca57600080fd5b806342842e0e1461060a5780634298abbe1461062a5780634f6ccce71461064057806354964d271461066057600080fd5b8063221fd0ff11610390578063307ee3e41161035f578063307ee3e4146105a4578063308b8706146105ba5780633ccfd60b146105da578063417b9483146105e257600080fd5b8063221fd0ff1461052e578063228025e81461054457806323b872dd146105645780632f745c591461058457600080fd5b8063095ea7b3116103cc578063095ea7b3146104bc57806312b58349146104dc57806318160ddd146104f95780631f0a8fa71461050e57600080fd5b806301ffc9a7146103fe57806306fdde0314610433578063081812fc14610455578063088a4ed01461049a575b600080fd5b34801561040a57600080fd5b5061041e610419366004613924565b610b7a565b60405190151581526020015b60405180910390f35b34801561043f57600080fd5b50610448610bd6565b60405161042a91906139b7565b34801561046157600080fd5b506104756104703660046139ca565b610c68565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161042a565b3480156104a657600080fd5b506104ba6104b53660046139ca565b610d13565b005b3480156104c857600080fd5b506104ba6104d7366004613a07565b610d7f565b3480156104e857600080fd5b50475b60405190815260200161042a565b34801561050557600080fd5b506002546104eb565b34801561051a57600080fd5b5061041e610529366004613b14565b610ed8565b34801561053a57600080fd5b506104eb60105481565b34801561055057600080fd5b506104ba61055f3660046139ca565b610faa565b34801561057057600080fd5b506104ba61057f366004613b62565b611016565b34801561059057600080fd5b506104eb61059f366004613a07565b61109d565b3480156105b057600080fd5b506104eb60145481565b3480156105c657600080fd5b506104ba6105d5366004613b9e565b6111b9565b6104ba6112b4565b3480156105ee57600080fd5b50610475738430e0b7be3315735c303b82e4471d59ac152aa581565b34801561061657600080fd5b506104ba610625366004613b62565b61138d565b34801561063657600080fd5b506104eb601a5481565b34801561064c57600080fd5b506104eb61065b3660046139ca565b6113a8565b34801561066c57600080fd5b5063619fcf2042101561041e565b34801561068657600080fd5b506104ba610695366004613bc0565b611405565b3480156106a657600080fd5b506104eb600b5481565b3480156106bc57600080fd5b5060195461041e9060ff1681565b3480156106d657600080fd5b506104eb60095481565b3480156106ec57600080fd5b506104756106fb3660046139ca565b61147f565b34801561070c57600080fd5b5061044861152c565b34801561072157600080fd5b506104eb6107303660046139ca565b6115ba565b34801561074157600080fd5b506104eb6107503660046139ca565b611658565b34801561076157600080fd5b506104eb610770366004613c09565b6116a6565b34801561078157600080fd5b506104ba6117a5565b34801561079657600080fd5b506104eb60185481565b3480156107ac57600080fd5b506104eb600e5481565b3480156107c257600080fd5b506104ba6107d13660046139ca565b611818565b3480156107e257600080fd5b506107f66107f1366004613c09565b611ac4565b60405161042a9190613c24565b34801561080f57600080fd5b506104eb60135481565b34801561082557600080fd5b50601e546104eb565b34801561083a57600080fd5b506104ba610849366004613c76565b611bbe565b34801561085a57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610475565b34801561088557600080fd5b506104ba6108943660046139ca565b611c56565b3480156108a557600080fd5b506104ba6108b43660046139ca565b611cc2565b6104ba6108c7366004613c93565b611d2e565b3480156108d857600080fd5b506104eb63619fcf2081565b3480156108f057600080fd5b506104ba6108ff366004613b9e565b612007565b34801561091057600080fd5b50610448612096565b34801561092557600080fd5b506104eb600d5481565b34801561093b57600080fd5b506104eb600f5481565b34801561095157600080fd5b506104eb6120a5565b34801561096657600080fd5b506104eb60155481565b34801561097c57600080fd5b506109856120ba565b60405161042a9190613cc4565b34801561099e57600080fd5b506104ba6109ad366004613d12565b612128565b3480156109be57600080fd5b506104ba612225565b3480156109d357600080fd5b506104eb62d0d0d481565b3480156109ea57600080fd5b506104eb60125481565b348015610a0057600080fd5b506104ba610a0f366004613d49565b612424565b348015610a2057600080fd5b506104ba6124b2565b348015610a3557600080fd5b506104ba610a44366004613dfd565b612630565b348015610a5557600080fd5b50610448610a643660046139ca565b6128c7565b348015610a7557600080fd5b506104eb600c5481565b348015610a8b57600080fd5b506104eb60165481565b348015610aa157600080fd5b506104eb600a5481565b348015610ab757600080fd5b506104eb60115481565b348015610acd57600080fd5b5061041e610adc366004613e69565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b348015610b2357600080fd5b506104ba610b32366004613c09565b6129a0565b348015610b4357600080fd5b50601a5442101561041e565b348015610b5b57600080fd5b506015546104eb565b348015610b7057600080fd5b506104eb60175481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610bd05750610bd082612a99565b92915050565b606060008054610be590613e9c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1190613e9c565b8015610c5e5780601f10610c3357610100808354040283529160200191610c5e565b820191906000526020600020905b815481529060010190602001808311610c4157829003601f168201915b5050505050905090565b6000610c7382612b7c565b610cea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60055473ffffffffffffffffffffffffffffffffffffffff163314610d7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b601855565b6000610d8a8261147f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610ce1565b3373ffffffffffffffffffffffffffffffffffffffff82161480610e575750610e578133610adc565b610ec95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ce1565b610ed38383612be0565b505050565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606085901b16602080830191909152825180830360140181526034830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060548401526070808401829052845180850390910181526090909301909352815191012060009190738430e0b7be3315735c303b82e4471d59ac152aa5610f8a8286612c80565b73ffffffffffffffffffffffffffffffffffffffff161495945050505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146110115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b601655565b6110203382612d1d565b6110925760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ce1565b610ed3838383612e59565b60006110a8836116a6565b82106110f65760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610ce1565b6000805b600254811015611170576002818154811061111757611117613ef0565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156111605783821415611154579150610bd09050565b61115d82613f4e565b91505b61116981613f4e565b90506110fa565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610ce1565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b600082118015611231575060048211155b61127d5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420647261774e756d6265723a206d75737420626520312d34006044820152606401610ce1565b816001141561128c57600b5550565b816002141561129b57600c5550565b81600314156112aa57600d5550565b600e8190555b5050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461131b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b6040514790600090339083908381818185875af1925050503d806000811461135f576040519150601f19603f3d011682016040523d82523d6000602084013e611364565b606091505b505090508061137257600080fd5b81601e60008282546113849190613f87565b90915550505050565b610ed383838360405180602001604052806000815250612424565b60006113b360025490565b82106114015760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610ce1565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff16331461146c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b80516112b0906008906020840190613866565b6000806002838154811061149557611495613ef0565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610bd05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610ce1565b6008805461153990613e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461156590613e9c565b80156115b25780601f10611587576101008083540402835291602001916115b2565b820191906000526020600020905b81548152906001019060200180831161159557829003601f168201915b505050505081565b600080821180156115cc575060048211155b6116185760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420647261774e756d6265723a206d75737420626520312d34006044820152606401610ce1565b8160011415611629575050600b5490565b816002141561163a575050600c5490565b816003141561164b575050600d5490565b5050600e5490565b919050565b6000816001141561166b57505060115490565b816002141561167c57505060125490565b816003141561168d57505060135490565b816004141561169e57505060145490565b505060105490565b600073ffffffffffffffffffffffffffffffffffffffff82166117315760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610ce1565b600254600090815b8181101561179c576002818154811061175457611754613ef0565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff8681169116141561178c5761178983613f4e565b92505b61179581613f4e565b9050611739565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461180c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b6118166000613028565b565b60055473ffffffffffffffffffffffffffffffffffffffff16331461187f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b600a546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa15801561190c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119309190613f9f565b101561197e5760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f756768204c494e4b202d2066696c6c20636f6e7472616374006044820152606401610ce1565b60008111801561198f575060048111155b6119db5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420647261774e756d6265723a206d75737420626520312d34006044820152606401610ce1565b436119e5826115ba565b1115611a335760405162461bcd60e51b815260206004820152601b60248201527f5072697a6520626c6f636b206e6f7420726561636865642079657400000000006044820152606401610ce1565b611a3c81611658565b15611aaf5760405162461bcd60e51b815260206004820152602a60248201527f52616e646f6d6e65737320616c72656164792067656e65726174656420666f7260448201527f20746869732064726177000000000000000000000000000000000000000000006064820152608401610ce1565b80600f819055506112b0600954600a5461309f565b6060611acf826116a6565b600010611b1e5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610ce1565b6000611b29836116a6565b905060008167ffffffffffffffff811115611b4657611b46613a31565b604051908082528060200260200182016040528015611b6f578160200160208202803683370190505b50905060005b82811015611bb657611b87858261109d565b828281518110611b9957611b99613ef0565b602090810291909101015280611bae81613f4e565b915050611b75565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611c255760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b601980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611cbd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b601a55565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b601555565b60026006541415611d815760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ce1565b600260065563619fcf20421015611dda5760405162461bcd60e51b815260206004820152601460248201527f53616c6520686173206e6f7420737461727465640000000000000000000000006044820152606401610ce1565b6000611de560025490565b60195490915060ff1615611e3b5760405162461bcd60e51b815260206004820152600b60248201527f53616c65205061757365640000000000000000000000000000000000000000006044820152606401610ce1565b600083118015611e4d57506018548311155b611e995760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206e756d6265724f664e6674730000000000000000000000006044820152606401610ce1565b601754601654611ea99190613fb8565b611eb38483613f87565b1115611f015760405162461bcd60e51b815260206004820152601260248201527f45786365656473204d617820537570706c7900000000000000000000000000006044820152606401610ce1565b82601554611f0f9190613fcf565b341015611f5e5760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420456e6f756768204554480000000000000000000000000000000000006044820152606401610ce1565b601a54421015611fbe57611f723383610ed8565b611fbe5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610ce1565b60005b83811015611ffc57611fec33611fd78385613f87565b60405180602001604052806000815250613228565b611ff581613f4e565b9050611fc1565b505060016006555050565b3373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000161461208c5760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610ce1565b6112b082826132b1565b606060018054610be590613e9c565b600047601e546120b59190613f87565b905090565b60606002805480602002602001604051908101604052809291908181526020018280548015610c5e57602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff1681526001909101906020018083116120f4575050505050905090565b73ffffffffffffffffffffffffffffffffffffffff821633141561218e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ce1565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461228c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015612320573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123449190613f9f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af11580156123b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123d8919061400c565b6118165760405162461bcd60e51b815260206004820152601260248201527f556e61626c6520746f207472616e7366657200000000000000000000000000006044820152606401610ce1565b61242e3383612d1d565b6124a05760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ce1565b6124ac848484846132fb565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146125195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b600a546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa1580156125a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ca9190613f9f565b10156126185760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f756768204c494e4b202d2066696c6c20636f6e7472616374006044820152606401610ce1565b6000600f55600954600a5461262d919061309f565b50565b60055473ffffffffffffffffffffffffffffffffffffffff1633146126975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b82811461270c5760405162461bcd60e51b815260206004820152603360248201527f496e76616c6964207175616e74697469657320616e6420726563697069656e7460448201527f7320286c656e677468206d69736d6174636829000000000000000000000000006064820152608401610ce1565b60008061271860025490565b905060005b8581101561275b5786868281811061273757612737613ef0565b90506020020135836127499190613f87565b925061275481613f4e565b905061271d565b506016546127698383613f87565b11156127b75760405162461bcd60e51b815260206004820152601260248201527f45786365656473204d617820537570706c7900000000000000000000000000006044820152606401610ce1565b6017548211156128095760405162461bcd60e51b815260206004820152601460248201527f45786365656473204d61782052657365727665640000000000000000000000006044820152606401610ce1565b816017600082825461281b9190613fb8565b90915550600092508290505b838110156128be5760005b87878381811061284457612844613ef0565b905060200201358110156128ad5761289d86868481811061286757612867613ef0565b905060200201602081019061287c9190613c09565b8461288681613f4e565b955060405180602001604052806000815250613228565b6128a681613f4e565b9050612832565b506128b781613f4e565b9050612827565b50505050505050565b60606128d282612b7c565b6129445760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560448201527f6e000000000000000000000000000000000000000000000000000000000000006064820152608401610ce1565b600061294e613384565b9050600081511161296e5760405180602001604052806000815250612999565b8061297884613393565b604051602001612989929190614029565b6040516020818303038152906040525b9392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612a075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b73ffffffffffffffffffffffffffffffffffffffff8116612a905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ce1565b61262d81613028565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612b2c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610bd057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610bd0565b60025460009082108015610bd05750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612bb657612bb6613ef0565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190612c3a8261147f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080600080612c8f856134c5565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa158015612cea573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00151979650505050505050565b6000612d2882612b7c565b612d9a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610ce1565b6000612da58361147f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e1457508373ffffffffffffffffffffffffffffffffffffffff16612dfc84610c68565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e51575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16612e798261147f565b73ffffffffffffffffffffffffffffffffffffffff1614612f025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610ce1565b73ffffffffffffffffffffffffffffffffffffffff8216612f8a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ce1565b612f95600082612be0565b8160028281548110612fa957612fa9613ef0565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16634000aea07f00000000000000000000000000000000000000000000000000000000000000008486600060405160200161311c929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b815260040161314993929190614058565b6020604051808303816000875af1158015613168573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061318c919061400c565b50600083815260076020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a0909101909252815191830191909120938790529190526131e8906001613f87565b600085815260076020526040902055612e518482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b6132328383613539565b61323f6000848484613693565b610ed35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ce1565b600f54600114156132c25760115550565b600f54600214156132d35760125550565b600f54600314156132e45760135550565b600f54600414156132f55760145550565b60105550565b613306848484612e59565b61331284848484613693565b6124ac5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ce1565b606060088054610be590613e9c565b6060816133d357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156133fd57806133e781613f4e565b91506133f69050600a836140c5565b91506133d7565b60008167ffffffffffffffff81111561341857613418613a31565b6040519080825280601f01601f191660200182016040528015613442576020820181803683370190505b5090505b8415612e5157613457600183613fb8565b9150613464600a866140d9565b61346f906030613f87565b60f81b81838151811061348457613484613ef0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506134be600a866140c5565b9450613446565b6000806000835160411461351b5760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610ce1565b50505060208101516040820151606090920151909260009190911a90565b73ffffffffffffffffffffffffffffffffffffffff821661359c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ce1565b6135a581612b7c565b156135f25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ce1565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561385e576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061370a9033908990889088906004016140ed565b6020604051808303816000875af1925050508015613763575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261376091810190614136565b60015b613813573d808015613791576040519150601f19603f3d011682016040523d82523d6000602084013e613796565b606091505b50805161380b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ce1565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612e51565b506001612e51565b82805461387290613e9c565b90600052602060002090601f01602090048101928261389457600085556138da565b82601f106138ad57805160ff19168380011785556138da565b828001600101855582156138da579182015b828111156138da5782518255916020019190600101906138bf565b506114019291505b8082111561140157600081556001016138e2565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461262d57600080fd5b60006020828403121561393657600080fd5b8135612999816138f6565b60005b8381101561395c578181015183820152602001613944565b838111156124ac5750506000910152565b60008151808452613985816020860160208601613941565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000612999602083018461396d565b6000602082840312156139dc57600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461165357600080fd5b60008060408385031215613a1a57600080fd5b613a23836139e3565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115613a7b57613a7b613a31565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613ac157613ac1613a31565b81604052809350858152868686011115613ada57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613b0557600080fd5b61299983833560208501613a60565b60008060408385031215613b2757600080fd5b613b30836139e3565b9150602083013567ffffffffffffffff811115613b4c57600080fd5b613b5885828601613af4565b9150509250929050565b600080600060608486031215613b7757600080fd5b613b80846139e3565b9250613b8e602085016139e3565b9150604084013590509250925092565b60008060408385031215613bb157600080fd5b50508035926020909101359150565b600060208284031215613bd257600080fd5b813567ffffffffffffffff811115613be957600080fd5b8201601f81018413613bfa57600080fd5b612e5184823560208401613a60565b600060208284031215613c1b57600080fd5b612999826139e3565b6020808252825182820181905260009190848201906040850190845b81811015613c5c57835183529284019291840191600101613c40565b50909695505050505050565b801515811461262d57600080fd5b600060208284031215613c8857600080fd5b813561299981613c68565b60008060408385031215613ca657600080fd5b82359150602083013567ffffffffffffffff811115613b4c57600080fd5b6020808252825182820181905260009190848201906040850190845b81811015613c5c57835173ffffffffffffffffffffffffffffffffffffffff1683529284019291840191600101613ce0565b60008060408385031215613d2557600080fd5b613d2e836139e3565b91506020830135613d3e81613c68565b809150509250929050565b60008060008060808587031215613d5f57600080fd5b613d68856139e3565b9350613d76602086016139e3565b925060408501359150606085013567ffffffffffffffff811115613d9957600080fd5b613da587828801613af4565b91505092959194509250565b60008083601f840112613dc357600080fd5b50813567ffffffffffffffff811115613ddb57600080fd5b6020830191508360208260051b8501011115613df657600080fd5b9250929050565b60008060008060408587031215613e1357600080fd5b843567ffffffffffffffff80821115613e2b57600080fd5b613e3788838901613db1565b90965094506020870135915080821115613e5057600080fd5b50613e5d87828801613db1565b95989497509550505050565b60008060408385031215613e7c57600080fd5b613e85836139e3565b9150613e93602084016139e3565b90509250929050565b600181811c90821680613eb057607f821691505b60208210811415613eea577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f8057613f80613f1f565b5060010190565b60008219821115613f9a57613f9a613f1f565b500190565b600060208284031215613fb157600080fd5b5051919050565b600082821015613fca57613fca613f1f565b500390565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561400757614007613f1f565b500290565b60006020828403121561401e57600080fd5b815161299981613c68565b6000835161403b818460208801613941565b83519083019061404f818360208801613941565b01949350505050565b73ffffffffffffffffffffffffffffffffffffffff8416815282602082015260606040820152600061408d606083018461396d565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826140d4576140d4614096565b500490565b6000826140e8576140e8614096565b500690565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261412c608083018461396d565b9695505050505050565b60006020828403121561414857600080fd5b8151612999816138f656fea26469706673582212207b5f1311c9642162503b3624ddb85fb9af02df23de0695ea521f6257cc608fb964736f6c634300080a003368747470733a2f2f6d7973746572796d696e74732e696f2f6170692f6f70656e7365612f

Deployed Bytecode

0x6080604052600436106103f95760003560e01c80638462151c1161020d578063a22cb46511610128578063d22f9743116100bb578063e985e9c51161008a578063f632fdb01161006f578063f632fdb014610b37578063fb107a4f14610b4f578063fe60d12c14610b6457600080fd5b8063e985e9c514610ac1578063f2fde38b14610b1757600080fd5b8063d22f974314610a69578063d5abeb0114610a7f578063ddca3f4314610a95578063e5a3044014610aab57600080fd5b8063b88d4fde116100f7578063b88d4fde146109f4578063c18fdebb14610a14578063c29af27414610a29578063c87b56dd14610a4957600080fd5b8063a22cb46514610992578063adc2112f146109b2578063b2c2c5ed146109c7578063b48db6ad146109de57600080fd5b8063946807fd116101a05780639ba723761161016f5780639ba723761461092f5780639f55029314610945578063a035b1fe1461095a578063a0e67e2b1461097057600080fd5b8063946807fd146108cc57806394985ddd146108e457806395d89b41146109045780639a333f581461091957600080fd5b80638da5cb5b116101dc5780638da5cb5b1461084e578063910dc0d81461087957806391b7f5ed146108995780639224a33f146108b957600080fd5b80638462151c146107d657806388f620d41461080357806389404a79146108195780638d92becd1461082e57600080fd5b806342842e0e116103185780636352211e116102ab57806370a082311161027a5780637501f7411161025f5780637501f7411461078a57806380a6f05c146107a057806383f9f4d2146107b657600080fd5b806370a0823114610755578063715018a61461077557600080fd5b80636352211e146106e05780636c0360eb146107005780636fbb8364146107155780636fd9bed01461073557600080fd5b806355f804b3116102e757806355f804b31461067a5780635abf4ee81461069a5780635d08c1ae146106b057806361728f39146106ca57600080fd5b806342842e0e1461060a5780634298abbe1461062a5780634f6ccce71461064057806354964d271461066057600080fd5b8063221fd0ff11610390578063307ee3e41161035f578063307ee3e4146105a4578063308b8706146105ba5780633ccfd60b146105da578063417b9483146105e257600080fd5b8063221fd0ff1461052e578063228025e81461054457806323b872dd146105645780632f745c591461058457600080fd5b8063095ea7b3116103cc578063095ea7b3146104bc57806312b58349146104dc57806318160ddd146104f95780631f0a8fa71461050e57600080fd5b806301ffc9a7146103fe57806306fdde0314610433578063081812fc14610455578063088a4ed01461049a575b600080fd5b34801561040a57600080fd5b5061041e610419366004613924565b610b7a565b60405190151581526020015b60405180910390f35b34801561043f57600080fd5b50610448610bd6565b60405161042a91906139b7565b34801561046157600080fd5b506104756104703660046139ca565b610c68565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200161042a565b3480156104a657600080fd5b506104ba6104b53660046139ca565b610d13565b005b3480156104c857600080fd5b506104ba6104d7366004613a07565b610d7f565b3480156104e857600080fd5b50475b60405190815260200161042a565b34801561050557600080fd5b506002546104eb565b34801561051a57600080fd5b5061041e610529366004613b14565b610ed8565b34801561053a57600080fd5b506104eb60105481565b34801561055057600080fd5b506104ba61055f3660046139ca565b610faa565b34801561057057600080fd5b506104ba61057f366004613b62565b611016565b34801561059057600080fd5b506104eb61059f366004613a07565b61109d565b3480156105b057600080fd5b506104eb60145481565b3480156105c657600080fd5b506104ba6105d5366004613b9e565b6111b9565b6104ba6112b4565b3480156105ee57600080fd5b50610475738430e0b7be3315735c303b82e4471d59ac152aa581565b34801561061657600080fd5b506104ba610625366004613b62565b61138d565b34801561063657600080fd5b506104eb601a5481565b34801561064c57600080fd5b506104eb61065b3660046139ca565b6113a8565b34801561066c57600080fd5b5063619fcf2042101561041e565b34801561068657600080fd5b506104ba610695366004613bc0565b611405565b3480156106a657600080fd5b506104eb600b5481565b3480156106bc57600080fd5b5060195461041e9060ff1681565b3480156106d657600080fd5b506104eb60095481565b3480156106ec57600080fd5b506104756106fb3660046139ca565b61147f565b34801561070c57600080fd5b5061044861152c565b34801561072157600080fd5b506104eb6107303660046139ca565b6115ba565b34801561074157600080fd5b506104eb6107503660046139ca565b611658565b34801561076157600080fd5b506104eb610770366004613c09565b6116a6565b34801561078157600080fd5b506104ba6117a5565b34801561079657600080fd5b506104eb60185481565b3480156107ac57600080fd5b506104eb600e5481565b3480156107c257600080fd5b506104ba6107d13660046139ca565b611818565b3480156107e257600080fd5b506107f66107f1366004613c09565b611ac4565b60405161042a9190613c24565b34801561080f57600080fd5b506104eb60135481565b34801561082557600080fd5b50601e546104eb565b34801561083a57600080fd5b506104ba610849366004613c76565b611bbe565b34801561085a57600080fd5b5060055473ffffffffffffffffffffffffffffffffffffffff16610475565b34801561088557600080fd5b506104ba6108943660046139ca565b611c56565b3480156108a557600080fd5b506104ba6108b43660046139ca565b611cc2565b6104ba6108c7366004613c93565b611d2e565b3480156108d857600080fd5b506104eb63619fcf2081565b3480156108f057600080fd5b506104ba6108ff366004613b9e565b612007565b34801561091057600080fd5b50610448612096565b34801561092557600080fd5b506104eb600d5481565b34801561093b57600080fd5b506104eb600f5481565b34801561095157600080fd5b506104eb6120a5565b34801561096657600080fd5b506104eb60155481565b34801561097c57600080fd5b506109856120ba565b60405161042a9190613cc4565b34801561099e57600080fd5b506104ba6109ad366004613d12565b612128565b3480156109be57600080fd5b506104ba612225565b3480156109d357600080fd5b506104eb62d0d0d481565b3480156109ea57600080fd5b506104eb60125481565b348015610a0057600080fd5b506104ba610a0f366004613d49565b612424565b348015610a2057600080fd5b506104ba6124b2565b348015610a3557600080fd5b506104ba610a44366004613dfd565b612630565b348015610a5557600080fd5b50610448610a643660046139ca565b6128c7565b348015610a7557600080fd5b506104eb600c5481565b348015610a8b57600080fd5b506104eb60165481565b348015610aa157600080fd5b506104eb600a5481565b348015610ab757600080fd5b506104eb60115481565b348015610acd57600080fd5b5061041e610adc366004613e69565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260046020908152604080832093909416825291909152205460ff1690565b348015610b2357600080fd5b506104ba610b32366004613c09565b6129a0565b348015610b4357600080fd5b50601a5442101561041e565b348015610b5b57600080fd5b506015546104eb565b348015610b7057600080fd5b506104eb60175481565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f780e9d63000000000000000000000000000000000000000000000000000000001480610bd05750610bd082612a99565b92915050565b606060008054610be590613e9c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1190613e9c565b8015610c5e5780601f10610c3357610100808354040283529160200191610c5e565b820191906000526020600020905b815481529060010190602001808311610c4157829003601f168201915b5050505050905090565b6000610c7382612b7c565b610cea5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b5060009081526003602052604090205473ffffffffffffffffffffffffffffffffffffffff1690565b60055473ffffffffffffffffffffffffffffffffffffffff163314610d7a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b601855565b6000610d8a8261147f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e2e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610ce1565b3373ffffffffffffffffffffffffffffffffffffffff82161480610e575750610e578133610adc565b610ec95760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610ce1565b610ed38383612be0565b505050565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606085901b16602080830191909152825180830360140181526034830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a33320000000060548401526070808401829052845180850390910181526090909301909352815191012060009190738430e0b7be3315735c303b82e4471d59ac152aa5610f8a8286612c80565b73ffffffffffffffffffffffffffffffffffffffff161495945050505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146110115760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b601655565b6110203382612d1d565b6110925760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ce1565b610ed3838383612e59565b60006110a8836116a6565b82106110f65760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610ce1565b6000805b600254811015611170576002818154811061111757611117613ef0565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff868116911614156111605783821415611154579150610bd09050565b61115d82613f4e565b91505b61116981613f4e565b90506110fa565b5060405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610ce1565b60055473ffffffffffffffffffffffffffffffffffffffff1633146112205760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b600082118015611231575060048211155b61127d5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420647261774e756d6265723a206d75737420626520312d34006044820152606401610ce1565b816001141561128c57600b5550565b816002141561129b57600c5550565b81600314156112aa57600d5550565b600e8190555b5050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461131b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b6040514790600090339083908381818185875af1925050503d806000811461135f576040519150601f19603f3d011682016040523d82523d6000602084013e611364565b606091505b505090508061137257600080fd5b81601e60008282546113849190613f87565b90915550505050565b610ed383838360405180602001604052806000815250612424565b60006113b360025490565b82106114015760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f620000000000000000006044820152606401610ce1565b5090565b60055473ffffffffffffffffffffffffffffffffffffffff16331461146c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b80516112b0906008906020840190613866565b6000806002838154811061149557611495613ef0565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16905080610bd05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610ce1565b6008805461153990613e9c565b80601f016020809104026020016040519081016040528092919081815260200182805461156590613e9c565b80156115b25780601f10611587576101008083540402835291602001916115b2565b820191906000526020600020905b81548152906001019060200180831161159557829003601f168201915b505050505081565b600080821180156115cc575060048211155b6116185760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420647261774e756d6265723a206d75737420626520312d34006044820152606401610ce1565b8160011415611629575050600b5490565b816002141561163a575050600c5490565b816003141561164b575050600d5490565b5050600e5490565b919050565b6000816001141561166b57505060115490565b816002141561167c57505060125490565b816003141561168d57505060135490565b816004141561169e57505060145490565b505060105490565b600073ffffffffffffffffffffffffffffffffffffffff82166117315760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610ce1565b600254600090815b8181101561179c576002818154811061175457611754613ef0565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff8681169116141561178c5761178983613f4e565b92505b61179581613f4e565b9050611739565b50909392505050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461180c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b6118166000613028565b565b60055473ffffffffffffffffffffffffffffffffffffffff16331461187f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b600a546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca73ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa15801561190c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119309190613f9f565b101561197e5760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f756768204c494e4b202d2066696c6c20636f6e7472616374006044820152606401610ce1565b60008111801561198f575060048111155b6119db5760405162461bcd60e51b815260206004820152601f60248201527f496e76616c696420647261774e756d6265723a206d75737420626520312d34006044820152606401610ce1565b436119e5826115ba565b1115611a335760405162461bcd60e51b815260206004820152601b60248201527f5072697a6520626c6f636b206e6f7420726561636865642079657400000000006044820152606401610ce1565b611a3c81611658565b15611aaf5760405162461bcd60e51b815260206004820152602a60248201527f52616e646f6d6e65737320616c72656164792067656e65726174656420666f7260448201527f20746869732064726177000000000000000000000000000000000000000000006064820152608401610ce1565b80600f819055506112b0600954600a5461309f565b6060611acf826116a6565b600010611b1e5760405162461bcd60e51b815260206004820152601660248201527f455243373231456e756d3a206f776e657220696f6f62000000000000000000006044820152606401610ce1565b6000611b29836116a6565b905060008167ffffffffffffffff811115611b4657611b46613a31565b604051908082528060200260200182016040528015611b6f578160200160208202803683370190505b50905060005b82811015611bb657611b87858261109d565b828281518110611b9957611b99613ef0565b602090810291909101015280611bae81613f4e565b915050611b75565b509392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314611c255760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b601980547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b60055473ffffffffffffffffffffffffffffffffffffffff163314611cbd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b601a55565b60055473ffffffffffffffffffffffffffffffffffffffff163314611d295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b601555565b60026006541415611d815760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610ce1565b600260065563619fcf20421015611dda5760405162461bcd60e51b815260206004820152601460248201527f53616c6520686173206e6f7420737461727465640000000000000000000000006044820152606401610ce1565b6000611de560025490565b60195490915060ff1615611e3b5760405162461bcd60e51b815260206004820152600b60248201527f53616c65205061757365640000000000000000000000000000000000000000006044820152606401610ce1565b600083118015611e4d57506018548311155b611e995760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206e756d6265724f664e6674730000000000000000000000006044820152606401610ce1565b601754601654611ea99190613fb8565b611eb38483613f87565b1115611f015760405162461bcd60e51b815260206004820152601260248201527f45786365656473204d617820537570706c7900000000000000000000000000006044820152606401610ce1565b82601554611f0f9190613fcf565b341015611f5e5760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420456e6f756768204554480000000000000000000000000000000000006044820152606401610ce1565b601a54421015611fbe57611f723383610ed8565b611fbe5760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c69737465640000000000000000006044820152606401610ce1565b60005b83811015611ffc57611fec33611fd78385613f87565b60405180602001604052806000815250613228565b611ff581613f4e565b9050611fc1565b505060016006555050565b3373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb7952161461208c5760405162461bcd60e51b815260206004820152601f60248201527f4f6e6c7920565246436f6f7264696e61746f722063616e2066756c66696c6c006044820152606401610ce1565b6112b082826132b1565b606060018054610be590613e9c565b600047601e546120b59190613f87565b905090565b60606002805480602002602001604051908101604052809291908181526020018280548015610c5e57602002820191906000526020600020905b815473ffffffffffffffffffffffffffffffffffffffff1681526001909101906020018083116120f4575050505050905090565b73ffffffffffffffffffffffffffffffffffffffff821633141561218e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610ce1565b33600081815260046020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168085529083529281902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b60055473ffffffffffffffffffffffffffffffffffffffff16331461228c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca73ffffffffffffffffffffffffffffffffffffffff169063a9059cbb90339083906370a0823190602401602060405180830381865afa158015612320573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123449190613f9f565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b16815273ffffffffffffffffffffffffffffffffffffffff909216600483015260248201526044016020604051808303816000875af11580156123b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123d8919061400c565b6118165760405162461bcd60e51b815260206004820152601260248201527f556e61626c6520746f207472616e7366657200000000000000000000000000006044820152606401610ce1565b61242e3383612d1d565b6124a05760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610ce1565b6124ac848484846132fb565b50505050565b60055473ffffffffffffffffffffffffffffffffffffffff1633146125195760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b600a546040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca73ffffffffffffffffffffffffffffffffffffffff16906370a0823190602401602060405180830381865afa1580156125a6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125ca9190613f9f565b10156126185760405162461bcd60e51b815260206004820152601f60248201527f4e6f7420656e6f756768204c494e4b202d2066696c6c20636f6e7472616374006044820152606401610ce1565b6000600f55600954600a5461262d919061309f565b50565b60055473ffffffffffffffffffffffffffffffffffffffff1633146126975760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b82811461270c5760405162461bcd60e51b815260206004820152603360248201527f496e76616c6964207175616e74697469657320616e6420726563697069656e7460448201527f7320286c656e677468206d69736d6174636829000000000000000000000000006064820152608401610ce1565b60008061271860025490565b905060005b8581101561275b5786868281811061273757612737613ef0565b90506020020135836127499190613f87565b925061275481613f4e565b905061271d565b506016546127698383613f87565b11156127b75760405162461bcd60e51b815260206004820152601260248201527f45786365656473204d617820537570706c7900000000000000000000000000006044820152606401610ce1565b6017548211156128095760405162461bcd60e51b815260206004820152601460248201527f45786365656473204d61782052657365727665640000000000000000000000006044820152606401610ce1565b816017600082825461281b9190613fb8565b90915550600092508290505b838110156128be5760005b87878381811061284457612844613ef0565b905060200201358110156128ad5761289d86868481811061286757612867613ef0565b905060200201602081019061287c9190613c09565b8461288681613f4e565b955060405180602001604052806000815250613228565b6128a681613f4e565b9050612832565b506128b781613f4e565b9050612827565b50505050505050565b60606128d282612b7c565b6129445760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560448201527f6e000000000000000000000000000000000000000000000000000000000000006064820152608401610ce1565b600061294e613384565b9050600081511161296e5760405180602001604052806000815250612999565b8061297884613393565b604051602001612989929190614029565b6040516020818303038152906040525b9392505050565b60055473ffffffffffffffffffffffffffffffffffffffff163314612a075760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610ce1565b73ffffffffffffffffffffffffffffffffffffffff8116612a905760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610ce1565b61262d81613028565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd000000000000000000000000000000000000000000000000000000001480612b2c57507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b80610bd057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff00000000000000000000000000000000000000000000000000000000831614610bd0565b60025460009082108015610bd05750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612bb657612bb6613ef0565b60009182526020909120015473ffffffffffffffffffffffffffffffffffffffff16141592915050565b600081815260036020526040902080547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff84169081179091558190612c3a8261147f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080600080612c8f856134c5565b6040805160008152602081018083528b905260ff8316918101919091526060810184905260808101839052929550909350915060019060a0016020604051602081039080840390855afa158015612cea573d6000803e3d6000fd5b50506040517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe00151979650505050505050565b6000612d2882612b7c565b612d9a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610ce1565b6000612da58361147f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612e1457508373ffffffffffffffffffffffffffffffffffffffff16612dfc84610c68565b73ffffffffffffffffffffffffffffffffffffffff16145b80612e51575073ffffffffffffffffffffffffffffffffffffffff80821660009081526004602090815260408083209388168352929052205460ff165b949350505050565b8273ffffffffffffffffffffffffffffffffffffffff16612e798261147f565b73ffffffffffffffffffffffffffffffffffffffff1614612f025760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610ce1565b73ffffffffffffffffffffffffffffffffffffffff8216612f8a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610ce1565b612f95600082612be0565b8160028281548110612fa957612fa9613ef0565b6000918252602082200180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6005805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60007f000000000000000000000000514910771af9ca656af840dff83e8264ecf986ca73ffffffffffffffffffffffffffffffffffffffff16634000aea07f000000000000000000000000f0d54349addcf704f77ae15b96510dea15cb79528486600060405160200161311c929190918252602082015260400190565b6040516020818303038152906040526040518463ffffffff1660e01b815260040161314993929190614058565b6020604051808303816000875af1158015613168573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061318c919061400c565b50600083815260076020818152604080842054815180840189905280830186905230606082015260808082018390528351808303909101815260a0909101909252815191830191909120938790529190526131e8906001613f87565b600085815260076020526040902055612e518482604080516020808201949094528082019290925280518083038201815260609092019052805191012090565b6132328383613539565b61323f6000848484613693565b610ed35760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ce1565b600f54600114156132c25760115550565b600f54600214156132d35760125550565b600f54600314156132e45760135550565b600f54600414156132f55760145550565b60105550565b613306848484612e59565b61331284848484613693565b6124ac5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ce1565b606060088054610be590613e9c565b6060816133d357505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156133fd57806133e781613f4e565b91506133f69050600a836140c5565b91506133d7565b60008167ffffffffffffffff81111561341857613418613a31565b6040519080825280601f01601f191660200182016040528015613442576020820181803683370190505b5090505b8415612e5157613457600183613fb8565b9150613464600a866140d9565b61346f906030613f87565b60f81b81838151811061348457613484613ef0565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506134be600a866140c5565b9450613446565b6000806000835160411461351b5760405162461bcd60e51b815260206004820152601860248201527f696e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610ce1565b50505060208101516040820151606090920151909260009190911a90565b73ffffffffffffffffffffffffffffffffffffffff821661359c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610ce1565b6135a581612b7c565b156135f25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610ce1565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff85169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600073ffffffffffffffffffffffffffffffffffffffff84163b1561385e576040517f150b7a0200000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff85169063150b7a029061370a9033908990889088906004016140ed565b6020604051808303816000875af1925050508015613763575060408051601f3d9081017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016820190925261376091810190614136565b60015b613813573d808015613791576040519150601f19603f3d011682016040523d82523d6000602084013e613796565b606091505b50805161380b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610ce1565b805181602001fd5b7fffffffff00000000000000000000000000000000000000000000000000000000167f150b7a0200000000000000000000000000000000000000000000000000000000149050612e51565b506001612e51565b82805461387290613e9c565b90600052602060002090601f01602090048101928261389457600085556138da565b82601f106138ad57805160ff19168380011785556138da565b828001600101855582156138da579182015b828111156138da5782518255916020019190600101906138bf565b506114019291505b8082111561140157600081556001016138e2565b7fffffffff000000000000000000000000000000000000000000000000000000008116811461262d57600080fd5b60006020828403121561393657600080fd5b8135612999816138f6565b60005b8381101561395c578181015183820152602001613944565b838111156124ac5750506000910152565b60008151808452613985816020860160208601613941565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b602081526000612999602083018461396d565b6000602082840312156139dc57600080fd5b5035919050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461165357600080fd5b60008060408385031215613a1a57600080fd5b613a23836139e3565b946020939093013593505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600067ffffffffffffffff80841115613a7b57613a7b613a31565b604051601f85017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f01168101908282118183101715613ac157613ac1613a31565b81604052809350858152868686011115613ada57600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112613b0557600080fd5b61299983833560208501613a60565b60008060408385031215613b2757600080fd5b613b30836139e3565b9150602083013567ffffffffffffffff811115613b4c57600080fd5b613b5885828601613af4565b9150509250929050565b600080600060608486031215613b7757600080fd5b613b80846139e3565b9250613b8e602085016139e3565b9150604084013590509250925092565b60008060408385031215613bb157600080fd5b50508035926020909101359150565b600060208284031215613bd257600080fd5b813567ffffffffffffffff811115613be957600080fd5b8201601f81018413613bfa57600080fd5b612e5184823560208401613a60565b600060208284031215613c1b57600080fd5b612999826139e3565b6020808252825182820181905260009190848201906040850190845b81811015613c5c57835183529284019291840191600101613c40565b50909695505050505050565b801515811461262d57600080fd5b600060208284031215613c8857600080fd5b813561299981613c68565b60008060408385031215613ca657600080fd5b82359150602083013567ffffffffffffffff811115613b4c57600080fd5b6020808252825182820181905260009190848201906040850190845b81811015613c5c57835173ffffffffffffffffffffffffffffffffffffffff1683529284019291840191600101613ce0565b60008060408385031215613d2557600080fd5b613d2e836139e3565b91506020830135613d3e81613c68565b809150509250929050565b60008060008060808587031215613d5f57600080fd5b613d68856139e3565b9350613d76602086016139e3565b925060408501359150606085013567ffffffffffffffff811115613d9957600080fd5b613da587828801613af4565b91505092959194509250565b60008083601f840112613dc357600080fd5b50813567ffffffffffffffff811115613ddb57600080fd5b6020830191508360208260051b8501011115613df657600080fd5b9250929050565b60008060008060408587031215613e1357600080fd5b843567ffffffffffffffff80821115613e2b57600080fd5b613e3788838901613db1565b90965094506020870135915080821115613e5057600080fd5b50613e5d87828801613db1565b95989497509550505050565b60008060408385031215613e7c57600080fd5b613e85836139e3565b9150613e93602084016139e3565b90509250929050565b600181811c90821680613eb057607f821691505b60208210811415613eea577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f8057613f80613f1f565b5060010190565b60008219821115613f9a57613f9a613f1f565b500190565b600060208284031215613fb157600080fd5b5051919050565b600082821015613fca57613fca613f1f565b500390565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561400757614007613f1f565b500290565b60006020828403121561401e57600080fd5b815161299981613c68565b6000835161403b818460208801613941565b83519083019061404f818360208801613941565b01949350505050565b73ffffffffffffffffffffffffffffffffffffffff8416815282602082015260606040820152600061408d606083018461396d565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000826140d4576140d4614096565b500490565b6000826140e8576140e8614096565b500690565b600073ffffffffffffffffffffffffffffffffffffffff80871683528086166020840152508360408301526080606083015261412c608083018461396d565b9695505050505050565b60006020828403121561414857600080fd5b8151612999816138f656fea26469706673582212207b5f1311c9642162503b3624ddb85fb9af02df23de0695ea521f6257cc608fb964736f6c634300080a0033

Deployed Bytecode Sourcemap

353:12136:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;191:301:3;;;;;;;;;;-1:-1:-1;191:301:3;;;;;:::i;:::-;;:::i;:::-;;;611:14:18;;604:22;586:41;;574:2;559:18;191:301:3;;;;;;;;2021:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2661:308::-;;;;;;;;;;-1:-1:-1;2661:308:4;;;;;:::i;:::-;;:::i;:::-;;;1809:42:18;1797:55;;;1779:74;;1767:2;1752:18;2661:308:4;1633:226:18;10760:116:11;;;;;;;;;;-1:-1:-1;10760:116:11;;;;;:::i;:::-;;:::i;:::-;;2241:412:4;;;;;;;;;;-1:-1:-1;2241:412:4;;;;;:::i;:::-;;:::i;11645:104:11:-;;;;;;;;;;-1:-1:-1;11720:21:11;11645:104;;;2470:25:18;;;2458:2;2443:18;11645:104:11;2324:177:18;1470:110:3;;;;;;;;;;-1:-1:-1;1558:7:3;:14;1470:110;;6487:364:11;;;;;;;;;;-1:-1:-1;6487:364:11;;;;;:::i;:::-;;:::i;1385:37::-;;;;;;;;;;;;;;;;10884:106;;;;;;;;;;-1:-1:-1;10884:106:11;;;;;:::i;:::-;;:::i;3534:376:4:-;;;;;;;;;;-1:-1:-1;3534:376:4;;;;;:::i;:::-;;:::i;500:504:3:-;;;;;;;;;;-1:-1:-1;500:504:3;;;;;:::i;:::-;;:::i;1558:36:11:-;;;;;;;;;;;;;;;;10151:503;;;;;;;;;;-1:-1:-1;10151:503:11;;;;;:::i;:::-;;:::i;11968:273::-;;;:::i;1977:85::-;;;;;;;;;;;;2020:42;1977:85;;3918:185:4;;;;;;;;;;-1:-1:-1;3918:185:4;;;;;:::i;:::-;;:::i;2069:77:11:-;;;;;;;;;;;;;;;;1588:244:3;;;;;;;;;;-1:-1:-1;1588:244:3;;;;;:::i;:::-;;:::i;6049:121:11:-;;;;;;;;;;-1:-1:-1;1675:10:11;6123:15;:39;;6049:121;;10998:104;;;;;;;;;;-1:-1:-1;10998:104:11;;;;;:::i;:::-;;:::i;819:54::-;;;;;;;;;;;;;;;;1920:30;;;;;;;;;;-1:-1:-1;1920:30:11;;;;;;;;527:91;;;;;;;;;;;;;;;;1687:326:4;;;;;;;;;;-1:-1:-1;1687:326:4;;;;;:::i;:::-;;:::i;471:21:11:-;;;;;;;;;;;;;:::i;3827:476::-;;;;;;;;;;-1:-1:-1;3827:476:11;;;;;:::i;:::-;;:::i;3200:491::-;;;;;;;;;;-1:-1:-1;3200:491:11;;;;;:::i;:::-;;:::i;1161:518:4:-;;;;;;;;;;-1:-1:-1;1161:518:4;;;;;:::i;:::-;;:::i;1650:94:12:-;;;;;;;;;;;;;:::i;1886:27:11:-;;;;;;;;;;;;;;;;1092:55;;;;;;;;;;;;;;;;4501:680;;;;;;;;;;-1:-1:-1;4501:680:11;;;;;:::i;:::-;;:::i;1012:450:3:-;;;;;;;;;;-1:-1:-1;1012:450:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1515:36:11:-;;;;;;;;;;;;;;;;11538:99;;;;;;;;;;-1:-1:-1;11615:14:11;;11538:99;;11110:101;;;;;;;;;;-1:-1:-1;11110:101:11;;;;;:::i;:::-;;:::i;999:87:12:-;;;;;;;;;;-1:-1:-1;1072:6:12;;;;999:87;;11223:164:11;;;;;;;;;;-1:-1:-1;11223:164:11;;;;;:::i;:::-;;:::i;10662:90::-;;;;;;;;;;-1:-1:-1;10662:90:11;;;;;:::i;:::-;;:::i;7918:836::-;;;;;;:::i;:::-;;:::i;1628:57::-;;;;;;;;;;;;1675:10;1628:57;;9834:233:16;;;;;;;;;;-1:-1:-1;9834:233:16;;;;;:::i;:::-;;:::i;2129:104:4:-;;;;;;;;;;;;;:::i;1001:55:11:-;;;;;;;;;;;;;;;;1283:36;;;;;;;;;;;;;;;;11757:121;;;;;;;;;;;;;:::i;1732:33::-;;;;;;;;;;;;;;;;695:95:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2977:327::-;;;;;;;;;;-1:-1:-1;2977:327:4;;;;;:::i;:::-;;:::i;12339:147:11:-;;;;;;;;;;;;;:::i;728:51::-;;;;;;;;;;;;771:8;728:51;;1472:36;;;;;;;;;;;;;;;;4111:365:4;;;;;;;;;;-1:-1:-1;4111:365:4;;;;;:::i;:::-;;:::i;2707:375:11:-;;;;;;;;;;;;;:::i;8802:863::-;;;;;;;;;;-1:-1:-1;8802:863:11;;;;;:::i;:::-;;:::i;9673:339::-;;;;;;;;;;-1:-1:-1;9673:339:11;;;;;:::i;:::-;;:::i;910:55::-;;;;;;;;;;;;;;;;1772:32;;;;;;;;;;;;;;;;625:33;;;;;;;;;;;;;;;;1429:36;;;;;;;;;;;;;;;;3312:214:4;;;;;;;;;;-1:-1:-1;3312:214:4;;;;;:::i;:::-;3483:25;;;;3454:4;3483:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;3312:214;1899:192:12;;;;;;;;;;-1:-1:-1;1899:192:12;;;;;:::i;:::-;;:::i;6178:126:11:-;;;;;;;;;;-1:-1:-1;6271:25:11;;6252:15;:44;;6178:126;;6370:84;;;;;;;;;;-1:-1:-1;6441:5:11;;6370:84;;1811:29;;;;;;;;;;;;;;;;191:301:3;339:4;381:50;;;396:35;381:50;;:103;;;448:36;472:11;448:23;:36::i;:::-;361:123;191:301;-1:-1:-1;;191:301:3:o;2021:100:4:-;2075:13;2108:5;2101:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2021:100;:::o;2661:308::-;2782:7;2829:16;2837:7;2829;:16::i;:::-;2807:110;;;;-1:-1:-1;;;2807:110:4;;10687:2:18;2807:110:4;;;10669:21:18;10726:2;10706:18;;;10699:30;10765:34;10745:18;;;10738:62;10836:14;10816:18;;;10809:42;10868:19;;2807:110:4;;;;;;;;;-1:-1:-1;2937:24:4;;;;:15;:24;;;;;;;;;2661:308::o;10760:116:11:-;1072:6:12;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;10841:7:11::1;:27:::0;10760:116::o;2241:412:4:-;2322:13;2338:24;2354:7;2338:15;:24::i;:::-;2322:40;;2387:5;2381:11;;:2;:11;;;;2373:57;;;;-1:-1:-1;;;2373:57:4;;11461:2:18;2373:57:4;;;11443:21:18;11500:2;11480:18;;;11473:30;11539:34;11519:18;;;11512:62;11610:3;11590:18;;;11583:31;11631:19;;2373:57:4;11259:397:18;2373:57:4;682:10:1;2465:21:4;;;;;:62;;-1:-1:-1;2490:37:4;2507:5;682:10:1;3312:214:4;:::i;2490:37::-;2443:168;;;;-1:-1:-1;;;2443:168:4;;11863:2:18;2443:168:4;;;11845:21:18;11902:2;11882:18;;;11875:30;11941:34;11921:18;;;11914:62;12012:26;11992:18;;;11985:54;12056:19;;2443:168:4;11661:420:18;2443:168:4;2624:21;2633:2;2637:7;2624:8;:21::i;:::-;2311:342;2241:412;;:::o;6487:364:11:-;6618:22;;;12248:66:18;12235:2;12231:15;;;12227:88;6618:22:11;;;;12215:101:18;;;;6618:22:11;;;;;;;;;12332:12:18;;;6618:22:11;;6608:33;;;;;;12597:66:18;6693:65:11;;;12585:79:18;12680:12;;;;12673:28;;;6693:65:11;;;;;;;;;;12717:12:18;;;;6693:65:11;;;6683:76;;;;;-1:-1:-1;;6608:33:11;2020:42;6777:46;6683:76;6813:9;6777:13;:46::i;:::-;:66;;;;6487:364;-1:-1:-1;;;;;6487:364:11:o;10884:106::-;1072:6:12;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;10957:9:11::1;:25:::0;10884:106::o;3534:376:4:-;3743:41;682:10:1;3776:7:4;3743:18;:41::i;:::-;3721:140;;;;-1:-1:-1;;;3721:140:4;;12942:2:18;3721:140:4;;;12924:21:18;12981:2;12961:18;;;12954:30;13020:34;13000:18;;;12993:62;13091:19;13071:18;;;13064:47;13128:19;;3721:140:4;12740:413:18;3721:140:4;3874:28;3884:4;3890:2;3894:7;3874:9;:28::i;500:504:3:-;625:15;674:24;692:5;674:17;:24::i;:::-;666:5;:32;658:67;;;;-1:-1:-1;;;658:67:3;;13360:2:18;658:67:3;;;13342:21:18;13399:2;13379:18;;;13372:30;13438:24;13418:18;;;13411:52;13480:18;;658:67:3;13158:346:18;658:67:3;736:13;765:9;760:186;780:7;:14;776:18;;760:186;;;829:7;837:1;829:10;;;;;;;;:::i;:::-;;;;;;;;;;;;820:19;;;829:10;;820:19;816:119;;;873:5;864;:14;860:59;;;887:1;-1:-1:-1;880:8:3;;-1:-1:-1;880:8:3;860:59;912:7;;;:::i;:::-;;;860:59;796:3;;;:::i;:::-;;;760:186;;;-1:-1:-1;956:40:3;;-1:-1:-1;;;956:40:3;;13360:2:18;956:40:3;;;13342:21:18;13399:2;13379:18;;;13372:30;13438:24;13418:18;;;13411:52;13480:18;;956:40:3;13158:346:18;10151:503:11;1072:6:12;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;10263:1:11::1;10250:10;:14;:33;;;;;10282:1;10268:10;:15;;10250:33;10242:77;;;::::0;-1:-1:-1;;;10242:77:11;;14289:2:18;10242:77:11::1;::::0;::::1;14271:21:18::0;14328:2;14308:18;;;14301:30;14367:33;14347:18;;;14340:61;14418:18;;10242:77:11::1;14087:355:18::0;10242:77:11::1;10333:10;10347:1;10333:15;10330:317;;;10365:12;:26:::0;-1:-1:-1;10151:503:11:o;10330:317::-:1;10421:10;10435:1;10421:15;10418:229;;;10453:12;:26:::0;-1:-1:-1;10151:503:11:o;10418:229::-:1;10509:10;10523:1;10509:15;10506:141;;;10541:12;:26:::0;-1:-1:-1;10151:503:11:o;10506:141::-:1;10609:12;:26:::0;;;10506:141:::1;10151:503:::0;;:::o;11968:273::-;1072:6:12;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;12089:64:11::1;::::0;12038:21:::1;::::0;12024:11:::1;::::0;12097:10:::1;::::0;12038:21;;12024:11;12089:64;12024:11;12089:64;12038:21;12097:10;12089:64:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12070:83;;;12172:7;12164:16;;;::::0;::::1;;12209:3;12191:14;;:21;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;11968:273:11:o;3918:185:4:-;4056:39;4073:4;4079:2;4083:7;4056:39;;;;;;;;;;;;:16;:39::i;1588:244:3:-;1708:7;1749:24;1558:7;:14;;1470:110;1749:24;1741:5;:32;1733:68;;;;-1:-1:-1;;;1733:68:3;;14992:2:18;1733:68:3;;;14974:21:18;15031:2;15011:18;;;15004:30;15070:25;15050:18;;;15043:53;15113:18;;1733:68:3;14790:347:18;1733:68:3;-1:-1:-1;1819:5:3;1588:244::o;10998:104:11:-;1072:6:12;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;11073:21:11;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;1687:326:4:-:0;1804:7;1829:13;1845:7;1853;1845:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;1894:19:4;1872:110;;;;-1:-1:-1;;;1872:110:4;;15344:2:18;1872:110:4;;;15326:21:18;15383:2;15363:18;;;15356:30;15422:34;15402:18;;;15395:62;15493:11;15473:18;;;15466:39;15522:19;;1872:110:4;15142:405:18;471:21:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3827:476::-;3899:7;3940:1;3927:10;:14;:33;;;;;3959:1;3945:10;:15;;3927:33;3919:77;;;;-1:-1:-1;;;3919:77:11;;14289:2:18;3919:77:11;;;14271:21:18;14328:2;14308:18;;;14301:30;14367:33;14347:18;;;14340:61;14418:18;;3919:77:11;14087:355:18;3919:77:11;4010:10;4024:1;4010:15;4007:289;;;-1:-1:-1;;4049:12:11;;;3827:476::o;4007:289::-;4091:10;4105:1;4091:15;4088:208;;;-1:-1:-1;;4130:12:11;;;3827:476::o;4088:208::-;4172:10;4186:1;4172:15;4169:127;;;-1:-1:-1;;4211:12:11;;;3827:476::o;4169:127::-;-1:-1:-1;;4272:12:11;;;3827:476::o;4169:127::-;3827:476;;;:::o;3200:491::-;3268:7;3291:10;3305:1;3291:15;3288:396;;;-1:-1:-1;;3330:17:11;;;3200:491::o;3288:396::-;3377:10;3391:1;3377:15;3374:310;;;-1:-1:-1;;3416:17:11;;;3200:491::o;3374:310::-;3463:10;3477:1;3463:15;3460:224;;;-1:-1:-1;;3502:17:11;;;3200:491::o;3460:224::-;3549:10;3563:1;3549:15;3546:138;;;-1:-1:-1;;3588:17:11;;;3200:491::o;3546:138::-;-1:-1:-1;;3654:18:11;;;3200:491::o;1161:518:4:-;1278:7;1325:19;;;1303:111;;;;-1:-1:-1;;;1303:111:4;;15754:2:18;1303:111:4;;;15736:21:18;15793:2;15773:18;;;15766:30;15832:34;15812:18;;;15805:62;15903:12;15883:18;;;15876:40;15933:19;;1303:111:4;15552:406:18;1303:111:4;1470:7;:14;1425:13;;;1495:130;1519:6;1515:1;:10;1495:130;;;1560:7;1568:1;1560:10;;;;;;;;:::i;:::-;;;;;;;;;;;;1551:19;;;1560:10;;1551:19;1547:67;;;1591:7;;;:::i;:::-;;;1547:67;1527:3;;;:::i;:::-;;;1495:130;;;-1:-1:-1;1666:5:4;;1161:518;-1:-1:-1;;;1161:518:4:o;1650:94:12:-;1072:6;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;4501:680:11:-;1072:6:12;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;4609:3:11::1;::::0;4576:29:::1;::::0;;;;4599:4:::1;4576:29;::::0;::::1;1779:74:18::0;4576:4:11::1;:14;;::::0;::::1;::::0;1752:18:18;;4576:29:11::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;4568:80;;;::::0;-1:-1:-1;;;4568:80:11;;16354:2:18;4568:80:11::1;::::0;::::1;16336:21:18::0;16393:2;16373:18;;;16366:30;16432:33;16412:18;;;16405:61;16483:18;;4568:80:11::1;16152:355:18::0;4568:80:11::1;4680:1;4667:10;:14;:33;;;;;4699:1;4685:10;:15;;4667:33;4659:77;;;::::0;-1:-1:-1;;;4659:77:11;;14289:2:18;4659:77:11::1;::::0;::::1;14271:21:18::0;14328:2;14308:18;;;14301:30;14367:33;14347:18;;;14340:61;14418:18;;4659:77:11::1;14087:355:18::0;4659:77:11::1;4792:12;4755:33;4777:10;4755:21;:33::i;:::-;:49;;4747:89;;;::::0;-1:-1:-1;;;4747:89:11;;16714:2:18;4747:89:11::1;::::0;::::1;16696:21:18::0;16753:2;16733:18;;;16726:30;16792:29;16772:18;;;16765:57;16839:18;;4747:89:11::1;16512:351:18::0;4747:89:11::1;4855:29;4873:10;4855:17;:29::i;:::-;:34:::0;4847:89:::1;;;::::0;-1:-1:-1;;;4847:89:11;;17070:2:18;4847:89:11::1;::::0;::::1;17052:21:18::0;17109:2;17089:18;;;17082:30;17148:34;17128:18;;;17121:62;17219:12;17199:18;;;17192:40;17249:19;;4847:89:11::1;16868:406:18::0;4847:89:11::1;5062:10;5042:17;:30;;;;5142:31;5160:7;;5169:3;;5142:17;:31::i;1012:450:3:-:0;1098:16;1144:24;1162:5;1144:17;:24::i;:::-;1140:1;:28;1132:63;;;;-1:-1:-1;;;1132:63:3;;13360:2:18;1132:63:3;;;13342:21:18;13399:2;13379:18;;;13372:30;13438:24;13418:18;;;13411:52;13480:18;;1132:63:3;13158:346:18;1132:63:3;1206:18;1227:16;1237:5;1227:9;:16::i;:::-;1206:37;;1254:25;1296:10;1282:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1282:25:3;;1254:53;;1323:9;1318:111;1342:10;1338:1;:14;1318:111;;;1388:29;1408:5;1415:1;1388:19;:29::i;:::-;1374:8;1383:1;1374:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;1354:3;;;;:::i;:::-;;;;1318:111;;;-1:-1:-1;1446:8:3;1012:450;-1:-1:-1;;;1012:450:3:o;11110:101:11:-;1072:6:12;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;11179:10:11::1;:24:::0;;;::::1;::::0;::::1;;::::0;;;::::1;::::0;;11110:101::o;11223:164::-;1072:6:12;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;11325:25:11::1;:54:::0;11223:164::o;10662:90::-;1072:6:12;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;10727:5:11::1;:17:::0;10662:90::o;7918:836::-;1713:1:13;2309:7;;:19;;2301:63;;;;-1:-1:-1;;;2301:63:13;;17481:2:18;2301:63:13;;;17463:21:18;17520:2;17500:18;;;17493:30;17559:33;17539:18;;;17532:61;17610:18;;2301:63:13;17279:355:18;2301:63:13;1713:1;2442:7;:18;1675:10:11::1;8028:15;:39;;8020:72;;;::::0;-1:-1:-1;;;8020:72:11;;17841:2:18;8020:72:11::1;::::0;::::1;17823:21:18::0;17880:2;17860:18;;;17853:30;17919:22;17899:18;;;17892:50;17959:18;;8020:72:11::1;17639:344:18::0;8020:72:11::1;8103:9;8115:13;1558:7:3::0;:14;;1470:110;8115:13:11::1;8148:10;::::0;8103:25;;-1:-1:-1;8148:10:11::1;;8147:11;8139:35;;;::::0;-1:-1:-1;;;8139:35:11;;18190:2:18;8139:35:11::1;::::0;::::1;18172:21:18::0;18229:2;18209:18;;;18202:30;18268:13;18248:18;;;18241:41;18299:18;;8139:35:11::1;17988:335:18::0;8139:35:11::1;8208:1;8193:12;:16;:43;;;;;8229:7;;8213:12;:23;;8193:43;8185:76;;;::::0;-1:-1:-1;;;8185:76:11;;18530:2:18;8185:76:11::1;::::0;::::1;18512:21:18::0;18569:2;18549:18;;;18542:30;18608:22;18588:18;;;18581:50;18648:18;;8185:76:11::1;18328:344:18::0;8185:76:11::1;8315:8;;8303:9;;:20;;;;:::i;:::-;8281:16;8285:12:::0;8281:1;:16:::1;:::i;:::-;8280:44;;8272:75;;;::::0;-1:-1:-1;;;8272:75:11;;19009:2:18;8272:75:11::1;::::0;::::1;18991:21:18::0;19048:2;19028:18;;;19021:30;19087:20;19067:18;;;19060:48;19125:18;;8272:75:11::1;18807:342:18::0;8272:75:11::1;8387:12;8379:5;;:20;;;;:::i;:::-;8366:9;:33;;8358:60;;;::::0;-1:-1:-1;;;8358:60:11;;19589:2:18;8358:60:11::1;::::0;::::1;19571:21:18::0;19628:2;19608:18;;;19601:30;19667:16;19647:18;;;19640:44;19701:18;;8358:60:11::1;19387:338:18::0;8358:60:11::1;8490:25;;8472:15;:43;8469:147;;;8540:36;8554:10;8566:9;8540:13;:36::i;:::-;8532:72;;;::::0;-1:-1:-1;;;8532:72:11;;19932:2:18;8532:72:11::1;::::0;::::1;19914:21:18::0;19971:2;19951:18;;;19944:30;20010:25;19990:18;;;19983:53;20053:18;;8532:72:11::1;19730:347:18::0;8532:72:11::1;8631:9;8626:102;8650:12;8646:1;:16;8626:102;;;8684:32;8694:10;8706:5;8710:1:::0;8706;:5:::1;:::i;:::-;8684:32;;;;;;;;;;;::::0;:9:::1;:32::i;:::-;8664:3;::::0;::::1;:::i;:::-;;;8626:102;;;-1:-1:-1::0;;1669:1:13;2621:7;:22;-1:-1:-1;;7918:836:11:o;9834:233:16:-;9950:10;:28;9964:14;9950:28;;9942:72;;;;-1:-1:-1;;;9942:72:16;;20284:2:18;9942:72:16;;;20266:21:18;20323:2;20303:18;;;20296:30;20362:33;20342:18;;;20335:61;20413:18;;9942:72:16;20082:355:18;9942:72:16;10021:40;10039:9;10050:10;10021:17;:40::i;2129:104:4:-;2185:13;2218:7;2211:14;;;;;:::i;11757:121:11:-;11804:7;11720:21;11615:14;;11831:39;;;;:::i;:::-;11824:46;;11757:121;:::o;695:95:4:-;739:16;775:7;768:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;695:95;:::o;2977:327::-;3112:24;;;682:10:1;3112:24:4;;3104:62;;;;-1:-1:-1;;;3104:62:4;;20644:2:18;3104:62:4;;;20626:21:18;20683:2;20663:18;;;20656:30;20722:27;20702:18;;;20695:55;20767:18;;3104:62:4;20442:349:18;3104:62:4;682:10:1;3179:32:4;;;;:18;:32;;;;;;;;;:42;;;;;;;;;;;;:53;;;;;;;;;;;;;3248:48;;586:41:18;;;3179:42:4;;682:10:1;3248:48:4;;559:18:18;3248:48:4;;;;;;;2977:327;;:::o;12339:147:11:-;1072:6:12;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;12425:29:11::1;::::0;;;;12448:4:::1;12425:29;::::0;::::1;1779:74:18::0;12399:4:11::1;:13;;::::0;::::1;::::0;12413:10:::1;::::0;12399:13;;12425:14:::1;::::0;1752:18:18;;12425:29:11::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12399:56;::::0;;::::1;::::0;;;;;;21000:42:18;20988:55;;;12399:56:11::1;::::0;::::1;20970:74:18::0;21060:18;;;21053:34;20943:18;;12399:56:11::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;12391:87;;;::::0;-1:-1:-1;;;12391:87:11;;21550:2:18;12391:87:11::1;::::0;::::1;21532:21:18::0;21589:2;21569:18;;;21562:30;21628:20;21608:18;;;21601:48;21666:18;;12391:87:11::1;21348:342:18::0;4111:365:4;4300:41;682:10:1;4333:7:4;4300:18;:41::i;:::-;4278:140;;;;-1:-1:-1;;;4278:140:4;;12942:2:18;4278:140:4;;;12924:21:18;12981:2;12961:18;;;12954:30;13020:34;13000:18;;;12993:62;13091:19;13071:18;;;13064:47;13128:19;;4278:140:4;12740:413:18;4278:140:4;4429:39;4443:4;4449:2;4453:7;4462:5;4429:13;:39::i;:::-;4111:365;;;;:::o;2707:375:11:-;1072:6:12;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;2802:3:11::1;::::0;2769:29:::1;::::0;;;;2792:4:::1;2769:29;::::0;::::1;1779:74:18::0;2769:4:11::1;:14;;::::0;::::1;::::0;1752:18:18;;2769:29:11::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;;2761:80;;;::::0;-1:-1:-1;;;2761:80:11;;16354:2:18;2761:80:11::1;::::0;::::1;16336:21:18::0;16393:2;16373:18;;;16366:30;16432:33;16412:18;;;16405:61;16483:18;;2761:80:11::1;16152:355:18::0;2761:80:11::1;2972:1;2952:17;:21:::0;3061:7:::1;::::0;3070:3:::1;::::0;3043:31:::1;::::0;3061:7;3043:17:::1;:31::i;:::-;;2707:375::o:0;8802:863::-;1072:6:12;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;8916:35:11;;::::1;8908:99;;;::::0;-1:-1:-1;;;8908:99:11;;21897:2:18;8908:99:11::1;::::0;::::1;21879:21:18::0;21936:2;21916:18;;;21909:30;21975:34;21955:18;;;21948:62;22046:21;22026:18;;;22019:49;22085:19;;8908:99:11::1;21695:415:18::0;8908:99:11::1;9018:21;9054:9:::0;9066:13:::1;1558:7:3::0;:14;;1470:110;9066:13:11::1;9054:25;;9095:9;9090:101;9110:19:::0;;::::1;9090:101;;;9168:8;;9177:1;9168:11;;;;;;;:::i;:::-;;;;;;;9151:28;;;;;:::i;:::-;::::0;-1:-1:-1;9131:3:11::1;::::0;::::1;:::i;:::-;;;9090:101;;;-1:-1:-1::0;9230:9:11::1;::::0;9209:17:::1;9213:13:::0;9209:1;:17:::1;:::i;:::-;:30;;9201:61;;;::::0;-1:-1:-1;;;9201:61:11;;19009:2:18;9201:61:11::1;::::0;::::1;18991:21:18::0;19048:2;19028:18;;;19021:30;19087:20;19067:18;;;19060:48;19125:18;;9201:61:11::1;18807:342:18::0;9201:61:11::1;9298:8;;9281:13;:25;;9273:58;;;::::0;-1:-1:-1;;;9273:58:11;;22317:2:18;9273:58:11::1;::::0;::::1;22299:21:18::0;22356:2;22336:18;;;22329:30;22395:22;22375:18;;;22368:50;22435:18;;9273:58:11::1;22115:344:18::0;9273:58:11::1;9400:13;9388:8;;:25;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;9426:20:11::1;::::0;-1:-1:-1;9426:20:11;;-1:-1:-1;9457:182:11::1;9477:20:::0;;::::1;9457:182;;;9524:9;9519:109;9543:8;;9552:1;9543:11;;;;;;;:::i;:::-;;;;;;;9539:1;:15;9519:109;;;9580:32;9590:9;;9600:1;9590:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;9604:3:::0;::::1;::::0;::::1;:::i;:::-;;;9580:32;;;;;;;;;;;::::0;:9:::1;:32::i;:::-;9556:3;::::0;::::1;:::i;:::-;;;9519:109;;;-1:-1:-1::0;9499:3:11::1;::::0;::::1;:::i;:::-;;;9457:182;;;-1:-1:-1::0;;;;;;;8802:863:11:o;9673:339::-;9746:13;9780:16;9788:7;9780;:16::i;:::-;9772:62;;;;-1:-1:-1;;;9772:62:11;;22666:2:18;9772:62:11;;;22648:21:18;22705:2;22685:18;;;22678:30;22744:34;22724:18;;;22717:62;22815:3;22795:18;;;22788:31;22836:19;;9772:62:11;22464:397:18;9772:62:11;9845:28;9876:10;:8;:10::i;:::-;9845:41;;9935:1;9910:14;9904:28;:32;:100;;;;;;;;;;;;;;;;;9963:14;9979:18;:7;:16;:18::i;:::-;9946:52;;;;;;;;;:::i;:::-;;;;;;;;;;;;;9904:100;9897:107;9673:339;-1:-1:-1;;;9673:339:11:o;1899:192:12:-;1072:6;;1219:23;1072:6;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;11100:2:18;1211:68:12;;;11082:21:18;;;11119:18;;;11112:30;11178:34;11158:18;;;11151:62;11230:18;;1211:68:12;10898:356:18;1211:68:12;1988:22:::1;::::0;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:12;;23543:2:18;1980:73:12::1;::::0;::::1;23525:21:18::0;23582:2;23562:18;;;23555:30;23621:34;23601:18;;;23594:62;23692:8;23672:18;;;23665:36;23718:19;;1980:73:12::1;23341:402:18::0;1980:73:12::1;2064:19;2074:8;2064:9;:19::i;798:355:4:-:0;945:4;987:40;;;1002:25;987:40;;:105;;-1:-1:-1;1044:48:4;;;1059:33;1044:48;987:105;:158;;;-1:-1:-1;911:25:2;896:40;;;;1109:36:4;787:157:2;4844:155:4;4943:7;:14;4909:4;;4933:24;;:58;;;;;4989:1;4961:30;;:7;4969;4961:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;:30;;4926:65;4844:155;-1:-1:-1;;4844:155:4:o;7172:175::-;7247:24;;;;:15;:24;;;;;:29;;;;;;;;;;;;;:24;;7301;7247;7301:15;:24::i;:::-;7292:47;;;;;;;;;;;;7172:175;;:::o;6863:248:11:-;6964:7;6985:9;6996;7007:7;7018:26;7033:10;7018:14;:26::i;:::-;7062:41;;;;;;;;;;;;23975:25:18;;;24048:4;24036:17;;24016:18;;;24009:45;;;;24070:18;;;24063:34;;;24113:18;;;24106:34;;;6984:60:11;;-1:-1:-1;6984:60:11;;-1:-1:-1;6984:60:11;-1:-1:-1;7062:41:11;;23947:19:18;;7062:41:11;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7062:41:11;;;;;;6863:248;-1:-1:-1;;;;;;;6863:248:11:o;5007:453:4:-;5136:4;5180:16;5188:7;5180;:16::i;:::-;5158:110;;;;-1:-1:-1;;;5158:110:4;;24353:2:18;5158:110:4;;;24335:21:18;24392:2;24372:18;;;24365:30;24431:34;24411:18;;;24404:62;24502:14;24482:18;;;24475:42;24534:19;;5158:110:4;24151:408:18;5158:110:4;5279:13;5295:24;5311:7;5295:15;:24::i;:::-;5279:40;;5349:5;5338:16;;:7;:16;;;:64;;;;5395:7;5371:31;;:20;5383:7;5371:11;:20::i;:::-;:31;;;5338:64;:113;;;-1:-1:-1;3483:25:4;;;;3454:4;3483:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;5419:32;5330:122;5007:453;-1:-1:-1;;;;5007:453:4:o;6610:554::-;6784:4;6756:32;;:24;6772:7;6756:15;:24::i;:::-;:32;;;6734:123;;;;-1:-1:-1;;;6734:123:4;;24766:2:18;6734:123:4;;;24748:21:18;24805:2;24785:18;;;24778:30;24844:34;24824:18;;;24817:62;24915:11;24895:18;;;24888:39;24944:19;;6734:123:4;24564:405:18;6734:123:4;6876:16;;;6868:65;;;;-1:-1:-1;;;6868:65:4;;25176:2:18;6868:65:4;;;25158:21:18;25215:2;25195:18;;;25188:30;25254:34;25234:18;;;25227:62;25325:6;25305:18;;;25298:34;25349:19;;6868:65:4;24974:400:18;6868:65:4;7050:29;7067:1;7071:7;7050:8;:29::i;:::-;7109:2;7090:7;7098;7090:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;;;;;;;;;;7129:27;;7148:7;;7129:27;;;;;;;;;;7090:16;7129:27;6610:554;;;:::o;2099:173:12:-;2174:6;;;;2191:17;;;;;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;7898:1077:16:-;8008:17;8043:4;:20;;;8064:14;8080:4;8097:8;6728:1;8086:43;;;;;;;;25553:25:18;;;25609:2;25594:18;;25587:34;25541:2;25526:18;;25379:248;8086:43:16;;;;;;;;;;;;;8043:87;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;8365:15:16;8449:16;;;:6;:16;;;;;;;;;1036:51:17;;;;;27480:25:18;;;27521:18;;;27514:34;;;8442:4:16;27564:18:18;;;27557:83;27656:18;;;;27649:34;;;1036:51:17;;;;;;;;;;27452:19:18;;;;1036:51:17;;;1026:62;;;;;;;;;8903:16:16;;;;;;;:20;;8922:1;8903:20;:::i;:::-;8884:16;;;;:6;:16;;;;;:39;8937:32;8891:8;8961:7;1653:41:17;;;;;;;27851:19:18;;;;27886:12;;;27879:28;;;;1653:41:17;;;;;;;;;27923:12:18;;;;1653:41:17;;1643:52;;;;;;1486:215;5586:321:4;5716:18;5722:2;5726:7;5716:5;:18::i;:::-;5767:54;5798:1;5802:2;5806:7;5815:5;5767:22;:54::i;:::-;5745:154;;;;-1:-1:-1;;;5745:154:4;;26248:2:18;5745:154:4;;;26230:21:18;26287:2;26267:18;;;26260:30;26326:34;26306:18;;;26299:62;26397:20;26377:18;;;26370:48;26435:19;;5745:154:4;26046:414:18;5357:556:11;5455:17;;5476:1;5455:22;5452:454;;;5494:17;:30;-1:-1:-1;10151:503:11:o;5452:454::-;5554:17;;5575:1;5554:22;5551:355;;;5593:17;:30;-1:-1:-1;10151:503:11:o;5551:355::-;5653:17;;5674:1;5653:22;5650:256;;;5692:17;:30;-1:-1:-1;10151:503:11:o;5650:256::-;5752:17;;5773:1;5752:22;5749:157;;;5791:17;:30;-1:-1:-1;10151:503:11:o;5749:157::-;5863:18;:31;-1:-1:-1;5357:556:11:o;4484:352:4:-;4641:28;4651:4;4657:2;4661:7;4641:9;:28::i;:::-;4702:48;4725:4;4731:2;4735:7;4744:5;4702:22;:48::i;:::-;4680:148;;;;-1:-1:-1;;;4680:148:4;;26248:2:18;4680:148:4;;;26230:21:18;26287:2;26267:18;;;26260:30;26326:34;26306:18;;;26299:62;26397:20;26377:18;;;26370:48;26435:19;;4680:148:4;26046:414:18;5938:99:11;5989:13;6022:7;6015:14;;;;;:::i;288:723:15:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:15;;;;;;;;;;;;;;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:15;;-1:-1:-1;744:2:15;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:15;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:15;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;949:11:15;958:2;949:11;;:::i;:::-;;;818:154;;7123:764:11;7187:9;7198;7209:7;7237:3;:10;7251:2;7237:16;7229:53;;;;-1:-1:-1;;;7229:53:11;;27098:2:18;7229:53:11;;;27080:21:18;27137:2;27117:18;;;27110:30;27176:26;27156:18;;;27149:54;27220:18;;7229:53:11;26896:348:18;7229:53:11;-1:-1:-1;;;7655:2:11;7646:12;;7640:19;7721:2;7712:12;;7706:19;7824:2;7815:12;;;7809:19;7640;;7806:1;7801:28;;;;;7123:764::o;5915:346:4:-;5995:16;;;5987:61;;;;-1:-1:-1;;;5987:61:4;;28148:2:18;5987:61:4;;;28130:21:18;;;28167:18;;;28160:30;28226:34;28206:18;;;28199:62;28278:18;;5987:61:4;27946:356:18;5987:61:4;6068:16;6076:7;6068;:16::i;:::-;6067:17;6059:58;;;;-1:-1:-1;;;6059:58:4;;28509:2:18;6059:58:4;;;28491:21:18;28548:2;28528:18;;;28521:30;28587;28567:18;;;28560:58;28635:18;;6059:58:4;28307:352:18;6059:58:4;6186:7;:16;;;;;;;-1:-1:-1;6186:16:4;;;;;;;;;;;;;;;;;;6220:33;;6245:7;;-1:-1:-1;6220:33:4;;-1:-1:-1;;6220:33:4;5915:346;;:::o;7355:980::-;7510:4;7531:13;;;1066:20:0;1114:8;7527:801:4;;7584:175;;;;;:36;;;;;;:175;;682:10:1;;7678:4:4;;7705:7;;7735:5;;7584:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7584:175:4;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;7563:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7942:13:4;;7938:320;;7985:108;;-1:-1:-1;;;7985:108:4;;26248:2:18;7985:108:4;;;26230:21:18;26287:2;26267:18;;;26260:30;26326:34;26306:18;;;26299:62;26397:20;26377:18;;;26370:48;26435:19;;7985:108:4;26046:414:18;7938:320:4;8208:6;8202:13;8193:6;8189:2;8185:15;8178:38;7563:710;7823:51;;7833:41;7823:51;;-1:-1:-1;7816:58:4;;7527:801;-1:-1:-1;8312:4:4;8305:11;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:177:18;99:66;92:5;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:258::-;710:1;720:113;734:6;731:1;728:13;720:113;;;810:11;;;804:18;791:11;;;784:39;756:2;749:10;720:113;;;851:6;848:1;845:13;842:48;;;-1:-1:-1;;886:1:18;868:16;;861:27;638:258::o;901:317::-;943:3;981:5;975:12;1008:6;1003:3;996:19;1024:63;1080:6;1073:4;1068:3;1064:14;1057:4;1050:5;1046:16;1024:63;:::i;:::-;1132:2;1120:15;1137:66;1116:88;1107:98;;;;1207:4;1103:109;;901:317;-1:-1:-1;;901:317:18:o;1223:220::-;1372:2;1361:9;1354:21;1335:4;1392:45;1433:2;1422:9;1418:18;1410:6;1392:45;:::i;1448:180::-;1507:6;1560:2;1548:9;1539:7;1535:23;1531:32;1528:52;;;1576:1;1573;1566:12;1528:52;-1:-1:-1;1599:23:18;;1448:180;-1:-1:-1;1448:180:18:o;1864:196::-;1932:20;;1992:42;1981:54;;1971:65;;1961:93;;2050:1;2047;2040:12;2065:254;2133:6;2141;2194:2;2182:9;2173:7;2169:23;2165:32;2162:52;;;2210:1;2207;2200:12;2162:52;2233:29;2252:9;2233:29;:::i;:::-;2223:39;2309:2;2294:18;;;;2281:32;;-1:-1:-1;;;2065:254:18:o;2506:184::-;2558:77;2555:1;2548:88;2655:4;2652:1;2645:15;2679:4;2676:1;2669:15;2695:690;2759:5;2789:18;2830:2;2822:6;2819:14;2816:40;;;2836:18;;:::i;:::-;2970:2;2964:9;3036:2;3024:15;;2875:66;3020:24;;;3046:2;3016:33;3012:42;3000:55;;;3070:18;;;3090:22;;;3067:46;3064:72;;;3116:18;;:::i;:::-;3156:10;3152:2;3145:22;3185:6;3176:15;;3215:6;3207;3200:22;3255:3;3246:6;3241:3;3237:16;3234:25;3231:45;;;3272:1;3269;3262:12;3231:45;3322:6;3317:3;3310:4;3302:6;3298:17;3285:44;3377:1;3370:4;3361:6;3353;3349:19;3345:30;3338:41;;;;2695:690;;;;;:::o;3390:220::-;3432:5;3485:3;3478:4;3470:6;3466:17;3462:27;3452:55;;3503:1;3500;3493:12;3452:55;3525:79;3600:3;3591:6;3578:20;3571:4;3563:6;3559:17;3525:79;:::i;3615:394::-;3692:6;3700;3753:2;3741:9;3732:7;3728:23;3724:32;3721:52;;;3769:1;3766;3759:12;3721:52;3792:29;3811:9;3792:29;:::i;:::-;3782:39;;3872:2;3861:9;3857:18;3844:32;3899:18;3891:6;3888:30;3885:50;;;3931:1;3928;3921:12;3885:50;3954:49;3995:7;3986:6;3975:9;3971:22;3954:49;:::i;:::-;3944:59;;;3615:394;;;;;:::o;4014:328::-;4091:6;4099;4107;4160:2;4148:9;4139:7;4135:23;4131:32;4128:52;;;4176:1;4173;4166:12;4128:52;4199:29;4218:9;4199:29;:::i;:::-;4189:39;;4247:38;4281:2;4270:9;4266:18;4247:38;:::i;:::-;4237:48;;4332:2;4321:9;4317:18;4304:32;4294:42;;4014:328;;;;;:::o;4347:248::-;4415:6;4423;4476:2;4464:9;4455:7;4451:23;4447:32;4444:52;;;4492:1;4489;4482:12;4444:52;-1:-1:-1;;4515:23:18;;;4585:2;4570:18;;;4557:32;;-1:-1:-1;4347:248:18:o;4600:450::-;4669:6;4722:2;4710:9;4701:7;4697:23;4693:32;4690:52;;;4738:1;4735;4728:12;4690:52;4778:9;4765:23;4811:18;4803:6;4800:30;4797:50;;;4843:1;4840;4833:12;4797:50;4866:22;;4919:4;4911:13;;4907:27;-1:-1:-1;4897:55:18;;4948:1;4945;4938:12;4897:55;4971:73;5036:7;5031:2;5018:16;5013:2;5009;5005:11;4971:73;:::i;5237:186::-;5296:6;5349:2;5337:9;5328:7;5324:23;5320:32;5317:52;;;5365:1;5362;5355:12;5317:52;5388:29;5407:9;5388:29;:::i;5428:632::-;5599:2;5651:21;;;5721:13;;5624:18;;;5743:22;;;5570:4;;5599:2;5822:15;;;;5796:2;5781:18;;;5570:4;5865:169;5879:6;5876:1;5873:13;5865:169;;;5940:13;;5928:26;;6009:15;;;;5974:12;;;;5901:1;5894:9;5865:169;;;-1:-1:-1;6051:3:18;;5428:632;-1:-1:-1;;;;;;5428:632:18:o;6065:118::-;6151:5;6144:13;6137:21;6130:5;6127:32;6117:60;;6173:1;6170;6163:12;6188:241;6244:6;6297:2;6285:9;6276:7;6272:23;6268:32;6265:52;;;6313:1;6310;6303:12;6265:52;6352:9;6339:23;6371:28;6393:5;6371:28;:::i;6434:388::-;6511:6;6519;6572:2;6560:9;6551:7;6547:23;6543:32;6540:52;;;6588:1;6585;6578:12;6540:52;6624:9;6611:23;6601:33;;6685:2;6674:9;6670:18;6657:32;6712:18;6704:6;6701:30;6698:50;;;6744:1;6741;6734:12;7080:681;7251:2;7303:21;;;7373:13;;7276:18;;;7395:22;;;7222:4;;7251:2;7474:15;;;;7448:2;7433:18;;;7222:4;7517:218;7531:6;7528:1;7525:13;7517:218;;;7596:13;;7611:42;7592:62;7580:75;;7710:15;;;;7675:12;;;;7553:1;7546:9;7517:218;;7766:315;7831:6;7839;7892:2;7880:9;7871:7;7867:23;7863:32;7860:52;;;7908:1;7905;7898:12;7860:52;7931:29;7950:9;7931:29;:::i;:::-;7921:39;;8010:2;7999:9;7995:18;7982:32;8023:28;8045:5;8023:28;:::i;:::-;8070:5;8060:15;;;7766:315;;;;;:::o;8086:537::-;8181:6;8189;8197;8205;8258:3;8246:9;8237:7;8233:23;8229:33;8226:53;;;8275:1;8272;8265:12;8226:53;8298:29;8317:9;8298:29;:::i;:::-;8288:39;;8346:38;8380:2;8369:9;8365:18;8346:38;:::i;:::-;8336:48;;8431:2;8420:9;8416:18;8403:32;8393:42;;8486:2;8475:9;8471:18;8458:32;8513:18;8505:6;8502:30;8499:50;;;8545:1;8542;8535:12;8499:50;8568:49;8609:7;8600:6;8589:9;8585:22;8568:49;:::i;:::-;8558:59;;;8086:537;;;;;;;:::o;8628:367::-;8691:8;8701:6;8755:3;8748:4;8740:6;8736:17;8732:27;8722:55;;8773:1;8770;8763:12;8722:55;-1:-1:-1;8796:20:18;;8839:18;8828:30;;8825:50;;;8871:1;8868;8861:12;8825:50;8908:4;8900:6;8896:17;8884:29;;8968:3;8961:4;8951:6;8948:1;8944:14;8936:6;8932:27;8928:38;8925:47;8922:67;;;8985:1;8982;8975:12;8922:67;8628:367;;;;;:::o;9000:773::-;9122:6;9130;9138;9146;9199:2;9187:9;9178:7;9174:23;9170:32;9167:52;;;9215:1;9212;9205:12;9167:52;9255:9;9242:23;9284:18;9325:2;9317:6;9314:14;9311:34;;;9341:1;9338;9331:12;9311:34;9380:70;9442:7;9433:6;9422:9;9418:22;9380:70;:::i;:::-;9469:8;;-1:-1:-1;9354:96:18;-1:-1:-1;9557:2:18;9542:18;;9529:32;;-1:-1:-1;9573:16:18;;;9570:36;;;9602:1;9599;9592:12;9570:36;;9641:72;9705:7;9694:8;9683:9;9679:24;9641:72;:::i;:::-;9000:773;;;;-1:-1:-1;9732:8:18;-1:-1:-1;;;;9000:773:18:o;9778:260::-;9846:6;9854;9907:2;9895:9;9886:7;9882:23;9878:32;9875:52;;;9923:1;9920;9913:12;9875:52;9946:29;9965:9;9946:29;:::i;:::-;9936:39;;9994:38;10028:2;10017:9;10013:18;9994:38;:::i;:::-;9984:48;;9778:260;;;;;:::o;10043:437::-;10122:1;10118:12;;;;10165;;;10186:61;;10240:4;10232:6;10228:17;10218:27;;10186:61;10293:2;10285:6;10282:14;10262:18;10259:38;10256:218;;;10330:77;10327:1;10320:88;10431:4;10428:1;10421:15;10459:4;10456:1;10449:15;10256:218;;10043:437;;;:::o;13509:184::-;13561:77;13558:1;13551:88;13658:4;13655:1;13648:15;13682:4;13679:1;13672:15;13698:184;13750:77;13747:1;13740:88;13847:4;13844:1;13837:15;13871:4;13868:1;13861:15;13887:195;13926:3;13957:66;13950:5;13947:77;13944:103;;;14027:18;;:::i;:::-;-1:-1:-1;14074:1:18;14063:13;;13887:195::o;14657:128::-;14697:3;14728:1;14724:6;14721:1;14718:13;14715:39;;;14734:18;;:::i;:::-;-1:-1:-1;14770:9:18;;14657:128::o;15963:184::-;16033:6;16086:2;16074:9;16065:7;16061:23;16057:32;16054:52;;;16102:1;16099;16092:12;16054:52;-1:-1:-1;16125:16:18;;15963:184;-1:-1:-1;15963:184:18:o;18677:125::-;18717:4;18745:1;18742;18739:8;18736:34;;;18750:18;;:::i;:::-;-1:-1:-1;18787:9:18;;18677:125::o;19154:228::-;19194:7;19320:1;19252:66;19248:74;19245:1;19242:81;19237:1;19230:9;19223:17;19219:105;19216:131;;;19327:18;;:::i;:::-;-1:-1:-1;19367:9:18;;19154:228::o;21098:245::-;21165:6;21218:2;21206:9;21197:7;21193:23;21189:32;21186:52;;;21234:1;21231;21224:12;21186:52;21266:9;21260:16;21285:28;21307:5;21285:28;:::i;22866:470::-;23045:3;23083:6;23077:13;23099:53;23145:6;23140:3;23133:4;23125:6;23121:17;23099:53;:::i;:::-;23215:13;;23174:16;;;;23237:57;23215:13;23174:16;23271:4;23259:17;;23237:57;:::i;:::-;23310:20;;22866:470;-1:-1:-1;;;;22866:470:18:o;25632:409::-;25847:42;25839:6;25835:55;25824:9;25817:74;25927:6;25922:2;25911:9;25907:18;25900:34;25970:2;25965;25954:9;25950:18;25943:30;25798:4;25990:45;26031:2;26020:9;26016:18;26008:6;25990:45;:::i;:::-;25982:53;25632:409;-1:-1:-1;;;;;25632:409:18:o;26465:184::-;26517:77;26514:1;26507:88;26614:4;26611:1;26604:15;26638:4;26635:1;26628:15;26654:120;26694:1;26720;26710:35;;26725:18;;:::i;:::-;-1:-1:-1;26759:9:18;;26654:120::o;26779:112::-;26811:1;26837;26827:35;;26842:18;;:::i;:::-;-1:-1:-1;26876:9:18;;26779:112::o;28664:512::-;28858:4;28887:42;28968:2;28960:6;28956:15;28945:9;28938:34;29020:2;29012:6;29008:15;29003:2;28992:9;28988:18;28981:43;;29060:6;29055:2;29044:9;29040:18;29033:34;29103:3;29098:2;29087:9;29083:18;29076:31;29124:46;29165:3;29154:9;29150:19;29142:6;29124:46;:::i;:::-;29116:54;28664:512;-1:-1:-1;;;;;;28664:512:18:o;29181:249::-;29250:6;29303:2;29291:9;29282:7;29278:23;29274:32;29271:52;;;29319:1;29316;29309:12;29271:52;29351:9;29345:16;29370:30;29394:5;29370:30;:::i

Swarm Source

ipfs://7b5f1311c9642162503b3624ddb85fb9af02df23de0695ea521f6257cc608fb9
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.