ETH Price: $3,383.53 (+0.07%)
Gas: 4 Gwei

Token

PeoplesCasino (PCT)
 

Overview

Max Total Supply

108 PCT

Holders

45

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
weddingminister.eth
Balance
3 PCT
0xb78e3e8bd36b3228322d0a9d3271b5fbb7997fa3
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

People's Casino allows you to purchase and run your own fully functional gambling application on the Ethereum blockchain. Each casino is a unique online gambling machine. You are responsible for supplying the house reserve, and solely benefit from all earnings.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PeoplesCasino

Compiler Version
v0.5.11+commit.c082d0b4

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-09-24
*/

// File: node_modules\openzeppelin-solidity\contracts\introspection\IERC165.sol

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * [EIP](https://eips.ethereum.org/EIPS/eip-165).
 *
 * 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
     * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
     * 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: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721.sol

pragma solidity ^0.5.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
contract IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

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

    /**
     * @dev Returns the owner of the NFT specified by `tokenId`.
     */
    function ownerOf(uint256 tokenId) public view returns (address owner);

    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * 
     *
     * Requirements:
     * - `from`, `to` cannot be zero.
     * - `tokenId` must be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this
     * NFT by either `approve` or `setApproveForAll`.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public;
    /**
     * @dev Transfers a specific NFT (`tokenId`) from one account (`from`) to
     * another (`to`).
     *
     * Requirements:
     * - If the caller is not `from`, it must be approved to move this NFT by
     * either `approve` or `setApproveForAll`.
     */
    function transferFrom(address from, address to, uint256 tokenId) public;
    function approve(address to, uint256 tokenId) public;
    function getApproved(uint256 tokenId) public view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) public;
    function isApprovedForAll(address owner, address operator) public view returns (bool);


    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public;
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721Receiver.sol

