ETH Price: $3,465.13 (-1.18%)
Gas: 3 Gwei

Token

Defi Rangers V2 (RANGERSV2)
 

Overview

Max Total Supply

1,065 RANGERSV2

Holders

249

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
maseinyourface.eth
Balance
1 RANGERSV2
0xf7C4e374e116b68c5324463949Ba3c5275B27236
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:
DefiRangersV2

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : DefiRangersV2.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

/*
    ____       _____    ____                                      _    _____ 
   / __ \___  / __(_)  / __ \____ _____  ____ ____  __________   | |  / /__ \
  / / / / _ \/ /_/ /  / /_/ / __ `/ __ \/ __ `/ _ \/ ___/ ___/   | | / /__/ /
 / /_/ /  __/ __/ /  / _, _/ /_/ / / / / /_/ /  __/ /  (__  )    | |/ // __/ 
/_____/\___/_/ /_/  /_/ |_|\__,_/_/ /_/\__, /\___/_/  /____/     |___//____/ 
                                      /____/                                 
I see you nerd! ⌐⊙_⊙
*/

contract DefiRangersV2 is ERC721, ERC721Enumerable, ERC721Burnable, Ownable {
    using Counters for Counters.Counter;

    Counters.Counter private _tokenIdCounter;

    uint256 public maxTokenSupply;

    uint256 public constant MAX_MINTS_PER_TXN = 15;

    uint256 public mintPrice = 0.03 ether;

    bool public saleIsActive = false;

    bool public claimingIsActive = false;

    string public baseURI;

    string public provenance;

    address[8] private _shareholders;

    uint[8] private _shares;

    // Mapping from token ID to whether it has been claimed or not
    mapping(uint256 => bool) public hasClaimed;

    IERC721 public genesisContractInstance;

    event PaymentReleased(address to, uint256 amount);

    constructor(string memory name, string memory symbol, uint256 maxDefiRangersV2Supply, address genesisContractAddress) ERC721(name, symbol) {
        maxTokenSupply = maxDefiRangersV2Supply;

        _shareholders[0] = 0x5C8465d8eaDd095440deFbB2D2F7a251Fd07352e; // Chris
        _shareholders[1] = 0xDc8Eb8d2D1babD956136b57B0B9F49b433c019e3; // Treasure-Seeker
        _shareholders[2] = 0xBd2440e2F8dDc9f03d7E2B37DD9Bb780Cb8eEb7C;
        _shareholders[3] = 0x65131347c08242559e9CBD2e37Dc11b8C88e29C4;
        _shareholders[4] = 0x5B789ddA90988B76Ef4f9Cc0f28f902A35AF8faE;
        _shareholders[5] = 0xd29135dcA9A302C9fCBce48e1c255744aA2bDD78;
        _shareholders[6] = 0x7B2ff47deA4fA2bAC287dC633Dcd5Db5C0c78eD2;
        _shareholders[7] = 0xFccEefbeE0265D638c80c7200Ac6cad5d043c1be;

        _shares[0] = 4900;
        _shares[1] = 3000;
        _shares[2] = 1000;
        _shares[3] = 500;
        _shares[4] = 200;
        _shares[5] = 200;
        _shares[6] = 100;
        _shares[7] = 100;

        genesisContractInstance = IERC721(genesisContractAddress);
    }

    function setGenesisContractAddress(address genesisContractAddress) public onlyOwner {
        genesisContractInstance = IERC721(genesisContractAddress);
    }

    function setMaxTokenSupply(uint256 maxDefiRangersV2Supply) public onlyOwner {
        maxTokenSupply = maxDefiRangersV2Supply;
    }

    function setMintPrice(uint256 newPrice) public onlyOwner {
        mintPrice = newPrice;
    }

    function withdrawForGiveaway(uint256 amount, address payable to) public onlyOwner {
        Address.sendValue(to, amount);
        emit PaymentReleased(to, amount);
    }

    function withdraw(uint256 amount) public onlyOwner {
        require(address(this).balance >= amount, "Insufficient balance");
        
        uint256 totalShares = 10000;
        for (uint256 i = 0; i < 8; i++) {
            uint256 payment = amount * _shares[i] / totalShares;

            Address.sendValue(payable(_shareholders[i]), payment);
            emit PaymentReleased(_shareholders[i], payment);
        }
    }

    /*
    * Mint reserved NFTs for giveaways, devs, etc.
    */
    function reserveMint(uint256 reservedAmount, address mintAddress) public onlyOwner {        
        for (uint256 i = 1; i <= reservedAmount; i++) {
            _tokenIdCounter.increment();
            _safeMint(mintAddress, _tokenIdCounter.current());
        }
    }

    /*
    * Pause sale if active, make active if paused.
    */
    function flipSaleState() public onlyOwner {
        saleIsActive = !saleIsActive;
    }

    /*
    * Pause claiming if active, make active if paused.
    */
    function flipClaimingState() public onlyOwner {
        claimingIsActive = !claimingIsActive;
    }

    /*
    * Mint DefiRangersV2 NFTs via claiming via Genesis DefiRangers
    */
    function mintViaClaim(uint256[] calldata tokenIds) public {
        require(claimingIsActive, 'Minting via claims is not live yet');

        for (uint256 i = 0; i < tokenIds.length; i++) {
            require(genesisContractInstance.ownerOf(tokenIds[i]) == msg.sender, 'Caller is not owner of the token ID');
            require(! hasClaimed[tokenIds[i]], 'This token has already been claimed');
            hasClaimed[tokenIds[i]] = true;

            _tokenIdCounter.increment();
            _safeMint(msg.sender, _tokenIdCounter.current());
        }
    }

    /*
    * Mint DefiRangersV2 NFTs, woot!
    */
    function publicMint(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale is not live yet");
        require(numberOfTokens <= MAX_MINTS_PER_TXN, "You can mint a max of 15 NFTs at a time");
        require(_tokenIdCounter.current() + numberOfTokens <= maxTokenSupply, "Purchase would exceed max available NFTs");
        require(mintPrice * numberOfTokens <= msg.value, "Ether value sent is not correct");

        for(uint256 i = 0; i < numberOfTokens; i++) {
            _tokenIdCounter.increment();
            _safeMint(msg.sender, _tokenIdCounter.current());
        }
    }

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        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 _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }

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

    /*     
    * Set provenance once it's calculated.
    */
    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        provenance = provenanceHash;
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }
}

File 2 of 15 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 3 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping (uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping (address => uint256) private _balances;

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    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;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.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);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    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);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    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");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    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");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    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);

        _balances[to] += 1;
        _owners[tokenId] = to;

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.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);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

File 4 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

File 5 of 15 : 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 6 of 15 : ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 7 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 8 of 15 : 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 15 : 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 15 : 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 11 of 15 : 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 12 of 15 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
}

