ERC-721
Overview
Max Total Supply
22 PCT
Holders
11
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PCTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
PeoplesCasino
Compiler Version
v0.5.11+commit.c082d0b4
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-09-09 */ // 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 roll, uint rollUnder); string _baseTokenURI = "https://peoplescasino.online/api/"; mapping(uint => string) extraData; 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 getHouseReserve(uint tokenId) public view returns (uint) { require(ownerOf(tokenId) != address(0), "Casino does not exist"); return houseReserves[tokenId]; } function depositHouseReserve(uint tokenId) public payable { require(ownerOf(tokenId) != address(0), "Casino does not exist"); houseReserves[tokenId] += msg.value; } function withdrawalHouseReserve(uint tokenId, uint amount) public payable { require(msg.sender == ownerOf(tokenId), "Account is not the owner of the casino"); require(houseReserves[tokenId] >= amount, "Not enough eth to withdrawal"); houseReserves[tokenId] -= amount; msg.sender.transfer(amount); } function getRandomPercent() internal view returns (uint) { return uint256(keccak256(abi.encodePacked(block.timestamp, block.difficulty))) % 100; } function makeBet(uint tokenId, uint oddsPercentage) public payable { require(ownerOf(tokenId) != address(0), "Casino does not exist"); require(oddsPercentage > 1, "Bet is too low"); require(oddsPercentage < 99, "Bet is too high"); // Remove 4% house charges uint payout = msg.value.mul(96).div(oddsPercentage); require(payout < houseReserves[tokenId].add(msg.value), "Payout is too high"); require(payout < MAX_PAYOUT, "Payout is too high"); // Bet is now underway. // Add wager to house. houseReserves[tokenId] = houseReserves[tokenId].add(msg.value); // Roll the dice uint roll = getRandomPercent(); // Payout winner if needed if (roll <= oddsPercentage) { // Remove winnings from house. houseReserves[tokenId] = houseReserves[tokenId].sub(payout); msg.sender.transfer(payout); } // Make the result available emit BetResult(tokenId, roll, oddsPercentage); } function setExtraData(uint tokenId, string memory data) public payable { require(msg.sender == ownerOf(tokenId), "Account is not the owner of the casino"); extraData[tokenId] = data; } function getExtraData(uint tokenId) public view returns (string memory) { require(ownerOf(tokenId) != address(0), "Casino does not exist"); return extraData[tokenId]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"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":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":"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":false,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"oddsPercentage","type":"uint256"}],"name":"makeBet","outputs":[],"payable":true,"stateMutability":"payable","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":"roll","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"rollUnder","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"}]
Contract Creation Code
6000600e556729a2241af62c000060105560e0604052602160808181529062002c8460a03980516200003a916011916020909101906200030f565b503480156200004857600080fd5b50604080518082018252600d81527f50656f706c6573436173696e6f000000000000000000000000000000000000006020808301919091528251808401909352600383527f5043540000000000000000000000000000000000000000000000000000000000908301529073a5409ec958c83c3f309868babaca7c86dcb077c182828181620000ff7f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b036200024016565b620001337f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b036200024016565b620001677f780e9d63000000000000000000000000000000000000000000000000000000006001600160e01b036200024016565b81516200017c9060099060208501906200030f565b5080516200019290600a9060208401906200030f565b50620001c77f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b036200024016565b5050600c80546001600160a01b0319163317908190556040516001600160a01b03919091169250600091507f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3600d80546001600160a01b0319166001600160a01b039290921691909117905550620003b49050565b7fffffffff000000000000000000000000000000000000000000000000000000008082161415620002d257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200035257805160ff191683800117855562000382565b8280016001018555821562000382579182015b828111156200038257825182559160200191906001019062000365565b506200039092915062000394565b5090565b620003b191905b808211156200039057600081556001016200039b565b90565b6128c080620003c46000396000f3fe6080604052600436106101e25760003560e01c806370a0823111610102578063a0712d6811610095578063d547cfb711610064578063d547cfb7146108aa578063df898e32146108bf578063e985e9c5146108e2578063f2fde38b1461091d576101e2565b8063a0712d6814610755578063a22cb46514610772578063b88d4fde146107ad578063c87b56dd14610880576101e2565b80638ad0ee82116100d15780638ad0ee82146106f95780638da5cb5b146107165780638f32d59b1461072b57806395d89b4114610740576101e2565b806370a082311461065b578063715018a61461068e578063755edd17146106a3578063822df28f146106d6576101e2565b806330176e131161017a57806342842e0e1161014957806342842e0e146105a75780634f6ccce7146105ea57806356b4997f146106145780636352211e14610631576101e2565b806330176e13146104005780633a0753b1146104a65780633c79ca03146104d05780634044474c146104fa576101e2565b8063095ea7b3116101b6578063095ea7b31461032457806318160ddd1461035d57806323b872dd146103845780632f745c59146103c7576101e2565b8062c2e49a146101e757806301ffc9a71461020c57806306fdde0314610254578063081812fc146102de575b600080fd5b61020a600480360360408110156101fd57600080fd5b5080359060200135610950565b005b34801561021857600080fd5b506102406004803603602081101561022f57600080fd5b50356001600160e01b031916610a4f565b604080519115158252519081900360200190f35b34801561026057600080fd5b50610269610a72565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a357818101518382015260200161028b565b50505050905090810190601f1680156102d05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ea57600080fd5b506103086004803603602081101561030157600080fd5b5035610b09565b604080516001600160a01b039092168252519081900360200190f35b34801561033057600080fd5b5061020a6004803603604081101561034757600080fd5b506001600160a01b038135169060200135610b6b565b34801561036957600080fd5b50610372610c7c565b60408051918252519081900360200190f35b34801561039057600080fd5b5061020a600480360360608110156103a757600080fd5b506001600160a01b03813581169160208101359091169060400135610c82565b3480156103d357600080fd5b50610372600480360360408110156103ea57600080fd5b506001600160a01b038135169060200135610cd2565b61020a6004803603602081101561041657600080fd5b81019060208101813564010000000081111561043157600080fd5b82018360208201111561044357600080fd5b8035906020019184600183028401116401000000008311171561046557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d52945050505050565b3480156104b257600080fd5b50610372600480360360208110156104c957600080fd5b5035610db0565b3480156104dc57600080fd5b50610269600480360360208110156104f357600080fd5b5035610e23565b61020a6004803603604081101561051057600080fd5b8135919081019060408101602082013564010000000081111561053257600080fd5b82018360208201111561054457600080fd5b8035906020019184600183028401116401000000008311171561056657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f23945050505050565b3480156105b357600080fd5b5061020a600480360360608110156105ca57600080fd5b506001600160a01b03813581169160208101359091169060400135610f9a565b3480156105f657600080fd5b506103726004803603602081101561060d57600080fd5b5035610fb5565b61020a6004803603602081101561062a57600080fd5b503561101b565b34801561063d57600080fd5b506103086004803603602081101561065457600080fd5b5035611067565b34801561066757600080fd5b506103726004803603602081101561067e57600080fd5b50356001600160a01b03166110bb565b34801561069a57600080fd5b5061020a611123565b3480156106af57600080fd5b5061020a600480360360208110156106c657600080fd5b50356001600160a01b03166111b4565b61020a600480360360408110156106ec57600080fd5b5080359060200135611219565b61020a6004803603602081101561070f57600080fd5b503561127b565b34801561072257600080fd5b506103086112f0565b34801561073757600080fd5b506102406112ff565b34801561074c57600080fd5b50610269611310565b61020a6004803603602081101561076b57600080fd5b5035611371565b34801561077e57600080fd5b5061020a6004803603604081101561079557600080fd5b506001600160a01b03813516906020013515156113c5565b3480156107b957600080fd5b5061020a600480360360808110156107d057600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561080b57600080fd5b82018360208201111561081d57600080fd5b8035906020019184600183028401116401000000008311171561083f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611491945050505050565b34801561088c57600080fd5b50610269600480360360208110156108a357600080fd5b50356114e9565b3480156108b657600080fd5b50610269611504565b61020a600480360360408110156108d557600080fd5b5080359060200135611565565b3480156108ee57600080fd5b506102406004803603604081101561090557600080fd5b506001600160a01b038135811691602001351661180f565b34801561092957600080fd5b5061020a6004803603602081101561094057600080fd5b50356001600160a01b03166118ba565b61095982611067565b6001600160a01b0316336001600160a01b0316146109a85760405162461bcd60e51b815260040180806020018281038252602681526020018061269b6026913960400191505060405180910390fd5b6000828152600f6020526040902054811115610a0b576040805162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682065746820746f207769746864726177616c00000000604482015290519081900360640190fd5b6000828152600f60205260408082208054849003905551339183156108fc02918491818181858888f19350505050158015610a4a573d6000803e3d6000fd5b505050565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610afe5780601f10610ad357610100808354040283529160200191610afe565b820191906000526020600020905b815481529060010190602001808311610ae157829003601f168201915b505050505090505b90565b6000610b148261190a565b610b4f5760405162461bcd60e51b815260040180806020018281038252602c815260200180612799602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610b7682611067565b9050806001600160a01b0316836001600160a01b03161415610bc95760405162461bcd60e51b815260040180806020018281038252602181526020018061280e6021913960400191505060405180910390fd5b336001600160a01b0382161480610be55750610be5813361180f565b610c205760405162461bcd60e51b81526004018080602001828103825260388152602001806126ed6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b610c8c3382611927565b610cc75760405162461bcd60e51b815260040180806020018281038252603181526020018061282f6031913960400191505060405180910390fd5b610a4a8383836119c3565b6000610cdd836110bb565b8210610d1a5760405162461bcd60e51b815260040180806020018281038252602b8152602001806125f4602b913960400191505060405180910390fd5b6001600160a01b0383166000908152600560205260409020805483908110610d3e57fe5b906000526020600020015490505b92915050565b610d5a6112ff565b610d99576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b8051610dac90601190602084019061253b565b5050565b600080610dbc83611067565b6001600160a01b03161415610e10576040805162461bcd60e51b815260206004820152601560248201527410d85cda5b9bc8191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b506000908152600f602052604090205490565b60606000610e3083611067565b6001600160a01b03161415610e84576040805162461bcd60e51b815260206004820152601560248201527410d85cda5b9bc8191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b60008281526012602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610f175780601f10610eec57610100808354040283529160200191610f17565b820191906000526020600020905b815481529060010190602001808311610efa57829003601f168201915b50505050509050919050565b610f2c82611067565b6001600160a01b0316336001600160a01b031614610f7b5760405162461bcd60e51b815260040180806020018281038252602681526020018061269b6026913960400191505060405180910390fd5b60008281526012602090815260409091208251610a4a9284019061253b565b610a4a83838360405180602001604052806000815250611491565b6000610fbf610c7c565b8210610ffc5760405162461bcd60e51b815260040180806020018281038252602c815260200180612860602c913960400191505060405180910390fd5b6007828154811061100957fe5b90600052602060002001549050919050565b6110236112ff565b611062576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b601055565b6000818152600160205260408120546001600160a01b031680610d4c5760405162461bcd60e51b815260040180806020018281038252602981526020018061274f6029913960400191505060405180910390fd5b60006001600160a01b0382166111025760405162461bcd60e51b815260040180806020018281038252602a815260200180612725602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600360205260409020610d4c906119e2565b61112b6112ff565b61116a576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b6111bc6112ff565b6111fb576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b60006112056119e6565b90506112118282611a02565b610dac611a1f565b6112216112ff565b611260576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b815b818111610a4a576112733382611a02565b600101611262565b600061128682611067565b6001600160a01b031614156112da576040805162461bcd60e51b815260206004820152601560248201527410d85cda5b9bc8191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b6000908152600f60205260409020805434019055565b600c546001600160a01b031690565b600c546001600160a01b0316331490565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610afe5780601f10610ad357610100808354040283529160200191610afe565b6113796112ff565b6113b8576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b6113c23382611a02565b50565b6001600160a01b038216331415611423576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b61149c848484610c82565b6114a884848484611a2a565b6114e35760405162461bcd60e51b815260040180806020018281038252603281526020018061261f6032913960400191505060405180910390fd5b50505050565b6060610d4c6114f6611504565b6114ff84611b5d565b611c1e565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610afe5780601f10610ad357610100808354040283529160200191610afe565b600061157083611067565b6001600160a01b031614156115c4576040805162461bcd60e51b815260206004820152601560248201527410d85cda5b9bc8191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b6001811161160a576040805162461bcd60e51b815260206004820152600e60248201526d42657420697320746f6f206c6f7760901b604482015290519081900360640190fd5b60638110611651576040805162461bcd60e51b815260206004820152600f60248201526e084cae840d2e640e8dede40d0d2ced608b1b604482015290519081900360640190fd5b60006116748261166834606063ffffffff611c6116565b9063ffffffff611cba16565b6000848152600f6020526040902054909150611696903463ffffffff611d2416565b81106116de576040805162461bcd60e51b81526020600482015260126024820152710a0c2f2deeae840d2e640e8dede40d0d2ced60731b604482015290519081900360640190fd5b6010548110611729576040805162461bcd60e51b81526020600482015260126024820152710a0c2f2deeae840d2e640e8dede40d0d2ced60731b604482015290519081900360640190fd5b6000838152600f6020526040902054611748903463ffffffff611d2416565b6000848152600f6020526040812091909155611762611d7e565b90508281116117c9576000848152600f602052604090205461178a908363ffffffff611dae16565b6000858152600f6020526040808220929092559051339184156108fc02918591818181858888f193505050501580156117c7573d6000803e3d6000fd5b505b604080518581526020810183905280820185905290517f8406982e62b8a8c06088d778f99e438413dedded850e622264d3faf77b2cac769181900360600190a150505050565b600d546040805163c455279160e01b81526001600160a01b0385811660048301529151600093831692851691839163c455279191602480820192602092909190829003018186803b15801561186357600080fd5b505afa158015611877573d6000803e3d6000fd5b505050506040513d602081101561188d57600080fd5b50516001600160a01b031614156118a8576001915050610d4c565b6118b28484611e0b565b949350505050565b6118c26112ff565b611901576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b6113c281611e39565b6000908152600160205260409020546001600160a01b0316151590565b60006119328261190a565b61196d5760405162461bcd60e51b815260040180806020018281038252602c8152602001806126c1602c913960400191505060405180910390fd5b600061197883611067565b9050806001600160a01b0316846001600160a01b031614806119b35750836001600160a01b03166119a884610b09565b6001600160a01b0316145b806118b257506118b2818561180f565b6119ce838383611eda565b6119d8838261201e565b610a4a8282612113565b5490565b600e546000906119fd90600163ffffffff611d2416565b905090565b611a0c8282612151565b611a168282612113565b610dac81612282565b600e80546001019055565b6000611a3e846001600160a01b03166122c6565b611a4a575060016118b2565b604051630a85bd0160e11b815233600482018181526001600160a01b03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b83811015611ac4578181015183820152602001611aac565b50505050905090810190601f168015611af15780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015611b1357600080fd5b505af1158015611b27573d6000803e3d6000fd5b505050506040513d6020811015611b3d57600080fd5b50516001600160e01b031916630a85bd0160e11b14915050949350505050565b606081611b8257506040805180820190915260018152600360fc1b6020820152610a6d565b8160005b8115611b9a57600101600a82049150611b86565b6060816040519080825280601f01601f191660200182016040528015611bc7576020820181803883390190505b50905060001982015b8515611c1557600a860660300160f81b82828060019003935081518110611bf357fe5b60200101906001600160f81b031916908160001a905350600a86049550611bd0565b50949350505050565b6060611c5a83836040518060200160405280600081525060405180602001604052806000815250604051806020016040528060008152506122cc565b9392505050565b600082611c7057506000610d4c565b82820282848281611c7d57fe5b0414611c5a5760405162461bcd60e51b81526004018080602001828103825260218152602001806127786021913960400191505060405180910390fd5b6000808211611d10576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b6000828481611d1b57fe5b04949350505050565b600082820183811015611c5a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60408051426020808301919091524482840152825180830384018152606090920190925280519101206064900690565b600082821115611e05576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6001600160a01b038116611e7e5760405162461bcd60e51b81526004018080602001828103825260268152602001806126516026913960400191505060405180910390fd5b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b0316611eed82611067565b6001600160a01b031614611f325760405162461bcd60e51b81526004018080602001828103825260298152602001806127e56029913960400191505060405180910390fd5b6001600160a01b038216611f775760405162461bcd60e51b81526004018080602001828103825260248152602001806126776024913960400191505060405180910390fd5b611f80816124e0565b6001600160a01b0383166000908152600360205260409020611fa19061251b565b6001600160a01b0382166000908152600360205260409020611fc290612532565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526005602052604081205461204890600163ffffffff611dae16565b6000838152600660205260409020549091508082146120e3576001600160a01b038416600090815260056020526040812080548490811061208557fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b0316815260200190815260200160002083815481106120c357fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b038416600090815260056020526040902080549061210c9060001983016125b9565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b0382166121ac576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6121b58161190a565b15612207576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061224690612532565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b3b151590565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f191660200182016040528015612320576020820181803883390190505b509050806000805b88518110156123795788818151811061233d57fe5b602001015160f81c60f81b83838060010194508151811061235a57fe5b60200101906001600160f81b031916908160001a905350600101612328565b5060005b87518110156123ce5787818151811061239257fe5b602001015160f81c60f81b8383806001019450815181106123af57fe5b60200101906001600160f81b031916908160001a90535060010161237d565b5060005b8651811015612423578681815181106123e757fe5b602001015160f81c60f81b83838060010194508151811061240457fe5b60200101906001600160f81b031916908160001a9053506001016123d2565b5060005b85518110156124785785818151811061243c57fe5b602001015160f81c60f81b83838060010194508151811061245957fe5b60200101906001600160f81b031916908160001a905350600101612427565b5060005b84518110156124cd5784818151811061249157fe5b602001015160f81c60f81b8383806001019450815181106124ae57fe5b60200101906001600160f81b031916908160001a90535060010161247c565b50909d9c50505050505050505050505050565b6000818152600260205260409020546001600160a01b0316156113c257600090815260026020526040902080546001600160a01b0319169055565b805461252e90600163ffffffff611dae16565b9055565b80546001019055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061257c57805160ff19168380011785556125a9565b828001600101855582156125a9579182015b828111156125a957825182559160200191906001019061258e565b506125b59291506125d9565b5090565b815481835581811115610a4a57600083815260209020610a4a9181019083015b610b0691905b808211156125b557600081556001016125df56fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734163636f756e74206973206e6f7420746865206f776e6572206f662074686520636173696e6f4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a72315820bfbfef3ba98bba49ef08ed1c70d10949499ca35280ec0177323beb73443ef1a764736f6c634300050b003268747470733a2f2f70656f706c6573636173696e6f2e6f6e6c696e652f6170692f
Deployed Bytecode
0x6080604052600436106101e25760003560e01c806370a0823111610102578063a0712d6811610095578063d547cfb711610064578063d547cfb7146108aa578063df898e32146108bf578063e985e9c5146108e2578063f2fde38b1461091d576101e2565b8063a0712d6814610755578063a22cb46514610772578063b88d4fde146107ad578063c87b56dd14610880576101e2565b80638ad0ee82116100d15780638ad0ee82146106f95780638da5cb5b146107165780638f32d59b1461072b57806395d89b4114610740576101e2565b806370a082311461065b578063715018a61461068e578063755edd17146106a3578063822df28f146106d6576101e2565b806330176e131161017a57806342842e0e1161014957806342842e0e146105a75780634f6ccce7146105ea57806356b4997f146106145780636352211e14610631576101e2565b806330176e13146104005780633a0753b1146104a65780633c79ca03146104d05780634044474c146104fa576101e2565b8063095ea7b3116101b6578063095ea7b31461032457806318160ddd1461035d57806323b872dd146103845780632f745c59146103c7576101e2565b8062c2e49a146101e757806301ffc9a71461020c57806306fdde0314610254578063081812fc146102de575b600080fd5b61020a600480360360408110156101fd57600080fd5b5080359060200135610950565b005b34801561021857600080fd5b506102406004803603602081101561022f57600080fd5b50356001600160e01b031916610a4f565b604080519115158252519081900360200190f35b34801561026057600080fd5b50610269610a72565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102a357818101518382015260200161028b565b50505050905090810190601f1680156102d05780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102ea57600080fd5b506103086004803603602081101561030157600080fd5b5035610b09565b604080516001600160a01b039092168252519081900360200190f35b34801561033057600080fd5b5061020a6004803603604081101561034757600080fd5b506001600160a01b038135169060200135610b6b565b34801561036957600080fd5b50610372610c7c565b60408051918252519081900360200190f35b34801561039057600080fd5b5061020a600480360360608110156103a757600080fd5b506001600160a01b03813581169160208101359091169060400135610c82565b3480156103d357600080fd5b50610372600480360360408110156103ea57600080fd5b506001600160a01b038135169060200135610cd2565b61020a6004803603602081101561041657600080fd5b81019060208101813564010000000081111561043157600080fd5b82018360208201111561044357600080fd5b8035906020019184600183028401116401000000008311171561046557600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610d52945050505050565b3480156104b257600080fd5b50610372600480360360208110156104c957600080fd5b5035610db0565b3480156104dc57600080fd5b50610269600480360360208110156104f357600080fd5b5035610e23565b61020a6004803603604081101561051057600080fd5b8135919081019060408101602082013564010000000081111561053257600080fd5b82018360208201111561054457600080fd5b8035906020019184600183028401116401000000008311171561056657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610f23945050505050565b3480156105b357600080fd5b5061020a600480360360608110156105ca57600080fd5b506001600160a01b03813581169160208101359091169060400135610f9a565b3480156105f657600080fd5b506103726004803603602081101561060d57600080fd5b5035610fb5565b61020a6004803603602081101561062a57600080fd5b503561101b565b34801561063d57600080fd5b506103086004803603602081101561065457600080fd5b5035611067565b34801561066757600080fd5b506103726004803603602081101561067e57600080fd5b50356001600160a01b03166110bb565b34801561069a57600080fd5b5061020a611123565b3480156106af57600080fd5b5061020a600480360360208110156106c657600080fd5b50356001600160a01b03166111b4565b61020a600480360360408110156106ec57600080fd5b5080359060200135611219565b61020a6004803603602081101561070f57600080fd5b503561127b565b34801561072257600080fd5b506103086112f0565b34801561073757600080fd5b506102406112ff565b34801561074c57600080fd5b50610269611310565b61020a6004803603602081101561076b57600080fd5b5035611371565b34801561077e57600080fd5b5061020a6004803603604081101561079557600080fd5b506001600160a01b03813516906020013515156113c5565b3480156107b957600080fd5b5061020a600480360360808110156107d057600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561080b57600080fd5b82018360208201111561081d57600080fd5b8035906020019184600183028401116401000000008311171561083f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611491945050505050565b34801561088c57600080fd5b50610269600480360360208110156108a357600080fd5b50356114e9565b3480156108b657600080fd5b50610269611504565b61020a600480360360408110156108d557600080fd5b5080359060200135611565565b3480156108ee57600080fd5b506102406004803603604081101561090557600080fd5b506001600160a01b038135811691602001351661180f565b34801561092957600080fd5b5061020a6004803603602081101561094057600080fd5b50356001600160a01b03166118ba565b61095982611067565b6001600160a01b0316336001600160a01b0316146109a85760405162461bcd60e51b815260040180806020018281038252602681526020018061269b6026913960400191505060405180910390fd5b6000828152600f6020526040902054811115610a0b576040805162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f7567682065746820746f207769746864726177616c00000000604482015290519081900360640190fd5b6000828152600f60205260408082208054849003905551339183156108fc02918491818181858888f19350505050158015610a4a573d6000803e3d6000fd5b505050565b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b60098054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610afe5780601f10610ad357610100808354040283529160200191610afe565b820191906000526020600020905b815481529060010190602001808311610ae157829003601f168201915b505050505090505b90565b6000610b148261190a565b610b4f5760405162461bcd60e51b815260040180806020018281038252602c815260200180612799602c913960400191505060405180910390fd5b506000908152600260205260409020546001600160a01b031690565b6000610b7682611067565b9050806001600160a01b0316836001600160a01b03161415610bc95760405162461bcd60e51b815260040180806020018281038252602181526020018061280e6021913960400191505060405180910390fd5b336001600160a01b0382161480610be55750610be5813361180f565b610c205760405162461bcd60e51b81526004018080602001828103825260388152602001806126ed6038913960400191505060405180910390fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b610c8c3382611927565b610cc75760405162461bcd60e51b815260040180806020018281038252603181526020018061282f6031913960400191505060405180910390fd5b610a4a8383836119c3565b6000610cdd836110bb565b8210610d1a5760405162461bcd60e51b815260040180806020018281038252602b8152602001806125f4602b913960400191505060405180910390fd5b6001600160a01b0383166000908152600560205260409020805483908110610d3e57fe5b906000526020600020015490505b92915050565b610d5a6112ff565b610d99576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b8051610dac90601190602084019061253b565b5050565b600080610dbc83611067565b6001600160a01b03161415610e10576040805162461bcd60e51b815260206004820152601560248201527410d85cda5b9bc8191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b506000908152600f602052604090205490565b60606000610e3083611067565b6001600160a01b03161415610e84576040805162461bcd60e51b815260206004820152601560248201527410d85cda5b9bc8191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b60008281526012602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610f175780601f10610eec57610100808354040283529160200191610f17565b820191906000526020600020905b815481529060010190602001808311610efa57829003601f168201915b50505050509050919050565b610f2c82611067565b6001600160a01b0316336001600160a01b031614610f7b5760405162461bcd60e51b815260040180806020018281038252602681526020018061269b6026913960400191505060405180910390fd5b60008281526012602090815260409091208251610a4a9284019061253b565b610a4a83838360405180602001604052806000815250611491565b6000610fbf610c7c565b8210610ffc5760405162461bcd60e51b815260040180806020018281038252602c815260200180612860602c913960400191505060405180910390fd5b6007828154811061100957fe5b90600052602060002001549050919050565b6110236112ff565b611062576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b601055565b6000818152600160205260408120546001600160a01b031680610d4c5760405162461bcd60e51b815260040180806020018281038252602981526020018061274f6029913960400191505060405180910390fd5b60006001600160a01b0382166111025760405162461bcd60e51b815260040180806020018281038252602a815260200180612725602a913960400191505060405180910390fd5b6001600160a01b0382166000908152600360205260409020610d4c906119e2565b61112b6112ff565b61116a576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b600c546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600c80546001600160a01b0319169055565b6111bc6112ff565b6111fb576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b60006112056119e6565b90506112118282611a02565b610dac611a1f565b6112216112ff565b611260576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b815b818111610a4a576112733382611a02565b600101611262565b600061128682611067565b6001600160a01b031614156112da576040805162461bcd60e51b815260206004820152601560248201527410d85cda5b9bc8191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b6000908152600f60205260409020805434019055565b600c546001600160a01b031690565b600c546001600160a01b0316331490565b600a8054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610afe5780601f10610ad357610100808354040283529160200191610afe565b6113796112ff565b6113b8576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b6113c23382611a02565b50565b6001600160a01b038216331415611423576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b61149c848484610c82565b6114a884848484611a2a565b6114e35760405162461bcd60e51b815260040180806020018281038252603281526020018061261f6032913960400191505060405180910390fd5b50505050565b6060610d4c6114f6611504565b6114ff84611b5d565b611c1e565b60118054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610afe5780601f10610ad357610100808354040283529160200191610afe565b600061157083611067565b6001600160a01b031614156115c4576040805162461bcd60e51b815260206004820152601560248201527410d85cda5b9bc8191bd95cc81b9bdd08195e1a5cdd605a1b604482015290519081900360640190fd5b6001811161160a576040805162461bcd60e51b815260206004820152600e60248201526d42657420697320746f6f206c6f7760901b604482015290519081900360640190fd5b60638110611651576040805162461bcd60e51b815260206004820152600f60248201526e084cae840d2e640e8dede40d0d2ced608b1b604482015290519081900360640190fd5b60006116748261166834606063ffffffff611c6116565b9063ffffffff611cba16565b6000848152600f6020526040902054909150611696903463ffffffff611d2416565b81106116de576040805162461bcd60e51b81526020600482015260126024820152710a0c2f2deeae840d2e640e8dede40d0d2ced60731b604482015290519081900360640190fd5b6010548110611729576040805162461bcd60e51b81526020600482015260126024820152710a0c2f2deeae840d2e640e8dede40d0d2ced60731b604482015290519081900360640190fd5b6000838152600f6020526040902054611748903463ffffffff611d2416565b6000848152600f6020526040812091909155611762611d7e565b90508281116117c9576000848152600f602052604090205461178a908363ffffffff611dae16565b6000858152600f6020526040808220929092559051339184156108fc02918591818181858888f193505050501580156117c7573d6000803e3d6000fd5b505b604080518581526020810183905280820185905290517f8406982e62b8a8c06088d778f99e438413dedded850e622264d3faf77b2cac769181900360600190a150505050565b600d546040805163c455279160e01b81526001600160a01b0385811660048301529151600093831692851691839163c455279191602480820192602092909190829003018186803b15801561186357600080fd5b505afa158015611877573d6000803e3d6000fd5b505050506040513d602081101561188d57600080fd5b50516001600160a01b031614156118a8576001915050610d4c565b6118b28484611e0b565b949350505050565b6118c26112ff565b611901576040805162461bcd60e51b815260206004820181905260248201526000805160206127c5833981519152604482015290519081900360640190fd5b6113c281611e39565b6000908152600160205260409020546001600160a01b0316151590565b60006119328261190a565b61196d5760405162461bcd60e51b815260040180806020018281038252602c8152602001806126c1602c913960400191505060405180910390fd5b600061197883611067565b9050806001600160a01b0316846001600160a01b031614806119b35750836001600160a01b03166119a884610b09565b6001600160a01b0316145b806118b257506118b2818561180f565b6119ce838383611eda565b6119d8838261201e565b610a4a8282612113565b5490565b600e546000906119fd90600163ffffffff611d2416565b905090565b611a0c8282612151565b611a168282612113565b610dac81612282565b600e80546001019055565b6000611a3e846001600160a01b03166122c6565b611a4a575060016118b2565b604051630a85bd0160e11b815233600482018181526001600160a01b03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b83811015611ac4578181015183820152602001611aac565b50505050905090810190601f168015611af15780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015611b1357600080fd5b505af1158015611b27573d6000803e3d6000fd5b505050506040513d6020811015611b3d57600080fd5b50516001600160e01b031916630a85bd0160e11b14915050949350505050565b606081611b8257506040805180820190915260018152600360fc1b6020820152610a6d565b8160005b8115611b9a57600101600a82049150611b86565b6060816040519080825280601f01601f191660200182016040528015611bc7576020820181803883390190505b50905060001982015b8515611c1557600a860660300160f81b82828060019003935081518110611bf357fe5b60200101906001600160f81b031916908160001a905350600a86049550611bd0565b50949350505050565b6060611c5a83836040518060200160405280600081525060405180602001604052806000815250604051806020016040528060008152506122cc565b9392505050565b600082611c7057506000610d4c565b82820282848281611c7d57fe5b0414611c5a5760405162461bcd60e51b81526004018080602001828103825260218152602001806127786021913960400191505060405180910390fd5b6000808211611d10576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b6000828481611d1b57fe5b04949350505050565b600082820183811015611c5a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60408051426020808301919091524482840152825180830384018152606090920190925280519101206064900690565b600082821115611e05576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6001600160a01b038116611e7e5760405162461bcd60e51b81526004018080602001828103825260268152602001806126516026913960400191505060405180910390fd5b600c546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600c80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b0316611eed82611067565b6001600160a01b031614611f325760405162461bcd60e51b81526004018080602001828103825260298152602001806127e56029913960400191505060405180910390fd5b6001600160a01b038216611f775760405162461bcd60e51b81526004018080602001828103825260248152602001806126776024913960400191505060405180910390fd5b611f80816124e0565b6001600160a01b0383166000908152600360205260409020611fa19061251b565b6001600160a01b0382166000908152600360205260409020611fc290612532565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526005602052604081205461204890600163ffffffff611dae16565b6000838152600660205260409020549091508082146120e3576001600160a01b038416600090815260056020526040812080548490811061208557fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b0316815260200190815260200160002083815481106120c357fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b038416600090815260056020526040902080549061210c9060001983016125b9565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b6001600160a01b0382166121ac576040805162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015290519081900360640190fd5b6121b58161190a565b15612207576040805162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015290519081900360640190fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b03871690811790915583526003909152902061224690612532565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b3b151590565b6060808690506060869050606086905060608690506060869050606081518351855187518951010101016040519080825280601f01601f191660200182016040528015612320576020820181803883390190505b509050806000805b88518110156123795788818151811061233d57fe5b602001015160f81c60f81b83838060010194508151811061235a57fe5b60200101906001600160f81b031916908160001a905350600101612328565b5060005b87518110156123ce5787818151811061239257fe5b602001015160f81c60f81b8383806001019450815181106123af57fe5b60200101906001600160f81b031916908160001a90535060010161237d565b5060005b8651811015612423578681815181106123e757fe5b602001015160f81c60f81b83838060010194508151811061240457fe5b60200101906001600160f81b031916908160001a9053506001016123d2565b5060005b85518110156124785785818151811061243c57fe5b602001015160f81c60f81b83838060010194508151811061245957fe5b60200101906001600160f81b031916908160001a905350600101612427565b5060005b84518110156124cd5784818151811061249157fe5b602001015160f81c60f81b8383806001019450815181106124ae57fe5b60200101906001600160f81b031916908160001a90535060010161247c565b50909d9c50505050505050505050505050565b6000818152600260205260409020546001600160a01b0316156113c257600090815260026020526040902080546001600160a01b0319169055565b805461252e90600163ffffffff611dae16565b9055565b80546001019055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061257c57805160ff19168380011785556125a9565b828001600101855582156125a9579182015b828111156125a957825182559160200191906001019061258e565b506125b59291506125d9565b5090565b815481835581811115610a4a57600083815260209020610a4a9181019083015b610b0691905b808211156125b557600081556001016125df56fe455243373231456e756d657261626c653a206f776e657220696e646578206f7574206f6620626f756e64734552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734163636f756e74206973206e6f7420746865206f776e6572206f662074686520636173696e6f4552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c4552433732313a2062616c616e636520717565727920666f7220746865207a65726f20616464726573734552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e65724552433732313a207472616e736665722063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564455243373231456e756d657261626c653a20676c6f62616c20696e646578206f7574206f6620626f756e6473a265627a7a72315820bfbfef3ba98bba49ef08ed1c70d10949499ca35280ec0177323beb73443ef1a764736f6c634300050b0032
Deployed Bytecode Sourcemap
45170:3276:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46593:321;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46593:321: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;46001:111::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46001:111:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;46001:111:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46001: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;46001:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;46001:111:0;;-1:-1:-1;46001:111:0;;-1:-1:-1;;;;;46001:111:0:i;46223:179::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46223:179:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46223:179:0;;:::i;48259:181::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;48259:181:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48259:181:0;;:::i;48055:197::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48055:197:0;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;48055:197:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;48055:197: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;48055:197:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;48055:197:0;;-1:-1:-1;48055:197:0;;-1:-1:-1;;;;;48055:197: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;46119:98::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46119: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;45809:186::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45809:186:0;;;;;;;:::i;46409:177::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;46409:177: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;45711:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;45711: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;45612:93::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45612:93:0;;;:::i;47081:968::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47081:968: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;46593:321::-;46696:16;46704:7;46696;:16::i;:::-;-1:-1:-1;;;;;46682:30:0;:10;-1:-1:-1;;;;;46682:30:0;;46674:81;;;;-1:-1:-1;;;46674:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46770:22;;;;:13;:22;;;;;;:32;-1:-1:-1;46770:32:0;46762:73;;;;;-1:-1:-1;;;46762:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;46842:22;;;;:13;:22;;;;;;:32;;;;;;;46881:27;:10;;:27;;;;;46868:6;;46881:27;46842:22;46881:27;46868:6;46881:10;:27;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46881:27:0;46593:321;;:::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;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;46001:111::-;39405:9;:7;:9::i;:::-;39397:54;;;;;-1:-1:-1;;;39397:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39397:54:0;;;;;;;;;;;;;;;46082:24;;;;:13;;:24;;;;;:::i;:::-;;46001:111;:::o;46223:179::-;46283:4;;46304:16;46312:7;46304;:16::i;:::-;-1:-1:-1;;;;;46304:30:0;;;46296:64;;;;;-1:-1:-1;;;46296:64:0;;;;;;;;;;;;-1:-1:-1;;;46296:64:0;;;;;;;;;;;;;;;-1:-1:-1;46374:22:0;;;;:13;:22;;;;;;;46223:179::o;48259:181::-;48316:13;48374:1;48346:16;48354:7;48346;:16::i;:::-;-1:-1:-1;;;;;48346:30:0;;;48338:64;;;;;-1:-1:-1;;;48338:64:0;;;;;;;;;;;;-1:-1:-1;;;48338:64:0;;;;;;;;;;;;;;;48416:18;;;;:9;:18;;;;;;;;;48409:25;;;;;;-1:-1:-1;;48409:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48416:18;;48409:25;;48416:18;48409:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48259:181;;;:::o;48055:197::-;48155:16;48163:7;48155;:16::i;:::-;-1:-1:-1;;;;;48141:30:0;:10;-1:-1:-1;;;;;48141:30:0;;48133:81;;;;-1:-1:-1;;;48133:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48221: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;46119:98::-;39405:9;:7;:9::i;:::-;39397:54;;;;;-1:-1:-1;;;39397:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39397:54:0;;;;;;;;;;;;;;;46189:10;:22;46119: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;45809:186::-;39405:9;:7;:9::i;:::-;39397:54;;;;;-1:-1:-1;;;39397:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39397:54:0;;;;;;;;;;;;;;;45914:12;45899:91;45934:10;45928:2;:16;45899:91;;45961:21;45967:10;45979:2;45961:5;:21::i;:::-;45946:4;;45899:91;;46409:177;46510:1;46482:16;46490:7;46482;:16::i;:::-;-1:-1:-1;;;;;46482:30:0;;;46474:64;;;;;-1:-1:-1;;;46474:64:0;;;;;;;;;;;;-1:-1:-1;;;46474:64:0;;;;;;;;;;;;;;;46545:22;;;;:13;:22;;;;;:35;;46571:9;46545:35;;;46409:177::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;;;;;;;;;;;;;;;;;;;;;;;;45711:92;39405:9;:7;:9::i;:::-;39397:54;;;;;-1:-1:-1;;;39397:54:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;39397:54:0;;;;;;;;;;;;;;;45771:26;45777:10;45789:7;45771:5;:26::i;:::-;45711: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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19912:268;;;;:::o;44276:180::-;44335:13;44364:86;44392:14;:12;:14::i;:::-;44417:26;44434:8;44417:16;:26::i;:::-;44364:17;:86::i;45612:93::-;45686:13;45679:20;;;;;;;;-1:-1:-1;;45679:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45657:13;;45679:20;;45686:13;;45679:20;;45686:13;45679:20;;;;;;;;;;;;;;;;;;;;;;;;47081:968;47191:1;47163:16;47171:7;47163;:16::i;:::-;-1:-1:-1;;;;;47163:30:0;;;47155:64;;;;;-1:-1:-1;;;47155:64:0;;;;;;;;;;;;-1:-1:-1;;;47155:64:0;;;;;;;;;;;;;;;47251:1;47234:14;:18;47226:45;;;;;-1:-1:-1;;;47226:45:0;;;;;;;;;;;;-1:-1:-1;;;47226:45:0;;;;;;;;;;;;;;;47303:2;47286:14;:19;47278:47;;;;;-1:-1:-1;;;47278:47:0;;;;;;;;;;;;-1:-1:-1;;;47278:47:0;;;;;;;;;;;;;;;47364:11;47378:37;47400:14;47378:17;:9;47392:2;47378:17;:13;:17;:::i;:::-;:21;:37;:21;:37;:::i;:::-;47439:22;;;;:13;:22;;;;;;47364:51;;-1:-1:-1;47439:37:0;;47466:9;47439:37;:26;:37;:::i;:::-;47430:6;:46;47422:77;;;;;-1:-1:-1;;;47422:77:0;;;;;;;;;;;;-1:-1:-1;;;47422:77:0;;;;;;;;;;;;;;;47523:10;;47514:6;:19;47506:50;;;;;-1:-1:-1;;;47506:50:0;;;;;;;;;;;;-1:-1:-1;;;47506:50:0;;;;;;;;;;;;;;;47645:22;;;;:13;:22;;;;;;:37;;47672:9;47645:37;:26;:37;:::i;:::-;47620:22;;;;:13;:22;;;;;:62;;;;47723:18;:16;:18::i;:::-;47711:30;;47792:14;47784:4;:22;47780:178;;47880:22;;;;:13;:22;;;;;;:34;;47907:6;47880:34;:26;:34;:::i;:::-;47855:22;;;;:13;:22;;;;;;:59;;;;47923:27;;:10;;:27;;;;;47943:6;;47923:27;47855:22;47923:27;47943:6;47923:10;:27;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47923:27:0;47780:178;48003:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47081:968;;;;:::o;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;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;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;:::-;42265:36;42161:148;-1:-1:-1;;;42161:148:0: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;5164:181::-;5222:7;5254:5;;;5278:6;;;;5270:46;;;;;-1:-1:-1;;;5270:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;46921:154;47010:51;;;47027:15;47010:51;;;;;;;;47044:16;47010:51;;;;;;26:21:-1;;;22:32;;6:49;;47010:51:0;;;;;;;47000:62;;;;;47066:3;46992:77;;;46921:154::o;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;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;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;45170:3276::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45170:3276:0;;;-1:-1:-1;45170:3276:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://bfbfef3ba98bba49ef08ed1c70d10949499ca35280ec0177323beb73443ef1a7
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.