pragma solidity ^0.5.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
contract IERC721Receiver {
    /**
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     * after a `safeTransfer`. This function MUST return the function selector,
     * otherwise the caller will revert the transaction. The selector to be
     * returned can be obtained as `this.onERC721Received.selector`. This
     * function MAY throw to revert and reject the transfer.
     * Note: the ERC721 contract address is always the message sender.
     * @param operator The address which called `safeTransferFrom` function
     * @param from The address which previously owned the token
     * @param tokenId The NFT identifier which is being transferred
     * @param data Additional data with no specified format
     * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data)
    public returns (bytes4);
}

// File: node_modules\openzeppelin-solidity\contracts\math\SafeMath.sol

pragma solidity ^0.5.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

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

// File: node_modules\openzeppelin-solidity\contracts\utils\Address.sol

pragma solidity ^0.5.0;

/**
 * @dev Collection of functions related to the address type,
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}

// File: node_modules\openzeppelin-solidity\contracts\drafts\Counters.sol

pragma solidity ^0.5.0;


/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the SafeMath
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    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 {
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}

// File: node_modules\openzeppelin-solidity\contracts\introspection\ERC165.sol

pragma solidity ^0.5.0;


/**
 * @dev Implementation of the `IERC165` interface.
 *
 * Contracts may inherit from this and call `_registerInterface` to declare
 * their support of an interface.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor () internal {
        // Derived contracts need only register support for their own interfaces,
        // we register support for ERC165 itself here
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See `IERC165.supportsInterface`.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See `IERC165.supportsInterface`.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\ERC721.sol

pragma solidity ^0.5.0;







/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is ERC165, IERC721 {
    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

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

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

    // Mapping from owner to number of owned token
    mapping (address => Counters.Counter) private _ownedTokensCount;

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

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    constructor () public {
        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner address to query the balance of
     * @return uint256 representing the amount owned by the passed address
     */
    function balanceOf(address owner) public view returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");

        return _ownedTokensCount[owner].current();
    }

    /**
     * @dev Gets the owner of the specified token ID.
     * @param tokenId uint256 ID of the token to query the owner of
     * @return address currently marked as the owner of the given token ID
     */
    function ownerOf(uint256 tokenId) public view returns (address) {
        address owner = _tokenOwner[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");

        return owner;
    }

    /**
     * @dev Approves another address to transfer the given token ID
     * The zero address indicates there is no approved address.
     * There can only be one approved address per token at a given time.
     * Can only be called by the token owner or an approved operator.
     * @param to address to be approved for the given token ID
     * @param tokenId uint256 ID of the token to be approved
     */
    function approve(address to, uint256 tokenId) public {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Gets the approved address for a token ID, or zero if no address set
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to query the approval of
     * @return address currently approved for the given token ID
     */
    function getApproved(uint256 tokenId) public view returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Sets or unsets the approval of a given operator
     * An operator is allowed to transfer all tokens of the sender on their behalf.
     * @param to operator address to set the approval
     * @param approved representing the status of the approval to be set
     */
    function setApprovalForAll(address to, bool approved) public {
        require(to != msg.sender, "ERC721: approve to caller");

        _operatorApprovals[msg.sender][to] = approved;
        emit ApprovalForAll(msg.sender, to, approved);
    }

    /**
     * @dev Tells whether an operator is approved by a given owner.
     * @param owner owner address which you want to query the approval of
     * @param operator operator address which you want to query the approval of
     * @return bool whether the given operator is approved by the given owner
     */
    function isApprovedForAll(address owner, address operator) public view returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Transfers the ownership of a given token ID to another address.
     * Usage of this method is discouraged, use `safeTransferFrom` whenever possible.
     * Requires the msg.sender to be the owner, approved, or operator.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function transferFrom(address from, address to, uint256 tokenId) public {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: transfer caller is not owner nor approved");

        _transferFrom(from, to, tokenId);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public {
        transferFrom(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether the specified token exists.
     * @param tokenId uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        address owner = _tokenOwner[tokenId];
        return owner != address(0);
    }

    /**
     * @dev Returns whether the given spender can transfer a given token ID.
     * @param spender address of the spender to query
     * @param tokenId uint256 ID of the token to be transferred
     * @return bool whether the msg.sender is approved for the given token ID,
     * is an operator of the owner, or is the owner of the token
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _tokenOwner[tokenId] = to;
        _ownedTokensCount[to].increment();

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

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        require(ownerOf(tokenId) == owner, "ERC721: burn of token that is not own");

        _clearApproval(tokenId);

        _ownedTokensCount[owner].decrement();
        _tokenOwner[tokenId] = address(0);

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

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(uint256 tokenId) internal {
        _burn(ownerOf(tokenId), tokenId);
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _clearApproval(tokenId);

        _ownedTokensCount[from].decrement();
        _ownedTokensCount[to].increment();

        _tokenOwner[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Internal function to invoke `onERC721Received` on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * This function is deprecated.
     * @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)
        internal returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }

        bytes4 retval = IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data);
        return (retval == _ERC721_RECEIVED);
    }

    /**
     * @dev Private function to clear current approval of a given token ID.
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _clearApproval(uint256 tokenId) private {
        if (_tokenApprovals[tokenId] != address(0)) {
            _tokenApprovals[tokenId] = address(0);
        }
    }
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721Enumerable.sol

pragma solidity ^0.5.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Enumerable is IERC721 {
    function totalSupply() public view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId);

    function tokenByIndex(uint256 index) public view returns (uint256);
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\ERC721Enumerable.sol

pragma solidity ^0.5.0;




/**
 * @title ERC-721 Non-Fungible Token with optional enumeration extension logic
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => uint256[]) private _ownedTokens;

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

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

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

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Constructor function.
     */
    constructor () public {
        // register the supported interface to conform to ERC721Enumerable via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev Gets the token ID at a given index of the tokens list of the requested owner.
     * @param owner address owning the tokens list to be accessed
     * @param index uint256 representing the index to be accessed of the requested tokens list
     * @return uint256 token ID at the given index of the tokens list owned by the requested address
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) {
        require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev Gets the total amount of tokens stored by the contract.
     * @return uint256 representing the total amount of tokens
     */
    function totalSupply() public view returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev Gets the token ID at a given index of all the tokens in this contract
     * Reverts if the index is greater or equal to the total number of tokens.
     * @param index uint256 representing the index to be accessed of the tokens list
     * @return uint256 token ID at the given index of the tokens list
     */
    function tokenByIndex(uint256 index) public view returns (uint256) {
        require(index < totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        super._transferFrom(from, to, tokenId);

        _removeTokenFromOwnerEnumeration(from, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to address the beneficiary that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        super._mint(to, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);

        _addTokenToAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        _removeTokenFromOwnerEnumeration(owner, tokenId);
        // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund
        _ownedTokensIndex[tokenId] = 0;

        _removeTokenFromAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Gets the list of token IDs of the requested owner.
     * @param owner address owning the tokens
     * @return uint256[] List of token IDs owned by the requested address
     */
    function _tokensOfOwner(address owner) internal view returns (uint256[] storage) {
        return _ownedTokens[owner];
    }

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

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

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

        uint256 lastTokenIndex = _ownedTokens[from].length.sub(1);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

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

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

        // This also deletes the contents at the last position of the array
        _ownedTokens[from].length--;

        // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by
        // lastTokenId, or just over the end of the array if the token was the last one).
    }

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

        uint256 lastTokenIndex = _allTokens.length.sub(1);
        uint256 tokenIndex = _allTokensIndex[tokenId];

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

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

        // This also deletes the contents at the last position of the array
        _allTokens.length--;
        _allTokensIndex[tokenId] = 0;
    }
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\IERC721Metadata.sol

pragma solidity ^0.5.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Metadata is IERC721 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: node_modules\openzeppelin-solidity\contracts\token\ERC721\ERC721Metadata.sol

pragma solidity ^0.5.0;




contract ERC721Metadata is ERC165, ERC721, IERC721Metadata {
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /**
     * @dev Constructor function
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
    }

    /**
     * @dev Gets the token name.
     * @return string representing the token name
     */
    function name() external view returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the token symbol.
     * @return string representing the token symbol
     */
    function symbol() external view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns an URI for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function tokenURI(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
        return _tokenURIs[tokenId];
    }

    /**
     * @dev Internal function to set the token URI for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its URI
     * @param uri string URI to assign
     */
    function _setTokenURI(uint256 tokenId, string memory uri) internal {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = uri;
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned by the msg.sender
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

// File: openzeppelin-solidity\contracts\token\ERC721\ERC721Full.sol

pragma solidity ^0.5.0;




/**
 * @title Full ERC721 Token
 * This implementation includes all the required and some optional functionality of the ERC721 standard
 * Moreover, it includes approve all functionality using operator terminology
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata {
    constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) {
        // solhint-disable-previous-line no-empty-blocks
    }
}

// File: openzeppelin-solidity\contracts\ownership\Ownable.sol

pragma solidity ^0.5.0;

/**
 * @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.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be aplied to your functions to restrict their use to
 * the owner.
 */
contract Ownable {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _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 onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts\Strings.sol

pragma solidity ^0.5.0;

library Strings {
  // via https://github.com/oraclize/ethereum-api/blob/master/oraclizeAPI_0.5.sol
  function strConcat(string memory _a, string memory _b, string memory _c, string memory _d, string memory _e) internal pure returns (string memory) {
      bytes memory _ba = bytes(_a);
      bytes memory _bb = bytes(_b);
      bytes memory _bc = bytes(_c);
      bytes memory _bd = bytes(_d);
      bytes memory _be = bytes(_e);
      string memory abcde = new string(_ba.length + _bb.length + _bc.length + _bd.length + _be.length);
      bytes memory babcde = bytes(abcde);
      uint k = 0;
      for (uint i = 0; i < _ba.length; i++) babcde[k++] = _ba[i];
      for (uint i = 0; i < _bb.length; i++) babcde[k++] = _bb[i];
      for (uint i = 0; i < _bc.length; i++) babcde[k++] = _bc[i];
      for (uint i = 0; i < _bd.length; i++) babcde[k++] = _bd[i];
      for (uint i = 0; i < _be.length; i++) babcde[k++] = _be[i];
      return string(babcde);
    }

    function strConcat(string memory _a, string memory _b, string memory _c, string memory _d) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, _d, "");
    }

    function strConcat(string memory _a, string memory _b, string memory _c) internal pure returns (string memory) {
        return strConcat(_a, _b, _c, "", "");
    }

    function strConcat(string memory _a, string memory _b) internal pure returns (string memory) {
        return strConcat(_a, _b, "", "", "");
    }

    function uint2str(uint _i) internal pure returns (string memory _uintAsString) {
        if (_i == 0) {
            return "0";
        }
        uint j = _i;
        uint len;
        while (j != 0) {
            len++;
            j /= 10;
        }
        bytes memory bstr = new bytes(len);
        uint k = len - 1;
        while (_i != 0) {
            bstr[k--] = byte(uint8(48 + _i % 10));
            _i /= 10;
        }
        return string(bstr);
    }
}

// File: contracts\TradeableERC721Token.sol

pragma solidity ^0.5.0;




contract OwnableDelegateProxy { }

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

/**
 * @title TradeableERC721Token
 * TradeableERC721Token - ERC721 contract that whitelists a trading address, and has minting functionality.
 */
contract TradeableERC721Token is ERC721Full, Ownable {
  using Strings for string;

  address proxyRegistryAddress;
  uint256 private _currentTokenId = 0;

  constructor(string memory _name, string memory _symbol, address _proxyRegistryAddress) ERC721Full(_name, _symbol) public {
    proxyRegistryAddress = _proxyRegistryAddress;
  }

  /**
    * @dev Mints a token to an address with a tokenURI.
    * @param _to address of the future owner of the token
    */
  function mintTo(address _to) public onlyOwner {
    uint256 newTokenId = _getNextTokenId();
    _mint(_to, newTokenId);
    _incrementTokenId();
  }

  /**
    * @dev calculates the next token ID based on value of _currentTokenId 
    * @return uint256 for the next token ID
    */
  function _getNextTokenId() private view returns (uint256) {
    return _currentTokenId.add(1);
  }

  /**
    * @dev increments the value of _currentTokenId 
    */
  function _incrementTokenId() private  {
    _currentTokenId++;
  }

  function baseTokenURI() public view returns (string memory) {
    return "";
  }

  function tokenURI(uint256 _tokenId) external view returns (string memory) {
    return Strings.strConcat(
        baseTokenURI(),
        Strings.uint2str(_tokenId)
    );
  }

  /**
   * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
   */
  function isApprovedForAll(
    address owner,
    address operator
  )
    public
    view
    returns (bool)
  {
    // Whitelist OpenSea proxy contract for easy trading.
    ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
    if (address(proxyRegistry.proxies(owner)) == operator) {
        return true;
    }

    return super.isApprovedForAll(owner, operator);
  }
}


// File: contracts\PeoplesCasino.sol

pragma solidity ^0.5.0;




/**
 * @title PeoplesCasino
 * PeoplesCasino - a contract for non-fungible functional casino games.
 */
contract PeoplesCasino is TradeableERC721Token {

  using SafeMath for uint;
  mapping(uint => uint) houseReserves;
  uint MAX_PAYOUT = 3 ether;
  event BetResult(uint tokenId, uint random, uint oddsPercentage);
  string _baseTokenURI = "https://peoplescasino.online/api/";
  mapping(uint => string) extraData;
  struct Bet {
    uint blockNumber;
    address sender;
    uint betAmount;
    uint oddsPercentage;
  }
  mapping(uint => Bet) ongoingBets;

  constructor() 
  TradeableERC721Token("PeoplesCasino", "PCT", 0xa5409ec958C83C3f309868babACA7c86DCB077c1) 
  public {}

  function baseTokenURI() public view returns (string memory) {
    return _baseTokenURI;
  }

  function mint(uint tokenId) public payable onlyOwner {
    _mint(msg.sender, tokenId);
  }

  function mintMultiple(uint tokenIdStart, uint tokenIdEnd) public payable onlyOwner {
    for (uint id = tokenIdStart; id <= tokenIdEnd; id++) {
      _mint(msg.sender, id);
    }
  }

  function setBaseTokenURI(string memory tokenURI) public payable onlyOwner {
    _baseTokenURI = tokenURI;
  } 

  function setMaxPayout(uint maxPayout) public payable onlyOwner {
    MAX_PAYOUT = maxPayout;
  }

  function getPayout(uint betAmount, uint oddsPercentage) internal pure returns (uint) {
    return betAmount.mul(96).div(oddsPercentage); // 4% house edge
  }

  function getIsBetActive(uint tokenId) internal view returns (bool) {
    uint blockNumber = ongoingBets[tokenId].blockNumber;
    if (blockNumber.add(1) == block.number) {
      return true;
    }
    return blockNumber > 0 && blockhash(blockNumber.add(1)) != bytes32(0);
  }

  function getPayoutFromBet(uint tokenId) internal view returns (uint) {
    if (getIsBetActive(tokenId)) {
      uint betAmount = ongoingBets[tokenId].betAmount;
      uint oddsPercentage = ongoingBets[tokenId].oddsPercentage;
      return getPayout(betAmount, oddsPercentage);
    }
    return 0;
  }

  function getHouseReserve(uint tokenId) public view returns (uint) {
    uint currentBetPayout = getPayoutFromBet(tokenId);
    return houseReserves[tokenId].sub(currentBetPayout);
  } 

  function depositHouseReserve(uint tokenId) public payable {
    require(ownerOf(tokenId) != address(0), "Casino does not exist");
    houseReserves[tokenId] = houseReserves[tokenId].add(msg.value);
  } 

  function withdrawalHouseReserve(uint tokenId, uint amount) public payable {
    require(msg.sender == ownerOf(tokenId), "Sender is not the owner of the casino");
    uint houseReserve = getHouseReserve(tokenId);
    require(houseReserve >= amount);
    houseReserves[tokenId] = houseReserves[tokenId].sub(amount);
    msg.sender.transfer(amount);
  }

  function getOngoingBetSender(uint tokenId) public view returns (address) {
    return ongoingBets[tokenId].sender;
  }

  function commitBet(uint tokenId, uint oddsPercentage) public payable {
    require(ownerOf(tokenId) != address(0), "Casino does not exist");
    require(!getIsBetActive(tokenId), "Casino in play");
    require(oddsPercentage > 1, "Bet is too low");
    require(oddsPercentage < 99, "Bet is too high");
    uint payout = getPayout(msg.value, oddsPercentage);
    require(payout < houseReserves[tokenId].add(msg.value), "Casino too poor");
    require(payout < MAX_PAYOUT, "Payout above max");
    houseReserves[tokenId] = houseReserves[tokenId].add(msg.value);
    ongoingBets[tokenId].blockNumber = block.number;
    ongoingBets[tokenId].sender = msg.sender;
    ongoingBets[tokenId].betAmount = msg.value;
    ongoingBets[tokenId].oddsPercentage = oddsPercentage;
  }

  function getResult(uint tokenId) public payable {
    uint blockNumber = ongoingBets[tokenId].blockNumber;
    require(blockNumber > 0, "Bet not started");
    require(blockNumber < block.number - 1, "Result called too soon");
    require(ongoingBets[tokenId].sender == msg.sender, "Sender not better");
    bytes32 nextBlockhash = blockhash(blockNumber.add(1));
    uint oddsPercentage = ongoingBets[tokenId].oddsPercentage;
    uint betAmount = ongoingBets[tokenId].betAmount;
    uint randomPercent = 100 - uint256(nextBlockhash) % 100;
    uint payout = getPayout(betAmount, oddsPercentage);
    address payable sender = address(uint160(ongoingBets[tokenId].sender));
    delete ongoingBets[tokenId];
    if (randomPercent <= oddsPercentage) {
      houseReserves[tokenId] = houseReserves[tokenId].sub(payout);
      sender.transfer(payout);
    }
    emit BetResult(tokenId, randomPercent, oddsPercentage);
  }

  function setExtraData(uint tokenId, string memory data) public payable {
    require(msg.sender == ownerOf(tokenId), "Sender is not the owner of the casino");
    extraData[tokenId] = data;
  } 

  function getExtraData(uint tokenId) public view returns (string memory) {
    return extraData[tokenId];
  } 

}

Contract Security Audit

Contract ABI

[{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawalHouseReserve","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"tokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getHouseReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getExtraData","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"data","type":"string"}],"name":"setExtraData","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"oddsPercentage","type":"uint256"}],"name":"commitBet","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"maxPayout","type":"uint256"}],"name":"setMaxPayout","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenIdStart","type":"uint256"},{"internalType":"uint256","name":"tokenIdEnd","type":"uint256"}],"name":"mintMultiple","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOngoingBetSender","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"depositHouseReserve","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getResult","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"random","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oddsPercentage","type":"uint256"}],"name":"BetResult","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"},{"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"}]

6000600e556729a2241af62c000060105560e0604052602160808181529062002ec460a03980516200003a916011916020909101906200030f565b503480156200004857600080fd5b50604080518082018252600d81527f50656f706c6573436173696e6f000000000000000000000000000000000000006020808301919091528251808401909352600383527f5043540000000000000000000000000000000000000000000000000000000000908301529073a5409ec958c83c3f309868babaca7c86dcb077c182828181620000ff7f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b036200024016565b620001337f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b036200024016565b620001677f780e9d63000000000000000000000000000000000000000000000000000000006001600160e01b036200024016565b81516200017c9060099060208501906200030f565b5080516200019290600a9060208401906200030f565b50620001c77f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b036200024016565b5050600c80546001600160a01b0319163317908190556040516001600160a01b03919091169250600091507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600d80546001600160a01b0319166001600160a01b039290921691909117905550620003b49050565b7fffffffff000000000000000000000000000000000000000000000000000000008082161415620002d257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200035257805160ff191683800117855562000382565b8280016001018555821562000382579182015b828111156200038257825182559160200191906001019062000365565b506200039092915062000394565b5090565b620003b191905b808211156200039057600081556001016200039b565b90565b612b0080620003c46000396000f3fe6080604052600436106101f85760003560e01c806370a082311161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde1461082d578063c87b56dd14610900578063d547cfb71461092a578063e985e9c51461093f578063f2fde38b1461097a576101f8565b806395d89b41146107a3578063995e4339146107b8578063a0712d68146107d5578063a22cb465146107f2576101f8565b80638322bc9a116100dc5780638322bc9a146107325780638ad0ee821461075c5780638da5cb5b146107795780638f32d59b1461078e576101f8565b806370a0823114610694578063715018a6146106c7578063755edd17146106dc578063822df28f1461070f576101f8565b806330176e131161019057806342842e0e1161015f57806342842e0e146105bd5780634f6ccce71461060057806354ff74761461062a57806356b4997f1461064d5780636352211e1461066a576101f8565b806330176e13146104165780633a0753b1146104bc5780633c79ca03146104e65780634044474c14610510576101f8565b8063095ea7b3116101cc578063095ea7b31461033a57806318160ddd1461037357806323b872dd1461039a5780632f745c59146103dd576101f8565b8062c2e49a146101fd57806301ffc9a71461022257806306fdde031461026a578063081812fc146102f4575b600080fd5b6102206004803603604081101561021357600080fd5b50803590602001356109ad565b005b34801561022e57600080fd5b506102566004803603602081101561024557600080fd5b50356001600160e01b031916610a81565b604080519115158252519081900360200190f35b34801561027657600080fd5b5061027f610aa4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b95781810151838201526020016102a1565b50505050905090810190601f1680156102e65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030057600080fd5b5061031e6004803603602081101561031757600080fd5b5035610b3b565b604080516001600160a01b039092168252519081900360200190f35b34801561034657600080fd5b506102206004803603604081101561035d57600080fd5b506001600160a01b038135169060200135610b9d565b34801561037f57600080fd5b50610388610cae565b60408051918252519081900360200190f35b3480156103a657600080fd5b50610220600480360360608110156103bd57600080fd5b506001600160a01b03813581169160208101359091169060400135610cb4565b3480156103e957600080fd5b506103886004803603604081101561040057600080fd5b506001600160a01b038135169060200135610d09565b6102206004803603602081101561042c57600080fd5b81019060208101813564010000000081111561044757600080fd5b82018360208201111561045957600080fd5b8035906020019184600183028401116401000000008311171561047b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d89945050505050565b3480156104c857600080fd5b50610388600480360360208110156104df57600080fd5b5035610de7565b3480156104f257600080fd5b5061027f6004803603602081101561050957600080fd5b5035610e1c565b6102206004803603604081101561052657600080fd5b8135919081019060408101602082013564010000000081111561054857600080fd5b82018360208201111561055a57600080fd5b8035906020019184600183028401116401000000008311171561057c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ebd945050505050565b3480156105c957600080fd5b50610220600480360360608110156105e057600080fd5b506001600160a01b03813581169160208101359091169060400135610f34565b34801561060c57600080fd5b506103886004803603602081101561062357600080fd5b5035610f4f565b6102206004803603604081101561064057600080fd5b5080359060200135610fb5565b6102206004803603602081101561066357600080fd5b5035611208565b34801561067657600080fd5b5061031e6004803603602081101561068d57600080fd5b5035611254565b3480156106a057600080fd5b50610388600480360360208110156106b757600080fd5b50356001600160a01b03166112a8565b3480156106d357600080fd5b50610220611310565b3480156106e857600080fd5b50610220600480360360208110156106ff57600080fd5b50356001600160a01b03166113a1565b6102206004803603604081101561072557600080fd5b5080359060200135611406565b34801561073e57600080fd5b5061031e6004803603602081101561075557600080fd5b5035611468565b6102206004803603602081101561077257600080fd5b5035611486565b34801561078557600080fd5b5061031e611516565b34801561079a57600080fd5b50610256611525565b3480156107af57600080fd5b5061027f611536565b610220600480360360208110156107ce57600080fd5b5035611597565b610220600480360360208110156107eb57600080fd5b50356117d9565b3480156107fe57600080fd5b506102206004803603604081101561081557600080fd5b506001600160a01b038135169060200135151561182d565b34801561083957600080fd5b506102206004803603608081101561085057600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561088b57600080fd5b82018360208201111561089d57600080fd5b803590602001918460018302840111640100000000831117156108bf57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506118f9945050505050565b34801561090c57600080fd5b5061027f6004803603602081101561092357600080fd5b503561194b565b34801561093657600080fd5b5061027f611966565b34801561094b57600080fd5b506102566004803603604081101561096257600080fd5b506001600160a01b03813581169160200135166119c7565b34801561098657600080fd5b506102206004803603602081101561099d57600080fd5b50356001600160a01b0316611a72565b6109b682611254565b6001600160a01b0316336001600160a01b031614610a055760405162461bcd60e51b81526004018080602001828103825260258152602001806128356025913960400191505060405180910390fd5b6000610a1083610de7565b905081811015610a1f57600080fd5b6000838152600f6020526040902054610a3e908363ffffffff611ac216565b6000848152600f6020526040808220929092559051339184156108fc02918591818181858888f19350505050158015610a7b573d6000803e3d6000fd5b50505050565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b305780601f10610b0557610100808354040283529160200191610b30565b820191906000526020600020905b815481529060010190602001808311610b1357829003601f168201915b505050505090505b90565b6000610b4682611b1f565b610b815760405162461bcd60e51b815260040180806020018281038252602c8152602001806129d9602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610ba882611254565b9050806001600160a01b0316836001600160a01b03161415610bfb5760405162461bcd60e51b8152600401808060200182810382526021815260200180612a4e6021913960400191505060405180910390fd5b336001600160a01b0382161480610c175750610c1781336119c7565b610c525760405162461bcd60e51b815260040180806020018281038252603881526020018061292d6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b610cbe3382611b3c565b610cf95760405162461bcd60e51b8152600401808060200182810382526031815260200180612a6f6031913960400191505060405180910390fd5b610d04838383611bd8565b505050565b6000610d14836112a8565b8210610d515760405162461bcd60e51b815260040180806020018281038252602b81526020018061285a602b913960400191505060405180910390fd5b6001600160a01b0383166000908152600560205260409020805483908110610d7557fe5b906000526020600020015490505b92915050565b610d91611525565b610dd0576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b8051610de390601190602084019061277c565b5050565b600080610df383611bf7565b6000848152600f6020526040902054909150610e15908263ffffffff611ac216565b9392505050565b60008181526012602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015610eb15780601f10610e8657610100808354040283529160200191610eb1565b820191906000526020600020905b815481529060010190602001808311610e9457829003601f168201915b50505050509050919050565b610ec682611254565b6001600160a01b0316336001600160a01b031614610f155760405162461bcd60e51b81526004018080602001828103825260258152602001806128356025913960400191505060405180910390fd5b60008281526012602090815260409091208251610d049284019061277c565b610d04838383604051806020016040528060008152506118f9565b6000610f59610cae565b8210610f965760405162461bcd60e51b815260040180806020018281038252602c815260200180612aa0602c913960400191505060405180910390fd5b60078281548110610fa357fe5b90600052602060002001549050919050565b6000610fc083611254565b6001600160a01b03161415611014576040805162461bcd60e51b815260206004820152601560248201527410d85cda5b9bc8191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b61101d82611c3b565b15611060576040805162461bcd60e51b815260206004820152600e60248201526d436173696e6f20696e20706c617960901b604482015290519081900360640190fd5b600181116110a6576040805162461bcd60e51b815260206004820152600e60248201526d42657420697320746f6f206c6f7760901b604482015290519081900360640190fd5b606381106110ed576040805162461bcd60e51b815260206004820152600f60248201526e084cae840d2e640e8dede40d0d2ced608b1b604482015290519081900360640190fd5b60006110f93483611c94565b6000848152600f602052604090205490915061111b903463ffffffff611cb716565b8110611160576040805162461bcd60e51b815260206004820152600f60248201526e21b0b9b4b737903a37b7903837b7b960891b604482015290519081900360640190fd5b60105481106111a9576040805162461bcd60e51b815260206004820152601060248201526f0a0c2f2deeae840c2c4deecca40dac2f60831b604482015290519081900360640190fd5b6000838152600f60205260409020546111c8903463ffffffff611cb716565b6000938452600f6020908152604080862092909255601390529092204381556001810180546001600160a01b031916331790553460028201556003015550565b611210611525565b61124f576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b601055565b6000818152600160205260408120546001600160a01b031680610d835760405162461bcd60e51b815260040180806020018281038252602981526020018061298f6029913960400191505060405180910390fd5b60006001600160a01b0382166112ef5760405162461bcd60e51b815260040180806020018281038252602a815260200180612965602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600360205260409020610d8390611d11565b611318611525565b611357576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b6113a9611525565b6113e8576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b60006113f2611d15565b90506113fe8282611d31565b610de3611d4e565b61140e611525565b61144d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b815b818111610d04576114603382611d31565b60010161144f565b6000908152601360205260409020600101546001600160a01b031690565b600061149182611254565b6001600160a01b031614156114e5576040805162461bcd60e51b815260206004820152601560248201527410d85cda5b9bc8191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b6000818152600f6020526040902054611504903463ffffffff611cb716565b6000918252600f602052604090912055565b600c546001600160a01b031690565b600c546001600160a01b0316331490565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b305780601f10610b0557610100808354040283529160200191610b30565b600081815260136020526040902054806115ea576040805162461bcd60e51b815260206004820152600f60248201526e10995d081b9bdd081cdd185c9d1959608a1b604482015290519081900360640190fd5b60014303811061163a576040805162461bcd60e51b81526020600482015260166024820152752932b9bab63a1031b0b63632b2103a37b79039b7b7b760511b604482015290519081900360640190fd5b6000828152601360205260409020600101546001600160a01b0316331461169c576040805162461bcd60e51b815260206004820152601160248201527029b2b73232b9103737ba103132ba3a32b960791b604482015290519081900360640190fd5b60006116af82600163ffffffff611cb716565b6000848152601360205260408120600381015460029091015492409350919060648085069003906116e08385611c94565b60008881526013602052604081206001810180548383556001600160a01b03198116909155600282018390556003909101919091559091506001600160a01b031684831161178f576000888152600f6020526040902054611747908363ffffffff611ac216565b6000898152600f60205260408082209290925590516001600160a01b0383169184156108fc02918591818181858888f1935050505015801561178d573d6000803e3d6000fd5b505b604080518981526020810185905280820187905290517f8406982e62b8a8c06088d778f99e438413dedded850e622264d3faf77b2cac769181900360600190a15050505050505050565b6117e1611525565b611820576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b61182a3382611d31565b50565b6001600160a01b03821633141561188b576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b611904848484610cb4565b61191084848484611d59565b610a7b5760405162461bcd60e51b81526004018080602001828103825260328152602001806128856032913960400191505060405180910390fd5b6060610d83611958611966565b61196184611e8c565b611f4d565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b305780601f10610b0557610100808354040283529160200191610b30565b600d546040805163c455279160e01b81526001600160a01b0385811660048301529151600093831692851691839163c455279191602480820192602092909190829003018186803b158015611a1b57600080fd5b505afa158015611a2f573d6000803e3d6000fd5b505050506040513d6020811015611a4557600080fd5b50516001600160a01b03161415611a60576001915050610d83565b611a6a8484611f89565b949350505050565b611a7a611525565b611ab9576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b61182a81611fb7565b600082821115611b19576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000908152600160205260409020546001600160a01b0316151590565b6000611b4782611b1f565b611b825760405162461bcd60e51b815260040180806020018281038252602c815260200180612901602c913960400191505060405180910390fd5b6000611b8d83611254565b9050806001600160a01b0316846001600160a01b03161480611bc85750836001600160a01b0316611bbd84610b3b565b6001600160a01b0316145b80611a6a5750611a6a81856119c7565b611be3838383612058565b611bed838261219c565b610d048282612291565b6000611c0282611c3b565b15611c335760008281526013602052604090206002810154600390910154611c2a8282611c94565b92505050610a9f565b506000919050565b60008181526013602052604081205443611c5c82600163ffffffff611cb716565b1415611c6c576001915050610a9f565b600081118015610e1557506000611c8a82600163ffffffff611cb716565b4014159392505050565b6000610e1582611cab85606063ffffffff6122cf16565b9063ffffffff61232816565b600082820183811015610e15576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b5490565b600e54600090611d2c90600163ffffffff611cb716565b905090565b611d3b8282612392565b611d458282612291565b610de3816124c3565b600e80546001019055565b6000611d6d846001600160a01b0316612507565b611d7957506001611a6a565b604051630a85bd0160e11b815233600482018181526001600160a01b03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b83811015611df3578181015183820152602001611ddb565b50505050905090810190601f168015611e205780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015611e4257600080fd5b505af1158015611e56573d6000803e3d6000fd5b505050506040513d6020811015611e6c57600080fd5b50516001600160e01b031916630a85bd0160e11b14915050949350505050565b606081611eb157506040805180820190915260018152600360fc1b6020820152610a9f565b8160005b8115611ec957600101600a82049150611eb5565b6060816040519080825280601f01601f191660200182016040528015611ef6576020820181803883390190505b50905060001982015b8515611f4457600a860660300160f81b82828060019003935081518110611f2257fe5b60200101906001600160f81b031916908160001a905350600a86049550611eff565b50949350505050565b6060610e15838360405180602001604052806000815250604051806020016040528060008152506040518060200160405280600081525061250d565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6001600160a01b038116611ffc5760405162461bcd60e51b81526004018080602001828103825260268152602001806128b76026913960400191505060405180910390fd5b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b031661206b82611254565b6001600160a01b0316146120b05760405162461bcd60e51b8152600401808060200182810382526029815260200180612a256029913960400191505060405180910390fd5b6001600160a01b0382166120f55760405162461bcd60e51b81526004018080602001828103825260248152602001806128dd6024913960400191505060405180910390fd5b6120fe81612721565b6001600160a01b038316600090815260036020526040902061211f9061275c565b6001600160a01b038216600090815260036020526040902061214090612773565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166000908152600560205260408120546121c690600163ffffffff611ac216565b600083815260066020526040902054909150808214612261576001600160a01b038416600090815260056020526040812080548490811061220357fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b03168152602001908152602001600020838154811061224157fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b038416600090815260056020526040902080549061228a9060001983016127fa565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6000826122de57506000610d83565b828202828482816122eb57fe5b0414610e155760405162461bcd60e51b81526004018080602001828103825260218152602001806129b86021913960400191505060405180910390fd5b600080821161237e576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b600082848161238957fe5b04949350505050565b6001600160a01b0382166123ed576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6123f681611b1f565b15612448576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061248790612773565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b3b151590565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f191660200182016040528015612561576020820181803883390190505b509050806000805b88518110156125ba5788818151811061257e57fe5b602001015160f81c60f81b83838060010194508151811061259b57fe5b60200101906001600160f81b031916908160001a905350600101612569565b5060005b875181101561260f578781815181106125d357fe5b602001015160f81c60f81b8383806001019450815181106125f057fe5b60200101906001600160f81b031916908160001a9053506001016125be565b5060005b86518110156126645786818151811061262857fe5b602001015160f81c60f81b83838060010194508151811061264557fe5b60200101906001600160f81b031916908160001a905350600101612613565b5060005b85518110156126b95785818151811061267d57fe5b602001015160f81c60f81b83838060010194508151811061269a57fe5b60200101906001600160f81b031916908160001a905350600101612668565b5060005b845181101561270e578481815181106126d257fe5b602001015160f81c60f81b8383806001019450815181106126ef57fe5b60200101906001600160f81b031916908160001a9053506001016126bd565b50909d9c50505050505050505050505050565b6000818152600260205260409020546001600160a01b03161561182a57600090815260026020526040902080546001600160a01b0319169055565b805461276f90600163ffffffff611ac216565b9055565b80546001019055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106127bd57805160ff19168380011785556127ea565b828001600101855582156127ea579182015b828111156127ea5782518255916020019190600101906127cf565b506127f692915061281a565b5090565b815481835581811115610d0457600083815260209020610d049181019083015b610b3891905b808211156127f6576000815560010161282056fe53656e646572206973206e6f7420746865206f776e6572206f662074686520636173696e6f455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a72315820d1bf14647ae7c2ad8c3613adc929bb1264032f62a78d4b2b449e53b602ce41ce64736f6c634300050b003268747470733a2f2f70656f706c6573636173696e6f2e6f6e6c696e652f6170692f

Deployed Bytecode

0x6080604052600436106101f85760003560e01c806370a082311161010d57806395d89b41116100a0578063b88d4fde1161006f578063b88d4fde1461082d578063c87b56dd14610900578063d547cfb71461092a578063e985e9c51461093f578063f2fde38b1461097a576101f8565b806395d89b41146107a3578063995e4339146107b8578063a0712d68146107d5578063a22cb465146107f2576101f8565b80638322bc9a116100dc5780638322bc9a146107325780638ad0ee821461075c5780638da5cb5b146107795780638f32d59b1461078e576101f8565b806370a0823114610694578063715018a6146106c7578063755edd17146106dc578063822df28f1461070f576101f8565b806330176e131161019057806342842e0e1161015f57806342842e0e146105bd5780634f6ccce71461060057806354ff74761461062a57806356b4997f1461064d5780636352211e1461066a576101f8565b806330176e13146104165780633a0753b1146104bc5780633c79ca03146104e65780634044474c14610510576101f8565b8063095ea7b3116101cc578063095ea7b31461033a57806318160ddd1461037357806323b872dd1461039a5780632f745c59146103dd576101f8565b8062c2e49a146101fd57806301ffc9a71461022257806306fdde031461026a578063081812fc146102f4575b600080fd5b6102206004803603604081101561021357600080fd5b50803590602001356109ad565b005b34801561022e57600080fd5b506102566004803603602081101561024557600080fd5b50356001600160e01b031916610a81565b604080519115158252519081900360200190f35b34801561027657600080fd5b5061027f610aa4565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b95781810151838201526020016102a1565b50505050905090810190601f1680156102e65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561030057600080fd5b5061031e6004803603602081101561031757600080fd5b5035610b3b565b604080516001600160a01b039092168252519081900360200190f35b34801561034657600080fd5b506102206004803603604081101561035d57600080fd5b506001600160a01b038135169060200135610b9d565b34801561037f57600080fd5b50610388610cae565b60408051918252519081900360200190f35b3480156103a657600080fd5b50610220600480360360608110156103bd57600080fd5b506001600160a01b03813581169160208101359091169060400135610cb4565b3480156103e957600080fd5b506103886004803603604081101561040057600080fd5b506001600160a01b038135169060200135610d09565b6102206004803603602081101561042c57600080fd5b81019060208101813564010000000081111561044757600080fd5b82018360208201111561045957600080fd5b8035906020019184600183028401116401000000008311171561047b57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d89945050505050565b3480156104c857600080fd5b50610388600480360360208110156104df57600080fd5b5035610de7565b3480156104f257600080fd5b5061027f6004803603602081101561050957600080fd5b5035610e1c565b6102206004803603604081101561052657600080fd5b8135919081019060408101602082013564010000000081111561054857600080fd5b82018360208201111561055a57600080fd5b8035906020019184600183028401116401000000008311171561057c57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610ebd945050505050565b3480156105c957600080fd5b50610220600480360360608110156105e057600080fd5b506001600160a01b03813581169160208101359091169060400135610f34565b34801561060c57600080fd5b506103886004803603602081101561062357600080fd5b5035610f4f565b6102206004803603604081101561064057600080fd5b5080359060200135610fb5565b6102206004803603602081101561066357600080fd5b5035611208565b34801561067657600080fd5b5061031e6004803603602081101561068d57600080fd5b5035611254565b3480156106a057600080fd5b50610388600480360360208110156106b757600080fd5b50356001600160a01b03166112a8565b3480156106d357600080fd5b50610220611310565b3480156106e857600080fd5b50610220600480360360208110156106ff57600080fd5b50356001600160a01b03166113a1565b6102206004803603604081101561072557600080fd5b5080359060200135611406565b34801561073e57600080fd5b5061031e6004803603602081101561075557600080fd5b5035611468565b6102206004803603602081101561077257600080fd5b5035611486565b34801561078557600080fd5b5061031e611516565b34801561079a57600080fd5b50610256611525565b3480156107af57600080fd5b5061027f611536565b610220600480360360208110156107ce57600080fd5b5035611597565b610220600480360360208110156107eb57600080fd5b50356117d9565b3480156107fe57600080fd5b506102206004803603604081101561081557600080fd5b506001600160a01b038135169060200135151561182d565b34801561083957600080fd5b506102206004803603608081101561085057600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561088b57600080fd5b82018360208201111561089d57600080fd5b803590602001918460018302840111640100000000831117156108bf57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506118f9945050505050565b34801561090c57600080fd5b5061027f6004803603602081101561092357600080fd5b503561194b565b34801561093657600080fd5b5061027f611966565b34801561094b57600080fd5b506102566004803603604081101561096257600080fd5b506001600160a01b03813581169160200135166119c7565b34801561098657600080fd5b506102206004803603602081101561099d57600080fd5b50356001600160a01b0316611a72565b6109b682611254565b6001600160a01b0316336001600160a01b031614610a055760405162461bcd60e51b81526004018080602001828103825260258152602001806128356025913960400191505060405180910390fd5b6000610a1083610de7565b905081811015610a1f57600080fd5b6000838152600f6020526040902054610a3e908363ffffffff611ac216565b6000848152600f6020526040808220929092559051339184156108fc02918591818181858888f19350505050158015610a7b573d6000803e3d6000fd5b50505050565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b305780601f10610b0557610100808354040283529160200191610b30565b820191906000526020600020905b815481529060010190602001808311610b1357829003601f168201915b505050505090505b90565b6000610b4682611b1f565b610b815760405162461bcd60e51b815260040180806020018281038252602c8152602001806129d9602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610ba882611254565b9050806001600160a01b0316836001600160a01b03161415610bfb5760405162461bcd60e51b8152600401808060200182810382526021815260200180612a4e6021913960400191505060405180910390fd5b336001600160a01b0382161480610c175750610c1781336119c7565b610c525760405162461bcd60e51b815260040180806020018281038252603881526020018061292d6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b610cbe3382611b3c565b610cf95760405162461bcd60e51b8152600401808060200182810382526031815260200180612a6f6031913960400191505060405180910390fd5b610d04838383611bd8565b505050565b6000610d14836112a8565b8210610d515760405162461bcd60e51b815260040180806020018281038252602b81526020018061285a602b913960400191505060405180910390fd5b6001600160a01b0383166000908152600560205260409020805483908110610d7557fe5b906000526020600020015490505b92915050565b610d91611525565b610dd0576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b8051610de390601190602084019061277c565b5050565b600080610df383611bf7565b6000848152600f6020526040902054909150610e15908263ffffffff611ac216565b9392505050565b60008181526012602090815260409182902080548351601f6002600019610100600186161502019093169290920491820184900484028101840190945280845260609392830182828015610eb15780601f10610e8657610100808354040283529160200191610eb1565b820191906000526020600020905b815481529060010190602001808311610e9457829003601f168201915b50505050509050919050565b610ec682611254565b6001600160a01b0316336001600160a01b031614610f155760405162461bcd60e51b81526004018080602001828103825260258152602001806128356025913960400191505060405180910390fd5b60008281526012602090815260409091208251610d049284019061277c565b610d04838383604051806020016040528060008152506118f9565b6000610f59610cae565b8210610f965760405162461bcd60e51b815260040180806020018281038252602c815260200180612aa0602c913960400191505060405180910390fd5b60078281548110610fa357fe5b90600052602060002001549050919050565b6000610fc083611254565b6001600160a01b03161415611014576040805162461bcd60e51b815260206004820152601560248201527410d85cda5b9bc8191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b61101d82611c3b565b15611060576040805162461bcd60e51b815260206004820152600e60248201526d436173696e6f20696e20706c617960901b604482015290519081900360640190fd5b600181116110a6576040805162461bcd60e51b815260206004820152600e60248201526d42657420697320746f6f206c6f7760901b604482015290519081900360640190fd5b606381106110ed576040805162461bcd60e51b815260206004820152600f60248201526e084cae840d2e640e8dede40d0d2ced608b1b604482015290519081900360640190fd5b60006110f93483611c94565b6000848152600f602052604090205490915061111b903463ffffffff611cb716565b8110611160576040805162461bcd60e51b815260206004820152600f60248201526e21b0b9b4b737903a37b7903837b7b960891b604482015290519081900360640190fd5b60105481106111a9576040805162461bcd60e51b815260206004820152601060248201526f0a0c2f2deeae840c2c4deecca40dac2f60831b604482015290519081900360640190fd5b6000838152600f60205260409020546111c8903463ffffffff611cb716565b6000938452600f6020908152604080862092909255601390529092204381556001810180546001600160a01b031916331790553460028201556003015550565b611210611525565b61124f576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b601055565b6000818152600160205260408120546001600160a01b031680610d835760405162461bcd60e51b815260040180806020018281038252602981526020018061298f6029913960400191505060405180910390fd5b60006001600160a01b0382166112ef5760405162461bcd60e51b815260040180806020018281038252602a815260200180612965602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600360205260409020610d8390611d11565b611318611525565b611357576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b6113a9611525565b6113e8576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b60006113f2611d15565b90506113fe8282611d31565b610de3611d4e565b61140e611525565b61144d576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b815b818111610d04576114603382611d31565b60010161144f565b6000908152601360205260409020600101546001600160a01b031690565b600061149182611254565b6001600160a01b031614156114e5576040805162461bcd60e51b815260206004820152601560248201527410d85cda5b9bc8191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b6000818152600f6020526040902054611504903463ffffffff611cb716565b6000918252600f602052604090912055565b600c546001600160a01b031690565b600c546001600160a01b0316331490565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b305780601f10610b0557610100808354040283529160200191610b30565b600081815260136020526040902054806115ea576040805162461bcd60e51b815260206004820152600f60248201526e10995d081b9bdd081cdd185c9d1959608a1b604482015290519081900360640190fd5b60014303811061163a576040805162461bcd60e51b81526020600482015260166024820152752932b9bab63a1031b0b63632b2103a37b79039b7b7b760511b604482015290519081900360640190fd5b6000828152601360205260409020600101546001600160a01b0316331461169c576040805162461bcd60e51b815260206004820152601160248201527029b2b73232b9103737ba103132ba3a32b960791b604482015290519081900360640190fd5b60006116af82600163ffffffff611cb716565b6000848152601360205260408120600381015460029091015492409350919060648085069003906116e08385611c94565b60008881526013602052604081206001810180548383556001600160a01b03198116909155600282018390556003909101919091559091506001600160a01b031684831161178f576000888152600f6020526040902054611747908363ffffffff611ac216565b6000898152600f60205260408082209290925590516001600160a01b0383169184156108fc02918591818181858888f1935050505015801561178d573d6000803e3d6000fd5b505b604080518981526020810185905280820187905290517f8406982e62b8a8c06088d778f99e438413dedded850e622264d3faf77b2cac769181900360600190a15050505050505050565b6117e1611525565b611820576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b61182a3382611d31565b50565b6001600160a01b03821633141561188b576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b611904848484610cb4565b61191084848484611d59565b610a7b5760405162461bcd60e51b81526004018080602001828103825260328152602001806128856032913960400191505060405180910390fd5b6060610d83611958611966565b61196184611e8c565b611f4d565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610b305780601f10610b0557610100808354040283529160200191610b30565b600d546040805163c455279160e01b81526001600160a01b0385811660048301529151600093831692851691839163c455279191602480820192602092909190829003018186803b158015611a1b57600080fd5b505afa158015611a2f573d6000803e3d6000fd5b505050506040513d6020811015611a4557600080fd5b50516001600160a01b03161415611a60576001915050610d83565b611a6a8484611f89565b949350505050565b611a7a611525565b611ab9576040805162461bcd60e51b81526020600482018190526024820152600080516020612a05833981519152604482015290519081900360640190fd5b61182a81611fb7565b600082821115611b19576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6000908152600160205260409020546001600160a01b0316151590565b6000611b4782611b1f565b611b825760405162461bcd60e51b815260040180806020018281038252602c815260200180612901602c913960400191505060405180910390fd5b6000611b8d83611254565b9050806001600160a01b0316846001600160a01b03161480611bc85750836001600160a01b0316611bbd84610b3b565b6001600160a01b0316145b80611a6a5750611a6a81856119c7565b611be3838383612058565b611bed838261219c565b610d048282612291565b6000611c0282611c3b565b15611c335760008281526013602052604090206002810154600390910154611c2a8282611c94565b92505050610a9f565b506000919050565b60008181526013602052604081205443611c5c82600163ffffffff611cb716565b1415611c6c576001915050610a9f565b600081118015610e1557506000611c8a82600163ffffffff611cb716565b4014159392505050565b6000610e1582611cab85606063ffffffff6122cf16565b9063ffffffff61232816565b600082820183811015610e15576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b5490565b600e54600090611d2c90600163ffffffff611cb716565b905090565b611d3b8282612392565b611d458282612291565b610de3816124c3565b600e80546001019055565b6000611d6d846001600160a01b0316612507565b611d7957506001611a6a565b604051630a85bd0160e11b815233600482018181526001600160a01b03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b83811015611df3578181015183820152602001611ddb565b50505050905090810190601f168015611e205780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015611e4257600080fd5b505af1158015611e56573d6000803e3d6000fd5b505050506040513d6020811015611e6c57600080fd5b50516001600160e01b031916630a85bd0160e11b14915050949350505050565b606081611eb157506040805180820190915260018152600360fc1b6020820152610a9f565b8160005b8115611ec957600101600a82049150611eb5565b6060816040519080825280601f01601f191660200182016040528015611ef6576020820181803883390190505b50905060001982015b8515611f4457600a860660300160f81b82828060019003935081518110611f2257fe5b60200101906001600160f81b031916908160001a905350600a86049550611eff565b50949350505050565b6060610e15838360405180602001604052806000815250604051806020016040528060008152506040518060200160405280600081525061250d565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6001600160a01b038116611ffc5760405162461bcd60e51b81526004018080602001828103825260268152602001806128b76026913960400191505060405180910390fd5b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b031661206b82611254565b6001600160a01b0316146120b05760405162461bcd60e51b8152600401808060200182810382526029815260200180612a256029913960400191505060405180910390fd5b6001600160a01b0382166120f55760405162461bcd60e51b81526004018080602001828103825260248152602001806128dd6024913960400191505060405180910390fd5b6120fe81612721565b6001600160a01b038316600090815260036020526040902061211f9061275c565b6001600160a01b038216600090815260036020526040902061214090612773565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b0382166000908152600560205260408120546121c690600163ffffffff611ac216565b600083815260066020526040902054909150808214612261576001600160a01b038416600090815260056020526040812080548490811061220357fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b03168152602001908152602001600020838154811061224157fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b038416600090815260056020526040902080549061228a9060001983016127fa565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6000826122de57506000610d83565b828202828482816122eb57fe5b0414610e155760405162461bcd60e51b81526004018080602001828103825260218152602001806129b86021913960400191505060405180910390fd5b600080821161237e576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b600082848161238957fe5b04949350505050565b6001600160a01b0382166123ed576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6123f681611b1f565b15612448576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061248790612773565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b3b151590565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f191660200182016040528015612561576020820181803883390190505b509050806000805b88518110156125ba5788818151811061257e57fe5b602001015160f81c60f81b83838060010194508151811061259b57fe5b60200101906001600160f81b031916908160001a905350600101612569565b5060005b875181101561260f578781815181106125d357fe5b602001015160f81c60f81b8383806001019450815181106125f057fe5b60200101906001600160f81b031916908160001a9053506001016125be565b5060005b86518110156126645786818151811061262857fe5b602001015160f81c60f81b83838060010194508151811061264557fe5b60200101906001600160f81b031916908160001a905350600101612613565b5060005b85518110156126b95785818151811061267d57fe5b602001015160f81c60f81b83838060010194508151811061269a57fe5b60200101906001600160f81b031916908160001a905350600101612668565b5060005b845181101561270e578481815181106126d257fe5b602001015160f81c60f81b8383806001019450815181106126ef57fe5b60200101906001600160f81b031916908160001a9053506001016126bd565b50909d9c50505050505050505050505050565b6000818152600260205260409020546001600160a01b03161561182a57600090815260026020526040902080546001600160a01b0319169055565b805461276f90600163ffffffff611ac216565b9055565b80546001019055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106127bd57805160ff19168380011785556127ea565b828001600101855582156127ea579182015b828111156127ea5782518255916020019190600101906127cf565b506127f692915061281a565b5090565b815481835581811115610d0457600083815260209020610d049181019083015b610b3891905b808211156127f6576000815560010161282056fe53656e646572206973206e6f7420746865206f776e6572206f662074686520636173696e6f455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a72315820d1bf14647ae7c2ad8c3613adc929bb1264032f62a78d4b2b449e53b602ce41ce64736f6c634300050b0032

Deployed Bytecode Sourcemap

45172:4910:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47550:356;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47550:356:0;;;;;;;:::i;:::-;;11479:135;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11479:135:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11479:135:0;-1:-1:-1;;;;;;11479:135:0;;:::i;:::-;;;;;;;;;;;;;;;;;;35972:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35972:85:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;35972:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16446:204;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16446:204:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16446:204:0;;:::i;:::-;;;;-1:-1:-1;;;;;16446:204:0;;;;;;;;;;;;;;15732:421;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15732:421:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15732:421:0;;;;;;;;:::i;27584:96::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27584:96:0;;;:::i;:::-;;;;;;;;;;;;;;;;18123:290;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18123:290:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;18123:290:0;;;;;;;;;;;;;;;;;:::i;27193:232::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27193:232:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27193:232:0;;;;;;;;:::i;46159:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46159:111:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;46159:111:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46159:111:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;46159:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;46159:111:0;;-1:-1:-1;46159:111:0;;-1:-1:-1;;;;;46159:111:0:i;47146:186::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47146:186:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47146:186:0;;:::i;49966:110::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49966:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;49966:110:0;;:::i;49763:196::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;49763:196:0;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;49763:196:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;49763:196:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;49763:196:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;49763:196:0;;-1:-1:-1;49763:196:0;;-1:-1:-1;;;;;49763:196:0:i;19059:134::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19059:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;19059:134:0;;;;;;;;;;;;;;;;;:::i;28026:199::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28026:199:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28026:199:0;;:::i;48038:781::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48038:781:0;;;;;;;:::i;46277:98::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46277:98:0;;:::i;15073:228::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15073:228:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;15073:228:0;;:::i;14636:211::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14636:211:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14636:211:0;-1:-1:-1;;;;;14636:211:0;;:::i;40004:140::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40004:140:0;;;:::i;43646:152::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;43646:152:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;43646:152:0;-1:-1:-1;;;;;43646:152:0;;:::i;45967:186::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45967:186:0;;;;;;;:::i;47912:120::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;47912:120:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47912:120:0;;:::i;47339:204::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47339:204:0;;:::i;39193:79::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39193:79:0;;;:::i;39559:92::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;39559:92:0;;;:::i;36172:89::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36172:89:0;;;:::i;48825:932::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48825:932:0;;:::i;45869:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45869:92:0;;:::i;16951:248::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16951:248:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;16951:248:0;;;;;;;;;;:::i;19912:268::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19912:268:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;19912:268:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;19912:268:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19912:268:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;19912:268:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;19912:268:0;;-1:-1:-1;19912:268:0;;-1:-1:-1;;;;;19912:268:0:i;44276:180::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44276:180:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44276:180:0;;:::i;45770:93::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45770:93:0;;;:::i;44580:402::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;44580:402:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;44580:402:0;;;;;;;;;;:::i;40299:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40299:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;40299:109:0;-1:-1:-1;;;;;40299:109:0;;:::i;47550:356::-;47653:16;47661:7;47653;:16::i;:::-;-1:-1:-1;;;;;47639:30:0;:10;-1:-1:-1;;;;;47639:30:0;;47631:80;;;;-1:-1:-1;;;47631:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47718:17;47738:24;47754:7;47738:15;:24::i;:::-;47718:44;;47793:6;47777:12;:22;;47769:31;;;;;;47832:22;;;;:13;:22;;;;;;:34;;47859:6;47832:34;:26;:34;:::i;:::-;47807:22;;;;:13;:22;;;;;;:59;;;;47873:27;;:10;;:27;;;;;47893:6;;47873:27;47807:22;47873:27;47893:6;47873:10;:27;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47873:27:0;47550:356;;;:::o;11479:135::-;-1:-1:-1;;;;;;11573:33:0;;11549:4;11573:33;;;;;;;;;;;;;11479:135;;;;:::o;35972:85::-;36044:5;36037:12;;;;;;;;-1:-1:-1;;36037:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36011:13;;36037:12;;36044:5;;36037:12;;36044:5;36037:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35972:85;;:::o;16446:204::-;16505:7;16533:16;16541:7;16533;:16::i;:::-;16525:73;;;;-1:-1:-1;;;16525:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16618:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;16618:24:0;;16446:204::o;15732:421::-;15796:13;15812:16;15820:7;15812;:16::i;:::-;15796:32;;15853:5;-1:-1:-1;;;;;15847:11:0;:2;-1:-1:-1;;;;;15847:11:0;;;15839:57;;;;-1:-1:-1;;;15839:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15917:10;-1:-1:-1;;;;;15917:19:0;;;;:58;;;15940:35;15957:5;15964:10;15940:16;:35::i;:::-;15909:150;;;;-1:-1:-1;;;15909:150:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16072:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;16072:29:0;-1:-1:-1;;;;;16072:29:0;;;;;;;;;16117:28;;16072:24;;16117:28;;;;;;;15732:421;;;:::o;27584:96::-;27655:10;:17;27584:96;:::o;18123:290::-;18267:39;18286:10;18298:7;18267:18;:39::i;:::-;18259:101;;;;-1:-1:-1;;;18259:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18373:32;18387:4;18393:2;18397:7;18373:13;:32::i;:::-;18123:290;;;:::o;27193:232::-;27273:7;27309:16;27319:5;27309:9;:16::i;:::-;27301:5;:24;27293:80;;;;-1:-1:-1;;;27293:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27391:19:0;;;;;;:12;:19;;;;;:26;;27411:5;;27391:26;;;;;;;;;;;;;;27384:33;;27193:232;;;;;:::o;46159:111::-;39405:9;:7;:9::i;:::-;39397:54;;;;;-1:-1:-1;;;39397:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39397:54:0;;;;;;;;;;;;;;;46240:24;;;;:13;;:24;;;;;:::i;:::-;;46159:111;:::o;47146:186::-;47206:4;47219:21;47243:25;47260:7;47243:16;:25::i;:::-;47282:22;;;;:13;:22;;;;;;47219:49;;-1:-1:-1;47282:44:0;;47219:49;47282:44;:26;:44;:::i;:::-;47275:51;47146:186;-1:-1:-1;;;47146:186:0:o;49966:110::-;50052:18;;;;:9;:18;;;;;;;;;50045:25;;;;;;-1:-1:-1;;50045:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50023:13;;50045:25;;;50052:18;50045:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49966:110;;;:::o;49763:196::-;49863:16;49871:7;49863;:16::i;:::-;-1:-1:-1;;;;;49849:30:0;:10;-1:-1:-1;;;;;49849:30:0;;49841:80;;;;-1:-1:-1;;;49841:80:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49928:18;;;;:9;:18;;;;;;;;:25;;;;;;;;:::i;19059:134::-;19146:39;19163:4;19169:2;19173:7;19146:39;;;;;;;;;;;;:16;:39::i;28026:199::-;28084:7;28120:13;:11;:13::i;:::-;28112:5;:21;28104:78;;;;-1:-1:-1;;;28104:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28200:10;28211:5;28200:17;;;;;;;;;;;;;;;;28193:24;;28026:199;;;:::o;48038:781::-;48150:1;48122:16;48130:7;48122;:16::i;:::-;-1:-1:-1;;;;;48122:30:0;;;48114:64;;;;;-1:-1:-1;;;48114:64:0;;;;;;;;;;;;-1:-1:-1;;;48114:64:0;;;;;;;;;;;;;;;48194:23;48209:7;48194:14;:23::i;:::-;48193:24;48185:51;;;;;-1:-1:-1;;;48185:51:0;;;;;;;;;;;;-1:-1:-1;;;48185:51:0;;;;;;;;;;;;;;;48268:1;48251:14;:18;48243:45;;;;;-1:-1:-1;;;48243:45:0;;;;;;;;;;;;-1:-1:-1;;;48243:45:0;;;;;;;;;;;;;;;48320:2;48303:14;:19;48295:47;;;;;-1:-1:-1;;;48295:47:0;;;;;;;;;;;;-1:-1:-1;;;48295:47:0;;;;;;;;;;;;;;;48349:11;48363:36;48373:9;48384:14;48363:9;:36::i;:::-;48423:22;;;;:13;:22;;;;;;48349:50;;-1:-1:-1;48423:37:0;;48450:9;48423:37;:26;:37;:::i;:::-;48414:6;:46;48406:74;;;;;-1:-1:-1;;;48406:74:0;;;;;;;;;;;;-1:-1:-1;;;48406:74:0;;;;;;;;;;;;;;;48504:10;;48495:6;:19;48487:48;;;;;-1:-1:-1;;;48487:48:0;;;;;;;;;;;;-1:-1:-1;;;48487:48:0;;;;;;;;;;;;;;;48567:22;;;;:13;:22;;;;;;:37;;48594:9;48567:37;:26;:37;:::i;:::-;48542:22;;;;:13;:22;;;;;;;;:62;;;;48611:11;:20;;;;;48646:12;48611:47;;48665:27;;;:40;;-1:-1:-1;;;;;;48665:40:0;48695:10;48665:40;;;48745:9;48712:30;;;:42;48761:35;;:52;-1:-1:-1;48038:781:0:o;46277:98::-;39405:9;:7;:9::i;:::-;39397:54;;;;;-1:-1:-1;;;39397:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39397:54:0;;;;;;;;;;;;;;;46347:10;:22;46277:98::o;15073:228::-;15128:7;15164:20;;;:11;:20;;;;;;-1:-1:-1;;;;;15164:20:0;15203:19;15195:73;;;;-1:-1:-1;;;15195:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14636:211;14691:7;-1:-1:-1;;;;;14719:19:0;;14711:74;;;;-1:-1:-1;;;14711:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;14805:24:0;;;;;;:17;:24;;;;;:34;;:32;:34::i;40004:140::-;39405:9;:7;:9::i;:::-;39397:54;;;;;-1:-1:-1;;;39397:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39397:54:0;;;;;;;;;;;;;;;40087:6;;40066:40;;40103:1;;-1:-1:-1;;;;;40087:6:0;;40066:40;;40103:1;;40066:40;40117:6;:19;;-1:-1:-1;;;;;;40117:19:0;;;40004:140::o;43646:152::-;39405:9;:7;:9::i;:::-;39397:54;;;;;-1:-1:-1;;;39397:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39397:54:0;;;;;;;;;;;;;;;43699:18;43720:17;:15;:17::i;:::-;43699:38;;43744:22;43750:3;43755:10;43744:5;:22::i;:::-;43773:19;:17;:19::i;45967:186::-;39405:9;:7;:9::i;:::-;39397:54;;;;;-1:-1:-1;;;39397:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39397:54:0;;;;;;;;;;;;;;;46072:12;46057:91;46092:10;46086:2;:16;46057:91;;46119:21;46125:10;46137:2;46119:5;:21::i;:::-;46104:4;;46057:91;;47912:120;47976:7;47999:20;;;:11;:20;;;;;:27;;;-1:-1:-1;;;;;47999:27:0;;47912:120::o;47339:204::-;47440:1;47412:16;47420:7;47412;:16::i;:::-;-1:-1:-1;;;;;47412:30:0;;;47404:64;;;;;-1:-1:-1;;;47404:64:0;;;;;;;;;;;;-1:-1:-1;;;47404:64:0;;;;;;;;;;;;;;;47500:22;;;;:13;:22;;;;;;:37;;47527:9;47500:37;:26;:37;:::i;:::-;47475:22;;;;:13;:22;;;;;;:62;47339:204::o;39193:79::-;39258:6;;-1:-1:-1;;;;;39258:6:0;39193:79;:::o;39559:92::-;39637:6;;-1:-1:-1;;;;;39637:6:0;39623:10;:20;;39559:92::o;36172:89::-;36246:7;36239:14;;;;;;;;-1:-1:-1;;36239:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36213:13;;36239:14;;36246:7;;36239:14;;36246:7;36239:14;;;;;;;;;;;;;;;;;;;;;;;;48825:932;48880:16;48899:20;;;:11;:20;;;;;:32;48946:15;48938:43;;;;;-1:-1:-1;;;48938:43:0;;;;;;;;;;;;-1:-1:-1;;;48938:43:0;;;;;;;;;;;;;;;49025:1;49010:12;:16;48996:11;:30;48988:65;;;;;-1:-1:-1;;;48988:65:0;;;;;;;;;;;;-1:-1:-1;;;48988:65:0;;;;;;;;;;;;;;;49068:20;;;;:11;:20;;;;;:27;;;-1:-1:-1;;;;;49068:27:0;49099:10;49068:41;49060:71;;;;;-1:-1:-1;;;49060:71:0;;;;;;;;;;;;-1:-1:-1;;;49060:71:0;;;;;;;;;;;;;;;49138:21;49172:18;:11;49188:1;49172:18;:15;:18;:::i;:::-;49198:19;49220:20;;;:11;:20;;;;;:35;;;;49279:30;;;;;49162:29;;;-1:-1:-1;49220:35:0;49279:30;49368:3;49343:28;;;49337:34;;;49392:36;49279:30;49220:35;49392:9;:36::i;:::-;49435:22;49476:20;;;:11;:20;;;;;:27;;;;;49512;;;-1:-1:-1;;;;;;49512:27:0;;;;;;;;;;;;;;;;;;;49378:50;;-1:-1:-1;;;;;;49476:27:0;49550:31;;;49546:145;;49617:22;;;;:13;:22;;;;;;:34;;49644:6;49617:34;:26;:34;:::i;:::-;49592:22;;;;:13;:22;;;;;;:59;;;;49660:23;;-1:-1:-1;;;;;49660:15:0;;;:23;;;;;49676:6;;49660:23;49592:22;49660:23;49676:6;49660:15;:23;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;49660:23:0;49546:145;49702:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48825:932;;;;;;;;:::o;45869:92::-;39405:9;:7;:9::i;:::-;39397:54;;;;;-1:-1:-1;;;39397:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39397:54:0;;;;;;;;;;;;;;;45929:26;45935:10;45947:7;45929:5;:26::i;:::-;45869:92;:::o;16951:248::-;-1:-1:-1;;;;;17031:16:0;;17037:10;17031:16;;17023:54;;;;;-1:-1:-1;;;17023:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17109:10;17090:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;17090:34:0;;;;;;;;;;;;:45;;-1:-1:-1;;17090:45:0;;;;;;;;;;17151:40;;;;;;;17090:34;;17109:10;17151:40;;;;;;;;;;;16951:248;;:::o;19912:268::-;20019:31;20032:4;20038:2;20042:7;20019:12;:31::i;:::-;20069:48;20092:4;20098:2;20102:7;20111:5;20069:22;:48::i;:::-;20061:111;;;;-1:-1:-1;;;20061:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44276:180;44335:13;44364:86;44392:14;:12;:14::i;:::-;44417:26;44434:8;44417:16;:26::i;:::-;44364:17;:86::i;45770:93::-;45844:13;45837:20;;;;;;;;-1:-1:-1;;45837:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45815:13;;45837:20;;45844:13;;45837:20;;45844:13;45837:20;;;;;;;;;;;;;;;;;;;;;;;;44580:402;44809:20;;44849:28;;;-1:-1:-1;;;44849:28:0;;-1:-1:-1;;;;;44849:28:0;;;;;;;;;44690:4;;44809:20;;;44841:49;;;44809:20;;44849:21;;:28;;;;;;;;;;;;;;;44809:20;44849:28;;;5:2:-1;;;;30:1;27;20:12;5:2;44849:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;44849:28:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;44849:28:0;-1:-1:-1;;;;;44841:49:0;;44837:85;;;44910:4;44903:11;;;;;44837:85;44937:39;44960:5;44967:8;44937:22;:39::i;:::-;44930:46;44580:402;-1:-1:-1;;;;44580:402:0:o;40299:109::-;39405:9;:7;:9::i;:::-;39397:54;;;;;-1:-1:-1;;;39397:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39397:54:0;;;;;;;;;;;;;;;40372:28;40391:8;40372:18;:28::i;5620:184::-;5678:7;5711:1;5706;:6;;5698:49;;;;;-1:-1:-1;;;5698:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5770:5:0;;;5620:184::o;20382:155::-;20439:4;20472:20;;;:11;:20;;;;;;-1:-1:-1;;;;;20472:20:0;20510:19;;;20382:155::o;20907:333::-;20992:4;21017:16;21025:7;21017;:16::i;:::-;21009:73;;;;-1:-1:-1;;;21009:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21093:13;21109:16;21117:7;21109;:16::i;:::-;21093:32;;21155:5;-1:-1:-1;;;;;21144:16:0;:7;-1:-1:-1;;;;;21144:16:0;;:51;;;;21188:7;-1:-1:-1;;;;;21164:31:0;:20;21176:7;21164:11;:20::i;:::-;-1:-1:-1;;;;;21164:31:0;;21144:51;:87;;;;21199:32;21216:5;21223:7;21199:16;:32::i;28609:245::-;28695:38;28715:4;28721:2;28725:7;28695:19;:38::i;:::-;28746:47;28779:4;28785:7;28746:32;:47::i;:::-;28806:40;28834:2;28838:7;28806:27;:40::i;46833:307::-;46896:4;46913:23;46928:7;46913:14;:23::i;:::-;46909:211;;;46947:14;46964:20;;;:11;:20;;;;;:30;;;;47025:35;;;;;47076:36;46964:30;47025:35;47076:9;:36::i;:::-;47069:43;;;;;;46909:211;-1:-1:-1;47133:1:0;46833:307;;;:::o;46546:281::-;46607:4;46639:20;;;:11;:20;;;;;:32;46704:12;46682:18;46639:32;46698:1;46682:18;:15;:18;:::i;:::-;:34;46678:68;;;46734:4;46727:11;;;;;46678:68;46773:1;46759:11;:15;:62;;;;-1:-1:-1;46819:1:0;46788:18;:11;46804:1;46788:18;:15;:18;:::i;:::-;46778:29;:43;;;46546:281;-1:-1:-1;;;46546:281:0:o;46381:159::-;46460:4;46480:37;46502:14;46480:17;:9;46494:2;46480:17;:13;:17;:::i;:::-;:21;:37;:21;:37;:::i;5164:181::-;5222:7;5254:5;;;5278:6;;;;5270:46;;;;;-1:-1:-1;;;5270:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;10137:114;10229:14;;10137:114::o;43940:100::-;44012:15;;43989:7;;44012:22;;44032:1;44012:22;:19;:22;:::i;:::-;44005:29;;43940:100;:::o;29119:202::-;29183:24;29195:2;29199:7;29183:11;:24::i;:::-;29220:40;29248:2;29252:7;29220:27;:40::i;:::-;29273;29305:7;29273:31;:40::i;44114:68::-;44159:15;:17;;;;;;44114:68::o;24154:356::-;24276:4;24303:15;:2;-1:-1:-1;;;;;24303:13:0;;:15::i;:::-;24298:60;;-1:-1:-1;24342:4:0;24335:11;;24298:60;24386:70;;-1:-1:-1;;;24386:70:0;;24423:10;24386:70;;;;;;-1:-1:-1;;;;;24386:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;24370:13;;24386:36;;;;;;24423:10;;24435:4;;24441:7;;24450:5;;24386:70;;;;;;;;;;;24370:13;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;24386:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24386:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24386:70:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24386:70:0;-1:-1:-1;;;;;;24475:26:0;-1:-1:-1;;;24475:26:0;;-1:-1:-1;;24154:356:0;;;;;;:::o;42317:482::-;42367:27;42411:7;42407:50;;-1:-1:-1;42435:10:0;;;;;;;;;;;;-1:-1:-1;;;42435:10:0;;;;;;42407:50;42476:2;42467:6;42508:69;42515:6;;42508:69;;42538:5;;42563:2;42558:7;;;;42508:69;;;42587:17;42617:3;42607:14;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;42607:14:0;87:34:-1;135:17;;-1:-1;42607:14:0;-1:-1:-1;42587:34:0;-1:-1:-1;;;42641:7:0;;42659:103;42666:7;;42659:103;;42723:2;42718;:7;42713:2;:12;42702:25;;42690:4;42695:3;;;;;;;42690:9;;;;;;;;;;;:37;-1:-1:-1;;;;;42690:37:0;;;;;;;;-1:-1:-1;42748:2:0;42742:8;;;;42659:103;;;-1:-1:-1;42786:4:0;42317:482;-1:-1:-1;;;;42317:482:0:o;42161:148::-;42239:13;42272:29;42282:2;42286;42272:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:9;:29::i;17529:147::-;-1:-1:-1;;;;;17633:25:0;;;17609:4;17633:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;17529:147::o;40514:229::-;-1:-1:-1;;;;;40588:22:0;;40580:73;;;;-1:-1:-1;;;40580:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40690:6;;40669:38;;-1:-1:-1;;;;;40669:38:0;;;;40690:6;;40669:38;;40690:6;;40669:38;40718:6;:17;;-1:-1:-1;;;;;;40718:17:0;-1:-1:-1;;;;;40718:17:0;;;;;;;;;;40514:229::o;23109:459::-;23223:4;-1:-1:-1;;;;;23203:24:0;:16;23211:7;23203;:16::i;:::-;-1:-1:-1;;;;;23203:24:0;;23195:78;;;;-1:-1:-1;;;23195:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23292:16:0;;23284:65;;;;-1:-1:-1;;;23284:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23362:23;23377:7;23362:14;:23::i;:::-;-1:-1:-1;;;;;23398:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;23444:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;23490:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;23490:25:0;-1:-1:-1;;;;;23490:25:0;;;;;;;;;23533:27;;23490:20;;23533:27;;;;;;;23109:459;;;:::o;31792:1148::-;-1:-1:-1;;;;;32083:18:0;;32058:22;32083:18;;;:12;:18;;;;;:25;:32;;32113:1;32083:32;:29;:32;:::i;:::-;32126:18;32147:26;;;:17;:26;;;;;;32058:57;;-1:-1:-1;32280:28:0;;;32276:328;;-1:-1:-1;;;;;32347:18:0;;32325:19;32347:18;;;:12;:18;;;;;:34;;32366:14;;32347:34;;;;;;;;;;;;;;32325:56;;32431:11;32398:12;:18;32411:4;-1:-1:-1;;;;;32398:18:0;-1:-1:-1;;;;;32398:18:0;;;;;;;;;;;;32417:10;32398:30;;;;;;;;;;;;;;;;;;;:44;;;;32515:30;;;:17;:30;;;;;:43;;;32276:328;-1:-1:-1;;;;;32693:18:0;;;;;;:12;:18;;;;;:27;;;;;-1:-1:-1;;32693:27:0;;;:::i;:::-;;31792:1148;;;;:::o;30616:186::-;-1:-1:-1;;;;;30730:16:0;;;;;;;:12;:16;;;;;;;;:23;;30701:26;;;:17;:26;;;;;:52;;;30764:16;;;39:1:-1;23:18;;45:23;;30764:30:0;;;;;;;;30616:186::o;6055:470::-;6113:7;6357:6;6353:47;;-1:-1:-1;6387:1:0;6380:8;;6353:47;6424:5;;;6428:1;6424;:5;:1;6448:5;;;;;:10;6440:56;;;;-1:-1:-1;;;6440:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6993:333;7051:7;7150:1;7146;:5;7138:44;;;;;-1:-1:-1;;;7138:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;7193:9;7209:1;7205;:5;;;;;;;6993:333;-1:-1:-1;;;;6993:333:0:o;21493:335::-;-1:-1:-1;;;;;21565:16:0;;21557:61;;;;;-1:-1:-1;;;21557:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21638:16;21646:7;21638;:16::i;:::-;21637:17;21629:58;;;;;-1:-1:-1;;;21629:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21700:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;21700:25:0;-1:-1:-1;;;;;21700:25:0;;;;;;;;21736:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;21787;;21812:7;;-1:-1:-1;;;;;21787:33:0;;;21804:1;;21787:33;;21804:1;;21787:33;21493:335;;:::o;31003:164::-;31107:10;:17;;31080:24;;;;:15;:24;;;;;:44;;;39:1:-1;23:18;;45:23;;31135:24:0;;;;;;;31003:164::o;8575:422::-;8942:20;8981:8;;;8575:422::o;40915:872::-;41047:13;41071:16;41096:2;41071:28;;41108:16;41133:2;41108:28;;41145:16;41170:2;41145:28;;41182:16;41207:2;41182:28;;41219:16;41244:2;41219:28;;41256:19;41341:3;:10;41328:3;:10;41315:3;:10;41302:3;:10;41289:3;:10;:23;:36;:49;:62;41278:74;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;41278:74:0;87:34:-1;135:17;;-1:-1;41278:74:0;-1:-1:-1;41256:96:0;-1:-1:-1;41256:96:0;41404:6;;41423:58;41444:3;:10;41440:1;:14;41423:58;;;41475:3;41479:1;41475:6;;;;;;;;;;;;;;;;41461;41468:3;;;;;;41461:11;;;;;;;;;;;:20;-1:-1:-1;;;;;41461:20:0;;;;;;;;-1:-1:-1;41456:3:0;;41423:58;;;-1:-1:-1;41495:6:0;41490:58;41511:3;:10;41507:1;:14;41490:58;;;41542:3;41546:1;41542:6;;;;;;;;;;;;;;;;41528;41535:3;;;;;;41528:11;;;;;;;;;;;:20;-1:-1:-1;;;;;41528:20:0;;;;;;;;-1:-1:-1;41523:3:0;;41490:58;;;-1:-1:-1;41562:6:0;41557:58;41578:3;:10;41574:1;:14;41557:58;;;41609:3;41613:1;41609:6;;;;;;;;;;;;;;;;41595;41602:3;;;;;;41595:11;;;;;;;;;;;:20;-1:-1:-1;;;;;41595:20:0;;;;;;;;-1:-1:-1;41590:3:0;;41557:58;;;-1:-1:-1;41629:6:0;41624:58;41645:3;:10;41641:1;:14;41624:58;;;41676:3;41680:1;41676:6;;;;;;;;;;;;;;;;41662;41669:3;;;;;;41662:11;;;;;;;;;;;:20;-1:-1:-1;;;;;41662:20:0;;;;;;;;-1:-1:-1;41657:3:0;;41624:58;;;-1:-1:-1;41696:6:0;41691:58;41712:3;:10;41708:1;:14;41691:58;;;41743:3;41747:1;41743:6;;;;;;;;;;;;;;;;41729;41736:3;;;;;;41729:11;;;;;;;;;;;:20;-1:-1:-1;;;;;41729:20:0;;;;;;;;-1:-1:-1;41724:3:0;;41691:58;;;-1:-1:-1;41772:6:0;;40915:872;-1:-1:-1;;;;;;;;;;;;;40915:872:0:o;24678:175::-;24778:1;24742:24;;;:15;:24;;;;;;-1:-1:-1;;;;;24742:24:0;:38;24738:108;;24832:1;24797:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;24797:37:0;;;24678:175::o;10358:110::-;10439:14;;:21;;10458:1;10439:21;:18;:21;:::i;:::-;10422:38;;10358:110::o;10259:91::-;10323:19;;10341:1;10323:19;;;10259:91::o;45172:4910::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45172:4910:0;;;-1:-1:-1;45172:4910:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://d1bf14647ae7c2ad8c3613adc929bb1264032f62a78d4b2b449e53b602ce41ce
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.