File 13 of 15 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 14 of 15 : 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 15 of 15 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxDefiRangersV2Supply","type":"uint256"},{"internalType":"address","name":"genesisContractAddress","type":"address"}],"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":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTS_PER_TXN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimingIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipClaimingState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"genesisContractInstance","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"hasClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"mintViaClaim","outputs":[],"stateMutability":"nonpayable","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":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reservedAmount","type":"uint256"},{"internalType":"address","name":"mintAddress","type":"address"}],"name":"reserveMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"address","name":"genesisContractAddress","type":"address"}],"name":"setGenesisContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxDefiRangersV2Supply","type":"uint256"}],"name":"setMaxTokenSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","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":"","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":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawForGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052666a94d74f430000600d556000600e60006101000a81548160ff0219169083151502179055506000600e60016101000a81548160ff0219169083151502179055503480156200005257600080fd5b5060405162005f7c38038062005f7c833981810160405281019062000078919062000902565b838381600090805190602001906200009292919062000615565b508060019080519060200190620000ab92919062000615565b5050506000620000c06200060d60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600c81905550735c8465d8eadd095440defbb2d2f7a251fd07352e6011600060088110620001935762000192620009b2565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dc8eb8d2d1babd956136b57b0b9f49b433c019e36011600160088110620001ff57620001fe620009b2565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bd2440e2f8ddc9f03d7e2b37dd9bb780cb8eeb7c60116002600881106200026b576200026a620009b2565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507365131347c08242559e9cbd2e37dc11b8c88e29c46011600360088110620002d757620002d6620009b2565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735b789dda90988b76ef4f9cc0f28f902a35af8fae6011600460088110620003435762000342620009b2565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073d29135dca9a302c9fcbce48e1c255744aa2bdd786011600560088110620003af57620003ae620009b2565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737b2ff47dea4fa2bac287dc633dcd5db5c0c78ed260116006600881106200041b576200041a620009b2565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fcceefbee0265d638c80c7200ac6cad5d043c1be6011600760088110620004875762000486620009b2565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506113246019600060088110620004e157620004e0620009b2565b5b0181905550610bb86019600160088110620005015762000500620009b2565b5b01819055506103e86019600260088110620005215762000520620009b2565b5b01819055506101f46019600360088110620005415762000540620009b2565b5b018190555060c8601960046008811062000560576200055f620009b2565b5b018190555060c860196005600881106200057f576200057e620009b2565b5b0181905550606460196006600881106200059e576200059d620009b2565b5b018190555060646019600760088110620005bd57620005bc620009b2565b5b018190555080602260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000a46565b600033905090565b828054620006239062000a10565b90600052602060002090601f01602090048101928262000647576000855562000693565b82601f106200066257805160ff191683800117855562000693565b8280016001018555821562000693579182015b828111156200069257825182559160200191906001019062000675565b5b509050620006a29190620006a6565b5090565b5b80821115620006c1576000816000905550600101620006a7565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200072e82620006e3565b810181811067ffffffffffffffff8211171562000750576200074f620006f4565b5b80604052505050565b600062000765620006c5565b905062000773828262000723565b919050565b600067ffffffffffffffff821115620007965762000795620006f4565b5b620007a182620006e3565b9050602081019050919050565b60005b83811015620007ce578082015181840152602081019050620007b1565b83811115620007de576000848401525b50505050565b6000620007fb620007f58462000778565b62000759565b9050828152602081018484840111156200081a5762000819620006de565b5b62000827848285620007ae565b509392505050565b600082601f830112620008475762000846620006d9565b5b815162000859848260208601620007e4565b91505092915050565b6000819050919050565b620008778162000862565b81146200088357600080fd5b50565b60008151905062000897816200086c565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620008ca826200089d565b9050919050565b620008dc81620008bd565b8114620008e857600080fd5b50565b600081519050620008fc81620008d1565b92915050565b600080600080608085870312156200091f576200091e620006cf565b5b600085015167ffffffffffffffff81111562000940576200093f620006d4565b5b6200094e878288016200082f565b945050602085015167ffffffffffffffff811115620009725762000971620006d4565b5b62000980878288016200082f565b9350506040620009938782880162000886565b9250506060620009a687828801620008eb565b91505092959194509250565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000a2957607f821691505b6020821081141562000a405762000a3f620009e1565b5b50919050565b6155268062000a566000396000f3fe6080604052600436106102515760003560e01c806355f804b311610139578063a22cb465116100b6578063ce5165071161007a578063ce5165071461088b578063dfe93fa3146108c8578063e985e9c5146108f3578063eb8d244414610930578063f2fde38b1461095b578063f4a0a5281461098457610251565b8063a22cb465146107aa578063b07ed982146107d3578063b88d4fde146107fc578063b8ab7a2c14610825578063c87b56dd1461084e57610251565b806370a08231116100fd57806370a08231146106d5578063715018a6146107125780638727abce146107295780638da5cb5b1461075457806395d89b411461077f57610251565b806355f804b3146105f057806360b02f70146106195780636352211e146106425780636817c76c1461067f5780636c0360eb146106aa57610251565b80632e1a7d4d116101d2578063438b630011610196578063438b6300146104e25780634d2d15171461051f5780634d7313a4146105485780634f6ccce71461057157806350f7c204146105ae57806352c28f12146105d957610251565b80632e1a7d4d146104135780632f745c591461043c57806334918dfd1461047957806342842e0e1461049057806342966c68146104b957610251565b80630f7309e8116102195780630f7309e81461034f578063109695231461037a57806318160ddd146103a357806323b872dd146103ce5780632db11544146103f757610251565b806301ffc9a71461025657806306fdde031461029357806307cf3a77146102be578063081812fc146102e9578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906137a6565b6109ad565b60405161028a91906137ee565b60405180910390f35b34801561029f57600080fd5b506102a86109bf565b6040516102b591906138a2565b60405180910390f35b3480156102ca57600080fd5b506102d3610a51565b6040516102e091906137ee565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b91906138fa565b610a64565b60405161031d9190613968565b60405180910390f35b34801561033257600080fd5b5061034d600480360381019061034891906139af565b610ae9565b005b34801561035b57600080fd5b50610364610c01565b60405161037191906138a2565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613b24565b610c8f565b005b3480156103af57600080fd5b506103b8610d25565b6040516103c59190613b7c565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613b97565b610d32565b005b610411600480360381019061040c91906138fa565b610d92565b005b34801561041f57600080fd5b5061043a600480360381019061043591906138fa565b610f0d565b005b34801561044857600080fd5b50610463600480360381019061045e91906139af565b6110d5565b6040516104709190613b7c565b60405180910390f35b34801561048557600080fd5b5061048e61117a565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613b97565b611222565b005b3480156104c557600080fd5b506104e060048036038101906104db91906138fa565b611242565b005b3480156104ee57600080fd5b5061050960048036038101906105049190613bea565b61129e565b6040516105169190613cd5565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190613bea565b61134c565b005b34801561055457600080fd5b5061056f600480360381019061056a9190613d35565b61140c565b005b34801561057d57600080fd5b50610598600480360381019061059391906138fa565b6114cf565b6040516105a59190613b7c565b60405180910390f35b3480156105ba57600080fd5b506105c3611540565b6040516105d09190613b7c565b60405180910390f35b3480156105e557600080fd5b506105ee611546565b005b3480156105fc57600080fd5b5061061760048036038101906106129190613b24565b6115ee565b005b34801561062557600080fd5b50610640600480360381019061063b9190613d75565b611684565b005b34801561064e57600080fd5b50610669600480360381019061066491906138fa565b611743565b6040516106769190613968565b60405180910390f35b34801561068b57600080fd5b506106946117f5565b6040516106a19190613b7c565b60405180910390f35b3480156106b657600080fd5b506106bf6117fb565b6040516106cc91906138a2565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190613bea565b611889565b6040516107099190613b7c565b60405180910390f35b34801561071e57600080fd5b50610727611941565b005b34801561073557600080fd5b5061073e611a7e565b60405161074b9190613e14565b60405180910390f35b34801561076057600080fd5b50610769611aa4565b6040516107769190613968565b60405180910390f35b34801561078b57600080fd5b50610794611ace565b6040516107a191906138a2565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190613e5b565b611b60565b005b3480156107df57600080fd5b506107fa60048036038101906107f591906138fa565b611ce1565b005b34801561080857600080fd5b50610823600480360381019061081e9190613f3c565b611d67565b005b34801561083157600080fd5b5061084c6004803603810190610847919061401f565b611dc9565b005b34801561085a57600080fd5b50610875600480360381019061087091906138fa565b61203c565b60405161088291906138a2565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad91906138fa565b6120e3565b6040516108bf91906137ee565b60405180910390f35b3480156108d457600080fd5b506108dd612103565b6040516108ea9190613b7c565b60405180910390f35b3480156108ff57600080fd5b5061091a6004803603810190610915919061406c565b612108565b60405161092791906137ee565b60405180910390f35b34801561093c57600080fd5b5061094561219c565b60405161095291906137ee565b60405180910390f35b34801561096757600080fd5b50610982600480360381019061097d9190613bea565b6121af565b005b34801561099057600080fd5b506109ab60048036038101906109a691906138fa565b61235b565b005b60006109b8826123e1565b9050919050565b6060600080546109ce906140db565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa906140db565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b600e60019054906101000a900460ff1681565b6000610a6f8261245b565b610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa59061417f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af482611743565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90614211565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b846124c7565b73ffffffffffffffffffffffffffffffffffffffff161480610bb35750610bb281610bad6124c7565b612108565b5b610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be9906142a3565b60405180910390fd5b610bfc83836124cf565b505050565b60108054610c0e906140db565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3a906140db565b8015610c875780601f10610c5c57610100808354040283529160200191610c87565b820191906000526020600020905b815481529060010190602001808311610c6a57829003601f168201915b505050505081565b610c976124c7565b73ffffffffffffffffffffffffffffffffffffffff16610cb5611aa4565b73ffffffffffffffffffffffffffffffffffffffff1614610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d029061430f565b60405180910390fd5b8060109080519060200190610d21929190613697565b5050565b6000600880549050905090565b610d43610d3d6124c7565b82612588565b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d79906143a1565b60405180910390fd5b610d8d838383612666565b505050565b600e60009054906101000a900460ff16610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd89061440d565b60405180910390fd5b600f811115610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c9061449f565b60405180910390fd5b600c5481610e33600b6128c2565b610e3d91906144ee565b1115610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e75906145b6565b60405180910390fd5b3481600d54610e8d91906145d6565b1115610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec59061467c565b60405180910390fd5b60005b81811015610f0957610ee3600b6128d0565b610ef633610ef1600b6128c2565b6128e6565b8080610f019061469c565b915050610ed1565b5050565b610f156124c7565b73ffffffffffffffffffffffffffffffffffffffff16610f33611aa4565b73ffffffffffffffffffffffffffffffffffffffff1614610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f809061430f565b60405180910390fd5b80471015610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390614731565b60405180910390fd5b6000612710905060005b60088110156110d05760008260198360088110610ff657610ff5614751565b5b01548561100391906145d6565b61100d91906147af565b905061104e6011836008811061102657611025614751565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612904565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0566011836008811061108357611082614751565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516110b49291906147e0565b60405180910390a15080806110c89061469c565b915050610fd6565b505050565b60006110e083611889565b8210611121576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111189061487b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111826124c7565b73ffffffffffffffffffffffffffffffffffffffff166111a0611aa4565b73ffffffffffffffffffffffffffffffffffffffff16146111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed9061430f565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b61123d83838360405180602001604052806000815250611d67565b505050565b61125361124d6124c7565b82612588565b611292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112899061490d565b60405180910390fd5b61129b816129f8565b50565b606060006112ab83611889565b905060008167ffffffffffffffff8111156112c9576112c86139f9565b5b6040519080825280602002602001820160405280156112f75781602001602082028036833780820191505090505b50905060005b828110156113415761130f85826110d5565b82828151811061132257611321614751565b5b60200260200101818152505080806113399061469c565b9150506112fd565b508092505050919050565b6113546124c7565b73ffffffffffffffffffffffffffffffffffffffff16611372611aa4565b73ffffffffffffffffffffffffffffffffffffffff16146113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf9061430f565b60405180910390fd5b80602260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114146124c7565b73ffffffffffffffffffffffffffffffffffffffff16611432611aa4565b73ffffffffffffffffffffffffffffffffffffffff1614611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f9061430f565b60405180910390fd5b6114928183612904565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05681836040516114c392919061494e565b60405180910390a15050565b60006114d9610d25565b821061151a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611511906149e9565b60405180910390fd5b6008828154811061152e5761152d614751565b5b90600052602060002001549050919050565b600c5481565b61154e6124c7565b73ffffffffffffffffffffffffffffffffffffffff1661156c611aa4565b73ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b99061430f565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6115f66124c7565b73ffffffffffffffffffffffffffffffffffffffff16611614611aa4565b73ffffffffffffffffffffffffffffffffffffffff161461166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116619061430f565b60405180910390fd5b80600f9080519060200190611680929190613697565b5050565b61168c6124c7565b73ffffffffffffffffffffffffffffffffffffffff166116aa611aa4565b73ffffffffffffffffffffffffffffffffffffffff1614611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f79061430f565b60405180910390fd5b6000600190505b82811161173e57611718600b6128d0565b61172b82611726600b6128c2565b6128e6565b80806117369061469c565b915050611707565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390614a7b565b60405180910390fd5b80915050919050565b600d5481565b600f8054611808906140db565b80601f0160208091040260200160405190810160405280929190818152602001828054611834906140db565b80156118815780601f1061185657610100808354040283529160200191611881565b820191906000526020600020905b81548152906001019060200180831161186457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190614b0d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119496124c7565b73ffffffffffffffffffffffffffffffffffffffff16611967611aa4565b73ffffffffffffffffffffffffffffffffffffffff16146119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b49061430f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b602260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611add906140db565b80601f0160208091040260200160405190810160405280929190818152602001828054611b09906140db565b8015611b565780601f10611b2b57610100808354040283529160200191611b56565b820191906000526020600020905b815481529060010190602001808311611b3957829003601f168201915b5050505050905090565b611b686124c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd90614b79565b60405180910390fd5b8060056000611be36124c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c906124c7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cd591906137ee565b60405180910390a35050565b611ce96124c7565b73ffffffffffffffffffffffffffffffffffffffff16611d07611aa4565b73ffffffffffffffffffffffffffffffffffffffff1614611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d549061430f565b60405180910390fd5b80600c8190555050565b611d78611d726124c7565b83612588565b611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae906143a1565b60405180910390fd5b611dc384848484612b09565b50505050565b600e60019054906101000a900460ff16611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90614c0b565b60405180910390fd5b60005b82829050811015612037573373ffffffffffffffffffffffffffffffffffffffff16602260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e858585818110611e8e57611e8d614751565b5b905060200201356040518263ffffffff1660e01b8152600401611eb19190613b7c565b602060405180830381865afa158015611ece573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef29190614c40565b73ffffffffffffffffffffffffffffffffffffffff1614611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f90614cdf565b60405180910390fd5b60216000848484818110611f5f57611f5e614751565b5b90506020020135815260200190815260200160002060009054906101000a900460ff1615611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb990614d71565b60405180910390fd5b600160216000858585818110611fdb57611fda614751565b5b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550612011600b6128d0565b6120243361201f600b6128c2565b6128e6565b808061202f9061469c565b915050611e1b565b505050565b60606120478261245b565b612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d90614e03565b60405180910390fd5b6000612090612b65565b905060008151116120b057604051806020016040528060008152506120db565b806120ba84612bf7565b6040516020016120cb929190614e5f565b6040516020818303038152906040525b915050919050565b60216020528060005260406000206000915054906101000a900460ff1681565b600f81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b6121b76124c7565b73ffffffffffffffffffffffffffffffffffffffff166121d5611aa4565b73ffffffffffffffffffffffffffffffffffffffff161461222b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122229061430f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290614ef5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6123636124c7565b73ffffffffffffffffffffffffffffffffffffffff16612381611aa4565b73ffffffffffffffffffffffffffffffffffffffff16146123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce9061430f565b60405180910390fd5b80600d8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612454575061245382612d58565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661254283611743565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125938261245b565b6125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c990614f87565b60405180910390fd5b60006125dd83611743565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061264c57508373ffffffffffffffffffffffffffffffffffffffff1661263484610a64565b73ffffffffffffffffffffffffffffffffffffffff16145b8061265d575061265c8185612108565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661268682611743565b73ffffffffffffffffffffffffffffffffffffffff16146126dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d390615019565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561274c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612743906150ab565b60405180910390fd5b612757838383612e3a565b6127626000826124cf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127b291906150cb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461280991906144ee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612900828260405180602001604052806000815250612e4a565b5050565b80471015612947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293e9061514b565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161296d9061519c565b60006040518083038185875af1925050503d80600081146129aa576040519150601f19603f3d011682016040523d82523d6000602084013e6129af565b606091505b50509050806129f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ea90615223565b60405180910390fd5b505050565b6000612a0382611743565b9050612a1181600084612e3a565b612a1c6000836124cf565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a6c91906150cb565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612b14848484612666565b612b2084848484612ea5565b612b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b56906152b5565b60405180910390fd5b50505050565b6060600f8054612b74906140db565b80601f0160208091040260200160405190810160405280929190818152602001828054612ba0906140db565b8015612bed5780601f10612bc257610100808354040283529160200191612bed565b820191906000526020600020905b815481529060010190602001808311612bd057829003601f168201915b5050505050905090565b60606000821415612c3f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d53565b600082905060005b60008214612c71578080612c5a9061469c565b915050600a82612c6a91906147af565b9150612c47565b60008167ffffffffffffffff811115612c8d57612c8c6139f9565b5b6040519080825280601f01601f191660200182016040528015612cbf5781602001600182028036833780820191505090505b5090505b60008514612d4c57600182612cd891906150cb565b9150600a85612ce791906152d5565b6030612cf391906144ee565b60f81b818381518110612d0957612d08614751565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d4591906147af565b9450612cc3565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e335750612e328261302d565b5b9050919050565b612e45838383613097565b505050565b612e5483836131ab565b612e616000848484612ea5565b612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e97906152b5565b60405180910390fd5b505050565b6000612ec68473ffffffffffffffffffffffffffffffffffffffff16613379565b15613020578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eef6124c7565b8786866040518563ffffffff1660e01b8152600401612f11949392919061535b565b6020604051808303816000875af1925050508015612f4d57506040513d601f19601f82011682018060405250810190612f4a91906153bc565b60015b612fd0573d8060008114612f7d576040519150601f19603f3d011682016040523d82523d6000602084013e612f82565b606091505b50600081511415612fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbf906152b5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613025565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130a283838361338c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130e5576130e081613391565b613124565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131235761312283826133da565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131675761316281613547565b6131a6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131a5576131a48282613618565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561321b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321290615435565b60405180910390fd5b6132248161245b565b15613264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325b906154a1565b60405180910390fd5b61327060008383612e3a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132c091906144ee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016133e784611889565b6133f191906150cb565b90506000600760008481526020019081526020016000205490508181146134d6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061355b91906150cb565b905060006009600084815260200190815260200160002054905060006008838154811061358b5761358a614751565b5b9060005260206000200154905080600883815481106135ad576135ac614751565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135fc576135fb6154c1565b5b6001900381819060005260206000200160009055905550505050565b600061362383611889565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546136a3906140db565b90600052602060002090601f0160209004810192826136c5576000855561370c565b82601f106136de57805160ff191683800117855561370c565b8280016001018555821561370c579182015b8281111561370b5782518255916020019190600101906136f0565b5b509050613719919061371d565b5090565b5b8082111561373657600081600090555060010161371e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137838161374e565b811461378e57600080fd5b50565b6000813590506137a08161377a565b92915050565b6000602082840312156137bc576137bb613744565b5b60006137ca84828501613791565b91505092915050565b60008115159050919050565b6137e8816137d3565b82525050565b600060208201905061380360008301846137df565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613843578082015181840152602081019050613828565b83811115613852576000848401525b50505050565b6000601f19601f8301169050919050565b600061387482613809565b61387e8185613814565b935061388e818560208601613825565b61389781613858565b840191505092915050565b600060208201905081810360008301526138bc8184613869565b905092915050565b6000819050919050565b6138d7816138c4565b81146138e257600080fd5b50565b6000813590506138f4816138ce565b92915050565b6000602082840312156139105761390f613744565b5b600061391e848285016138e5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061395282613927565b9050919050565b61396281613947565b82525050565b600060208201905061397d6000830184613959565b92915050565b61398c81613947565b811461399757600080fd5b50565b6000813590506139a981613983565b92915050565b600080604083850312156139c6576139c5613744565b5b60006139d48582860161399a565b92505060206139e5858286016138e5565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a3182613858565b810181811067ffffffffffffffff82111715613a5057613a4f6139f9565b5b80604052505050565b6000613a6361373a565b9050613a6f8282613a28565b919050565b600067ffffffffffffffff821115613a8f57613a8e6139f9565b5b613a9882613858565b9050602081019050919050565b82818337600083830152505050565b6000613ac7613ac284613a74565b613a59565b905082815260208101848484011115613ae357613ae26139f4565b5b613aee848285613aa5565b509392505050565b600082601f830112613b0b57613b0a6139ef565b5b8135613b1b848260208601613ab4565b91505092915050565b600060208284031215613b3a57613b39613744565b5b600082013567ffffffffffffffff811115613b5857613b57613749565b5b613b6484828501613af6565b91505092915050565b613b76816138c4565b82525050565b6000602082019050613b916000830184613b6d565b92915050565b600080600060608486031215613bb057613baf613744565b5b6000613bbe8682870161399a565b9350506020613bcf8682870161399a565b9250506040613be0868287016138e5565b9150509250925092565b600060208284031215613c0057613bff613744565b5b6000613c0e8482850161399a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c4c816138c4565b82525050565b6000613c5e8383613c43565b60208301905092915050565b6000602082019050919050565b6000613c8282613c17565b613c8c8185613c22565b9350613c9783613c33565b8060005b83811015613cc8578151613caf8882613c52565b9750613cba83613c6a565b925050600181019050613c9b565b5085935050505092915050565b60006020820190508181036000830152613cef8184613c77565b905092915050565b6000613d0282613927565b9050919050565b613d1281613cf7565b8114613d1d57600080fd5b50565b600081359050613d2f81613d09565b92915050565b60008060408385031215613d4c57613d4b613744565b5b6000613d5a858286016138e5565b9250506020613d6b85828601613d20565b9150509250929050565b60008060408385031215613d8c57613d8b613744565b5b6000613d9a858286016138e5565b9250506020613dab8582860161399a565b9150509250929050565b6000819050919050565b6000613dda613dd5613dd084613927565b613db5565b613927565b9050919050565b6000613dec82613dbf565b9050919050565b6000613dfe82613de1565b9050919050565b613e0e81613df3565b82525050565b6000602082019050613e296000830184613e05565b92915050565b613e38816137d3565b8114613e4357600080fd5b50565b600081359050613e5581613e2f565b92915050565b60008060408385031215613e7257613e71613744565b5b6000613e808582860161399a565b9250506020613e9185828601613e46565b9150509250929050565b600067ffffffffffffffff821115613eb657613eb56139f9565b5b613ebf82613858565b9050602081019050919050565b6000613edf613eda84613e9b565b613a59565b905082815260208101848484011115613efb57613efa6139f4565b5b613f06848285613aa5565b509392505050565b600082601f830112613f2357613f226139ef565b5b8135613f33848260208601613ecc565b91505092915050565b60008060008060808587031215613f5657613f55613744565b5b6000613f648782880161399a565b9450506020613f758782880161399a565b9350506040613f86878288016138e5565b925050606085013567ffffffffffffffff811115613fa757613fa6613749565b5b613fb387828801613f0e565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613fdf57613fde6139ef565b5b8235905067ffffffffffffffff811115613ffc57613ffb613fbf565b5b60208301915083602082028301111561401857614017613fc4565b5b9250929050565b6000806020838503121561403657614035613744565b5b600083013567ffffffffffffffff81111561405457614053613749565b5b61406085828601613fc9565b92509250509250929050565b6000806040838503121561408357614082613744565b5b60006140918582860161399a565b92505060206140a28582860161399a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140f357607f821691505b60208210811415614107576141066140ac565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614169602c83613814565b91506141748261410d565b604082019050919050565b600060208201905081810360008301526141988161415c565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006141fb602183613814565b91506142068261419f565b604082019050919050565b6000602082019050818103600083015261422a816141ee565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061428d603883613814565b915061429882614231565b604082019050919050565b600060208201905081810360008301526142bc81614280565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142f9602083613814565b9150614304826142c3565b602082019050919050565b60006020820190508181036000830152614328816142ec565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061438b603183613814565b91506143968261432f565b604082019050919050565b600060208201905081810360008301526143ba8161437e565b9050919050565b7f53616c65206973206e6f74206c69766520796574000000000000000000000000600082015250565b60006143f7601483613814565b9150614402826143c1565b602082019050919050565b60006020820190508181036000830152614426816143ea565b9050919050565b7f596f752063616e206d696e742061206d6178206f66203135204e46547320617460008201527f20612074696d6500000000000000000000000000000000000000000000000000602082015250565b6000614489602783613814565b91506144948261442d565b604082019050919050565b600060208201905081810360008301526144b88161447c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144f9826138c4565b9150614504836138c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614539576145386144bf565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820617661696c6160008201527f626c65204e465473000000000000000000000000000000000000000000000000602082015250565b60006145a0602883613814565b91506145ab82614544565b604082019050919050565b600060208201905081810360008301526145cf81614593565b9050919050565b60006145e1826138c4565b91506145ec836138c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614625576146246144bf565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000614666601f83613814565b915061467182614630565b602082019050919050565b6000602082019050818103600083015261469581614659565b9050919050565b60006146a7826138c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146da576146d96144bf565b5b600182019050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b600061471b601483613814565b9150614726826146e5565b602082019050919050565b6000602082019050818103600083015261474a8161470e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147ba826138c4565b91506147c5836138c4565b9250826147d5576147d4614780565b5b828204905092915050565b60006040820190506147f56000830185613959565b6148026020830184613b6d565b9392505050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614865602b83613814565b915061487082614809565b604082019050919050565b6000602082019050818103600083015261489481614858565b9050919050565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b60006148f7603083613814565b91506149028261489b565b604082019050919050565b60006020820190508181036000830152614926816148ea565b9050919050565b600061493882613de1565b9050919050565b6149488161492d565b82525050565b6000604082019050614963600083018561493f565b6149706020830184613b6d565b9392505050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006149d3602c83613814565b91506149de82614977565b604082019050919050565b60006020820190508181036000830152614a02816149c6565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614a65602983613814565b9150614a7082614a09565b604082019050919050565b60006020820190508181036000830152614a9481614a58565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614af7602a83613814565b9150614b0282614a9b565b604082019050919050565b60006020820190508181036000830152614b2681614aea565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614b63601983613814565b9150614b6e82614b2d565b602082019050919050565b60006020820190508181036000830152614b9281614b56565b9050919050565b7f4d696e74696e672076696120636c61696d73206973206e6f74206c697665207960008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bf5602283613814565b9150614c0082614b99565b604082019050919050565b60006020820190508181036000830152614c2481614be8565b9050919050565b600081519050614c3a81613983565b92915050565b600060208284031215614c5657614c55613744565b5b6000614c6484828501614c2b565b91505092915050565b7f43616c6c6572206973206e6f74206f776e6572206f662074686520746f6b656e60008201527f2049440000000000000000000000000000000000000000000000000000000000602082015250565b6000614cc9602383613814565b9150614cd482614c6d565b604082019050919050565b60006020820190508181036000830152614cf881614cbc565b9050919050565b7f5468697320746f6b656e2068617320616c7265616479206265656e20636c616960008201527f6d65640000000000000000000000000000000000000000000000000000000000602082015250565b6000614d5b602383613814565b9150614d6682614cff565b604082019050919050565b60006020820190508181036000830152614d8a81614d4e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614ded602f83613814565b9150614df882614d91565b604082019050919050565b60006020820190508181036000830152614e1c81614de0565b9050919050565b600081905092915050565b6000614e3982613809565b614e438185614e23565b9350614e53818560208601613825565b80840191505092915050565b6000614e6b8285614e2e565b9150614e778284614e2e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614edf602683613814565b9150614eea82614e83565b604082019050919050565b60006020820190508181036000830152614f0e81614ed2565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614f71602c83613814565b9150614f7c82614f15565b604082019050919050565b60006020820190508181036000830152614fa081614f64565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615003602983613814565b915061500e82614fa7565b604082019050919050565b6000602082019050818103600083015261503281614ff6565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615095602483613814565b91506150a082615039565b604082019050919050565b600060208201905081810360008301526150c481615088565b9050919050565b60006150d6826138c4565b91506150e1836138c4565b9250828210156150f4576150f36144bf565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000615135601d83613814565b9150615140826150ff565b602082019050919050565b6000602082019050818103600083015261516481615128565b9050919050565b600081905092915050565b50565b600061518660008361516b565b915061519182615176565b600082019050919050565b60006151a782615179565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061520d603a83613814565b9150615218826151b1565b604082019050919050565b6000602082019050818103600083015261523c81615200565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061529f603283613814565b91506152aa82615243565b604082019050919050565b600060208201905081810360008301526152ce81615292565b9050919050565b60006152e0826138c4565b91506152eb836138c4565b9250826152fb576152fa614780565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061532d82615306565b6153378185615311565b9350615347818560208601613825565b61535081613858565b840191505092915050565b60006080820190506153706000830187613959565b61537d6020830186613959565b61538a6040830185613b6d565b818103606083015261539c8184615322565b905095945050505050565b6000815190506153b68161377a565b92915050565b6000602082840312156153d2576153d1613744565b5b60006153e0848285016153a7565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061541f602083613814565b915061542a826153e9565b602082019050919050565b6000602082019050818103600083015261544e81615412565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061548b601c83613814565b915061549682615455565b602082019050919050565b600060208201905081810360008301526154ba8161547e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212202eb9671d2c385b1b106310e28c7f74343a0011d0b9e5a933f63309316636a9ec64736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000151c000000000000000000000000264d1e3c5739de2ea7fd9429c4335b0a994cfeb3000000000000000000000000000000000000000000000000000000000000000f446566692052616e676572732056320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000952414e4745525356320000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c806355f804b311610139578063a22cb465116100b6578063ce5165071161007a578063ce5165071461088b578063dfe93fa3146108c8578063e985e9c5146108f3578063eb8d244414610930578063f2fde38b1461095b578063f4a0a5281461098457610251565b8063a22cb465146107aa578063b07ed982146107d3578063b88d4fde146107fc578063b8ab7a2c14610825578063c87b56dd1461084e57610251565b806370a08231116100fd57806370a08231146106d5578063715018a6146107125780638727abce146107295780638da5cb5b1461075457806395d89b411461077f57610251565b806355f804b3146105f057806360b02f70146106195780636352211e146106425780636817c76c1461067f5780636c0360eb146106aa57610251565b80632e1a7d4d116101d2578063438b630011610196578063438b6300146104e25780634d2d15171461051f5780634d7313a4146105485780634f6ccce71461057157806350f7c204146105ae57806352c28f12146105d957610251565b80632e1a7d4d146104135780632f745c591461043c57806334918dfd1461047957806342842e0e1461049057806342966c68146104b957610251565b80630f7309e8116102195780630f7309e81461034f578063109695231461037a57806318160ddd146103a357806323b872dd146103ce5780632db11544146103f757610251565b806301ffc9a71461025657806306fdde031461029357806307cf3a77146102be578063081812fc146102e9578063095ea7b314610326575b600080fd5b34801561026257600080fd5b5061027d600480360381019061027891906137a6565b6109ad565b60405161028a91906137ee565b60405180910390f35b34801561029f57600080fd5b506102a86109bf565b6040516102b591906138a2565b60405180910390f35b3480156102ca57600080fd5b506102d3610a51565b6040516102e091906137ee565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b91906138fa565b610a64565b60405161031d9190613968565b60405180910390f35b34801561033257600080fd5b5061034d600480360381019061034891906139af565b610ae9565b005b34801561035b57600080fd5b50610364610c01565b60405161037191906138a2565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190613b24565b610c8f565b005b3480156103af57600080fd5b506103b8610d25565b6040516103c59190613b7c565b60405180910390f35b3480156103da57600080fd5b506103f560048036038101906103f09190613b97565b610d32565b005b610411600480360381019061040c91906138fa565b610d92565b005b34801561041f57600080fd5b5061043a600480360381019061043591906138fa565b610f0d565b005b34801561044857600080fd5b50610463600480360381019061045e91906139af565b6110d5565b6040516104709190613b7c565b60405180910390f35b34801561048557600080fd5b5061048e61117a565b005b34801561049c57600080fd5b506104b760048036038101906104b29190613b97565b611222565b005b3480156104c557600080fd5b506104e060048036038101906104db91906138fa565b611242565b005b3480156104ee57600080fd5b5061050960048036038101906105049190613bea565b61129e565b6040516105169190613cd5565b60405180910390f35b34801561052b57600080fd5b5061054660048036038101906105419190613bea565b61134c565b005b34801561055457600080fd5b5061056f600480360381019061056a9190613d35565b61140c565b005b34801561057d57600080fd5b50610598600480360381019061059391906138fa565b6114cf565b6040516105a59190613b7c565b60405180910390f35b3480156105ba57600080fd5b506105c3611540565b6040516105d09190613b7c565b60405180910390f35b3480156105e557600080fd5b506105ee611546565b005b3480156105fc57600080fd5b5061061760048036038101906106129190613b24565b6115ee565b005b34801561062557600080fd5b50610640600480360381019061063b9190613d75565b611684565b005b34801561064e57600080fd5b50610669600480360381019061066491906138fa565b611743565b6040516106769190613968565b60405180910390f35b34801561068b57600080fd5b506106946117f5565b6040516106a19190613b7c565b60405180910390f35b3480156106b657600080fd5b506106bf6117fb565b6040516106cc91906138a2565b60405180910390f35b3480156106e157600080fd5b506106fc60048036038101906106f79190613bea565b611889565b6040516107099190613b7c565b60405180910390f35b34801561071e57600080fd5b50610727611941565b005b34801561073557600080fd5b5061073e611a7e565b60405161074b9190613e14565b60405180910390f35b34801561076057600080fd5b50610769611aa4565b6040516107769190613968565b60405180910390f35b34801561078b57600080fd5b50610794611ace565b6040516107a191906138a2565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190613e5b565b611b60565b005b3480156107df57600080fd5b506107fa60048036038101906107f591906138fa565b611ce1565b005b34801561080857600080fd5b50610823600480360381019061081e9190613f3c565b611d67565b005b34801561083157600080fd5b5061084c6004803603810190610847919061401f565b611dc9565b005b34801561085a57600080fd5b50610875600480360381019061087091906138fa565b61203c565b60405161088291906138a2565b60405180910390f35b34801561089757600080fd5b506108b260048036038101906108ad91906138fa565b6120e3565b6040516108bf91906137ee565b60405180910390f35b3480156108d457600080fd5b506108dd612103565b6040516108ea9190613b7c565b60405180910390f35b3480156108ff57600080fd5b5061091a6004803603810190610915919061406c565b612108565b60405161092791906137ee565b60405180910390f35b34801561093c57600080fd5b5061094561219c565b60405161095291906137ee565b60405180910390f35b34801561096757600080fd5b50610982600480360381019061097d9190613bea565b6121af565b005b34801561099057600080fd5b506109ab60048036038101906109a691906138fa565b61235b565b005b60006109b8826123e1565b9050919050565b6060600080546109ce906140db565b80601f01602080910402602001604051908101604052809291908181526020018280546109fa906140db565b8015610a475780601f10610a1c57610100808354040283529160200191610a47565b820191906000526020600020905b815481529060010190602001808311610a2a57829003601f168201915b5050505050905090565b600e60019054906101000a900460ff1681565b6000610a6f8261245b565b610aae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa59061417f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610af482611743565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90614211565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b846124c7565b73ffffffffffffffffffffffffffffffffffffffff161480610bb35750610bb281610bad6124c7565b612108565b5b610bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be9906142a3565b60405180910390fd5b610bfc83836124cf565b505050565b60108054610c0e906140db565b80601f0160208091040260200160405190810160405280929190818152602001828054610c3a906140db565b8015610c875780601f10610c5c57610100808354040283529160200191610c87565b820191906000526020600020905b815481529060010190602001808311610c6a57829003601f168201915b505050505081565b610c976124c7565b73ffffffffffffffffffffffffffffffffffffffff16610cb5611aa4565b73ffffffffffffffffffffffffffffffffffffffff1614610d0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d029061430f565b60405180910390fd5b8060109080519060200190610d21929190613697565b5050565b6000600880549050905090565b610d43610d3d6124c7565b82612588565b610d82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d79906143a1565b60405180910390fd5b610d8d838383612666565b505050565b600e60009054906101000a900460ff16610de1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd89061440d565b60405180910390fd5b600f811115610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c9061449f565b60405180910390fd5b600c5481610e33600b6128c2565b610e3d91906144ee565b1115610e7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e75906145b6565b60405180910390fd5b3481600d54610e8d91906145d6565b1115610ece576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec59061467c565b60405180910390fd5b60005b81811015610f0957610ee3600b6128d0565b610ef633610ef1600b6128c2565b6128e6565b8080610f019061469c565b915050610ed1565b5050565b610f156124c7565b73ffffffffffffffffffffffffffffffffffffffff16610f33611aa4565b73ffffffffffffffffffffffffffffffffffffffff1614610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f809061430f565b60405180910390fd5b80471015610fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc390614731565b60405180910390fd5b6000612710905060005b60088110156110d05760008260198360088110610ff657610ff5614751565b5b01548561100391906145d6565b61100d91906147af565b905061104e6011836008811061102657611025614751565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612904565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0566011836008811061108357611082614751565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826040516110b49291906147e0565b60405180910390a15080806110c89061469c565b915050610fd6565b505050565b60006110e083611889565b8210611121576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111189061487b565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111826124c7565b73ffffffffffffffffffffffffffffffffffffffff166111a0611aa4565b73ffffffffffffffffffffffffffffffffffffffff16146111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed9061430f565b60405180910390fd5b600e60009054906101000a900460ff1615600e60006101000a81548160ff021916908315150217905550565b61123d83838360405180602001604052806000815250611d67565b505050565b61125361124d6124c7565b82612588565b611292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112899061490d565b60405180910390fd5b61129b816129f8565b50565b606060006112ab83611889565b905060008167ffffffffffffffff8111156112c9576112c86139f9565b5b6040519080825280602002602001820160405280156112f75781602001602082028036833780820191505090505b50905060005b828110156113415761130f85826110d5565b82828151811061132257611321614751565b5b60200260200101818152505080806113399061469c565b9150506112fd565b508092505050919050565b6113546124c7565b73ffffffffffffffffffffffffffffffffffffffff16611372611aa4565b73ffffffffffffffffffffffffffffffffffffffff16146113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf9061430f565b60405180910390fd5b80602260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6114146124c7565b73ffffffffffffffffffffffffffffffffffffffff16611432611aa4565b73ffffffffffffffffffffffffffffffffffffffff1614611488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147f9061430f565b60405180910390fd5b6114928183612904565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05681836040516114c392919061494e565b60405180910390a15050565b60006114d9610d25565b821061151a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611511906149e9565b60405180910390fd5b6008828154811061152e5761152d614751565b5b90600052602060002001549050919050565b600c5481565b61154e6124c7565b73ffffffffffffffffffffffffffffffffffffffff1661156c611aa4565b73ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b99061430f565b60405180910390fd5b600e60019054906101000a900460ff1615600e60016101000a81548160ff021916908315150217905550565b6115f66124c7565b73ffffffffffffffffffffffffffffffffffffffff16611614611aa4565b73ffffffffffffffffffffffffffffffffffffffff161461166a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116619061430f565b60405180910390fd5b80600f9080519060200190611680929190613697565b5050565b61168c6124c7565b73ffffffffffffffffffffffffffffffffffffffff166116aa611aa4565b73ffffffffffffffffffffffffffffffffffffffff1614611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f79061430f565b60405180910390fd5b6000600190505b82811161173e57611718600b6128d0565b61172b82611726600b6128c2565b6128e6565b80806117369061469c565b915050611707565b505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390614a7b565b60405180910390fd5b80915050919050565b600d5481565b600f8054611808906140db565b80601f0160208091040260200160405190810160405280929190818152602001828054611834906140db565b80156118815780601f1061185657610100808354040283529160200191611881565b820191906000526020600020905b81548152906001019060200180831161186457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f190614b0d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119496124c7565b73ffffffffffffffffffffffffffffffffffffffff16611967611aa4565b73ffffffffffffffffffffffffffffffffffffffff16146119bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b49061430f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b602260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611add906140db565b80601f0160208091040260200160405190810160405280929190818152602001828054611b09906140db565b8015611b565780601f10611b2b57610100808354040283529160200191611b56565b820191906000526020600020905b815481529060010190602001808311611b3957829003601f168201915b5050505050905090565b611b686124c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcd90614b79565b60405180910390fd5b8060056000611be36124c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c906124c7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cd591906137ee565b60405180910390a35050565b611ce96124c7565b73ffffffffffffffffffffffffffffffffffffffff16611d07611aa4565b73ffffffffffffffffffffffffffffffffffffffff1614611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d549061430f565b60405180910390fd5b80600c8190555050565b611d78611d726124c7565b83612588565b611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae906143a1565b60405180910390fd5b611dc384848484612b09565b50505050565b600e60019054906101000a900460ff16611e18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0f90614c0b565b60405180910390fd5b60005b82829050811015612037573373ffffffffffffffffffffffffffffffffffffffff16602260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e858585818110611e8e57611e8d614751565b5b905060200201356040518263ffffffff1660e01b8152600401611eb19190613b7c565b602060405180830381865afa158015611ece573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ef29190614c40565b73ffffffffffffffffffffffffffffffffffffffff1614611f48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3f90614cdf565b60405180910390fd5b60216000848484818110611f5f57611f5e614751565b5b90506020020135815260200190815260200160002060009054906101000a900460ff1615611fc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb990614d71565b60405180910390fd5b600160216000858585818110611fdb57611fda614751565b5b90506020020135815260200190815260200160002060006101000a81548160ff021916908315150217905550612011600b6128d0565b6120243361201f600b6128c2565b6128e6565b808061202f9061469c565b915050611e1b565b505050565b60606120478261245b565b612086576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207d90614e03565b60405180910390fd5b6000612090612b65565b905060008151116120b057604051806020016040528060008152506120db565b806120ba84612bf7565b6040516020016120cb929190614e5f565b6040516020818303038152906040525b915050919050565b60216020528060005260406000206000915054906101000a900460ff1681565b600f81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600e60009054906101000a900460ff1681565b6121b76124c7565b73ffffffffffffffffffffffffffffffffffffffff166121d5611aa4565b73ffffffffffffffffffffffffffffffffffffffff161461222b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122229061430f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561229b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229290614ef5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6123636124c7565b73ffffffffffffffffffffffffffffffffffffffff16612381611aa4565b73ffffffffffffffffffffffffffffffffffffffff16146123d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ce9061430f565b60405180910390fd5b80600d8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612454575061245382612d58565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661254283611743565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006125938261245b565b6125d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c990614f87565b60405180910390fd5b60006125dd83611743565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061264c57508373ffffffffffffffffffffffffffffffffffffffff1661263484610a64565b73ffffffffffffffffffffffffffffffffffffffff16145b8061265d575061265c8185612108565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661268682611743565b73ffffffffffffffffffffffffffffffffffffffff16146126dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d390615019565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561274c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612743906150ab565b60405180910390fd5b612757838383612e3a565b6127626000826124cf565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127b291906150cb565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461280991906144ee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612900828260405180602001604052806000815250612e4a565b5050565b80471015612947576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293e9061514b565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff168260405161296d9061519c565b60006040518083038185875af1925050503d80600081146129aa576040519150601f19603f3d011682016040523d82523d6000602084013e6129af565b606091505b50509050806129f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129ea90615223565b60405180910390fd5b505050565b6000612a0382611743565b9050612a1181600084612e3a565b612a1c6000836124cf565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a6c91906150cb565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612b14848484612666565b612b2084848484612ea5565b612b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b56906152b5565b60405180910390fd5b50505050565b6060600f8054612b74906140db565b80601f0160208091040260200160405190810160405280929190818152602001828054612ba0906140db565b8015612bed5780601f10612bc257610100808354040283529160200191612bed565b820191906000526020600020905b815481529060010190602001808311612bd057829003601f168201915b5050505050905090565b60606000821415612c3f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612d53565b600082905060005b60008214612c71578080612c5a9061469c565b915050600a82612c6a91906147af565b9150612c47565b60008167ffffffffffffffff811115612c8d57612c8c6139f9565b5b6040519080825280601f01601f191660200182016040528015612cbf5781602001600182028036833780820191505090505b5090505b60008514612d4c57600182612cd891906150cb565b9150600a85612ce791906152d5565b6030612cf391906144ee565b60f81b818381518110612d0957612d08614751565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612d4591906147af565b9450612cc3565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612e2357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612e335750612e328261302d565b5b9050919050565b612e45838383613097565b505050565b612e5483836131ab565b612e616000848484612ea5565b612ea0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e97906152b5565b60405180910390fd5b505050565b6000612ec68473ffffffffffffffffffffffffffffffffffffffff16613379565b15613020578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612eef6124c7565b8786866040518563ffffffff1660e01b8152600401612f11949392919061535b565b6020604051808303816000875af1925050508015612f4d57506040513d601f19601f82011682018060405250810190612f4a91906153bc565b60015b612fd0573d8060008114612f7d576040519150601f19603f3d011682016040523d82523d6000602084013e612f82565b606091505b50600081511415612fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbf906152b5565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613025565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6130a283838361338c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156130e5576130e081613391565b613124565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146131235761312283826133da565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156131675761316281613547565b6131a6565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146131a5576131a48282613618565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561321b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321290615435565b60405180910390fd5b6132248161245b565b15613264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161325b906154a1565b60405180910390fd5b61327060008383612e3a565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132c091906144ee565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016133e784611889565b6133f191906150cb565b90506000600760008481526020019081526020016000205490508181146134d6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061355b91906150cb565b905060006009600084815260200190815260200160002054905060006008838154811061358b5761358a614751565b5b9060005260206000200154905080600883815481106135ad576135ac614751565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806135fc576135fb6154c1565b5b6001900381819060005260206000200160009055905550505050565b600061362383611889565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546136a3906140db565b90600052602060002090601f0160209004810192826136c5576000855561370c565b82601f106136de57805160ff191683800117855561370c565b8280016001018555821561370c579182015b8281111561370b5782518255916020019190600101906136f0565b5b509050613719919061371d565b5090565b5b8082111561373657600081600090555060010161371e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6137838161374e565b811461378e57600080fd5b50565b6000813590506137a08161377a565b92915050565b6000602082840312156137bc576137bb613744565b5b60006137ca84828501613791565b91505092915050565b60008115159050919050565b6137e8816137d3565b82525050565b600060208201905061380360008301846137df565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613843578082015181840152602081019050613828565b83811115613852576000848401525b50505050565b6000601f19601f8301169050919050565b600061387482613809565b61387e8185613814565b935061388e818560208601613825565b61389781613858565b840191505092915050565b600060208201905081810360008301526138bc8184613869565b905092915050565b6000819050919050565b6138d7816138c4565b81146138e257600080fd5b50565b6000813590506138f4816138ce565b92915050565b6000602082840312156139105761390f613744565b5b600061391e848285016138e5565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061395282613927565b9050919050565b61396281613947565b82525050565b600060208201905061397d6000830184613959565b92915050565b61398c81613947565b811461399757600080fd5b50565b6000813590506139a981613983565b92915050565b600080604083850312156139c6576139c5613744565b5b60006139d48582860161399a565b92505060206139e5858286016138e5565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b613a3182613858565b810181811067ffffffffffffffff82111715613a5057613a4f6139f9565b5b80604052505050565b6000613a6361373a565b9050613a6f8282613a28565b919050565b600067ffffffffffffffff821115613a8f57613a8e6139f9565b5b613a9882613858565b9050602081019050919050565b82818337600083830152505050565b6000613ac7613ac284613a74565b613a59565b905082815260208101848484011115613ae357613ae26139f4565b5b613aee848285613aa5565b509392505050565b600082601f830112613b0b57613b0a6139ef565b5b8135613b1b848260208601613ab4565b91505092915050565b600060208284031215613b3a57613b39613744565b5b600082013567ffffffffffffffff811115613b5857613b57613749565b5b613b6484828501613af6565b91505092915050565b613b76816138c4565b82525050565b6000602082019050613b916000830184613b6d565b92915050565b600080600060608486031215613bb057613baf613744565b5b6000613bbe8682870161399a565b9350506020613bcf8682870161399a565b9250506040613be0868287016138e5565b9150509250925092565b600060208284031215613c0057613bff613744565b5b6000613c0e8482850161399a565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c4c816138c4565b82525050565b6000613c5e8383613c43565b60208301905092915050565b6000602082019050919050565b6000613c8282613c17565b613c8c8185613c22565b9350613c9783613c33565b8060005b83811015613cc8578151613caf8882613c52565b9750613cba83613c6a565b925050600181019050613c9b565b5085935050505092915050565b60006020820190508181036000830152613cef8184613c77565b905092915050565b6000613d0282613927565b9050919050565b613d1281613cf7565b8114613d1d57600080fd5b50565b600081359050613d2f81613d09565b92915050565b60008060408385031215613d4c57613d4b613744565b5b6000613d5a858286016138e5565b9250506020613d6b85828601613d20565b9150509250929050565b60008060408385031215613d8c57613d8b613744565b5b6000613d9a858286016138e5565b9250506020613dab8582860161399a565b9150509250929050565b6000819050919050565b6000613dda613dd5613dd084613927565b613db5565b613927565b9050919050565b6000613dec82613dbf565b9050919050565b6000613dfe82613de1565b9050919050565b613e0e81613df3565b82525050565b6000602082019050613e296000830184613e05565b92915050565b613e38816137d3565b8114613e4357600080fd5b50565b600081359050613e5581613e2f565b92915050565b60008060408385031215613e7257613e71613744565b5b6000613e808582860161399a565b9250506020613e9185828601613e46565b9150509250929050565b600067ffffffffffffffff821115613eb657613eb56139f9565b5b613ebf82613858565b9050602081019050919050565b6000613edf613eda84613e9b565b613a59565b905082815260208101848484011115613efb57613efa6139f4565b5b613f06848285613aa5565b509392505050565b600082601f830112613f2357613f226139ef565b5b8135613f33848260208601613ecc565b91505092915050565b60008060008060808587031215613f5657613f55613744565b5b6000613f648782880161399a565b9450506020613f758782880161399a565b9350506040613f86878288016138e5565b925050606085013567ffffffffffffffff811115613fa757613fa6613749565b5b613fb387828801613f0e565b91505092959194509250565b600080fd5b600080fd5b60008083601f840112613fdf57613fde6139ef565b5b8235905067ffffffffffffffff811115613ffc57613ffb613fbf565b5b60208301915083602082028301111561401857614017613fc4565b5b9250929050565b6000806020838503121561403657614035613744565b5b600083013567ffffffffffffffff81111561405457614053613749565b5b61406085828601613fc9565b92509250509250929050565b6000806040838503121561408357614082613744565b5b60006140918582860161399a565b92505060206140a28582860161399a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806140f357607f821691505b60208210811415614107576141066140ac565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614169602c83613814565b91506141748261410d565b604082019050919050565b600060208201905081810360008301526141988161415c565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006141fb602183613814565b91506142068261419f565b604082019050919050565b6000602082019050818103600083015261422a816141ee565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061428d603883613814565b915061429882614231565b604082019050919050565b600060208201905081810360008301526142bc81614280565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006142f9602083613814565b9150614304826142c3565b602082019050919050565b60006020820190508181036000830152614328816142ec565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061438b603183613814565b91506143968261432f565b604082019050919050565b600060208201905081810360008301526143ba8161437e565b9050919050565b7f53616c65206973206e6f74206c69766520796574000000000000000000000000600082015250565b60006143f7601483613814565b9150614402826143c1565b602082019050919050565b60006020820190508181036000830152614426816143ea565b9050919050565b7f596f752063616e206d696e742061206d6178206f66203135204e46547320617460008201527f20612074696d6500000000000000000000000000000000000000000000000000602082015250565b6000614489602783613814565b91506144948261442d565b604082019050919050565b600060208201905081810360008301526144b88161447c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006144f9826138c4565b9150614504836138c4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614539576145386144bf565b5b828201905092915050565b7f507572636861736520776f756c6420657863656564206d617820617661696c6160008201527f626c65204e465473000000000000000000000000000000000000000000000000602082015250565b60006145a0602883613814565b91506145ab82614544565b604082019050919050565b600060208201905081810360008301526145cf81614593565b9050919050565b60006145e1826138c4565b91506145ec836138c4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614625576146246144bf565b5b828202905092915050565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b6000614666601f83613814565b915061467182614630565b602082019050919050565b6000602082019050818103600083015261469581614659565b9050919050565b60006146a7826138c4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156146da576146d96144bf565b5b600182019050919050565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b600061471b601483613814565b9150614726826146e5565b602082019050919050565b6000602082019050818103600083015261474a8161470e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147ba826138c4565b91506147c5836138c4565b9250826147d5576147d4614780565b5b828204905092915050565b60006040820190506147f56000830185613959565b6148026020830184613b6d565b9392505050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614865602b83613814565b915061487082614809565b604082019050919050565b6000602082019050818103600083015261489481614858565b9050919050565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b60006148f7603083613814565b91506149028261489b565b604082019050919050565b60006020820190508181036000830152614926816148ea565b9050919050565b600061493882613de1565b9050919050565b6149488161492d565b82525050565b6000604082019050614963600083018561493f565b6149706020830184613b6d565b9392505050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b60006149d3602c83613814565b91506149de82614977565b604082019050919050565b60006020820190508181036000830152614a02816149c6565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614a65602983613814565b9150614a7082614a09565b604082019050919050565b60006020820190508181036000830152614a9481614a58565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614af7602a83613814565b9150614b0282614a9b565b604082019050919050565b60006020820190508181036000830152614b2681614aea565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614b63601983613814565b9150614b6e82614b2d565b602082019050919050565b60006020820190508181036000830152614b9281614b56565b9050919050565b7f4d696e74696e672076696120636c61696d73206973206e6f74206c697665207960008201527f6574000000000000000000000000000000000000000000000000000000000000602082015250565b6000614bf5602283613814565b9150614c0082614b99565b604082019050919050565b60006020820190508181036000830152614c2481614be8565b9050919050565b600081519050614c3a81613983565b92915050565b600060208284031215614c5657614c55613744565b5b6000614c6484828501614c2b565b91505092915050565b7f43616c6c6572206973206e6f74206f776e6572206f662074686520746f6b656e60008201527f2049440000000000000000000000000000000000000000000000000000000000602082015250565b6000614cc9602383613814565b9150614cd482614c6d565b604082019050919050565b60006020820190508181036000830152614cf881614cbc565b9050919050565b7f5468697320746f6b656e2068617320616c7265616479206265656e20636c616960008201527f6d65640000000000000000000000000000000000000000000000000000000000602082015250565b6000614d5b602383613814565b9150614d6682614cff565b604082019050919050565b60006020820190508181036000830152614d8a81614d4e565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614ded602f83613814565b9150614df882614d91565b604082019050919050565b60006020820190508181036000830152614e1c81614de0565b9050919050565b600081905092915050565b6000614e3982613809565b614e438185614e23565b9350614e53818560208601613825565b80840191505092915050565b6000614e6b8285614e2e565b9150614e778284614e2e565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614edf602683613814565b9150614eea82614e83565b604082019050919050565b60006020820190508181036000830152614f0e81614ed2565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614f71602c83613814565b9150614f7c82614f15565b604082019050919050565b60006020820190508181036000830152614fa081614f64565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615003602983613814565b915061500e82614fa7565b604082019050919050565b6000602082019050818103600083015261503281614ff6565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615095602483613814565b91506150a082615039565b604082019050919050565b600060208201905081810360008301526150c481615088565b9050919050565b60006150d6826138c4565b91506150e1836138c4565b9250828210156150f4576150f36144bf565b5b828203905092915050565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b6000615135601d83613814565b9150615140826150ff565b602082019050919050565b6000602082019050818103600083015261516481615128565b9050919050565b600081905092915050565b50565b600061518660008361516b565b915061519182615176565b600082019050919050565b60006151a782615179565b9150819050919050565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b600061520d603a83613814565b9150615218826151b1565b604082019050919050565b6000602082019050818103600083015261523c81615200565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061529f603283613814565b91506152aa82615243565b604082019050919050565b600060208201905081810360008301526152ce81615292565b9050919050565b60006152e0826138c4565b91506152eb836138c4565b9250826152fb576152fa614780565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b600061532d82615306565b6153378185615311565b9350615347818560208601613825565b61535081613858565b840191505092915050565b60006080820190506153706000830187613959565b61537d6020830186613959565b61538a6040830185613b6d565b818103606083015261539c8184615322565b905095945050505050565b6000815190506153b68161377a565b92915050565b6000602082840312156153d2576153d1613744565b5b60006153e0848285016153a7565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b600061541f602083613814565b915061542a826153e9565b602082019050919050565b6000602082019050818103600083015261544e81615412565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b600061548b601c83613814565b915061549682615455565b602082019050919050565b600060208201905081810360008301526154ba8161547e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea26469706673582212202eb9671d2c385b1b106310e28c7f74343a0011d0b9e5a933f63309316636a9ec64736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000151c000000000000000000000000264d1e3c5739de2ea7fd9429c4335b0a994cfeb3000000000000000000000000000000000000000000000000000000000000000f446566692052616e676572732056320000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000952414e4745525356320000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Defi Rangers V2
Arg [1] : symbol (string): RANGERSV2
Arg [2] : maxDefiRangersV2Supply (uint256): 5404
Arg [3] : genesisContractAddress (address): 0x264d1E3c5739De2EA7FD9429C4335b0A994cFEB3

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000000000000000000000000000000000000000151c
Arg [3] : 000000000000000000000000264d1e3c5739de2ea7fd9429c4335b0a994cfeb3
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [5] : 446566692052616e676572732056320000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 52414e4745525356320000000000000000000000000000000000000000000000


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.