ETH Price: $3,270.41 (-4.11%)
Gas: 10 Gwei

Token

Bikerz Excite (BIKERZ)
 

Overview

Max Total Supply

0 BIKERZ

Holders

458

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 BIKERZ
0x68f56d2e318e094f10aec072d2eaada8641b0c37
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BikerzExcite

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : bikerExcite.sol
//SPDX-License-Identifier: MIT
//Contract based on [https://docs.openzeppelin.com/contracts/3.x/erc721](https://docs.openzeppelin.com/contracts/3.x/erc721)

pragma solidity ^0.8.0;

/*
CHAIN BIKERZ - EXCITE WHITELIST NFT GAME 
*/

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/interfaces/IERC20.sol";

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

interface animations {
    function draw(uint256 tokenId, uint256 pts) external view returns (string memory);
}

contract BikerzExcite is ERC721, Ownable, ReentrancyGuard {
    using Counters for Counters.Counter;
    using Strings for uint256;

    Counters.Counter private tokenCounter;

    uint8 private tricks;

    uint256 public maxBikerz;
    uint256 public maxGiftedBikerz;
    uint256 public maxFreeBikerz;
    uint256 public numGiftedBikerz;
    uint256 public cooldown = 6000;

    uint256 public constant PUBLIC_SALE_PRICE = 0.02 ether;

    uint256 public startBlock;
    uint8 public MAX_PER_WALLET = 5;
    uint8 public MAX_FREE_PER_WALLET = 2;
    string private randomizer;

    animations[9] private animationAddress;
    uint256[9] private pointValues;

    struct Score {
        uint256 currentTrick;
        uint256 pts;
    }

    mapping (uint256 => Score) public scoreMap;

    modifier canMintBikerz(uint256 numberOfTokens) {
        require(
            tokenCounter.current() + numberOfTokens <=
                maxBikerz - maxGiftedBikerz,
            "Not enough Bikerz remaining to mint"
        );
        _;
    }

    modifier canMintFreeBikerz(uint256 numberOfTokens) {
        require(
            tokenCounter.current() + numberOfTokens <=
                maxFreeBikerz,
            "Not enough Free Bikerz remaining to mint"
        );
        _;
    }

    modifier canGiftBikerz(uint256 num) {
        require(
            numGiftedBikerz + num <= maxGiftedBikerz,
            "Not enough Bikerz remaining to gift"
        );
        require(
            tokenCounter.current() + num <= maxBikerz,
            "Not enough Bikerz remaining to mint"
        );
        _;
    }

    constructor(
        uint256 _maxBikerz,
        uint256 _maxGiftedBikerz,
        uint256 _maxFreeBikerz,
        animations[9] memory createTricks,
        uint256[9] memory vals
    ) ERC721("Bikerz Excite", "BIKERZ") {
        maxBikerz = _maxBikerz;
        maxGiftedBikerz = _maxGiftedBikerz;
        maxFreeBikerz = _maxFreeBikerz;
        resetData (createTricks, vals, "START");
        cooldown = 6000;
    }

    function resetData (animations[9] memory createTricks, uint256[9] memory vals, string memory randomizePhrase) public onlyOwner {
       setMetadataAddress(createTricks);
       setPointValues(vals);
       setRandomizer(randomizePhrase);
       saveAllPoints();
       startBlock = block.number;
    }

    function setRandomizer(string memory str) public onlyOwner {
        randomizer = str;
    }

    function setCooldown(uint256 cd) public onlyOwner {
        cooldown = cd;
    }

    function setMetadataAddress(animations[9] memory addrs) public onlyOwner {
        for (uint8 i = 0; i < 9; i++) {
            animationAddress[i] = addrs[i];
        }
    }

    function setPointValues(uint256[9] memory values) public onlyOwner {
        for (uint8 i = 0; i < 9; i++) {
            pointValues[i] = values[i];
        }
    }

    modifier maxBikerzPerWallet(uint256 numberOfTokens) {
        require(
            balanceOf(msg.sender) + numberOfTokens <= MAX_PER_WALLET,
            "Max bikerz to mint is five"
        );
        _;
    }
    modifier maxFreeBikerzPerWallet(uint256 numberOfTokens) {
        require(
            balanceOf(msg.sender) + numberOfTokens <= MAX_PER_WALLET,
            "Max free bikerz to mint is two"
        );
        _;
    }


    modifier isCorrectPayment(uint256 price, uint256 numberOfTokens) {
        require(
            price * numberOfTokens == msg.value,
            "Incorrect ETH value sent"
        );
        _;
    }

    function mintFree(uint256 numberOfTokens)
        external
        nonReentrant
        canMintFreeBikerz(numberOfTokens)
        maxFreeBikerzPerWallet(numberOfTokens)
    {
        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, nextTokenId());
        }
    }

    function mint(uint256 numberOfTokens)
        external
        nonReentrant
        payable
        canMintBikerz(numberOfTokens)
        maxBikerzPerWallet(numberOfTokens)
        isCorrectPayment(PUBLIC_SALE_PRICE, numberOfTokens)
    {
        for (uint256 i = 0; i < numberOfTokens; i++) {
            _safeMint(msg.sender, nextTokenId());
        }
    }

    function tokenURI(uint256 tokenId) override public view returns (string memory) {
        
        string memory parts;              
        parts = animationAddress[trick(tokenId)].draw(tokenId, scoreMap[tokenId].pts); 
        string memory scene = parts;      
        string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Chain Bikerz - Excite #', toString(tokenId), '", "description": "',  "Excite Chain Bikers is a on-chain NFT game.", '", "image": "data:image/svg+xml;base64,',Base64.encode(bytes(scene)),'" }'))));
        string memory output = string(abi.encodePacked('data:application/json;base64,', json));
           
        return output;
    }
    
    function toString(uint256 value) public pure returns (string memory) {
    // Inspired by OraclizeAPI's implementation - MIT license
    // 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);
    }


    function randomizeTrick(uint256 tokenId) private view returns (uint256){
        return uint256(keccak256(abi.encodePacked(randomizer, tokenId))) % 9;
    }
    
    function trick(uint256 tokenId) private view returns (uint256) { 
        uint256 delta = block.number - startBlock;
        uint256 trickNum = delta / cooldown;
        uint256 ranTrick = randomizeTrick(tokenId);
        uint256 doTrick = ((trickNum + ranTrick) % 9);
        return doTrick;
    }
    
    function saveAllPoints() public onlyOwner {      
        for (uint256 i = 0; i <= tokenCounter.current(); i++) {
            savePoints(i);
        }   
    }

    function savePoints(uint256 tokenId) private onlyOwner {      
        uint256 delta = block.number - startBlock;        
        uint256 numberOfTotalTricks = delta / cooldown;   

        for (uint256 i = 0; i <= numberOfTotalTricks; i++) {
            uint256 ranTrick = randomizeTrick(tokenId);
            uint256 doTrick = ((i + ranTrick) % 9);
            scoreMap[tokenId].pts += pointValues[doTrick];
        }   
    }

    function giftBikerz(address[] calldata addresses)
        external
        nonReentrant
        onlyOwner
        canGiftBikerz(addresses.length)
    {
        uint256 numToGift = addresses.length;
        numGiftedBikerz += numToGift;

        for (uint256 i = 0; i < numToGift; i++) {
            _safeMint(addresses[i], nextTokenId());
        }
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    function withdrawTokens(IERC20 token) public onlyOwner {
        uint256 balance = token.balanceOf(address(this));
        token.transfer(msg.sender, balance);
    }

    function nextTokenId() private returns (uint256) {
        tokenCounter.increment();
        return tokenCounter.current();
    }
}


