ETH Price: $3,559.46 (+1.40%)
Gas: 31 Gwei

Token

RoaringLeaders (ROAR)
 

Overview

Max Total Supply

7,996 ROAR

Holders

1,557

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
3 ROAR
0x77AC79f72b5B643D94fCDA22D3e3709898E3EEe3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Roaring Leaders is a unique deflationary collection of generative NFTs on the ethereum blockchain designed by a Marvel artist. Our artwork includes ~200+ handcrafted traits to capture the spirit and energy defining the leaders of the world represented by the lions and tigers o...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
RoaringLeaders

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
byzantium EvmVersion
File 1 of 15 : RoaringLeaders.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;

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 RoaringLeaders 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.065 ether;

    uint256 public maxPresaleMintsPerWallet = 4;

    bool public preSaleIsActive = false;

    bool public saleIsActive = false;

    string public baseURI;

    string public provenance;

    uint256 public startingIndexBlock;

    uint256 public startingIndex;

    address public elixirContractAddress;

    mapping (address => uint256) private _presaleMints;

    address[3] private _shareholders;

    uint[3] private _shares;

    event PaymentReleased(address to, uint256 amount);

    constructor(string memory name, string memory symbol, uint256 maxRoaringLeadersSupply) ERC721(name, symbol) {
        maxTokenSupply = maxRoaringLeadersSupply;

        _shareholders[0] = 0xDc8Eb8d2D1babD956136b57B0B9F49b433c019e3; // Treasure-Seeker
        _shareholders[1] = 0x653C7C5d8B14e0b2b261Ed1FCfd652EEA0496376; // Nerd_Minter
        _shareholders[2] = 0x0313B09E8Ee8A0932dBEb76c4D7c46055969C7C4; // Carlos

        _shares[0] = 3500;
        _shares[1] = 4600;
        _shares[2] = 1900;
    }

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

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

    function setMaxPresaleMintsPerWallet(uint256 newLimit) public onlyOwner {
        maxPresaleMintsPerWallet = newLimit;
    }

    function setElixirContractAddress(address newElixirContractAddress) public onlyOwner {
        elixirContractAddress = newElixirContractAddress;
    }

    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 < 3; 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 {        
        uint256 supply = _tokenIdCounter.current();
        for (uint256 i = 1; i <= reservedAmount; i++) {
            _safeMint(mintAddress, supply + i);
            _tokenIdCounter.increment();
        }
    }

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

    /*
    * Pause pre-sale if active, make active if paused.
    */
    function flipPreSaleState() public onlyOwner {
        preSaleIsActive = !preSaleIsActive;
    }

    /*
    * Mint Roaring Leaders NFTs, woot!
    */
    function mintLeaders(uint256 numberOfTokens) public payable {
        require(saleIsActive, "Sale is not live yet");
        require(numberOfTokens <= MAX_MINTS_PER_TXN, "You can mint a max of 15 RL NFTs at a time");
        require(totalSupply() + 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++) {
            uint256 mintIndex = _tokenIdCounter.current() + 1;
            if (mintIndex <= maxTokenSupply) {
                _tokenIdCounter.increment();
                _safeMint(msg.sender, mintIndex);
            }
        }
    }

    /*
    * Mint Roaring Leaders NFTs during pre-sale
    */
    function presaleMint(uint256 numberOfTokens) public payable {
        require(preSaleIsActive, "Pre-sale is not live yet");
        require(_presaleMints[msg.sender] + numberOfTokens <= maxPresaleMintsPerWallet, "Max mints per wallet limit exceeded");
        require(totalSupply() + numberOfTokens <= maxTokenSupply, "Purchase would exceed max available NFTs");
        require(mintPrice * numberOfTokens <= msg.value, "Ether value sent is not correct");

        _presaleMints[msg.sender] += numberOfTokens;

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

        // If we haven't set the starting index, set the starting index block.
        if (startingIndexBlock == 0) {
            startingIndexBlock = block.number;
        }
    }

    function burnForElixir(uint256 tokenId) external {
        require(_isApprovedOrOwner(tx.origin, tokenId) && msg.sender == elixirContractAddress, "Caller is not owner nor approved");
        _burn(tokenId);
    }

    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 the starting index for the collection.
     */
    function setStartingIndex() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        require(startingIndexBlock != 0, "Starting index block must be set");
        
        startingIndex = uint(blockhash(startingIndexBlock)) % maxTokenSupply;
        // Just a sanity case in the worst case if this function is called late (EVM only stores last 256 block hashes).
        if (block.number - startingIndexBlock > 255) {
            startingIndex = uint(blockhash(block.number - 1)) % maxTokenSupply;
        }
        // Prevent default sequence.
        if (startingIndex == 0) {
            startingIndex = 1;
        }
    }

    /**
     * Set the starting index block for the collection. Usually, this will be set after the first sale mint.
     */
    function emergencySetStartingIndexBlock() public onlyOwner {
        require(startingIndex == 0, "Starting index is already set");
        
        startingIndexBlock = block.number;
    }

    /*     
    * 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": "byzantium",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxRoaringLeadersSupply","type":"uint256"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnForElixir","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"elixirContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencySetStartingIndexBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"maxPresaleMintsPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokenSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintLeaders","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":"newElixirContractAddress","type":"address"}],"name":"setElixirContractAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setMaxPresaleMintsPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxRoaringLeadersSupply","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":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startingIndexBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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"}]

608060405266e6ed27d6668000600d556004600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055503480156200005757600080fd5b506040516200606b3803806200606b83398181016040528101906200007d91906200046e565b828281600090805190602001906200009792919062000329565b508060019080519060200190620000b092919062000329565b5050506000620000ce62000321640100000000026401000000009004565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600c8190555073dc8eb8d2d1babd956136b57b0b9f49b433c019e36016600060038110620001a157620001a062000642565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073653c7c5d8b14e0b2b261ed1fcfd652eea049637660166001600381106200020d576200020c62000642565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550730313b09e8ee8a0932dbeb76c4d7c46055969c7c4601660026003811062000279576200027862000642565b5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610dac6019600060038110620002d357620002d262000642565b5b01819055506111f86019600160038110620002f357620002f262000642565b5b018190555061076c601960026003811062000313576200031262000642565b5b0181905550505050620006df565b600033905090565b8280546200033790620005a7565b90600052602060002090601f0160209004810192826200035b5760008555620003a7565b82601f106200037657805160ff1916838001178555620003a7565b82800160010185558215620003a7579182015b82811115620003a657825182559160200191906001019062000389565b5b509050620003b69190620003ba565b5090565b5b80821115620003d5576000816000905550600101620003bb565b5090565b6000620003f0620003ea8462000531565b62000508565b9050828152602081018484840111156200040f576200040e620006a5565b5b6200041c84828562000571565b509392505050565b600082601f8301126200043c576200043b620006a0565b5b81516200044e848260208601620003d9565b91505092915050565b6000815190506200046881620006c5565b92915050565b6000806000606084860312156200048a5762000489620006af565b5b600084015167ffffffffffffffff811115620004ab57620004aa620006aa565b5b620004b98682870162000424565b935050602084015167ffffffffffffffff811115620004dd57620004dc620006aa565b5b620004eb8682870162000424565b9250506040620004fe8682870162000457565b9150509250925092565b60006200051462000527565b9050620005228282620005dd565b919050565b6000604051905090565b600067ffffffffffffffff8211156200054f576200054e62000671565b5b6200055a82620006b4565b9050602081019050919050565b6000819050919050565b60005b838110156200059157808201518184015260208101905062000574565b83811115620005a1576000848401525b50505050565b60006002820490506001821680620005c057607f821691505b60208210811415620005d757620005d662000613565b5b50919050565b620005e882620006b4565b810181811067ffffffffffffffff821117156200060a576200060962000671565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620006d08162000567565b8114620006dc57600080fd5b50565b61597c80620006ef6000396000f3fe6080604052600436106102b0576000357c0100000000000000000000000000000000000000000000000000000000900480636817c76c11610177578063c9b298f1116100de578063e985e9c511610097578063e985e9c5146109db578063e986655014610a18578063eb8d244414610a2f578063f032554914610a5a578063f2fde38b14610a71578063f4a0a52814610a9a576102b0565b8063c9b298f1146108ea578063cb774d4714610906578063d59222a714610931578063dfdaa04a1461095a578063dfe93fa314610985578063e36d6498146109b0576102b0565b80638da5cb5b116101305780638da5cb5b146107dc57806395d89b4114610807578063a22cb46514610832578063b07ed9821461085b578063b88d4fde14610884578063c87b56dd146108ad576102b0565b80636817c76c146106f25780636c0360eb1461071d57806370a0823114610748578063715018a6146107855780637d17fcbe1461079c5780638881396c146107b3576102b0565b80632f745c591161021b5780634f6ccce7116101d45780634f6ccce7146105df57806350f7c2041461061c57806355f804b31461064757806357cc56731461067057806360b02f701461068c5780636352211e146106b5576102b0565b80632f745c59146104d357806334918dfd1461051057806342842e0e1461052757806342966c6814610550578063438b6300146105795780634d7313a4146105b6576102b0565b806318160ddd1161026d57806318160ddd146103d75780631f0234d81461040257806323b872dd1461042d57806326d6e709146104565780632e1a7d4d1461047f5780632f35e11f146104a8576102b0565b806301ffc9a7146102b557806306fdde03146102f2578063081812fc1461031d578063095ea7b31461035a5780630f7309e81461038357806310969523146103ae575b600080fd5b3480156102c157600080fd5b506102dc60048036038101906102d79190613f6a565b610ac3565b6040516102e99190614792565b60405180910390f35b3480156102fe57600080fd5b50610307610ad5565b60405161031491906147ad565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f919061400d565b610b67565b60405161035191906146b7565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613f2a565b610bec565b005b34801561038f57600080fd5b50610398610d04565b6040516103a591906147ad565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613fc4565b610d92565b005b3480156103e357600080fd5b506103ec610e28565b6040516103f99190614baf565b60405180910390f35b34801561040e57600080fd5b50610417610e35565b6040516104249190614792565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190613e14565b610e48565b005b34801561046257600080fd5b5061047d6004803603810190610478919061400d565b610ea8565b005b34801561048b57600080fd5b506104a660048036038101906104a1919061400d565b610f56565b005b3480156104b457600080fd5b506104bd611135565b6040516104ca9190614baf565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190613f2a565b61113b565b6040516105079190614baf565b60405180910390f35b34801561051c57600080fd5b506105256111e0565b005b34801561053357600080fd5b5061054e60048036038101906105499190613e14565b611288565b005b34801561055c57600080fd5b506105776004803603810190610572919061400d565b6112a8565b005b34801561058557600080fd5b506105a0600480360381019061059b9190613da7565b611304565b6040516105ad9190614770565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d8919061407a565b6113b2565b005b3480156105eb57600080fd5b506106066004803603810190610601919061400d565b611475565b6040516106139190614baf565b60405180910390f35b34801561062857600080fd5b506106316114e6565b60405161063e9190614baf565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190613fc4565b6114ec565b005b61068a6004803603810190610685919061400d565b611582565b005b34801561069857600080fd5b506106b360048036038101906106ae919061403a565b611717565b005b3480156106c157600080fd5b506106dc60048036038101906106d7919061400d565b6117e7565b6040516106e991906146b7565b60405180910390f35b3480156106fe57600080fd5b50610707611899565b6040516107149190614baf565b60405180910390f35b34801561072957600080fd5b5061073261189f565b60405161073f91906147ad565b60405180910390f35b34801561075457600080fd5b5061076f600480360381019061076a9190613da7565b61192d565b60405161077c9190614baf565b60405180910390f35b34801561079157600080fd5b5061079a6119e5565b005b3480156107a857600080fd5b506107b1611b22565b005b3480156107bf57600080fd5b506107da60048036038101906107d5919061400d565b611bec565b005b3480156107e857600080fd5b506107f1611c72565b6040516107fe91906146b7565b60405180910390f35b34801561081357600080fd5b5061081c611c9c565b60405161082991906147ad565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613eea565b611d2e565b005b34801561086757600080fd5b50610882600480360381019061087d919061400d565b611eaf565b005b34801561089057600080fd5b506108ab60048036038101906108a69190613e67565b611f35565b005b3480156108b957600080fd5b506108d460048036038101906108cf919061400d565b611f97565b6040516108e191906147ad565b60405180910390f35b61090460048036038101906108ff919061400d565b61203e565b005b34801561091257600080fd5b5061091b612287565b6040516109289190614baf565b60405180910390f35b34801561093d57600080fd5b5061095860048036038101906109539190613da7565b61228d565b005b34801561096657600080fd5b5061096f61234d565b60405161097c91906146b7565b60405180910390f35b34801561099157600080fd5b5061099a612373565b6040516109a79190614baf565b60405180910390f35b3480156109bc57600080fd5b506109c5612378565b6040516109d29190614baf565b60405180910390f35b3480156109e757600080fd5b50610a0260048036038101906109fd9190613dd4565b61237e565b604051610a0f9190614792565b60405180910390f35b348015610a2457600080fd5b50610a2d612412565b005b348015610a3b57600080fd5b50610a44612586565b604051610a519190614792565b60405180910390f35b348015610a6657600080fd5b50610a6f612599565b005b348015610a7d57600080fd5b50610a986004803603810190610a939190613da7565b612641565b005b348015610aa657600080fd5b50610ac16004803603810190610abc919061400d565b6127ed565b005b6000610ace82612873565b9050919050565b606060008054610ae490614eeb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1090614eeb565b8015610b5d5780601f10610b3257610100808354040283529160200191610b5d565b820191906000526020600020905b815481529060010190602001808311610b4057829003601f168201915b5050505050905090565b6000610b72826128ed565b610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890614a0f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf7826117e7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90614a8f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c87612959565b73ffffffffffffffffffffffffffffffffffffffff161480610cb65750610cb581610cb0612959565b61237e565b5b610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec9061496f565b60405180910390fd5b610cff8383612961565b505050565b60118054610d1190614eeb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3d90614eeb565b8015610d8a5780601f10610d5f57610100808354040283529160200191610d8a565b820191906000526020600020905b815481529060010190602001808311610d6d57829003601f168201915b505050505081565b610d9a612959565b73ffffffffffffffffffffffffffffffffffffffff16610db8611c72565b73ffffffffffffffffffffffffffffffffffffffff1614610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590614a2f565b60405180910390fd5b8060119080519060200190610e24929190613ba6565b5050565b6000600880549050905090565b600f60009054906101000a900460ff1681565b610e59610e53612959565b82612a1a565b610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90614aef565b60405180910390fd5b610ea3838383612af8565b505050565b610eb23282612a1a565b8015610f0b5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190614aaf565b60405180910390fd5b610f5381612d54565b50565b610f5e612959565b73ffffffffffffffffffffffffffffffffffffffff16610f7c611c72565b73ffffffffffffffffffffffffffffffffffffffff1614610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990614a2f565b60405180910390fd5b803073ffffffffffffffffffffffffffffffffffffffff1631101561102c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110239061488f565b60405180910390fd5b6000612710905060005b6003811015611130576000826019836003811061105657611055615084565b5b0154856110639190614d5f565b61106d9190614d2e565b90506110ae6016836003811061108657611085615084565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612e65565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056601683600381106110e3576110e2615084565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051611114929190614747565b60405180910390a150808061112890614f4e565b915050611036565b505050565b600e5481565b60006111468361192d565b8210611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e906147cf565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111e8612959565b73ffffffffffffffffffffffffffffffffffffffff16611206611c72565b73ffffffffffffffffffffffffffffffffffffffff161461125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390614a2f565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6112a383838360405180602001604052806000815250611f35565b505050565b6112b96112b3612959565b82612a1a565b6112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90614b6f565b60405180910390fd5b61130181612d54565b50565b606060006113118361192d565b905060008167ffffffffffffffff81111561132f5761132e6150b3565b5b60405190808252806020026020018201604052801561135d5781602001602082028036833780820191505090505b50905060005b828110156113a757611375858261113b565b82828151811061138857611387615084565b5b602002602001018181525050808061139f90614f4e565b915050611363565b508092505050919050565b6113ba612959565b73ffffffffffffffffffffffffffffffffffffffff166113d8611c72565b73ffffffffffffffffffffffffffffffffffffffff161461142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590614a2f565b60405180910390fd5b6114388183612e65565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05681836040516114699291906146d2565b60405180910390a15050565b600061147f610e28565b82106114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790614b4f565b60405180910390fd5b600882815481106114d4576114d3615084565b5b90600052602060002001549050919050565b600c5481565b6114f4612959565b73ffffffffffffffffffffffffffffffffffffffff16611512611c72565b73ffffffffffffffffffffffffffffffffffffffff1614611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90614a2f565b60405180910390fd5b806010908051906020019061157e929190613ba6565b5050565b600f60019054906101000a900460ff166115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890614b2f565b60405180910390fd5b600f811115611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90614b0f565b60405180910390fd5b600c5481611621610e28565b61162b9190614cd8565b111561166c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611663906149ef565b60405180910390fd5b3481600d5461167b9190614d5f565b11156116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b3906148cf565b60405180910390fd5b60005b8181101561171357600060016116d5600b612f70565b6116df9190614cd8565b9050600c5481116116ff576116f4600b612f7e565b6116fe3382612f94565b5b50808061170b90614f4e565b9150506116bf565b5050565b61171f612959565b73ffffffffffffffffffffffffffffffffffffffff1661173d611c72565b73ffffffffffffffffffffffffffffffffffffffff1614611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90614a2f565b60405180910390fd5b600061179f600b612f70565b90506000600190505b8381116117e1576117c48382846117bf9190614cd8565b612f94565b6117ce600b612f7e565b80806117d990614f4e565b9150506117a8565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611887906149af565b60405180910390fd5b80915050919050565b600d5481565b601080546118ac90614eeb565b80601f01602080910402602001604051908101604052809291908181526020018280546118d890614eeb565b80156119255780601f106118fa57610100808354040283529160200191611925565b820191906000526020600020905b81548152906001019060200180831161190857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119959061498f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119ed612959565b73ffffffffffffffffffffffffffffffffffffffff16611a0b611c72565b73ffffffffffffffffffffffffffffffffffffffff1614611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890614a2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611b2a612959565b73ffffffffffffffffffffffffffffffffffffffff16611b48611c72565b73ffffffffffffffffffffffffffffffffffffffff1614611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590614a2f565b60405180910390fd5b600060135414611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bda9061494f565b60405180910390fd5b43601281905550565b611bf4612959565b73ffffffffffffffffffffffffffffffffffffffff16611c12611c72565b73ffffffffffffffffffffffffffffffffffffffff1614611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90614a2f565b60405180910390fd5b80600e8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611cab90614eeb565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd790614eeb565b8015611d245780601f10611cf957610100808354040283529160200191611d24565b820191906000526020600020905b815481529060010190602001808311611d0757829003601f168201915b5050505050905090565b611d36612959565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b9061486f565b60405180910390fd5b8060056000611db1612959565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e5e612959565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ea39190614792565b60405180910390a35050565b611eb7612959565b73ffffffffffffffffffffffffffffffffffffffff16611ed5611c72565b73ffffffffffffffffffffffffffffffffffffffff1614611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2290614a2f565b60405180910390fd5b80600c8190555050565b611f46611f40612959565b83612a1a565b611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c90614aef565b60405180910390fd5b611f9184848484612fb2565b50505050565b6060611fa2826128ed565b611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd890614a6f565b60405180910390fd5b6000611feb61300e565b9050600081511161200b5760405180602001604052806000815250612036565b80612015846130a0565b60405160200161202692919061467e565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1661208d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612084906148af565b60405180910390fd5b600e5481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120db9190614cd8565b111561211c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211390614b8f565b60405180910390fd5b600c5481612128610e28565b6121329190614cd8565b1115612173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216a906149ef565b60405180910390fd5b3481600d546121829190614d5f565b11156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba906148cf565b60405180910390fd5b80601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122129190614cd8565b9250508190555060005b818110156122705760006001612232600b612f70565b61223c9190614cd8565b9050600c54811161225c57612251600b612f7e565b61225b3382612f94565b5b50808061226890614f4e565b91505061221c565b506000601254141561228457436012819055505b50565b60135481565b612295612959565b73ffffffffffffffffffffffffffffffffffffffff166122b3611c72565b73ffffffffffffffffffffffffffffffffffffffff1614612309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230090614a2f565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f81565b60125481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61241a612959565b73ffffffffffffffffffffffffffffffffffffffff16612438611c72565b73ffffffffffffffffffffffffffffffffffffffff161461248e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248590614a2f565b60405180910390fd5b6000601354146124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca9061494f565b60405180910390fd5b60006012541415612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251090614acf565b60405180910390fd5b600c54601254406001900461252e9190614f97565b60138190555060ff601254436125449190614db9565b111561257057600c5460014361255a9190614db9565b40600190046125699190614f97565b6013819055505b600060135414156125845760016013819055505b565b600f60019054906101000a900460ff1681565b6125a1612959565b73ffffffffffffffffffffffffffffffffffffffff166125bf611c72565b73ffffffffffffffffffffffffffffffffffffffff1614612615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260c90614a2f565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b612649612959565b73ffffffffffffffffffffffffffffffffffffffff16612667611c72565b73ffffffffffffffffffffffffffffffffffffffff16146126bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b490614a2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561272d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127249061480f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6127f5612959565b73ffffffffffffffffffffffffffffffffffffffff16612813611c72565b73ffffffffffffffffffffffffffffffffffffffff1614612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614a2f565b60405180910390fd5b80600d8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128e657506128e582613220565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166129d4836117e7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a25826128ed565b612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b9061492f565b60405180910390fd5b6000612a6f836117e7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ade57508373ffffffffffffffffffffffffffffffffffffffff16612ac684610b67565b73ffffffffffffffffffffffffffffffffffffffff16145b80612aef5750612aee818561237e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b18826117e7565b73ffffffffffffffffffffffffffffffffffffffff1614612b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6590614a4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd59061484f565b60405180910390fd5b612be9838383613302565b612bf4600082612961565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c449190614db9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c9b9190614cd8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612d5f826117e7565b9050612d6d81600084613302565b612d78600083612961565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dc89190614db9565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b803073ffffffffffffffffffffffffffffffffffffffff16311015612ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb69061490f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612ee5906146a2565b60006040518083038185875af1925050503d8060008114612f22576040519150601f19603f3d011682016040523d82523d6000602084013e612f27565b606091505b5050905080612f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f62906148ef565b60405180910390fd5b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612fae828260405180602001604052806000815250613312565b5050565b612fbd848484612af8565b612fc98484848461336d565b613008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fff906147ef565b60405180910390fd5b50505050565b60606010805461301d90614eeb565b80601f016020809104026020016040519081016040528092919081815260200182805461304990614eeb565b80156130965780601f1061306b57610100808354040283529160200191613096565b820191906000526020600020905b81548152906001019060200180831161307957829003601f168201915b5050505050905090565b606060008214156130e8576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061321b565b600082905060005b6000821461311a57808061310390614f4e565b915050600a826131139190614d2e565b91506130f0565b60008167ffffffffffffffff811115613136576131356150b3565b5b6040519080825280601f01601f1916602001820160405280156131685781602001600182028036833780820191505090505b5090505b60008514613214576001826131819190614db9565b9150600a856131909190614f97565b603061319c9190614cd8565b7f0100000000000000000000000000000000000000000000000000000000000000028183815181106131d1576131d0615084565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561320d9190614d2e565b945061316c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806132eb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806132fb57506132fa8261353c565b5b9050919050565b61330d8383836135a6565b505050565b61331c83836136ba565b613329600084848461336d565b613368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335f906147ef565b60405180910390fd5b505050565b600061338e8473ffffffffffffffffffffffffffffffffffffffff16613888565b1561352f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133b7612959565b8786866040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016133f594939291906146fb565b602060405180830381600087803b15801561340f57600080fd5b505af192505050801561344057506040513d601f19601f8201168201806040525081019061343d9190613f97565b60015b6134c3573d8060008114613470576040519150601f19603f3d011682016040523d82523d6000602084013e613475565b606091505b506000815114156134bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b2906147ef565b60405180910390fd5b805181602001fd5b63150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613534565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6135b183838361389b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135f4576135ef816138a0565b613633565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136325761363183826138e9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136765761367181613a56565b6136b5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146136b4576136b38282613b27565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561372a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613721906149cf565b60405180910390fd5b613733816128ed565b15613773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376a9061482f565b60405180910390fd5b61377f60008383613302565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137cf9190614cd8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138f68461192d565b6139009190614db9565b90506000600760008481526020019081526020016000205490508181146139e5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a6a9190614db9565b9050600060096000848152602001908152602001600020549050600060088381548110613a9a57613a99615084565b5b906000526020600020015490508060088381548110613abc57613abb615084565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613b0b57613b0a615055565b5b6001900381819060005260206000200160009055905550505050565b6000613b328361192d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613bb290614eeb565b90600052602060002090601f016020900481019282613bd45760008555613c1b565b82601f10613bed57805160ff1916838001178555613c1b565b82800160010185558215613c1b579182015b82811115613c1a578251825591602001919060010190613bff565b5b509050613c289190613c2c565b5090565b5b80821115613c45576000816000905550600101613c2d565b5090565b6000613c5c613c5784614bef565b614bca565b905082815260208101848484011115613c7857613c776150e7565b5b613c83848285614ea9565b509392505050565b6000613c9e613c9984614c20565b614bca565b905082815260208101848484011115613cba57613cb96150e7565b5b613cc5848285614ea9565b509392505050565b600081359050613cdc816158d3565b92915050565b600081359050613cf1816158ea565b92915050565b600081359050613d0681615901565b92915050565b600081359050613d1b81615918565b92915050565b600081519050613d3081615918565b92915050565b600082601f830112613d4b57613d4a6150e2565b5b8135613d5b848260208601613c49565b91505092915050565b600082601f830112613d7957613d786150e2565b5b8135613d89848260208601613c8b565b91505092915050565b600081359050613da18161592f565b92915050565b600060208284031215613dbd57613dbc6150f1565b5b6000613dcb84828501613ccd565b91505092915050565b60008060408385031215613deb57613dea6150f1565b5b6000613df985828601613ccd565b9250506020613e0a85828601613ccd565b9150509250929050565b600080600060608486031215613e2d57613e2c6150f1565b5b6000613e3b86828701613ccd565b9350506020613e4c86828701613ccd565b9250506040613e5d86828701613d92565b9150509250925092565b60008060008060808587031215613e8157613e806150f1565b5b6000613e8f87828801613ccd565b9450506020613ea087828801613ccd565b9350506040613eb187828801613d92565b925050606085013567ffffffffffffffff811115613ed257613ed16150ec565b5b613ede87828801613d36565b91505092959194509250565b60008060408385031215613f0157613f006150f1565b5b6000613f0f85828601613ccd565b9250506020613f2085828601613cf7565b9150509250929050565b60008060408385031215613f4157613f406150f1565b5b6000613f4f85828601613ccd565b9250506020613f6085828601613d92565b9150509250929050565b600060208284031215613f8057613f7f6150f1565b5b6000613f8e84828501613d0c565b91505092915050565b600060208284031215613fad57613fac6150f1565b5b6000613fbb84828501613d21565b91505092915050565b600060208284031215613fda57613fd96150f1565b5b600082013567ffffffffffffffff811115613ff857613ff76150ec565b5b61400484828501613d64565b91505092915050565b600060208284031215614023576140226150f1565b5b600061403184828501613d92565b91505092915050565b60008060408385031215614051576140506150f1565b5b600061405f85828601613d92565b925050602061407085828601613ccd565b9150509250929050565b60008060408385031215614091576140906150f1565b5b600061409f85828601613d92565b92505060206140b085828601613ce2565b9150509250929050565b60006140c68383614660565b60208301905092915050565b6140db81614e73565b82525050565b6140ea81614ded565b82525050565b60006140fb82614c61565b6141058185614c8f565b935061411083614c51565b8060005b8381101561414157815161412888826140ba565b975061413383614c82565b925050600181019050614114565b5085935050505092915050565b61415781614e11565b82525050565b600061416882614c6c565b6141728185614ca0565b9350614182818560208601614eb8565b61418b816150f6565b840191505092915050565b60006141a182614c77565b6141ab8185614cbc565b93506141bb818560208601614eb8565b6141c4816150f6565b840191505092915050565b60006141da82614c77565b6141e48185614ccd565b93506141f4818560208601614eb8565b80840191505092915050565b600061420d602b83614cbc565b915061421882615107565b604082019050919050565b6000614230603283614cbc565b915061423b82615156565b604082019050919050565b6000614253602683614cbc565b915061425e826151a5565b604082019050919050565b6000614276601c83614cbc565b9150614281826151f4565b602082019050919050565b6000614299602483614cbc565b91506142a48261521d565b604082019050919050565b60006142bc601983614cbc565b91506142c78261526c565b602082019050919050565b60006142df601483614cbc565b91506142ea82615295565b602082019050919050565b6000614302601883614cbc565b915061430d826152be565b602082019050919050565b6000614325601f83614cbc565b9150614330826152e7565b602082019050919050565b6000614348603a83614cbc565b915061435382615310565b604082019050919050565b600061436b601d83614cbc565b91506143768261535f565b602082019050919050565b600061438e602c83614cbc565b915061439982615388565b604082019050919050565b60006143b1601d83614cbc565b91506143bc826153d7565b602082019050919050565b60006143d4603883614cbc565b91506143df82615400565b604082019050919050565b60006143f7602a83614cbc565b91506144028261544f565b604082019050919050565b600061441a602983614cbc565b91506144258261549e565b604082019050919050565b600061443d602083614cbc565b9150614448826154ed565b602082019050919050565b6000614460602883614cbc565b915061446b82615516565b604082019050919050565b6000614483602c83614cbc565b915061448e82615565565b604082019050919050565b60006144a6602083614cbc565b91506144b1826155b4565b602082019050919050565b60006144c9602983614cbc565b91506144d4826155dd565b604082019050919050565b60006144ec602f83614cbc565b91506144f78261562c565b604082019050919050565b600061450f602183614cbc565b915061451a8261567b565b604082019050919050565b6000614532602083614cbc565b915061453d826156ca565b602082019050919050565b6000614555602083614cbc565b9150614560826156f3565b602082019050919050565b6000614578600083614cb1565b91506145838261571c565b600082019050919050565b600061459b603183614cbc565b91506145a68261571f565b604082019050919050565b60006145be602a83614cbc565b91506145c98261576e565b604082019050919050565b60006145e1601483614cbc565b91506145ec826157bd565b602082019050919050565b6000614604602c83614cbc565b915061460f826157e6565b604082019050919050565b6000614627603083614cbc565b915061463282615835565b604082019050919050565b600061464a602383614cbc565b915061465582615884565b604082019050919050565b61466981614e69565b82525050565b61467881614e69565b82525050565b600061468a82856141cf565b915061469682846141cf565b91508190509392505050565b60006146ad8261456b565b9150819050919050565b60006020820190506146cc60008301846140e1565b92915050565b60006040820190506146e760008301856140d2565b6146f4602083018461466f565b9392505050565b600060808201905061471060008301876140e1565b61471d60208301866140e1565b61472a604083018561466f565b818103606083015261473c818461415d565b905095945050505050565b600060408201905061475c60008301856140e1565b614769602083018461466f565b9392505050565b6000602082019050818103600083015261478a81846140f0565b905092915050565b60006020820190506147a7600083018461414e565b92915050565b600060208201905081810360008301526147c78184614196565b905092915050565b600060208201905081810360008301526147e881614200565b9050919050565b6000602082019050818103600083015261480881614223565b9050919050565b6000602082019050818103600083015261482881614246565b9050919050565b6000602082019050818103600083015261484881614269565b9050919050565b600060208201905081810360008301526148688161428c565b9050919050565b60006020820190508181036000830152614888816142af565b9050919050565b600060208201905081810360008301526148a8816142d2565b9050919050565b600060208201905081810360008301526148c8816142f5565b9050919050565b600060208201905081810360008301526148e881614318565b9050919050565b600060208201905081810360008301526149088161433b565b9050919050565b600060208201905081810360008301526149288161435e565b9050919050565b6000602082019050818103600083015261494881614381565b9050919050565b60006020820190508181036000830152614968816143a4565b9050919050565b60006020820190508181036000830152614988816143c7565b9050919050565b600060208201905081810360008301526149a8816143ea565b9050919050565b600060208201905081810360008301526149c88161440d565b9050919050565b600060208201905081810360008301526149e881614430565b9050919050565b60006020820190508181036000830152614a0881614453565b9050919050565b60006020820190508181036000830152614a2881614476565b9050919050565b60006020820190508181036000830152614a4881614499565b9050919050565b60006020820190508181036000830152614a68816144bc565b9050919050565b60006020820190508181036000830152614a88816144df565b9050919050565b60006020820190508181036000830152614aa881614502565b9050919050565b60006020820190508181036000830152614ac881614525565b9050919050565b60006020820190508181036000830152614ae881614548565b9050919050565b60006020820190508181036000830152614b088161458e565b9050919050565b60006020820190508181036000830152614b28816145b1565b9050919050565b60006020820190508181036000830152614b48816145d4565b9050919050565b60006020820190508181036000830152614b68816145f7565b9050919050565b60006020820190508181036000830152614b888161461a565b9050919050565b60006020820190508181036000830152614ba88161463d565b9050919050565b6000602082019050614bc4600083018461466f565b92915050565b6000614bd4614be5565b9050614be08282614f1d565b919050565b6000604051905090565b600067ffffffffffffffff821115614c0a57614c096150b3565b5b614c13826150f6565b9050602081019050919050565b600067ffffffffffffffff821115614c3b57614c3a6150b3565b5b614c44826150f6565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ce382614e69565b9150614cee83614e69565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d2357614d22614fc8565b5b828201905092915050565b6000614d3982614e69565b9150614d4483614e69565b925082614d5457614d53614ff7565b5b828204905092915050565b6000614d6a82614e69565b9150614d7583614e69565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dae57614dad614fc8565b5b828202905092915050565b6000614dc482614e69565b9150614dcf83614e69565b925082821015614de257614de1614fc8565b5b828203905092915050565b6000614df882614e49565b9050919050565b6000614e0a82614e49565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614e7e82614e85565b9050919050565b6000614e9082614e97565b9050919050565b6000614ea282614e49565b9050919050565b82818337600083830152505050565b60005b83811015614ed6578082015181840152602081019050614ebb565b83811115614ee5576000848401525b50505050565b60006002820490506001821680614f0357607f821691505b60208210811415614f1757614f16615026565b5b50919050565b614f26826150f6565b810181811067ffffffffffffffff82111715614f4557614f446150b3565b5b80604052505050565b6000614f5982614e69565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f8c57614f8b614fc8565b5b600182019050919050565b6000614fa282614e69565b9150614fad83614e69565b925082614fbd57614fbc614ff7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f5072652d73616c65206973206e6f74206c697665207965740000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f507572636861736520776f756c6420657863656564206d617820617661696c6160008201527f626c65204e465473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f752063616e206d696e742061206d6178206f6620313520524c204e46547360008201527f20617420612074696d6500000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d6178206d696e7473207065722077616c6c6574206c696d697420657863656560008201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b6158dc81614ded565b81146158e757600080fd5b50565b6158f381614dff565b81146158fe57600080fd5b50565b61590a81614e11565b811461591557600080fd5b50565b61592181614e1d565b811461592c57600080fd5b50565b61593881614e69565b811461594357600080fd5b5056fea2646970667358221220cb3a868cbe00a51f91a93b6a6c2213fe19e1c5712f88abcd632391e02b1b176264736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000e526f6172696e674c6561646572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f415200000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102b0576000357c0100000000000000000000000000000000000000000000000000000000900480636817c76c11610177578063c9b298f1116100de578063e985e9c511610097578063e985e9c5146109db578063e986655014610a18578063eb8d244414610a2f578063f032554914610a5a578063f2fde38b14610a71578063f4a0a52814610a9a576102b0565b8063c9b298f1146108ea578063cb774d4714610906578063d59222a714610931578063dfdaa04a1461095a578063dfe93fa314610985578063e36d6498146109b0576102b0565b80638da5cb5b116101305780638da5cb5b146107dc57806395d89b4114610807578063a22cb46514610832578063b07ed9821461085b578063b88d4fde14610884578063c87b56dd146108ad576102b0565b80636817c76c146106f25780636c0360eb1461071d57806370a0823114610748578063715018a6146107855780637d17fcbe1461079c5780638881396c146107b3576102b0565b80632f745c591161021b5780634f6ccce7116101d45780634f6ccce7146105df57806350f7c2041461061c57806355f804b31461064757806357cc56731461067057806360b02f701461068c5780636352211e146106b5576102b0565b80632f745c59146104d357806334918dfd1461051057806342842e0e1461052757806342966c6814610550578063438b6300146105795780634d7313a4146105b6576102b0565b806318160ddd1161026d57806318160ddd146103d75780631f0234d81461040257806323b872dd1461042d57806326d6e709146104565780632e1a7d4d1461047f5780632f35e11f146104a8576102b0565b806301ffc9a7146102b557806306fdde03146102f2578063081812fc1461031d578063095ea7b31461035a5780630f7309e81461038357806310969523146103ae575b600080fd5b3480156102c157600080fd5b506102dc60048036038101906102d79190613f6a565b610ac3565b6040516102e99190614792565b60405180910390f35b3480156102fe57600080fd5b50610307610ad5565b60405161031491906147ad565b60405180910390f35b34801561032957600080fd5b50610344600480360381019061033f919061400d565b610b67565b60405161035191906146b7565b60405180910390f35b34801561036657600080fd5b50610381600480360381019061037c9190613f2a565b610bec565b005b34801561038f57600080fd5b50610398610d04565b6040516103a591906147ad565b60405180910390f35b3480156103ba57600080fd5b506103d560048036038101906103d09190613fc4565b610d92565b005b3480156103e357600080fd5b506103ec610e28565b6040516103f99190614baf565b60405180910390f35b34801561040e57600080fd5b50610417610e35565b6040516104249190614792565b60405180910390f35b34801561043957600080fd5b50610454600480360381019061044f9190613e14565b610e48565b005b34801561046257600080fd5b5061047d6004803603810190610478919061400d565b610ea8565b005b34801561048b57600080fd5b506104a660048036038101906104a1919061400d565b610f56565b005b3480156104b457600080fd5b506104bd611135565b6040516104ca9190614baf565b60405180910390f35b3480156104df57600080fd5b506104fa60048036038101906104f59190613f2a565b61113b565b6040516105079190614baf565b60405180910390f35b34801561051c57600080fd5b506105256111e0565b005b34801561053357600080fd5b5061054e60048036038101906105499190613e14565b611288565b005b34801561055c57600080fd5b506105776004803603810190610572919061400d565b6112a8565b005b34801561058557600080fd5b506105a0600480360381019061059b9190613da7565b611304565b6040516105ad9190614770565b60405180910390f35b3480156105c257600080fd5b506105dd60048036038101906105d8919061407a565b6113b2565b005b3480156105eb57600080fd5b506106066004803603810190610601919061400d565b611475565b6040516106139190614baf565b60405180910390f35b34801561062857600080fd5b506106316114e6565b60405161063e9190614baf565b60405180910390f35b34801561065357600080fd5b5061066e60048036038101906106699190613fc4565b6114ec565b005b61068a6004803603810190610685919061400d565b611582565b005b34801561069857600080fd5b506106b360048036038101906106ae919061403a565b611717565b005b3480156106c157600080fd5b506106dc60048036038101906106d7919061400d565b6117e7565b6040516106e991906146b7565b60405180910390f35b3480156106fe57600080fd5b50610707611899565b6040516107149190614baf565b60405180910390f35b34801561072957600080fd5b5061073261189f565b60405161073f91906147ad565b60405180910390f35b34801561075457600080fd5b5061076f600480360381019061076a9190613da7565b61192d565b60405161077c9190614baf565b60405180910390f35b34801561079157600080fd5b5061079a6119e5565b005b3480156107a857600080fd5b506107b1611b22565b005b3480156107bf57600080fd5b506107da60048036038101906107d5919061400d565b611bec565b005b3480156107e857600080fd5b506107f1611c72565b6040516107fe91906146b7565b60405180910390f35b34801561081357600080fd5b5061081c611c9c565b60405161082991906147ad565b60405180910390f35b34801561083e57600080fd5b5061085960048036038101906108549190613eea565b611d2e565b005b34801561086757600080fd5b50610882600480360381019061087d919061400d565b611eaf565b005b34801561089057600080fd5b506108ab60048036038101906108a69190613e67565b611f35565b005b3480156108b957600080fd5b506108d460048036038101906108cf919061400d565b611f97565b6040516108e191906147ad565b60405180910390f35b61090460048036038101906108ff919061400d565b61203e565b005b34801561091257600080fd5b5061091b612287565b6040516109289190614baf565b60405180910390f35b34801561093d57600080fd5b5061095860048036038101906109539190613da7565b61228d565b005b34801561096657600080fd5b5061096f61234d565b60405161097c91906146b7565b60405180910390f35b34801561099157600080fd5b5061099a612373565b6040516109a79190614baf565b60405180910390f35b3480156109bc57600080fd5b506109c5612378565b6040516109d29190614baf565b60405180910390f35b3480156109e757600080fd5b50610a0260048036038101906109fd9190613dd4565b61237e565b604051610a0f9190614792565b60405180910390f35b348015610a2457600080fd5b50610a2d612412565b005b348015610a3b57600080fd5b50610a44612586565b604051610a519190614792565b60405180910390f35b348015610a6657600080fd5b50610a6f612599565b005b348015610a7d57600080fd5b50610a986004803603810190610a939190613da7565b612641565b005b348015610aa657600080fd5b50610ac16004803603810190610abc919061400d565b6127ed565b005b6000610ace82612873565b9050919050565b606060008054610ae490614eeb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b1090614eeb565b8015610b5d5780601f10610b3257610100808354040283529160200191610b5d565b820191906000526020600020905b815481529060010190602001808311610b4057829003601f168201915b5050505050905090565b6000610b72826128ed565b610bb1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba890614a0f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bf7826117e7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5f90614a8f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c87612959565b73ffffffffffffffffffffffffffffffffffffffff161480610cb65750610cb581610cb0612959565b61237e565b5b610cf5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cec9061496f565b60405180910390fd5b610cff8383612961565b505050565b60118054610d1190614eeb565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3d90614eeb565b8015610d8a5780601f10610d5f57610100808354040283529160200191610d8a565b820191906000526020600020905b815481529060010190602001808311610d6d57829003601f168201915b505050505081565b610d9a612959565b73ffffffffffffffffffffffffffffffffffffffff16610db8611c72565b73ffffffffffffffffffffffffffffffffffffffff1614610e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0590614a2f565b60405180910390fd5b8060119080519060200190610e24929190613ba6565b5050565b6000600880549050905090565b600f60009054906101000a900460ff1681565b610e59610e53612959565b82612a1a565b610e98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8f90614aef565b60405180910390fd5b610ea3838383612af8565b505050565b610eb23282612a1a565b8015610f0b5750601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610f4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4190614aaf565b60405180910390fd5b610f5381612d54565b50565b610f5e612959565b73ffffffffffffffffffffffffffffffffffffffff16610f7c611c72565b73ffffffffffffffffffffffffffffffffffffffff1614610fd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fc990614a2f565b60405180910390fd5b803073ffffffffffffffffffffffffffffffffffffffff1631101561102c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110239061488f565b60405180910390fd5b6000612710905060005b6003811015611130576000826019836003811061105657611055615084565b5b0154856110639190614d5f565b61106d9190614d2e565b90506110ae6016836003811061108657611085615084565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612e65565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056601683600381106110e3576110e2615084565b5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682604051611114929190614747565b60405180910390a150808061112890614f4e565b915050611036565b505050565b600e5481565b60006111468361192d565b8210611187576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117e906147cf565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6111e8612959565b73ffffffffffffffffffffffffffffffffffffffff16611206611c72565b73ffffffffffffffffffffffffffffffffffffffff161461125c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125390614a2f565b60405180910390fd5b600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b6112a383838360405180602001604052806000815250611f35565b505050565b6112b96112b3612959565b82612a1a565b6112f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ef90614b6f565b60405180910390fd5b61130181612d54565b50565b606060006113118361192d565b905060008167ffffffffffffffff81111561132f5761132e6150b3565b5b60405190808252806020026020018201604052801561135d5781602001602082028036833780820191505090505b50905060005b828110156113a757611375858261113b565b82828151811061138857611387615084565b5b602002602001018181525050808061139f90614f4e565b915050611363565b508092505050919050565b6113ba612959565b73ffffffffffffffffffffffffffffffffffffffff166113d8611c72565b73ffffffffffffffffffffffffffffffffffffffff161461142e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142590614a2f565b60405180910390fd5b6114388183612e65565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b05681836040516114699291906146d2565b60405180910390a15050565b600061147f610e28565b82106114c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b790614b4f565b60405180910390fd5b600882815481106114d4576114d3615084565b5b90600052602060002001549050919050565b600c5481565b6114f4612959565b73ffffffffffffffffffffffffffffffffffffffff16611512611c72565b73ffffffffffffffffffffffffffffffffffffffff1614611568576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155f90614a2f565b60405180910390fd5b806010908051906020019061157e929190613ba6565b5050565b600f60019054906101000a900460ff166115d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c890614b2f565b60405180910390fd5b600f811115611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c90614b0f565b60405180910390fd5b600c5481611621610e28565b61162b9190614cd8565b111561166c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611663906149ef565b60405180910390fd5b3481600d5461167b9190614d5f565b11156116bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b3906148cf565b60405180910390fd5b60005b8181101561171357600060016116d5600b612f70565b6116df9190614cd8565b9050600c5481116116ff576116f4600b612f7e565b6116fe3382612f94565b5b50808061170b90614f4e565b9150506116bf565b5050565b61171f612959565b73ffffffffffffffffffffffffffffffffffffffff1661173d611c72565b73ffffffffffffffffffffffffffffffffffffffff1614611793576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178a90614a2f565b60405180910390fd5b600061179f600b612f70565b90506000600190505b8381116117e1576117c48382846117bf9190614cd8565b612f94565b6117ce600b612f7e565b80806117d990614f4e565b9150506117a8565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611890576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611887906149af565b60405180910390fd5b80915050919050565b600d5481565b601080546118ac90614eeb565b80601f01602080910402602001604051908101604052809291908181526020018280546118d890614eeb565b80156119255780601f106118fa57610100808354040283529160200191611925565b820191906000526020600020905b81548152906001019060200180831161190857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561199e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119959061498f565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6119ed612959565b73ffffffffffffffffffffffffffffffffffffffff16611a0b611c72565b73ffffffffffffffffffffffffffffffffffffffff1614611a61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5890614a2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611b2a612959565b73ffffffffffffffffffffffffffffffffffffffff16611b48611c72565b73ffffffffffffffffffffffffffffffffffffffff1614611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590614a2f565b60405180910390fd5b600060135414611be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bda9061494f565b60405180910390fd5b43601281905550565b611bf4612959565b73ffffffffffffffffffffffffffffffffffffffff16611c12611c72565b73ffffffffffffffffffffffffffffffffffffffff1614611c68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5f90614a2f565b60405180910390fd5b80600e8190555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611cab90614eeb565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd790614eeb565b8015611d245780601f10611cf957610100808354040283529160200191611d24565b820191906000526020600020905b815481529060010190602001808311611d0757829003601f168201915b5050505050905090565b611d36612959565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d9b9061486f565b60405180910390fd5b8060056000611db1612959565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e5e612959565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ea39190614792565b60405180910390a35050565b611eb7612959565b73ffffffffffffffffffffffffffffffffffffffff16611ed5611c72565b73ffffffffffffffffffffffffffffffffffffffff1614611f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2290614a2f565b60405180910390fd5b80600c8190555050565b611f46611f40612959565b83612a1a565b611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c90614aef565b60405180910390fd5b611f9184848484612fb2565b50505050565b6060611fa2826128ed565b611fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd890614a6f565b60405180910390fd5b6000611feb61300e565b9050600081511161200b5760405180602001604052806000815250612036565b80612015846130a0565b60405160200161202692919061467e565b6040516020818303038152906040525b915050919050565b600f60009054906101000a900460ff1661208d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612084906148af565b60405180910390fd5b600e5481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546120db9190614cd8565b111561211c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211390614b8f565b60405180910390fd5b600c5481612128610e28565b6121329190614cd8565b1115612173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216a906149ef565b60405180910390fd5b3481600d546121829190614d5f565b11156121c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ba906148cf565b60405180910390fd5b80601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122129190614cd8565b9250508190555060005b818110156122705760006001612232600b612f70565b61223c9190614cd8565b9050600c54811161225c57612251600b612f7e565b61225b3382612f94565b5b50808061226890614f4e565b91505061221c565b506000601254141561228457436012819055505b50565b60135481565b612295612959565b73ffffffffffffffffffffffffffffffffffffffff166122b3611c72565b73ffffffffffffffffffffffffffffffffffffffff1614612309576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230090614a2f565b60405180910390fd5b80601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f81565b60125481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61241a612959565b73ffffffffffffffffffffffffffffffffffffffff16612438611c72565b73ffffffffffffffffffffffffffffffffffffffff161461248e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248590614a2f565b60405180910390fd5b6000601354146124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca9061494f565b60405180910390fd5b60006012541415612519576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251090614acf565b60405180910390fd5b600c54601254406001900461252e9190614f97565b60138190555060ff601254436125449190614db9565b111561257057600c5460014361255a9190614db9565b40600190046125699190614f97565b6013819055505b600060135414156125845760016013819055505b565b600f60019054906101000a900460ff1681565b6125a1612959565b73ffffffffffffffffffffffffffffffffffffffff166125bf611c72565b73ffffffffffffffffffffffffffffffffffffffff1614612615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260c90614a2f565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b612649612959565b73ffffffffffffffffffffffffffffffffffffffff16612667611c72565b73ffffffffffffffffffffffffffffffffffffffff16146126bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126b490614a2f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561272d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127249061480f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6127f5612959565b73ffffffffffffffffffffffffffffffffffffffff16612813611c72565b73ffffffffffffffffffffffffffffffffffffffff1614612869576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286090614a2f565b60405180910390fd5b80600d8190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806128e657506128e582613220565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166129d4836117e7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612a25826128ed565b612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b9061492f565b60405180910390fd5b6000612a6f836117e7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612ade57508373ffffffffffffffffffffffffffffffffffffffff16612ac684610b67565b73ffffffffffffffffffffffffffffffffffffffff16145b80612aef5750612aee818561237e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612b18826117e7565b73ffffffffffffffffffffffffffffffffffffffff1614612b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6590614a4f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd59061484f565b60405180910390fd5b612be9838383613302565b612bf4600082612961565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c449190614db9565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612c9b9190614cd8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612d5f826117e7565b9050612d6d81600084613302565b612d78600083612961565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dc89190614db9565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b803073ffffffffffffffffffffffffffffffffffffffff16311015612ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612eb69061490f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612ee5906146a2565b60006040518083038185875af1925050503d8060008114612f22576040519150601f19603f3d011682016040523d82523d6000602084013e612f27565b606091505b5050905080612f6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f62906148ef565b60405180910390fd5b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612fae828260405180602001604052806000815250613312565b5050565b612fbd848484612af8565b612fc98484848461336d565b613008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fff906147ef565b60405180910390fd5b50505050565b60606010805461301d90614eeb565b80601f016020809104026020016040519081016040528092919081815260200182805461304990614eeb565b80156130965780601f1061306b57610100808354040283529160200191613096565b820191906000526020600020905b81548152906001019060200180831161307957829003601f168201915b5050505050905090565b606060008214156130e8576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061321b565b600082905060005b6000821461311a57808061310390614f4e565b915050600a826131139190614d2e565b91506130f0565b60008167ffffffffffffffff811115613136576131356150b3565b5b6040519080825280601f01601f1916602001820160405280156131685781602001600182028036833780820191505090505b5090505b60008514613214576001826131819190614db9565b9150600a856131909190614f97565b603061319c9190614cd8565b7f0100000000000000000000000000000000000000000000000000000000000000028183815181106131d1576131d0615084565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561320d9190614d2e565b945061316c565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806132eb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806132fb57506132fa8261353c565b5b9050919050565b61330d8383836135a6565b505050565b61331c83836136ba565b613329600084848461336d565b613368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335f906147ef565b60405180910390fd5b505050565b600061338e8473ffffffffffffffffffffffffffffffffffffffff16613888565b1561352f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133b7612959565b8786866040518563ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016133f594939291906146fb565b602060405180830381600087803b15801561340f57600080fd5b505af192505050801561344057506040513d601f19601f8201168201806040525081019061343d9190613f97565b60015b6134c3573d8060008114613470576040519150601f19603f3d011682016040523d82523d6000602084013e613475565b606091505b506000815114156134bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134b2906147ef565b60405180910390fd5b805181602001fd5b63150b7a027c0100000000000000000000000000000000000000000000000000000000027bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613534565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6135b183838361389b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156135f4576135ef816138a0565b613633565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146136325761363183826138e9565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136765761367181613a56565b6136b5565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146136b4576136b38282613b27565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561372a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613721906149cf565b60405180910390fd5b613733816128ed565b15613773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161376a9061482f565b60405180910390fd5b61377f60008383613302565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137cf9190614cd8565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016138f68461192d565b6139009190614db9565b90506000600760008481526020019081526020016000205490508181146139e5576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050613a6a9190614db9565b9050600060096000848152602001908152602001600020549050600060088381548110613a9a57613a99615084565b5b906000526020600020015490508060088381548110613abc57613abb615084565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613b0b57613b0a615055565b5b6001900381819060005260206000200160009055905550505050565b6000613b328361192d565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613bb290614eeb565b90600052602060002090601f016020900481019282613bd45760008555613c1b565b82601f10613bed57805160ff1916838001178555613c1b565b82800160010185558215613c1b579182015b82811115613c1a578251825591602001919060010190613bff565b5b509050613c289190613c2c565b5090565b5b80821115613c45576000816000905550600101613c2d565b5090565b6000613c5c613c5784614bef565b614bca565b905082815260208101848484011115613c7857613c776150e7565b5b613c83848285614ea9565b509392505050565b6000613c9e613c9984614c20565b614bca565b905082815260208101848484011115613cba57613cb96150e7565b5b613cc5848285614ea9565b509392505050565b600081359050613cdc816158d3565b92915050565b600081359050613cf1816158ea565b92915050565b600081359050613d0681615901565b92915050565b600081359050613d1b81615918565b92915050565b600081519050613d3081615918565b92915050565b600082601f830112613d4b57613d4a6150e2565b5b8135613d5b848260208601613c49565b91505092915050565b600082601f830112613d7957613d786150e2565b5b8135613d89848260208601613c8b565b91505092915050565b600081359050613da18161592f565b92915050565b600060208284031215613dbd57613dbc6150f1565b5b6000613dcb84828501613ccd565b91505092915050565b60008060408385031215613deb57613dea6150f1565b5b6000613df985828601613ccd565b9250506020613e0a85828601613ccd565b9150509250929050565b600080600060608486031215613e2d57613e2c6150f1565b5b6000613e3b86828701613ccd565b9350506020613e4c86828701613ccd565b9250506040613e5d86828701613d92565b9150509250925092565b60008060008060808587031215613e8157613e806150f1565b5b6000613e8f87828801613ccd565b9450506020613ea087828801613ccd565b9350506040613eb187828801613d92565b925050606085013567ffffffffffffffff811115613ed257613ed16150ec565b5b613ede87828801613d36565b91505092959194509250565b60008060408385031215613f0157613f006150f1565b5b6000613f0f85828601613ccd565b9250506020613f2085828601613cf7565b9150509250929050565b60008060408385031215613f4157613f406150f1565b5b6000613f4f85828601613ccd565b9250506020613f6085828601613d92565b9150509250929050565b600060208284031215613f8057613f7f6150f1565b5b6000613f8e84828501613d0c565b91505092915050565b600060208284031215613fad57613fac6150f1565b5b6000613fbb84828501613d21565b91505092915050565b600060208284031215613fda57613fd96150f1565b5b600082013567ffffffffffffffff811115613ff857613ff76150ec565b5b61400484828501613d64565b91505092915050565b600060208284031215614023576140226150f1565b5b600061403184828501613d92565b91505092915050565b60008060408385031215614051576140506150f1565b5b600061405f85828601613d92565b925050602061407085828601613ccd565b9150509250929050565b60008060408385031215614091576140906150f1565b5b600061409f85828601613d92565b92505060206140b085828601613ce2565b9150509250929050565b60006140c68383614660565b60208301905092915050565b6140db81614e73565b82525050565b6140ea81614ded565b82525050565b60006140fb82614c61565b6141058185614c8f565b935061411083614c51565b8060005b8381101561414157815161412888826140ba565b975061413383614c82565b925050600181019050614114565b5085935050505092915050565b61415781614e11565b82525050565b600061416882614c6c565b6141728185614ca0565b9350614182818560208601614eb8565b61418b816150f6565b840191505092915050565b60006141a182614c77565b6141ab8185614cbc565b93506141bb818560208601614eb8565b6141c4816150f6565b840191505092915050565b60006141da82614c77565b6141e48185614ccd565b93506141f4818560208601614eb8565b80840191505092915050565b600061420d602b83614cbc565b915061421882615107565b604082019050919050565b6000614230603283614cbc565b915061423b82615156565b604082019050919050565b6000614253602683614cbc565b915061425e826151a5565b604082019050919050565b6000614276601c83614cbc565b9150614281826151f4565b602082019050919050565b6000614299602483614cbc565b91506142a48261521d565b604082019050919050565b60006142bc601983614cbc565b91506142c78261526c565b602082019050919050565b60006142df601483614cbc565b91506142ea82615295565b602082019050919050565b6000614302601883614cbc565b915061430d826152be565b602082019050919050565b6000614325601f83614cbc565b9150614330826152e7565b602082019050919050565b6000614348603a83614cbc565b915061435382615310565b604082019050919050565b600061436b601d83614cbc565b91506143768261535f565b602082019050919050565b600061438e602c83614cbc565b915061439982615388565b604082019050919050565b60006143b1601d83614cbc565b91506143bc826153d7565b602082019050919050565b60006143d4603883614cbc565b91506143df82615400565b604082019050919050565b60006143f7602a83614cbc565b91506144028261544f565b604082019050919050565b600061441a602983614cbc565b91506144258261549e565b604082019050919050565b600061443d602083614cbc565b9150614448826154ed565b602082019050919050565b6000614460602883614cbc565b915061446b82615516565b604082019050919050565b6000614483602c83614cbc565b915061448e82615565565b604082019050919050565b60006144a6602083614cbc565b91506144b1826155b4565b602082019050919050565b60006144c9602983614cbc565b91506144d4826155dd565b604082019050919050565b60006144ec602f83614cbc565b91506144f78261562c565b604082019050919050565b600061450f602183614cbc565b915061451a8261567b565b604082019050919050565b6000614532602083614cbc565b915061453d826156ca565b602082019050919050565b6000614555602083614cbc565b9150614560826156f3565b602082019050919050565b6000614578600083614cb1565b91506145838261571c565b600082019050919050565b600061459b603183614cbc565b91506145a68261571f565b604082019050919050565b60006145be602a83614cbc565b91506145c98261576e565b604082019050919050565b60006145e1601483614cbc565b91506145ec826157bd565b602082019050919050565b6000614604602c83614cbc565b915061460f826157e6565b604082019050919050565b6000614627603083614cbc565b915061463282615835565b604082019050919050565b600061464a602383614cbc565b915061465582615884565b604082019050919050565b61466981614e69565b82525050565b61467881614e69565b82525050565b600061468a82856141cf565b915061469682846141cf565b91508190509392505050565b60006146ad8261456b565b9150819050919050565b60006020820190506146cc60008301846140e1565b92915050565b60006040820190506146e760008301856140d2565b6146f4602083018461466f565b9392505050565b600060808201905061471060008301876140e1565b61471d60208301866140e1565b61472a604083018561466f565b818103606083015261473c818461415d565b905095945050505050565b600060408201905061475c60008301856140e1565b614769602083018461466f565b9392505050565b6000602082019050818103600083015261478a81846140f0565b905092915050565b60006020820190506147a7600083018461414e565b92915050565b600060208201905081810360008301526147c78184614196565b905092915050565b600060208201905081810360008301526147e881614200565b9050919050565b6000602082019050818103600083015261480881614223565b9050919050565b6000602082019050818103600083015261482881614246565b9050919050565b6000602082019050818103600083015261484881614269565b9050919050565b600060208201905081810360008301526148688161428c565b9050919050565b60006020820190508181036000830152614888816142af565b9050919050565b600060208201905081810360008301526148a8816142d2565b9050919050565b600060208201905081810360008301526148c8816142f5565b9050919050565b600060208201905081810360008301526148e881614318565b9050919050565b600060208201905081810360008301526149088161433b565b9050919050565b600060208201905081810360008301526149288161435e565b9050919050565b6000602082019050818103600083015261494881614381565b9050919050565b60006020820190508181036000830152614968816143a4565b9050919050565b60006020820190508181036000830152614988816143c7565b9050919050565b600060208201905081810360008301526149a8816143ea565b9050919050565b600060208201905081810360008301526149c88161440d565b9050919050565b600060208201905081810360008301526149e881614430565b9050919050565b60006020820190508181036000830152614a0881614453565b9050919050565b60006020820190508181036000830152614a2881614476565b9050919050565b60006020820190508181036000830152614a4881614499565b9050919050565b60006020820190508181036000830152614a68816144bc565b9050919050565b60006020820190508181036000830152614a88816144df565b9050919050565b60006020820190508181036000830152614aa881614502565b9050919050565b60006020820190508181036000830152614ac881614525565b9050919050565b60006020820190508181036000830152614ae881614548565b9050919050565b60006020820190508181036000830152614b088161458e565b9050919050565b60006020820190508181036000830152614b28816145b1565b9050919050565b60006020820190508181036000830152614b48816145d4565b9050919050565b60006020820190508181036000830152614b68816145f7565b9050919050565b60006020820190508181036000830152614b888161461a565b9050919050565b60006020820190508181036000830152614ba88161463d565b9050919050565b6000602082019050614bc4600083018461466f565b92915050565b6000614bd4614be5565b9050614be08282614f1d565b919050565b6000604051905090565b600067ffffffffffffffff821115614c0a57614c096150b3565b5b614c13826150f6565b9050602081019050919050565b600067ffffffffffffffff821115614c3b57614c3a6150b3565b5b614c44826150f6565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614ce382614e69565b9150614cee83614e69565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d2357614d22614fc8565b5b828201905092915050565b6000614d3982614e69565b9150614d4483614e69565b925082614d5457614d53614ff7565b5b828204905092915050565b6000614d6a82614e69565b9150614d7583614e69565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614dae57614dad614fc8565b5b828202905092915050565b6000614dc482614e69565b9150614dcf83614e69565b925082821015614de257614de1614fc8565b5b828203905092915050565b6000614df882614e49565b9050919050565b6000614e0a82614e49565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614e7e82614e85565b9050919050565b6000614e9082614e97565b9050919050565b6000614ea282614e49565b9050919050565b82818337600083830152505050565b60005b83811015614ed6578082015181840152602081019050614ebb565b83811115614ee5576000848401525b50505050565b60006002820490506001821680614f0357607f821691505b60208210811415614f1757614f16615026565b5b50919050565b614f26826150f6565b810181811067ffffffffffffffff82111715614f4557614f446150b3565b5b80604052505050565b6000614f5982614e69565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f8c57614f8b614fc8565b5b600182019050919050565b6000614fa282614e69565b9150614fad83614e69565b925082614fbd57614fbc614ff7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e73756666696369656e742062616c616e6365000000000000000000000000600082015250565b7f5072652d73616c65206973206e6f74206c697665207965740000000000000000600082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f727265637400600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5374617274696e6720696e64657820697320616c726561647920736574000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f507572636861736520776f756c6420657863656564206d617820617661696c6160008201527f626c65204e465473000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564600082015250565b7f5374617274696e6720696e64657820626c6f636b206d75737420626520736574600082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f596f752063616e206d696e742061206d6178206f6620313520524c204e46547360008201527f20617420612074696d6500000000000000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206c69766520796574000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d6178206d696e7473207065722077616c6c6574206c696d697420657863656560008201527f6465640000000000000000000000000000000000000000000000000000000000602082015250565b6158dc81614ded565b81146158e757600080fd5b50565b6158f381614dff565b81146158fe57600080fd5b50565b61590a81614e11565b811461591557600080fd5b50565b61592181614e1d565b811461592c57600080fd5b50565b61593881614e69565b811461594357600080fd5b5056fea2646970667358221220cb3a868cbe00a51f91a93b6a6c2213fe19e1c5712f88abcd632391e02b1b176264736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000000e526f6172696e674c6561646572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004524f415200000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): RoaringLeaders
Arg [1] : symbol (string): ROAR
Arg [2] : maxRoaringLeadersSupply (uint256): 10000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [4] : 526f6172696e674c656164657273000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 524f415200000000000000000000000000000000000000000000000000000000


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.