/// [MIT License]
/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
    bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /// @notice Encodes some bytes to the base64 representation
    function encode(bytes memory data) internal pure returns (string memory) {
        uint256 len = data.length;
        if (len == 0) return "";

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((len + 2) / 3);

        // Add some extra buffer at the end
        bytes memory result = new bytes(encodedLen + 32);

        bytes memory table = TABLE;

        assembly {
            let tablePtr := add(table, 1)
            let resultPtr := add(result, 32)

            for {
                let i := 0
            } lt(i, len) {

            } {
                i := add(i, 3)
                let input := and(mload(add(data, i)), 0xffffff)

                let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF))
                out := shl(8, out)
                out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
                out := shl(224, out)

                mstore(resultPtr, out)

                resultPtr := add(resultPtr, 4)
            }

            switch mod(len, 3)
            case 1 {
                mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
            }
            case 2 {
                mstore(sub(resultPtr, 1), shl(248, 0x3d))
            }

            mstore(result, encodedLen)
        }

        return string(result);
    }
    
}

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

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}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public 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 {
        _setApprovalForAll(_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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @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` and `to` are never both zero.
     *
     * 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 3 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol)

pragma solidity ^0.8.0;

import "../token/ERC20/IERC20.sol";

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

File 5 of 15 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 6 of 15 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. 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;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 12 of 15 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 13 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

File 15 of 15 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_maxBikerz","type":"uint256"},{"internalType":"uint256","name":"_maxGiftedBikerz","type":"uint256"},{"internalType":"uint256","name":"_maxFreeBikerz","type":"uint256"},{"internalType":"contract animations[9]","name":"createTricks","type":"address[9]"},{"internalType":"uint256[9]","name":"vals","type":"uint256[9]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_FREE_PER_WALLET","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_WALLET","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cooldown","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"giftBikerz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBikerz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeBikerz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGiftedBikerz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mintFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numGiftedBikerz","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract animations[9]","name":"createTricks","type":"address[9]"},{"internalType":"uint256[9]","name":"vals","type":"uint256[9]"},{"internalType":"string","name":"randomizePhrase","type":"string"}],"name":"resetData","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":"saveAllPoints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"scoreMap","outputs":[{"internalType":"uint256","name":"currentTrick","type":"uint256"},{"internalType":"uint256","name":"pts","type":"uint256"}],"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":"uint256","name":"cd","type":"uint256"}],"name":"setCooldown","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract animations[9]","name":"addrs","type":"address[9]"}],"name":"setMetadataAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[9]","name":"values","type":"uint256[9]"}],"name":"setPointValues","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"str","type":"string"}],"name":"setRandomizer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","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":"value","type":"uint256"}],"name":"toString","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052611770600e556005601060006101000a81548160ff021916908360ff1602179055506002601060016101000a81548160ff021916908360ff1602179055503480156200004f57600080fd5b50604051620060df380380620060df833981810160405281019062000075919062000b9d565b6040518060400160405280600d81526020017f42696b65727a20457863697465000000000000000000000000000000000000008152506040518060400160405280600681526020017f42494b45525a00000000000000000000000000000000000000000000000000008152508160009080519060200190620000f992919062000993565b5080600190805190602001906200011292919062000993565b5050506200013562000129620001ae60201b60201c565b620001b660201b60201c565b600160078190555084600a8190555083600b8190555082600c819055506200019a82826040518060400160405280600581526020017f53544152540000000000000000000000000000000000000000000000000000008152506200027c60201b60201c565b611770600e8190555050505050506200116c565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028c620001ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002b26200035a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200030b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003029062000d1a565b60405180910390fd5b6200031c836200038460201b60201c565b6200032d82620004fc60201b60201c565b6200033e816200063a60201b60201c565b6200034e620006e560201b60201c565b43600f81905550505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000394620001ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003ba6200035a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000413576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040a9062000d1a565b60405180910390fd5b60005b60098160ff161015620004f857818160ff166009811062000460577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160128260ff1660098110620004a3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080620004ef9062000fd1565b91505062000416565b5050565b6200050c620001ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620005326200035a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200058b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005829062000d1a565b60405180910390fd5b60005b60098160ff1610156200063657818160ff1660098110620005d8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151601b8260ff16600981106200061b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b018190555080806200062d9062000fd1565b9150506200058e565b5050565b6200064a620001ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006706200035a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620006c9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006c09062000d1a565b60405180910390fd5b8060119080519060200190620006e192919062000993565b5050565b620006f5620001ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200071b6200035a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000774576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200076b9062000d1a565b60405180910390fd5b60005b6200078e6008620007bf60201b620021251760201c565b8111620007bc57620007a681620007cd60201b60201c565b8080620007b39062000f83565b91505062000777565b50565b600081600001549050919050565b620007dd620001ae60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008036200035a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200085c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008539062000d1a565b60405180910390fd5b6000600f54436200086e919062000e7d565b90506000600e548262000882919062000e45565b905060005b81811162000947576000620008a2856200094d60201b60201c565b9050600060098284620008b6919062000de8565b620008c291906200100a565b9050601b8160098110620008ff577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b015460246000888152602001908152602001600020600101600082825462000928919062000de8565b92505081905550505080806200093e9062000f83565b91505062000887565b50505050565b600060096011836040516020016200096792919062000cee565b6040516020818303038152906040528051906020012060001c6200098c91906200100a565b9050919050565b828054620009a19062000f17565b90600052602060002090601f016020900481019282620009c5576000855562000a11565b82601f10620009e057805160ff191683800117855562000a11565b8280016001018555821562000a11579182015b8281111562000a10578251825591602001919060010190620009f3565b5b50905062000a20919062000a24565b5090565b5b8082111562000a3f57600081600090555060010162000a25565b5090565b600062000a5a62000a548462000d65565b62000d3c565b9050808285602086028201111562000a7157600080fd5b60005b8581101562000aa5578162000a8a888262000b6f565b84526020840193506020830192505060018101905062000a74565b5050509392505050565b600062000ac662000ac08462000d8e565b62000d3c565b9050808285602086028201111562000add57600080fd5b60005b8581101562000b11578162000af6888262000b86565b84526020840193506020830192505060018101905062000ae0565b5050509392505050565b600082601f83011262000b2d57600080fd5b600962000b3c84828562000a43565b91505092915050565b600082601f83011262000b5757600080fd5b600962000b6684828562000aaf565b91505092915050565b60008151905062000b808162001138565b92915050565b60008151905062000b978162001152565b92915050565b60008060008060006102a0868803121562000bb757600080fd5b600062000bc78882890162000b86565b955050602062000bda8882890162000b86565b945050604062000bed8882890162000b86565b935050606062000c008882890162000b1b565b92505061018062000c148882890162000b45565b9150509295509295909350565b6000815462000c308162000f17565b62000c3c818662000ddd565b9450600182166000811462000c5a576001811462000c6c5762000ca3565b60ff1983168652818601935062000ca3565b62000c778562000db7565b60005b8381101562000c9b5781548189015260018201915060208101905062000c7a565b838801955050505b50505092915050565b600062000cbb60208362000dcc565b915062000cc8826200110f565b602082019050919050565b62000ce862000ce28262000f00565b62001000565b82525050565b600062000cfc828562000c21565b915062000d0a828462000cd3565b6020820191508190509392505050565b6000602082019050818103600083015262000d358162000cac565b9050919050565b600062000d4862000d5b565b905062000d56828262000f4d565b919050565b6000604051905090565b600067ffffffffffffffff82111562000d835762000d82620010cf565b5b602082029050919050565b600067ffffffffffffffff82111562000dac5762000dab620010cf565b5b602082029050919050565b60008190508160005260206000209050919050565b600082825260208201905092915050565b600081905092915050565b600062000df58262000f00565b915062000e028362000f00565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e3a5762000e3962001042565b5b828201905092915050565b600062000e528262000f00565b915062000e5f8362000f00565b92508262000e725762000e7162001071565b5b828204905092915050565b600062000e8a8262000f00565b915062000e978362000f00565b92508282101562000ead5762000eac62001042565b5b828203905092915050565b600062000ec58262000ee0565b9050919050565b600062000ed98262000eb8565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000f3057607f821691505b6020821081141562000f475762000f46620010a0565b5b50919050565b62000f5882620010fe565b810181811067ffffffffffffffff8211171562000f7a5762000f79620010cf565b5b80604052505050565b600062000f908262000f00565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000fc65762000fc562001042565b5b600182019050919050565b600062000fde8262000f0a565b915060ff82141562000ff55762000ff462001042565b5b600182019050919050565b6000819050919050565b6000620010178262000f00565b9150620010248362000f00565b92508262001037576200103662001071565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620011438162000ecc565b81146200114f57600080fd5b50565b6200115d8162000f00565b81146200116957600080fd5b50565b614f63806200117c6000396000f3fe6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063e8247f911161006f578063e8247f91146107d1578063e985e9c5146107fa578063f2fde38b14610837578063f45c56eb14610860578063f613927d1461088b57610225565b8063b88d4fde146106d9578063b8ab82d814610702578063c54eef391461072b578063c87b56dd14610756578063e58348dc1461079357610225565b806395d89b41116100f257806395d89b411461061557806398710d1e14610640578063a0712d681461066b578063a22cb46514610687578063a4146733146106b057610225565b8063715018a61461057d578063787a08a6146105945780637feb7450146105bf5780638da5cb5b146105ea57610225565b806323b872dd116101b15780634fc3f41a116101755780634fc3f41a146104745780636352211e1461049d57806368c09e88146104da5780636900a3ae1461050357806370a082311461054057610225565b806323b872dd146103b75780633ccfd60b146103e057806342842e0e146103f757806348cd4cb11461042057806349df728c1461044b57610225565b8063081812fc116101f8578063081812fc146102e6578063095ea7b3146103235780630f2cdd6c1461034c57806310c14103146103775780631837c9891461038e57610225565b806301ffc9a71461022a5780630518e9f21461026757806306fdde031461029057806307e89ec0146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613733565b6108b6565b60405161025e9190613f00565b60405180910390f35b34801561027357600080fd5b5061028e6004803603810190610289919061364c565b610998565b005b34801561029c57600080fd5b506102a5610af7565b6040516102b29190613f1b565b60405180910390f35b3480156102c757600080fd5b506102d0610b89565b6040516102dd91906141fd565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190613830565b610b94565b60405161031a9190613e70565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906135cb565b610c19565b005b34801561035857600080fd5b50610361610d31565b60405161036e9190614241565b60405180910390f35b34801561038357600080fd5b5061038c610d44565b005b34801561039a57600080fd5b506103b560048036038101906103b091906137ae565b610df2565b005b3480156103c357600080fd5b506103de60048036038101906103d991906134c5565b610e88565b005b3480156103ec57600080fd5b506103f5610ee8565b005b34801561040357600080fd5b5061041e600480360381019061041991906134c5565b610fb3565b005b34801561042c57600080fd5b50610435610fd3565b60405161044291906141fd565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d9190613785565b610fd9565b005b34801561048057600080fd5b5061049b60048036038101906104969190613830565b611174565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190613830565b6111fa565b6040516104d19190613e70565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906136e0565b6112ac565b005b34801561050f57600080fd5b5061052a60048036038101906105259190613830565b6113d1565b6040516105379190613f1b565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190613460565b61157e565b60405161057491906141fd565b60405180910390f35b34801561058957600080fd5b50610592611636565b005b3480156105a057600080fd5b506105a96116be565b6040516105b691906141fd565b60405180910390f35b3480156105cb57600080fd5b506105d46116c4565b6040516105e191906141fd565b60405180910390f35b3480156105f657600080fd5b506105ff6116ca565b60405161060c9190613e70565b60405180910390f35b34801561062157600080fd5b5061062a6116f4565b6040516106379190613f1b565b60405180910390f35b34801561064c57600080fd5b50610655611786565b6040516106629190614241565b60405180910390f35b61068560048036038101906106809190613830565b611799565b005b34801561069357600080fd5b506106ae60048036038101906106a9919061358f565b61194c565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190613830565b611962565b005b3480156106e557600080fd5b5061070060048036038101906106fb9190613514565b611ab0565b005b34801561070e57600080fd5b5061072960048036038101906107249190613607565b611b12565b005b34801561073757600080fd5b50610740611d37565b60405161074d91906141fd565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190613830565b611d3d565b60405161078a9190613f1b565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190613830565b611ebe565b6040516107c8929190614218565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190613676565b611ee2565b005b34801561080657600080fd5b50610821600480360381019061081c9190613489565b611f8d565b60405161082e9190613f00565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613460565b612021565b005b34801561086c57600080fd5b50610875612119565b60405161088291906141fd565b60405180910390f35b34801561089757600080fd5b506108a061211f565b6040516108ad91906141fd565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610991575061099082612133565b5b9050919050565b6109a061219d565b73ffffffffffffffffffffffffffffffffffffffff166109be6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b9061411d565b60405180910390fd5b60005b60098160ff161015610af357818160ff1660098110610a5f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160128260ff1660098110610aa1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080610aeb9061462f565b915050610a17565b5050565b606060008054610b0690614583565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3290614583565b8015610b7f5780601f10610b5457610100808354040283529160200191610b7f565b820191906000526020600020905b815481529060010190602001808311610b6257829003601f168201915b5050505050905090565b66470de4df82000081565b6000610b9f826121a5565b610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd5906140fd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c24826111fa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c9061417d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb461219d565b73ffffffffffffffffffffffffffffffffffffffff161480610ce35750610ce281610cdd61219d565b611f8d565b5b610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d199061405d565b60405180910390fd5b610d2c8383612211565b505050565b601060009054906101000a900460ff1681565b610d4c61219d565b73ffffffffffffffffffffffffffffffffffffffff16610d6a6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db79061411d565b60405180910390fd5b60005b610dcd6008612125565b8111610def57610ddc816122ca565b8080610de7906145e6565b915050610dc3565b50565b610dfa61219d565b73ffffffffffffffffffffffffffffffffffffffff16610e186116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e659061411d565b60405180910390fd5b8060119080519060200190610e8492919061306a565b5050565b610e99610e9361219d565b82612420565b610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf9061419d565b60405180910390fd5b610ee38383836124fe565b505050565b610ef061219d565b73ffffffffffffffffffffffffffffffffffffffff16610f0e6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061411d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610faf573d6000803e3d6000fd5b5050565b610fce83838360405180602001604052806000815250611ab0565b505050565b600f5481565b610fe161219d565b73ffffffffffffffffffffffffffffffffffffffff16610fff6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c9061411d565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110909190613e70565b60206040518083038186803b1580156110a857600080fd5b505afa1580156110bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e09190613859565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161111d929190613ed7565b602060405180830381600087803b15801561113757600080fd5b505af115801561114b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116f919061370a565b505050565b61117c61219d565b73ffffffffffffffffffffffffffffffffffffffff1661119a6116ca565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e79061411d565b60405180910390fd5b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a9061409d565b60405180910390fd5b80915050919050565b6112b461219d565b73ffffffffffffffffffffffffffffffffffffffff166112d26116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f9061411d565b60405180910390fd5b60005b60098160ff1610156113cd57818160ff1660098110611373577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151601b8260ff16600981106113b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b018190555080806113c59061462f565b91505061132b565b5050565b60606000821415611419576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611579565b600082905060005b6000821461144b578080611434906145e6565b915050600a8261144491906143dd565b9150611421565b60008167ffffffffffffffff81111561148d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114bf5781602001600182028036833780820191505090505b5090505b60008514611572576001826114d89190614468565b9150600a856114e79190614663565b60306114f39190614387565b60f81b81838151811061152f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561156b91906143dd565b94506114c3565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e69061407d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61163e61219d565b73ffffffffffffffffffffffffffffffffffffffff1661165c6116ca565b73ffffffffffffffffffffffffffffffffffffffff16146116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a99061411d565b60405180910390fd5b6116bc600061275a565b565b600e5481565b600b5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461170390614583565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90614583565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b600260075414156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d6906141dd565b60405180910390fd5b600260078190555080600b54600a546117f89190614468565b816118036008612125565b61180d9190614387565b111561184e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118459061415d565b60405180910390fd5b81601060009054906101000a900460ff1660ff168161186c3361157e565b6118769190614387565b11156118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae906140dd565b60405180910390fd5b66470de4df820000833481836118cd919061440e565b1461190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906141bd565b60405180910390fd5b60005b8581101561193c5761192933611924612820565b61283b565b8080611934906145e6565b915050611910565b5050505050600160078190555050565b61195e61195761219d565b8383612859565b5050565b600260075414156119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f906141dd565b60405180910390fd5b600260078190555080600c54816119bf6008612125565b6119c99190614387565b1115611a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0190613fbd565b60405180910390fd5b81601060009054906101000a900460ff1660ff1681611a283361157e565b611a329190614387565b1115611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a9061401d565b60405180910390fd5b60005b83811015611aa257611a8f33611a8a612820565b61283b565b8080611a9a906145e6565b915050611a76565b505050600160078190555050565b611ac1611abb61219d565b83612420565b611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af79061419d565b60405180910390fd5b611b0c848484846129c6565b50505050565b60026007541415611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906141dd565b60405180910390fd5b6002600781905550611b6861219d565b73ffffffffffffffffffffffffffffffffffffffff16611b866116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd39061411d565b60405180910390fd5b81819050600b5481600d54611bf19190614387565b1115611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2990613f9d565b60405180910390fd5b600a5481611c406008612125565b611c4a9190614387565b1115611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c829061415d565b60405180910390fd5b600083839050905080600d6000828254611ca59190614387565b9250508190555060005b81811015611d2857611d15858583818110611cf3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611d089190613460565b611d10612820565b61283b565b8080611d20906145e6565b915050611caf565b50505060016007819055505050565b600a5481565b6060806012611d4b84612a22565b60098110611d82577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d2b8035a8460246000878152602001908152602001600020600101546040518363ffffffff1660e01b8152600401611df4929190614218565b60006040518083038186803b158015611e0c57600080fd5b505afa158015611e20573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611e4991906137ef565b905060008190506000611e8c611e5e866113d1565b611e6784612a7c565b604051602001611e78929190613df3565b604051602081830303815290604052612a7c565b9050600081604051602001611ea19190613e4e565b604051602081830303815290604052905080945050505050919050565b60246020528060005260406000206000915090508060000154908060010154905082565b611eea61219d565b73ffffffffffffffffffffffffffffffffffffffff16611f086116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f559061411d565b60405180910390fd5b611f6783610998565b611f70826112ac565b611f7981610df2565b611f81610d44565b43600f81905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61202961219d565b73ffffffffffffffffffffffffffffffffffffffff166120476116ca565b73ffffffffffffffffffffffffffffffffffffffff161461209d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120949061411d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490613f5d565b60405180910390fd5b6121168161275a565b50565b600c5481565b600d5481565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612284836111fa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6122d261219d565b73ffffffffffffffffffffffffffffffffffffffff166122f06116ca565b73ffffffffffffffffffffffffffffffffffffffff1614612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d9061411d565b60405180910390fd5b6000600f54436123569190614468565b90506000600e548261236891906143dd565b905060005b81811161241a57600061237f85612c3a565b90506000600982846123919190614387565b61239b9190614663565b9050601b81600981106123d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01546024600088815260200190815260200160002060010160008282546123fe9190614387565b9250508190555050508080612412906145e6565b91505061236d565b50505050565b600061242b826121a5565b61246a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124619061403d565b60405180910390fd5b6000612475836111fa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124e457508373ffffffffffffffffffffffffffffffffffffffff166124cc84610b94565b73ffffffffffffffffffffffffffffffffffffffff16145b806124f557506124f48185611f8d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661251e826111fa565b73ffffffffffffffffffffffffffffffffffffffff1614612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b9061413d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125db90613fdd565b60405180910390fd5b6125ef838383612c7c565b6125fa600082612211565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461264a9190614468565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126a19190614387565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061282c6008612c81565b6128366008612125565b905090565b612855828260405180602001604052806000815250612c97565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bf90613ffd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129b99190613f00565b60405180910390a3505050565b6129d18484846124fe565b6129dd84848484612cf2565b612a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1390613f3d565b60405180910390fd5b50505050565b600080600f5443612a339190614468565b90506000600e5482612a4591906143dd565b90506000612a5285612c3a565b9050600060098284612a649190614387565b612a6e9190614663565b905080945050505050919050565b60606000825190506000811415612aa55760405180602001604052806000815250915050612c35565b60006003600283612ab69190614387565b612ac091906143dd565b6004612acc919061440e565b90506000602082612add9190614387565b67ffffffffffffffff811115612b1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b4e5781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614eee604091399050600181016020830160005b86811015612bf25760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612b79565b506003860660018114612c0c5760028114612c1c57612c27565b613d3d60f01b6002830352612c27565b603d60f81b60018303525b508484525050819450505050505b919050565b60006009601183604051602001612c52929190613dcb565b6040516020818303038152906040528051906020012060001c612c759190614663565b9050919050565b505050565b6001816000016000828254019250508190555050565b612ca18383612e89565b612cae6000848484612cf2565b612ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce490613f3d565b60405180910390fd5b505050565b6000612d138473ffffffffffffffffffffffffffffffffffffffff16613057565b15612e7c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d3c61219d565b8786866040518563ffffffff1660e01b8152600401612d5e9493929190613e8b565b602060405180830381600087803b158015612d7857600080fd5b505af1925050508015612da957506040513d601f19601f82011682018060405250810190612da6919061375c565b60015b612e2c573d8060008114612dd9576040519150601f19603f3d011682016040523d82523d6000602084013e612dde565b606091505b50600081511415612e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1b90613f3d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e81565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef0906140bd565b60405180910390fd5b612f02816121a5565b15612f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3990613f7d565b60405180910390fd5b612f4e60008383612c7c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f9e9190614387565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461307690614583565b90600052602060002090601f01602090048101928261309857600085556130df565b82601f106130b157805160ff19168380011785556130df565b828001600101855582156130df579182015b828111156130de5782518255916020019190600101906130c3565b5b5090506130ec91906130f0565b5090565b5b808211156131095760008160009055506001016130f1565b5090565b600061312061311b84614281565b61425c565b9050808285602086028201111561313657600080fd5b60005b85811015613166578161314c88826133cd565b845260208401935060208301925050600181019050613139565b5050509392505050565b600061318361317e846142a7565b61425c565b9050808285602086028201111561319957600080fd5b60005b858110156131c957816131af8882613436565b84526020840193506020830192505060018101905061319c565b5050509392505050565b60006131e66131e1846142cd565b61425c565b9050828152602081018484840111156131fe57600080fd5b613209848285614541565b509392505050565b600061322461321f846142fe565b61425c565b90508281526020810184848401111561323c57600080fd5b613247848285614541565b509392505050565b600061326261325d846142fe565b61425c565b90508281526020810184848401111561327a57600080fd5b613285848285614550565b509392505050565b60008135905061329c81614e63565b92915050565b60008083601f8401126132b457600080fd5b8235905067ffffffffffffffff8111156132cd57600080fd5b6020830191508360208202830111156132e557600080fd5b9250929050565b600082601f8301126132fd57600080fd5b600961330a84828561310d565b91505092915050565b600082601f83011261332457600080fd5b6009613331848285613170565b91505092915050565b60008135905061334981614e7a565b92915050565b60008151905061335e81614e7a565b92915050565b60008135905061337381614e91565b92915050565b60008151905061338881614e91565b92915050565b600082601f83011261339f57600080fd5b81356133af8482602086016131d3565b91505092915050565b6000813590506133c781614ea8565b92915050565b6000813590506133dc81614ebf565b92915050565b600082601f8301126133f357600080fd5b8135613403848260208601613211565b91505092915050565b600082601f83011261341d57600080fd5b815161342d84826020860161324f565b91505092915050565b60008135905061344581614ed6565b92915050565b60008151905061345a81614ed6565b92915050565b60006020828403121561347257600080fd5b60006134808482850161328d565b91505092915050565b6000806040838503121561349c57600080fd5b60006134aa8582860161328d565b92505060206134bb8582860161328d565b9150509250929050565b6000806000606084860312156134da57600080fd5b60006134e88682870161328d565b93505060206134f98682870161328d565b925050604061350a86828701613436565b9150509250925092565b6000806000806080858703121561352a57600080fd5b60006135388782880161328d565b94505060206135498782880161328d565b935050604061355a87828801613436565b925050606085013567ffffffffffffffff81111561357757600080fd5b6135838782880161338e565b91505092959194509250565b600080604083850312156135a257600080fd5b60006135b08582860161328d565b92505060206135c18582860161333a565b9150509250929050565b600080604083850312156135de57600080fd5b60006135ec8582860161328d565b92505060206135fd85828601613436565b9150509250929050565b6000806020838503121561361a57600080fd5b600083013567ffffffffffffffff81111561363457600080fd5b613640858286016132a2565b92509250509250929050565b6000610120828403121561365f57600080fd5b600061366d848285016132ec565b91505092915050565b6000806000610260848603121561368c57600080fd5b600061369a868287016132ec565b9350506101206136ac86828701613313565b92505061024084013567ffffffffffffffff8111156136ca57600080fd5b6136d6868287016133e2565b9150509250925092565b600061012082840312156136f357600080fd5b600061370184828501613313565b91505092915050565b60006020828403121561371c57600080fd5b600061372a8482850161334f565b91505092915050565b60006020828403121561374557600080fd5b600061375384828501613364565b91505092915050565b60006020828403121561376e57600080fd5b600061377c84828501613379565b91505092915050565b60006020828403121561379757600080fd5b60006137a5848285016133b8565b91505092915050565b6000602082840312156137c057600080fd5b600082013567ffffffffffffffff8111156137da57600080fd5b6137e6848285016133e2565b91505092915050565b60006020828403121561380157600080fd5b600082015167ffffffffffffffff81111561381b57600080fd5b6138278482850161340c565b91505092915050565b60006020828403121561384257600080fd5b600061385084828501613436565b91505092915050565b60006020828403121561386b57600080fd5b60006138798482850161344b565b91505092915050565b61388b8161449c565b82525050565b61389a816144ae565b82525050565b60006138ab82614344565b6138b5818561435a565b93506138c5818560208601614550565b6138ce81614750565b840191505092915050565b60006138e48261434f565b6138ee818561436b565b93506138fe818560208601614550565b61390781614750565b840191505092915050565b600061391d8261434f565b613927818561437c565b9350613937818560208601614550565b80840191505092915050565b6000815461395081614583565b61395a818661437c565b945060018216600081146139755760018114613986576139b9565b60ff198316865281860193506139b9565b61398f8561432f565b60005b838110156139b157815481890152600182019150602081019050613992565b838801955050505b50505092915050565b60006139cf60138361437c565b91506139da82614761565b601382019050919050565b60006139f260328361436b565b91506139fd8261478a565b604082019050919050565b6000613a1560268361436b565b9150613a20826147d9565b604082019050919050565b6000613a38601c8361436b565b9150613a4382614828565b602082019050919050565b6000613a5b602b8361437c565b9150613a6682614851565b602b82019050919050565b6000613a7e60238361436b565b9150613a89826148a0565b604082019050919050565b6000613aa160288361436b565b9150613aac826148ef565b604082019050919050565b6000613ac460248361436b565b9150613acf8261493e565b604082019050919050565b6000613ae760198361436b565b9150613af28261498d565b602082019050919050565b6000613b0a601e8361436b565b9150613b15826149b6565b602082019050919050565b6000613b2d60038361437c565b9150613b38826149df565b600382019050919050565b6000613b50602c8361436b565b9150613b5b82614a08565b604082019050919050565b6000613b7360388361436b565b9150613b7e82614a57565b604082019050919050565b6000613b96602a8361436b565b9150613ba182614aa6565b604082019050919050565b6000613bb960298361436b565b9150613bc482614af5565b604082019050919050565b6000613bdc60218361437c565b9150613be782614b44565b602182019050919050565b6000613bff60208361436b565b9150613c0a82614b93565b602082019050919050565b6000613c22601a8361436b565b9150613c2d82614bbc565b602082019050919050565b6000613c45602c8361436b565b9150613c5082614be5565b604082019050919050565b6000613c6860208361436b565b9150613c7382614c34565b602082019050919050565b6000613c8b60298361436b565b9150613c9682614c5d565b604082019050919050565b6000613cae60278361437c565b9150613cb982614cac565b602782019050919050565b6000613cd160238361436b565b9150613cdc82614cfb565b604082019050919050565b6000613cf460218361436b565b9150613cff82614d4a565b604082019050919050565b6000613d17601d8361437c565b9150613d2282614d99565b601d82019050919050565b6000613d3a60318361436b565b9150613d4582614dc2565b604082019050919050565b6000613d5d60188361436b565b9150613d6882614e11565b602082019050919050565b6000613d80601f8361436b565b9150613d8b82614e3a565b602082019050919050565b613d9f8161452a565b82525050565b613db6613db18261452a565b614659565b82525050565b613dc581614534565b82525050565b6000613dd78285613943565b9150613de38284613da5565b6020820191508190509392505050565b6000613dfe82613bcf565b9150613e0a8285613912565b9150613e15826139c2565b9150613e2082613a4e565b9150613e2b82613ca1565b9150613e378284613912565b9150613e4282613b20565b91508190509392505050565b6000613e5982613d0a565b9150613e658284613912565b915081905092915050565b6000602082019050613e856000830184613882565b92915050565b6000608082019050613ea06000830187613882565b613ead6020830186613882565b613eba6040830185613d96565b8181036060830152613ecc81846138a0565b905095945050505050565b6000604082019050613eec6000830185613882565b613ef96020830184613d96565b9392505050565b6000602082019050613f156000830184613891565b92915050565b60006020820190508181036000830152613f3581846138d9565b905092915050565b60006020820190508181036000830152613f56816139e5565b9050919050565b60006020820190508181036000830152613f7681613a08565b9050919050565b60006020820190508181036000830152613f9681613a2b565b9050919050565b60006020820190508181036000830152613fb681613a71565b9050919050565b60006020820190508181036000830152613fd681613a94565b9050919050565b60006020820190508181036000830152613ff681613ab7565b9050919050565b6000602082019050818103600083015261401681613ada565b9050919050565b6000602082019050818103600083015261403681613afd565b9050919050565b6000602082019050818103600083015261405681613b43565b9050919050565b6000602082019050818103600083015261407681613b66565b9050919050565b6000602082019050818103600083015261409681613b89565b9050919050565b600060208201905081810360008301526140b681613bac565b9050919050565b600060208201905081810360008301526140d681613bf2565b9050919050565b600060208201905081810360008301526140f681613c15565b9050919050565b6000602082019050818103600083015261411681613c38565b9050919050565b6000602082019050818103600083015261413681613c5b565b9050919050565b6000602082019050818103600083015261415681613c7e565b9050919050565b6000602082019050818103600083015261417681613cc4565b9050919050565b6000602082019050818103600083015261419681613ce7565b9050919050565b600060208201905081810360008301526141b681613d2d565b9050919050565b600060208201905081810360008301526141d681613d50565b9050919050565b600060208201905081810360008301526141f681613d73565b9050919050565b60006020820190506142126000830184613d96565b92915050565b600060408201905061422d6000830185613d96565b61423a6020830184613d96565b9392505050565b60006020820190506142566000830184613dbc565b92915050565b6000614266614277565b905061427282826145b5565b919050565b6000604051905090565b600067ffffffffffffffff82111561429c5761429b614721565b5b602082029050919050565b600067ffffffffffffffff8211156142c2576142c1614721565b5b602082029050919050565b600067ffffffffffffffff8211156142e8576142e7614721565b5b6142f182614750565b9050602081019050919050565b600067ffffffffffffffff82111561431957614318614721565b5b61432282614750565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006143928261452a565b915061439d8361452a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143d2576143d1614694565b5b828201905092915050565b60006143e88261452a565b91506143f38361452a565b925082614403576144026146c3565b5b828204905092915050565b60006144198261452a565b91506144248361452a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561445d5761445c614694565b5b828202905092915050565b60006144738261452a565b915061447e8361452a565b92508282101561449157614490614694565b5b828203905092915050565b60006144a78261450a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006144f18261449c565b9050919050565b60006145038261449c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561456e578082015181840152602081019050614553565b8381111561457d576000848401525b50505050565b6000600282049050600182168061459b57607f821691505b602082108114156145af576145ae6146f2565b5b50919050565b6145be82614750565b810181811067ffffffffffffffff821117156145dd576145dc614721565b5b80604052505050565b60006145f18261452a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561462457614623614694565b5b600182019050919050565b600061463a82614534565b915060ff82141561464e5761464d614694565b5b600182019050919050565b6000819050919050565b600061466e8261452a565b91506146798361452a565b925082614689576146886146c3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f222c20226465736372697074696f6e223a202200000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f45786369746520436861696e2042696b6572732069732061206f6e2d6368616960008201527f6e204e46542067616d652e000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682042696b65727a2072656d61696e696e6720746f206760008201527f6966740000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820467265652042696b65727a2072656d61696e696e6760008201527f20746f206d696e74000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d617820667265652062696b65727a20746f206d696e742069732074776f0000600082015250565b7f22207d0000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a2022436861696e2042696b65727a202d204578636974652060008201527f2300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d61782062696b65727a20746f206d696e742069732066697665000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b60008201527f6261736536342c00000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682042696b65727a2072656d61696e696e6720746f206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614e6c8161449c565b8114614e7757600080fd5b50565b614e83816144ae565b8114614e8e57600080fd5b50565b614e9a816144ba565b8114614ea557600080fd5b50565b614eb1816144e6565b8114614ebc57600080fd5b50565b614ec8816144f8565b8114614ed357600080fd5b50565b614edf8161452a565b8114614eea57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220f01b08bf85d5e1f695d7dd15accf2a5b36b2490a226999d24d2c22113afb467a64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063715018a611610123578063b88d4fde116100ab578063e8247f911161006f578063e8247f91146107d1578063e985e9c5146107fa578063f2fde38b14610837578063f45c56eb14610860578063f613927d1461088b57610225565b8063b88d4fde146106d9578063b8ab82d814610702578063c54eef391461072b578063c87b56dd14610756578063e58348dc1461079357610225565b806395d89b41116100f257806395d89b411461061557806398710d1e14610640578063a0712d681461066b578063a22cb46514610687578063a4146733146106b057610225565b8063715018a61461057d578063787a08a6146105945780637feb7450146105bf5780638da5cb5b146105ea57610225565b806323b872dd116101b15780634fc3f41a116101755780634fc3f41a146104745780636352211e1461049d57806368c09e88146104da5780636900a3ae1461050357806370a082311461054057610225565b806323b872dd146103b75780633ccfd60b146103e057806342842e0e146103f757806348cd4cb11461042057806349df728c1461044b57610225565b8063081812fc116101f8578063081812fc146102e6578063095ea7b3146103235780630f2cdd6c1461034c57806310c14103146103775780631837c9891461038e57610225565b806301ffc9a71461022a5780630518e9f21461026757806306fdde031461029057806307e89ec0146102bb575b600080fd5b34801561023657600080fd5b50610251600480360381019061024c9190613733565b6108b6565b60405161025e9190613f00565b60405180910390f35b34801561027357600080fd5b5061028e6004803603810190610289919061364c565b610998565b005b34801561029c57600080fd5b506102a5610af7565b6040516102b29190613f1b565b60405180910390f35b3480156102c757600080fd5b506102d0610b89565b6040516102dd91906141fd565b60405180910390f35b3480156102f257600080fd5b5061030d60048036038101906103089190613830565b610b94565b60405161031a9190613e70565b60405180910390f35b34801561032f57600080fd5b5061034a600480360381019061034591906135cb565b610c19565b005b34801561035857600080fd5b50610361610d31565b60405161036e9190614241565b60405180910390f35b34801561038357600080fd5b5061038c610d44565b005b34801561039a57600080fd5b506103b560048036038101906103b091906137ae565b610df2565b005b3480156103c357600080fd5b506103de60048036038101906103d991906134c5565b610e88565b005b3480156103ec57600080fd5b506103f5610ee8565b005b34801561040357600080fd5b5061041e600480360381019061041991906134c5565b610fb3565b005b34801561042c57600080fd5b50610435610fd3565b60405161044291906141fd565b60405180910390f35b34801561045757600080fd5b50610472600480360381019061046d9190613785565b610fd9565b005b34801561048057600080fd5b5061049b60048036038101906104969190613830565b611174565b005b3480156104a957600080fd5b506104c460048036038101906104bf9190613830565b6111fa565b6040516104d19190613e70565b60405180910390f35b3480156104e657600080fd5b5061050160048036038101906104fc91906136e0565b6112ac565b005b34801561050f57600080fd5b5061052a60048036038101906105259190613830565b6113d1565b6040516105379190613f1b565b60405180910390f35b34801561054c57600080fd5b5061056760048036038101906105629190613460565b61157e565b60405161057491906141fd565b60405180910390f35b34801561058957600080fd5b50610592611636565b005b3480156105a057600080fd5b506105a96116be565b6040516105b691906141fd565b60405180910390f35b3480156105cb57600080fd5b506105d46116c4565b6040516105e191906141fd565b60405180910390f35b3480156105f657600080fd5b506105ff6116ca565b60405161060c9190613e70565b60405180910390f35b34801561062157600080fd5b5061062a6116f4565b6040516106379190613f1b565b60405180910390f35b34801561064c57600080fd5b50610655611786565b6040516106629190614241565b60405180910390f35b61068560048036038101906106809190613830565b611799565b005b34801561069357600080fd5b506106ae60048036038101906106a9919061358f565b61194c565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190613830565b611962565b005b3480156106e557600080fd5b5061070060048036038101906106fb9190613514565b611ab0565b005b34801561070e57600080fd5b5061072960048036038101906107249190613607565b611b12565b005b34801561073757600080fd5b50610740611d37565b60405161074d91906141fd565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190613830565b611d3d565b60405161078a9190613f1b565b60405180910390f35b34801561079f57600080fd5b506107ba60048036038101906107b59190613830565b611ebe565b6040516107c8929190614218565b60405180910390f35b3480156107dd57600080fd5b506107f860048036038101906107f39190613676565b611ee2565b005b34801561080657600080fd5b50610821600480360381019061081c9190613489565b611f8d565b60405161082e9190613f00565b60405180910390f35b34801561084357600080fd5b5061085e60048036038101906108599190613460565b612021565b005b34801561086c57600080fd5b50610875612119565b60405161088291906141fd565b60405180910390f35b34801561089757600080fd5b506108a061211f565b6040516108ad91906141fd565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061098157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610991575061099082612133565b5b9050919050565b6109a061219d565b73ffffffffffffffffffffffffffffffffffffffff166109be6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0b9061411d565b60405180910390fd5b60005b60098160ff161015610af357818160ff1660098110610a5f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015160128260ff1660098110610aa1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080610aeb9061462f565b915050610a17565b5050565b606060008054610b0690614583565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3290614583565b8015610b7f5780601f10610b5457610100808354040283529160200191610b7f565b820191906000526020600020905b815481529060010190602001808311610b6257829003601f168201915b5050505050905090565b66470de4df82000081565b6000610b9f826121a5565b610bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd5906140fd565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c24826111fa565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8c9061417d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb461219d565b73ffffffffffffffffffffffffffffffffffffffff161480610ce35750610ce281610cdd61219d565b611f8d565b5b610d22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d199061405d565b60405180910390fd5b610d2c8383612211565b505050565b601060009054906101000a900460ff1681565b610d4c61219d565b73ffffffffffffffffffffffffffffffffffffffff16610d6a6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db79061411d565b60405180910390fd5b60005b610dcd6008612125565b8111610def57610ddc816122ca565b8080610de7906145e6565b915050610dc3565b50565b610dfa61219d565b73ffffffffffffffffffffffffffffffffffffffff16610e186116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e659061411d565b60405180910390fd5b8060119080519060200190610e8492919061306a565b5050565b610e99610e9361219d565b82612420565b610ed8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecf9061419d565b60405180910390fd5b610ee38383836124fe565b505050565b610ef061219d565b73ffffffffffffffffffffffffffffffffffffffff16610f0e6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614610f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5b9061411d565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610faf573d6000803e3d6000fd5b5050565b610fce83838360405180602001604052806000815250611ab0565b505050565b600f5481565b610fe161219d565b73ffffffffffffffffffffffffffffffffffffffff16610fff6116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c9061411d565b60405180910390fd5b60008173ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016110909190613e70565b60206040518083038186803b1580156110a857600080fd5b505afa1580156110bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e09190613859565b90508173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b815260040161111d929190613ed7565b602060405180830381600087803b15801561113757600080fd5b505af115801561114b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061116f919061370a565b505050565b61117c61219d565b73ffffffffffffffffffffffffffffffffffffffff1661119a6116ca565b73ffffffffffffffffffffffffffffffffffffffff16146111f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e79061411d565b60405180910390fd5b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156112a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129a9061409d565b60405180910390fd5b80915050919050565b6112b461219d565b73ffffffffffffffffffffffffffffffffffffffff166112d26116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611328576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131f9061411d565b60405180910390fd5b60005b60098160ff1610156113cd57818160ff1660098110611373577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020020151601b8260ff16600981106113b5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b018190555080806113c59061462f565b91505061132b565b5050565b60606000821415611419576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611579565b600082905060005b6000821461144b578080611434906145e6565b915050600a8261144491906143dd565b9150611421565b60008167ffffffffffffffff81111561148d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156114bf5781602001600182028036833780820191505090505b5090505b60008514611572576001826114d89190614468565b9150600a856114e79190614663565b60306114f39190614387565b60f81b81838151811061152f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561156b91906143dd565b94506114c3565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e69061407d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61163e61219d565b73ffffffffffffffffffffffffffffffffffffffff1661165c6116ca565b73ffffffffffffffffffffffffffffffffffffffff16146116b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a99061411d565b60405180910390fd5b6116bc600061275a565b565b600e5481565b600b5481565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461170390614583565b80601f016020809104026020016040519081016040528092919081815260200182805461172f90614583565b801561177c5780601f106117515761010080835404028352916020019161177c565b820191906000526020600020905b81548152906001019060200180831161175f57829003601f168201915b5050505050905090565b601060019054906101000a900460ff1681565b600260075414156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d6906141dd565b60405180910390fd5b600260078190555080600b54600a546117f89190614468565b816118036008612125565b61180d9190614387565b111561184e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118459061415d565b60405180910390fd5b81601060009054906101000a900460ff1660ff168161186c3361157e565b6118769190614387565b11156118b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ae906140dd565b60405180910390fd5b66470de4df820000833481836118cd919061440e565b1461190d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611904906141bd565b60405180910390fd5b60005b8581101561193c5761192933611924612820565b61283b565b8080611934906145e6565b915050611910565b5050505050600160078190555050565b61195e61195761219d565b8383612859565b5050565b600260075414156119a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199f906141dd565b60405180910390fd5b600260078190555080600c54816119bf6008612125565b6119c99190614387565b1115611a0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0190613fbd565b60405180910390fd5b81601060009054906101000a900460ff1660ff1681611a283361157e565b611a329190614387565b1115611a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6a9061401d565b60405180910390fd5b60005b83811015611aa257611a8f33611a8a612820565b61283b565b8080611a9a906145e6565b915050611a76565b505050600160078190555050565b611ac1611abb61219d565b83612420565b611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af79061419d565b60405180910390fd5b611b0c848484846129c6565b50505050565b60026007541415611b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4f906141dd565b60405180910390fd5b6002600781905550611b6861219d565b73ffffffffffffffffffffffffffffffffffffffff16611b866116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd39061411d565b60405180910390fd5b81819050600b5481600d54611bf19190614387565b1115611c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2990613f9d565b60405180910390fd5b600a5481611c406008612125565b611c4a9190614387565b1115611c8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c829061415d565b60405180910390fd5b600083839050905080600d6000828254611ca59190614387565b9250508190555060005b81811015611d2857611d15858583818110611cf3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611d089190613460565b611d10612820565b61283b565b8080611d20906145e6565b915050611caf565b50505060016007819055505050565b600a5481565b6060806012611d4b84612a22565b60098110611d82577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d2b8035a8460246000878152602001908152602001600020600101546040518363ffffffff1660e01b8152600401611df4929190614218565b60006040518083038186803b158015611e0c57600080fd5b505afa158015611e20573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611e4991906137ef565b905060008190506000611e8c611e5e866113d1565b611e6784612a7c565b604051602001611e78929190613df3565b604051602081830303815290604052612a7c565b9050600081604051602001611ea19190613e4e565b604051602081830303815290604052905080945050505050919050565b60246020528060005260406000206000915090508060000154908060010154905082565b611eea61219d565b73ffffffffffffffffffffffffffffffffffffffff16611f086116ca565b73ffffffffffffffffffffffffffffffffffffffff1614611f5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f559061411d565b60405180910390fd5b611f6783610998565b611f70826112ac565b611f7981610df2565b611f81610d44565b43600f81905550505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61202961219d565b73ffffffffffffffffffffffffffffffffffffffff166120476116ca565b73ffffffffffffffffffffffffffffffffffffffff161461209d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120949061411d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561210d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161210490613f5d565b60405180910390fd5b6121168161275a565b50565b600c5481565b600d5481565b600081600001549050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612284836111fa565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6122d261219d565b73ffffffffffffffffffffffffffffffffffffffff166122f06116ca565b73ffffffffffffffffffffffffffffffffffffffff1614612346576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161233d9061411d565b60405180910390fd5b6000600f54436123569190614468565b90506000600e548261236891906143dd565b905060005b81811161241a57600061237f85612c3a565b90506000600982846123919190614387565b61239b9190614663565b9050601b81600981106123d7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01546024600088815260200190815260200160002060010160008282546123fe9190614387565b9250508190555050508080612412906145e6565b91505061236d565b50505050565b600061242b826121a5565b61246a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124619061403d565b60405180910390fd5b6000612475836111fa565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806124e457508373ffffffffffffffffffffffffffffffffffffffff166124cc84610b94565b73ffffffffffffffffffffffffffffffffffffffff16145b806124f557506124f48185611f8d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661251e826111fa565b73ffffffffffffffffffffffffffffffffffffffff1614612574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256b9061413d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156125e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125db90613fdd565b60405180910390fd5b6125ef838383612c7c565b6125fa600082612211565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461264a9190614468565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126a19190614387565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600061282c6008612c81565b6128366008612125565b905090565b612855828260405180602001604052806000815250612c97565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bf90613ffd565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129b99190613f00565b60405180910390a3505050565b6129d18484846124fe565b6129dd84848484612cf2565b612a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a1390613f3d565b60405180910390fd5b50505050565b600080600f5443612a339190614468565b90506000600e5482612a4591906143dd565b90506000612a5285612c3a565b9050600060098284612a649190614387565b612a6e9190614663565b905080945050505050919050565b60606000825190506000811415612aa55760405180602001604052806000815250915050612c35565b60006003600283612ab69190614387565b612ac091906143dd565b6004612acc919061440e565b90506000602082612add9190614387565b67ffffffffffffffff811115612b1c577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612b4e5781602001600182028036833780820191505090505b5090506000604051806060016040528060408152602001614eee604091399050600181016020830160005b86811015612bf25760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b90508084526004840193505050612b79565b506003860660018114612c0c5760028114612c1c57612c27565b613d3d60f01b6002830352612c27565b603d60f81b60018303525b508484525050819450505050505b919050565b60006009601183604051602001612c52929190613dcb565b6040516020818303038152906040528051906020012060001c612c759190614663565b9050919050565b505050565b6001816000016000828254019250508190555050565b612ca18383612e89565b612cae6000848484612cf2565b612ced576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ce490613f3d565b60405180910390fd5b505050565b6000612d138473ffffffffffffffffffffffffffffffffffffffff16613057565b15612e7c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d3c61219d565b8786866040518563ffffffff1660e01b8152600401612d5e9493929190613e8b565b602060405180830381600087803b158015612d7857600080fd5b505af1925050508015612da957506040513d601f19601f82011682018060405250810190612da6919061375c565b60015b612e2c573d8060008114612dd9576040519150601f19603f3d011682016040523d82523d6000602084013e612dde565b606091505b50600081511415612e24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e1b90613f3d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e81565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef0906140bd565b60405180910390fd5b612f02816121a5565b15612f42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f3990613f7d565b60405180910390fd5b612f4e60008383612c7c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612f9e9190614387565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b82805461307690614583565b90600052602060002090601f01602090048101928261309857600085556130df565b82601f106130b157805160ff19168380011785556130df565b828001600101855582156130df579182015b828111156130de5782518255916020019190600101906130c3565b5b5090506130ec91906130f0565b5090565b5b808211156131095760008160009055506001016130f1565b5090565b600061312061311b84614281565b61425c565b9050808285602086028201111561313657600080fd5b60005b85811015613166578161314c88826133cd565b845260208401935060208301925050600181019050613139565b5050509392505050565b600061318361317e846142a7565b61425c565b9050808285602086028201111561319957600080fd5b60005b858110156131c957816131af8882613436565b84526020840193506020830192505060018101905061319c565b5050509392505050565b60006131e66131e1846142cd565b61425c565b9050828152602081018484840111156131fe57600080fd5b613209848285614541565b509392505050565b600061322461321f846142fe565b61425c565b90508281526020810184848401111561323c57600080fd5b613247848285614541565b509392505050565b600061326261325d846142fe565b61425c565b90508281526020810184848401111561327a57600080fd5b613285848285614550565b509392505050565b60008135905061329c81614e63565b92915050565b60008083601f8401126132b457600080fd5b8235905067ffffffffffffffff8111156132cd57600080fd5b6020830191508360208202830111156132e557600080fd5b9250929050565b600082601f8301126132fd57600080fd5b600961330a84828561310d565b91505092915050565b600082601f83011261332457600080fd5b6009613331848285613170565b91505092915050565b60008135905061334981614e7a565b92915050565b60008151905061335e81614e7a565b92915050565b60008135905061337381614e91565b92915050565b60008151905061338881614e91565b92915050565b600082601f83011261339f57600080fd5b81356133af8482602086016131d3565b91505092915050565b6000813590506133c781614ea8565b92915050565b6000813590506133dc81614ebf565b92915050565b600082601f8301126133f357600080fd5b8135613403848260208601613211565b91505092915050565b600082601f83011261341d57600080fd5b815161342d84826020860161324f565b91505092915050565b60008135905061344581614ed6565b92915050565b60008151905061345a81614ed6565b92915050565b60006020828403121561347257600080fd5b60006134808482850161328d565b91505092915050565b6000806040838503121561349c57600080fd5b60006134aa8582860161328d565b92505060206134bb8582860161328d565b9150509250929050565b6000806000606084860312156134da57600080fd5b60006134e88682870161328d565b93505060206134f98682870161328d565b925050604061350a86828701613436565b9150509250925092565b6000806000806080858703121561352a57600080fd5b60006135388782880161328d565b94505060206135498782880161328d565b935050604061355a87828801613436565b925050606085013567ffffffffffffffff81111561357757600080fd5b6135838782880161338e565b91505092959194509250565b600080604083850312156135a257600080fd5b60006135b08582860161328d565b92505060206135c18582860161333a565b9150509250929050565b600080604083850312156135de57600080fd5b60006135ec8582860161328d565b92505060206135fd85828601613436565b9150509250929050565b6000806020838503121561361a57600080fd5b600083013567ffffffffffffffff81111561363457600080fd5b613640858286016132a2565b92509250509250929050565b6000610120828403121561365f57600080fd5b600061366d848285016132ec565b91505092915050565b6000806000610260848603121561368c57600080fd5b600061369a868287016132ec565b9350506101206136ac86828701613313565b92505061024084013567ffffffffffffffff8111156136ca57600080fd5b6136d6868287016133e2565b9150509250925092565b600061012082840312156136f357600080fd5b600061370184828501613313565b91505092915050565b60006020828403121561371c57600080fd5b600061372a8482850161334f565b91505092915050565b60006020828403121561374557600080fd5b600061375384828501613364565b91505092915050565b60006020828403121561376e57600080fd5b600061377c84828501613379565b91505092915050565b60006020828403121561379757600080fd5b60006137a5848285016133b8565b91505092915050565b6000602082840312156137c057600080fd5b600082013567ffffffffffffffff8111156137da57600080fd5b6137e6848285016133e2565b91505092915050565b60006020828403121561380157600080fd5b600082015167ffffffffffffffff81111561381b57600080fd5b6138278482850161340c565b91505092915050565b60006020828403121561384257600080fd5b600061385084828501613436565b91505092915050565b60006020828403121561386b57600080fd5b60006138798482850161344b565b91505092915050565b61388b8161449c565b82525050565b61389a816144ae565b82525050565b60006138ab82614344565b6138b5818561435a565b93506138c5818560208601614550565b6138ce81614750565b840191505092915050565b60006138e48261434f565b6138ee818561436b565b93506138fe818560208601614550565b61390781614750565b840191505092915050565b600061391d8261434f565b613927818561437c565b9350613937818560208601614550565b80840191505092915050565b6000815461395081614583565b61395a818661437c565b945060018216600081146139755760018114613986576139b9565b60ff198316865281860193506139b9565b61398f8561432f565b60005b838110156139b157815481890152600182019150602081019050613992565b838801955050505b50505092915050565b60006139cf60138361437c565b91506139da82614761565b601382019050919050565b60006139f260328361436b565b91506139fd8261478a565b604082019050919050565b6000613a1560268361436b565b9150613a20826147d9565b604082019050919050565b6000613a38601c8361436b565b9150613a4382614828565b602082019050919050565b6000613a5b602b8361437c565b9150613a6682614851565b602b82019050919050565b6000613a7e60238361436b565b9150613a89826148a0565b604082019050919050565b6000613aa160288361436b565b9150613aac826148ef565b604082019050919050565b6000613ac460248361436b565b9150613acf8261493e565b604082019050919050565b6000613ae760198361436b565b9150613af28261498d565b602082019050919050565b6000613b0a601e8361436b565b9150613b15826149b6565b602082019050919050565b6000613b2d60038361437c565b9150613b38826149df565b600382019050919050565b6000613b50602c8361436b565b9150613b5b82614a08565b604082019050919050565b6000613b7360388361436b565b9150613b7e82614a57565b604082019050919050565b6000613b96602a8361436b565b9150613ba182614aa6565b604082019050919050565b6000613bb960298361436b565b9150613bc482614af5565b604082019050919050565b6000613bdc60218361437c565b9150613be782614b44565b602182019050919050565b6000613bff60208361436b565b9150613c0a82614b93565b602082019050919050565b6000613c22601a8361436b565b9150613c2d82614bbc565b602082019050919050565b6000613c45602c8361436b565b9150613c5082614be5565b604082019050919050565b6000613c6860208361436b565b9150613c7382614c34565b602082019050919050565b6000613c8b60298361436b565b9150613c9682614c5d565b604082019050919050565b6000613cae60278361437c565b9150613cb982614cac565b602782019050919050565b6000613cd160238361436b565b9150613cdc82614cfb565b604082019050919050565b6000613cf460218361436b565b9150613cff82614d4a565b604082019050919050565b6000613d17601d8361437c565b9150613d2282614d99565b601d82019050919050565b6000613d3a60318361436b565b9150613d4582614dc2565b604082019050919050565b6000613d5d60188361436b565b9150613d6882614e11565b602082019050919050565b6000613d80601f8361436b565b9150613d8b82614e3a565b602082019050919050565b613d9f8161452a565b82525050565b613db6613db18261452a565b614659565b82525050565b613dc581614534565b82525050565b6000613dd78285613943565b9150613de38284613da5565b6020820191508190509392505050565b6000613dfe82613bcf565b9150613e0a8285613912565b9150613e15826139c2565b9150613e2082613a4e565b9150613e2b82613ca1565b9150613e378284613912565b9150613e4282613b20565b91508190509392505050565b6000613e5982613d0a565b9150613e658284613912565b915081905092915050565b6000602082019050613e856000830184613882565b92915050565b6000608082019050613ea06000830187613882565b613ead6020830186613882565b613eba6040830185613d96565b8181036060830152613ecc81846138a0565b905095945050505050565b6000604082019050613eec6000830185613882565b613ef96020830184613d96565b9392505050565b6000602082019050613f156000830184613891565b92915050565b60006020820190508181036000830152613f3581846138d9565b905092915050565b60006020820190508181036000830152613f56816139e5565b9050919050565b60006020820190508181036000830152613f7681613a08565b9050919050565b60006020820190508181036000830152613f9681613a2b565b9050919050565b60006020820190508181036000830152613fb681613a71565b9050919050565b60006020820190508181036000830152613fd681613a94565b9050919050565b60006020820190508181036000830152613ff681613ab7565b9050919050565b6000602082019050818103600083015261401681613ada565b9050919050565b6000602082019050818103600083015261403681613afd565b9050919050565b6000602082019050818103600083015261405681613b43565b9050919050565b6000602082019050818103600083015261407681613b66565b9050919050565b6000602082019050818103600083015261409681613b89565b9050919050565b600060208201905081810360008301526140b681613bac565b9050919050565b600060208201905081810360008301526140d681613bf2565b9050919050565b600060208201905081810360008301526140f681613c15565b9050919050565b6000602082019050818103600083015261411681613c38565b9050919050565b6000602082019050818103600083015261413681613c5b565b9050919050565b6000602082019050818103600083015261415681613c7e565b9050919050565b6000602082019050818103600083015261417681613cc4565b9050919050565b6000602082019050818103600083015261419681613ce7565b9050919050565b600060208201905081810360008301526141b681613d2d565b9050919050565b600060208201905081810360008301526141d681613d50565b9050919050565b600060208201905081810360008301526141f681613d73565b9050919050565b60006020820190506142126000830184613d96565b92915050565b600060408201905061422d6000830185613d96565b61423a6020830184613d96565b9392505050565b60006020820190506142566000830184613dbc565b92915050565b6000614266614277565b905061427282826145b5565b919050565b6000604051905090565b600067ffffffffffffffff82111561429c5761429b614721565b5b602082029050919050565b600067ffffffffffffffff8211156142c2576142c1614721565b5b602082029050919050565b600067ffffffffffffffff8211156142e8576142e7614721565b5b6142f182614750565b9050602081019050919050565b600067ffffffffffffffff82111561431957614318614721565b5b61432282614750565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006143928261452a565b915061439d8361452a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143d2576143d1614694565b5b828201905092915050565b60006143e88261452a565b91506143f38361452a565b925082614403576144026146c3565b5b828204905092915050565b60006144198261452a565b91506144248361452a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561445d5761445c614694565b5b828202905092915050565b60006144738261452a565b915061447e8361452a565b92508282101561449157614490614694565b5b828203905092915050565b60006144a78261450a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006144f18261449c565b9050919050565b60006145038261449c565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561456e578082015181840152602081019050614553565b8381111561457d576000848401525b50505050565b6000600282049050600182168061459b57607f821691505b602082108114156145af576145ae6146f2565b5b50919050565b6145be82614750565b810181811067ffffffffffffffff821117156145dd576145dc614721565b5b80604052505050565b60006145f18261452a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561462457614623614694565b5b600182019050919050565b600061463a82614534565b915060ff82141561464e5761464d614694565b5b600182019050919050565b6000819050919050565b600061466e8261452a565b91506146798361452a565b925082614689576146886146c3565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f222c20226465736372697074696f6e223a202200000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f45786369746520436861696e2042696b6572732069732061206f6e2d6368616960008201527f6e204e46542067616d652e000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682042696b65727a2072656d61696e696e6720746f206760008201527f6966740000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820467265652042696b65727a2072656d61696e696e6760008201527f20746f206d696e74000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4d617820667265652062696b65727a20746f206d696e742069732074776f0000600082015250565b7f22207d0000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f7b226e616d65223a2022436861696e2042696b65727a202d204578636974652060008201527f2300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4d61782062696b65727a20746f206d696e742069732066697665000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f222c2022696d616765223a2022646174613a696d6167652f7376672b786d6c3b60008201527f6261736536342c00000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f7567682042696b65727a2072656d61696e696e6720746f206d60008201527f696e740000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c75652073656e740000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b614e6c8161449c565b8114614e7757600080fd5b50565b614e83816144ae565b8114614e8e57600080fd5b50565b614e9a816144ba565b8114614ea557600080fd5b50565b614eb1816144e6565b8114614ebc57600080fd5b50565b614ec8816144f8565b8114614ed357600080fd5b50565b614edf8161452a565b8114614eea57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa2646970667358221220f01b08bf85d5e1f695d7dd15accf2a5b36b2490a226999d24d2c22113afb467a64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000007d0000000000000000000000000000000000000000000000000000000000000006400000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064

-----Decoded View---------------
Arg [0] : _maxBikerz (uint256): 2000
Arg [1] : _maxGiftedBikerz (uint256): 100
Arg [2] : _maxFreeBikerz (uint256): 1000
Arg [3] : createTricks (address[9]): 0xcFeEAB276c332ED8E68Ceb590F03377Fbd9F25d8,0xcFeEAB276c332ED8E68Ceb590F03377Fbd9F25d8,0xcFeEAB276c332ED8E68Ceb590F03377Fbd9F25d8,0xcFeEAB276c332ED8E68Ceb590F03377Fbd9F25d8,0xcFeEAB276c332ED8E68Ceb590F03377Fbd9F25d8,0xcFeEAB276c332ED8E68Ceb590F03377Fbd9F25d8,0xcFeEAB276c332ED8E68Ceb590F03377Fbd9F25d8,0xcFeEAB276c332ED8E68Ceb590F03377Fbd9F25d8,0xcFeEAB276c332ED8E68Ceb590F03377Fbd9F25d8
Arg [4] : vals (uint256[9]): 0,0,0,0,0,0,0,0,100

-----Encoded View---------------
21 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000064
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [3] : 000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8
Arg [4] : 000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8
Arg [5] : 000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8
Arg [6] : 000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8
Arg [7] : 000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8
Arg [8] : 000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8
Arg [9] : 000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8
Arg [10] : 000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8
Arg [11] : 000000000000000000000000cfeeab276c332ed8e68ceb590f03377fbd9f25d8
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [18] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [19] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000064


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

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