Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
580,736 CARD
Holders
3,193
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
135 CARDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Cards
Compiler Version
v0.5.11+commit.c082d0b4
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2019-10-29 */ pragma solidity 0.5.11; /** * @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; } } /** * @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-contracts/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; } } contract InscribableToken is Ownable { mapping(bytes32 => bytes32) public properties; event ClassPropertySet(bytes32 indexed key, bytes32 value); event TokenPropertySet(uint indexed id, bytes32 indexed key, bytes32 value); function _setProperty(uint _id, bytes32 _key, bytes32 _value) internal { properties[getTokenKey(_id, _key)] = _value; emit TokenPropertySet(_id, _key, _value); } function getProperty(uint _id, bytes32 _key) public view returns (bytes32 _value) { return properties[getTokenKey(_id, _key)]; } function _setClassProperty(bytes32 _key, bytes32 _value) internal { emit ClassPropertySet(_key, _value); properties[getClassKey(_key)] = _value; } function getTokenKey(uint _tokenId, bytes32 _key) public pure returns (bytes32) { // one prefix to prevent collisions return keccak256(abi.encodePacked(uint(1), _tokenId, _key)); } function getClassKey(bytes32 _key) public pure returns (bytes32) { // zero prefix to prevent collisions return keccak256(abi.encodePacked(uint(0), _key)); } function getClassProperty(bytes32 _key) public view returns (bytes32) { return properties[getClassKey(_key)]; } } // solium-disable security/no-inline-assembly library StorageWrite { using SafeMath for uint256; function _getStorageArraySlot(uint _dest, uint _index) internal view returns (uint result) { uint slot = _getArraySlot(_dest, _index); assembly { result := sload(slot) } } function _getArraySlot(uint _dest, uint _index) internal pure returns (uint slot) { assembly { let free := mload(0x40) mstore(free, _dest) slot := add(keccak256(free, 32), _index) } } function _setArraySlot(uint _dest, uint _index, uint _value) internal { uint slot = _getArraySlot(_dest, _index); assembly { sstore(slot, _value) } } function _loadSlots(uint _slot, uint _offset, uint _perSlot, uint _length) internal view returns (uint[] memory slots) { uint slotCount = _slotCount(_offset, _perSlot, _length); slots = new uint[](slotCount); // top and tail the slots uint firstPos = _pos(_offset, _perSlot); // _offset.div(_perSlot); slots[0] = _getStorageArraySlot(_slot, firstPos); if (slotCount > 1) { uint lastPos = _pos(_offset.add(_length), _perSlot); // .div(_perSlot); slots[slotCount-1] = _getStorageArraySlot(_slot, lastPos); } } function _pos(uint items, uint perPage) internal pure returns (uint) { return items / perPage; } function _slotCount(uint _offset, uint _perSlot, uint _length) internal pure returns (uint) { uint start = _offset / _perSlot; uint end = (_offset + _length) / _perSlot; return (end - start) + 1; } function _saveSlots(uint _slot, uint _offset, uint _size, uint[] memory _slots) internal { uint offset = _offset.div((256/_size)); for (uint i = 0; i < _slots.length; i++) { _setArraySlot(_slot, offset + i, _slots[i]); } } function _write(uint[] memory _slots, uint _offset, uint _size, uint _index, uint _value) internal pure { uint perSlot = 256 / _size; uint initialOffset = _offset % perSlot; uint slotPosition = (initialOffset + _index) / perSlot; uint withinSlot = ((_index + _offset) % perSlot) * _size; // evil bit shifting magic for (uint q = 0; q < _size; q += 8) { _slots[slotPosition] |= ((_value >> q) & 0xFF) << (withinSlot + q); } } function repeatUint16(uint _slot, uint _offset, uint _length, uint16 _item) internal { uint[] memory slots = _loadSlots(_slot, _offset, 16, _length); for (uint i = 0; i < _length; i++) { _write(slots, _offset, 16, i, _item); } _saveSlots(_slot, _offset, 16, slots); } function uint16s(uint _slot, uint _offset, uint16[] memory _items) internal { uint[] memory slots = _loadSlots(_slot, _offset, 16, _items.length); for (uint i = 0; i < _items.length; i++) { _write(slots, _offset, 16, i, _items[i]); } _saveSlots(_slot, _offset, 16, slots); } function uint8s(uint _slot, uint _offset, uint8[] memory _items) internal { uint[] memory slots = _loadSlots(_slot, _offset, 32, _items.length); for (uint i = 0; i < _items.length; i++) { _write(slots, _offset, 8, i, _items[i]); } _saveSlots(_slot, _offset, 8, slots); } } library String { /** * @dev Converts a `uint256` to a `string`. * via OraclizeAPI - MIT licence * https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol */ function fromUint(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = byte(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } bytes constant alphabet = "0123456789abcdef"; function fromAddress(address _addr) internal pure returns(string memory) { bytes32 value = bytes32(uint256(_addr)); bytes memory str = new bytes(42); str[0] = '0'; str[1] = 'x'; for (uint i = 0; i < 20; i++) { str[2+i*2] = alphabet[uint(uint8(value[i + 12] >> 4))]; str[3+i*2] = alphabet[uint(uint8(value[i + 12] & 0x0F))]; } return string(str); } } /** * @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); } /** * @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; } } /** * @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); } } /** * @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); } contract ImmutableToken { string public constant baseURI = "https://api.immutable.com/token/"; function tokenURI(uint256 tokenId) external view returns (string memory) { return string(abi.encodePacked( baseURI, String.fromAddress(address(this)), "/", String.fromUint(tokenId) )); } } /** * @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; } /** * @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; } } /** * @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); } contract ICards is IERC721 { function getDetails(uint tokenId) public view returns (uint16 proto, uint8 quality); function setQuality(uint tokenId, uint8 quality) public; function burn(uint tokenId) public; function batchMintCards(address to, uint16[] memory _protos, uint8[] memory _qualities) public returns (uint); function mintCards(address to, uint16[] memory _protos, uint8[] memory _qualities) public returns (uint); function mintCard(address to, uint16 _proto, uint8 _quality) public returns (uint); function batchSize() public view returns (uint); } /** * @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); } } } 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]; } } } contract MultiTransfer is ERC721 { function transferBatch(address from, address to, uint256 start, uint256 end) public { for (uint i = start; i < end; i++) { transferFrom(from, to, i); } } function transferAllFrom(address from, address to, uint256[] memory tokenIDs) public { for (uint i = 0; i < tokenIDs.length; i++) { transferFrom(from, to, tokenIDs[i]); } } function safeTransferBatch(address from, address to, uint256 start, uint256 end) public { for (uint i = start; i < end; i++) { safeTransferFrom(from, to, i); } } function safeTransferAllFrom(address from, address to, uint256[] memory tokenIDs) public { for (uint i = 0; i < tokenIDs.length; i++) { safeTransferFrom(from, to, tokenIDs[i]); } } } contract BatchToken is ERC721Metadata { using SafeMath for uint256; struct Batch { uint48 userID; uint16 size; } mapping(uint48 => address) public userIDToAddress; mapping(address => uint48) public addressToUserID; uint256 public batchSize; uint256 public nextBatch; uint256 public tokenCount; uint48[] internal ownerIDs; uint48[] internal approvedIDs; mapping(uint => Batch) public batches; uint48 internal userCount = 1; mapping(address => uint) internal _balances; uint256 internal constant MAX_LENGTH = uint(2**256 - 1); constructor(uint256 _batchSize, string memory name, string memory symbol) public ERC721Metadata(name, symbol) { batchSize = _batchSize; ownerIDs.length = MAX_LENGTH; approvedIDs.length = MAX_LENGTH; } function _getUserID(address to) internal returns (uint48) { if (to == address(0)) { return 0; } uint48 uID = addressToUserID[to]; if (uID == 0) { require(userCount + 1 > userCount, "must not overflow"); uID = userCount++; userIDToAddress[uID] = to; addressToUserID[to] = uID; require(uID != 0, "must not be 0"); } return uID; } function _batchMint(address to, uint16 size) internal returns (uint) { require(to != address(0), "must not be null"); require(size > 0 && size <= batchSize, "size must be within limits"); uint256 start = nextBatch; uint48 uID = _getUserID(to); batches[start] = Batch({ userID: uID, size: size }); uint256 end = start.add(size); for (uint256 i = start; i < end; i++) { emit Transfer(address(0), to, i); } nextBatch = nextBatch.add(batchSize); _balances[to] = _balances[to].add(size); tokenCount = tokenCount.add(size); return start; } function getBatchStart(uint256 tokenId) public view returns (uint) { return tokenId.div(batchSize).mul(batchSize); } function getBatch(uint256 index) public view returns (uint48 userID, uint16 size) { return (batches[index].userID, batches[index].size); } // Overridden ERC721 functions // @OZ: please stop making variables/functions private function ownerOf(uint256 tokenId) public view returns (address) { uint48 uID = ownerIDs[tokenId]; if (uID == 0) { uint256 start = getBatchStart(tokenId); Batch memory b = batches[start]; require(start + b.size > tokenId, "token does not exist"); uID = b.userID; require(uID != 0, "bad batch owner"); } return userIDToAddress[uID]; } function transferFrom(address from, address to, uint256 tokenId) public { require(ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); require(_isApprovedOrOwner(msg.sender, tokenId), "ERC721: caller is not owner nor approved"); _cancelApproval(tokenId); _balances[from] = _balances[from].sub(1); _balances[to] = _balances[to].add(1); ownerIDs[tokenId] = _getUserID(to); emit Transfer(from, to, tokenId); } function burn(uint256 tokenId) public { require(_isApprovedOrOwner(msg.sender, tokenId), "caller is not owner nor approved"); _cancelApproval(tokenId); address owner = ownerOf(tokenId); _balances[owner] = _balances[owner].sub(1); ownerIDs[tokenId] = 0; tokenCount = tokenCount.sub(1); emit Transfer(owner, address(0), tokenId); } function _cancelApproval(uint256 tokenId) internal { if (approvedIDs[tokenId] != 0) { approvedIDs[tokenId] = 0; } } 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" ); approvedIDs[tokenId] = _getUserID(to); emit Approval(owner, to, tokenId); } function _exists(uint256 tokenId) internal view returns (bool) { return ownerOf(tokenId) != address(0); } function getApproved(uint256 tokenId) public view returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return userIDToAddress[approvedIDs[tokenId]]; } function totalSupply() public view returns (uint) { return tokenCount; } function balanceOf(address _owner) public view returns (uint256) { return _balances[_owner]; } } // solium-disable security/no-inline-assembly contract Cards is Ownable, MultiTransfer, BatchToken, ImmutableToken, InscribableToken { uint16[] public cardProtos; uint8[] public cardQualities; struct Season { uint16 high; uint16 low; } struct Proto { bool locked; bool exists; uint8 god; uint8 cardType; uint8 rarity; uint8 mana; uint8 attack; uint8 health; uint8 tribe; } event ProtoUpdated(uint16 indexed id); event SeasonStarted(uint16 indexed id, string name, uint16 indexed low, uint16 indexed high); event QualityChanged(uint256 indexed tokenId, uint8 quality, address factory); uint16[] public protoToSeason; address public propertyManager; Proto[] public protos; Season[] public seasons; mapping(uint256 => bool) public seasonTradable; mapping(address => mapping(uint256 => bool)) public factoryApproved; mapping(uint16 => bool) public mythicCreated; uint16 public constant MYTHIC_THRESHOLD = 65000; constructor(uint256 _batchSize, string memory _name, string memory _symbol) public BatchToken(_batchSize, _name, _symbol) { cardProtos.length = MAX_LENGTH; cardQualities.length = MAX_LENGTH; protoToSeason.length = MAX_LENGTH; protos.length = MAX_LENGTH; propertyManager = msg.sender; } function getDetails(uint256 tokenId) public view returns (uint16 proto, uint8 quality) { return (cardProtos[tokenId], cardQualities[tokenId]); } function mintCard(address to, uint16 _proto, uint8 _quality) external returns (uint id) { id = _batchMint(to, 1); _validateProto(_proto); cardProtos[id] = _proto; cardQualities[id] = _quality; return id; } function mintCards(address to, uint16[] calldata _protos, uint8[] calldata _qualities) external returns (uint) { require(_protos.length > 0, "must be some protos"); require(_protos.length == _qualities.length, "must be the same number of protos/qualities"); uint256 start = _batchMint(to, uint16(_protos.length)); _validateAndSaveDetails(start, _protos, _qualities); return start; } function addFactory(address _factory, uint256 _season) public onlyOwner { require(seasons.length >= _season, "season must exist"); require(_season > 0, "season must not be 0"); require(!factoryApproved[_factory][_season], "this factory is already approved"); require(!seasonTradable[_season], "season must not be tradable"); factoryApproved[_factory][_season] = true; } function unlockTrading(uint256 _season) public onlyOwner { require(!seasonTradable[_season], "season must not be tradable"); seasonTradable[_season] = true; } function transferFrom(address from, address to, uint256 tokenId) public { require(isTradable(tokenId), "not yet tradable"); super.transferFrom(from, to, tokenId); } function burn(uint256 _tokenId) public { require(isTradable(_tokenId), "not yet tradable"); super.burn(_tokenId); } function burnAll(uint256[] memory tokenIDs) public { for (uint256 i = 0; i < tokenIDs.length; i++) { burn(tokenIDs[i]); } } function isTradable(uint256 _tokenId) public view returns (bool) { return seasonTradable[protoToSeason[cardProtos[_tokenId]]]; } function startSeason(string memory name, uint16 low, uint16 high) public onlyOwner returns (uint) { require(low > 0, "must not be zero proto"); require(high > low, "must be a valid range"); require(seasons.length == 0 || low > seasons[seasons.length - 1].high, "seasons cannot overlap"); // seasons start at 1 uint16 id = uint16(seasons.push(Season({ high: high, low: low }))); uint256 cp; assembly { cp := protoToSeason_slot } StorageWrite.repeatUint16(cp, low, (high - low) + 1, id); emit SeasonStarted(id, name, low, high); return id; } function updateProtos( uint16[] memory _ids, uint8[] memory _gods, uint8[] memory _cardTypes, uint8[] memory _rarities, uint8[] memory _manas, uint8[] memory _attacks, uint8[] memory _healths, uint8[] memory _tribes ) public onlyOwner { for (uint256 i = 0; i < _ids.length; i++) { uint16 id = _ids[i]; require(id > 0, "proto must not be zero"); Proto memory proto = protos[id]; require(!proto.locked, "proto is locked"); protos[id] = Proto({ locked: false, exists: true, god: _gods[i], cardType: _cardTypes[i], rarity: _rarities[i], mana: _manas[i], attack: _attacks[i], health: _healths[i], tribe: _tribes[i] }); emit ProtoUpdated(id); } } function lockProtos(uint16[] memory _ids) public onlyOwner { require(_ids.length > 0, "must lock some"); for (uint256 i = 0; i < _ids.length; i++) { uint16 id = _ids[i]; require(id > 0, "proto must not be zero"); Proto storage proto = protos[id]; require(!proto.locked, "proto is locked"); require(proto.exists, "proto must exist"); proto.locked = true; emit ProtoUpdated(id); } } function _validateAndSaveDetails(uint256 start, uint16[] memory _protos, uint8[] memory _qualities) internal { _validateProtos(_protos); uint256 cp; assembly { cp := cardProtos_slot } StorageWrite.uint16s(cp, start, _protos); uint256 cq; assembly { cq := cardQualities_slot } StorageWrite.uint8s(cq, start, _qualities); } uint16 private constant MAX_UINT16 = 2**16 - 1; function _validateProto(uint16 proto) internal { if (proto >= MYTHIC_THRESHOLD) { require(!mythicCreated[proto], "mythic has already been created"); mythicCreated[proto] = true; } else { uint256 season = protoToSeason[proto]; require(season != 0, "must have season set"); require(factoryApproved[msg.sender][season], "must be approved factory for this season"); } } function _validateProtos(uint16[] memory _protos) internal { uint16 maxProto = 0; uint16 minProto = MAX_UINT16; for (uint256 i = 0; i < _protos.length; i++) { uint16 proto = _protos[i]; if (proto >= MYTHIC_THRESHOLD) { require(!mythicCreated[proto], "mythic has already been created"); mythicCreated[proto] = true; } else { if (proto > maxProto) { maxProto = proto; } if (minProto > proto) { minProto = proto; } } } if (maxProto != 0) { uint256 season = protoToSeason[maxProto]; // cards must be from the same season require(season != 0, "must have season set"); require(season == protoToSeason[minProto], "can only create cards from the same season"); require(factoryApproved[msg.sender][season], "must be approved factory for this season"); } } function setQuality(uint256 _tokenId, uint8 _quality) public { uint16 proto = cardProtos[_tokenId]; uint256 season = protoToSeason[proto]; require(factoryApproved[msg.sender][season], "factory can't change quality of this season"); cardQualities[_quality] = _quality; emit QualityChanged(_tokenId, _quality, msg.sender); } function setPropertyManager(address _manager) public onlyOwner { propertyManager = _manager; } function setProperty(uint256 _id, bytes32 _key, bytes32 _value) public { require(msg.sender == propertyManager, "must be property manager"); _setProperty(_id, _key, _value); } function setClassProperty(bytes32 _key, bytes32 _value) public { require(msg.sender == propertyManager, "must be property manager"); _setClassProperty(_key, _value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cardQualities","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIDs","type":"uint256[]"}],"name":"transferAllFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256[]","name":"tokenIDs","type":"uint256[]"}],"name":"burnAll","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":"uint16[]","name":"_ids","type":"uint16[]"},{"internalType":"uint8[]","name":"_gods","type":"uint8[]"},{"internalType":"uint8[]","name":"_cardTypes","type":"uint8[]"},{"internalType":"uint8[]","name":"_rarities","type":"uint8[]"},{"internalType":"uint8[]","name":"_manas","type":"uint8[]"},{"internalType":"uint8[]","name":"_attacks","type":"uint8[]"},{"internalType":"uint8[]","name":"_healths","type":"uint8[]"},{"internalType":"uint8[]","name":"_tribes","type":"uint8[]"}],"name":"updateProtos","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_manager","type":"address"}],"name":"setPropertyManager","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToUserID","outputs":[{"internalType":"uint48","name":"","type":"uint48"}],"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":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"factoryApproved","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MYTHIC_THRESHOLD","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint16[]","name":"_ids","type":"uint16[]"}],"name":"lockProtos","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes32","name":"_key","type":"bytes32"}],"name":"getTokenKey","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"_key","type":"bytes32"}],"name":"getClassKey","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"pure","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":false,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"bytes32","name":"_key","type":"bytes32"},{"internalType":"bytes32","name":"_value","type":"bytes32"}],"name":"setProperty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getBatch","outputs":[{"internalType":"uint48","name":"userID","type":"uint48"},{"internalType":"uint16","name":"size","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16","name":"_proto","type":"uint16"},{"internalType":"uint8","name":"_quality","type":"uint8"}],"name":"mintCard","outputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","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":"uint48","name":"","type":"uint48"}],"name":"userIDToAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"tokenIDs","type":"uint256[]"}],"name":"safeTransferAllFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getBatchStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"uint16","name":"low","type":"uint16"},{"internalType":"uint16","name":"high","type":"uint16"}],"name":"startSeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","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":true,"inputs":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"_key","type":"bytes32"}],"name":"getClassProperty","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","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":"bytes32","name":"_key","type":"bytes32"},{"internalType":"bytes32","name":"_value","type":"bytes32"}],"name":"setClassProperty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"protos","outputs":[{"internalType":"bool","name":"locked","type":"bool"},{"internalType":"bool","name":"exists","type":"bool"},{"internalType":"uint8","name":"god","type":"uint8"},{"internalType":"uint8","name":"cardType","type":"uint8"},{"internalType":"uint8","name":"rarity","type":"uint8"},{"internalType":"uint8","name":"mana","type":"uint8"},{"internalType":"uint8","name":"attack","type":"uint8"},{"internalType":"uint8","name":"health","type":"uint8"},{"internalType":"uint8","name":"tribe","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"safeTransferBatch","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"seasonTradable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"batches","outputs":[{"internalType":"uint48","name":"userID","type":"uint48"},{"internalType":"uint16","name":"size","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"protoToSeason","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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"},{"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":"getDetails","outputs":[{"internalType":"uint16","name":"proto","type":"uint16"},{"internalType":"uint8","name":"quality","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"unlockTrading","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"properties","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"end","type":"uint256"}],"name":"transferBatch","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":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint16[]","name":"_protos","type":"uint16[]"},{"internalType":"uint8[]","name":"_qualities","type":"uint8[]"}],"name":"mintCards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"},{"internalType":"bytes32","name":"_key","type":"bytes32"}],"name":"getProperty","outputs":[{"internalType":"bytes32","name":"_value","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"mythicCreated","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"isTradable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint8","name":"_quality","type":"uint8"}],"name":"setQuality","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"propertyManager","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"nextBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_factory","type":"address"},{"internalType":"uint256","name":"_season","type":"uint256"}],"name":"addFactory","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"cardProtos","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"batchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"seasons","outputs":[{"internalType":"uint16","name":"high","type":"uint16"},{"internalType":"uint16","name":"low","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_batchSize","type":"uint256"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"id","type":"uint16"}],"name":"ProtoUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint16","name":"id","type":"uint16"},{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":true,"internalType":"uint16","name":"low","type":"uint16"},{"indexed":true,"internalType":"uint16","name":"high","type":"uint16"}],"name":"SeasonStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint8","name":"quality","type":"uint8"},{"indexed":false,"internalType":"address","name":"factory","type":"address"}],"name":"QualityChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"key","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"value","type":"bytes32"}],"name":"ClassPropertySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":true,"internalType":"bytes32","name":"key","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"value","type":"bytes32"}],"name":"TokenPropertySet","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
60806040526011805465ffffffffffff191660011790553480156200002357600080fd5b506040516200509a3803806200509a833981810160405260608110156200004957600080fd5b8151602083018051604051929492938301929190846401000000008211156200007157600080fd5b9083019060208201858111156200008757600080fd5b8251640100000000811182820188101715620000a257600080fd5b82525081516020918201929091019080838360005b83811015620000d1578181015183820152602001620000b7565b50505050905090810190601f168015620000ff5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200012357600080fd5b9083019060208201858111156200013957600080fd5b82516401000000008111828201881017156200015457600080fd5b82525081516020918201929091019080838360005b838110156200018357818101518382015260200162000169565b50505050905090810190601f168015620001b15780820380516001836020036101000a031916815260200191505b5060405250849150839050828181620001f37f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b036200036116565b620002277f80ac58cd000000000000000000000000000000000000000000000000000000006001600160e01b036200036116565b600580546001600160a01b0319163317908190556040516001600160a01b0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a381516200028890600690602085019062000430565b5080516200029e90600790602084019062000430565b50620002d37f5b5e139f000000000000000000000000000000000000000000000000000000006001600160e01b036200036116565b5050600b839055600019620002ea600e82620004b5565b50600019620002fb600f82620004b5565b50505050600019601481620003119190620004f1565b506000196200032260158262000528565b5060001962000333601682620004f1565b50600019620003446018826200055f565b5050601780546001600160a01b0319163317905550620005cd9050565b7fffffffff000000000000000000000000000000000000000000000000000000008082161415620003f357604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015290519081900360640190fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200047357805160ff1916838001178555620004a3565b82800160010185558215620004a3579182015b82811115620004a357825182559160200191906001019062000486565b50620004b192915062000586565b5090565b815481835581811115620004ec576004016005900481600401600590048360005260206000209182019101620004ec919062000586565b505050565b815481835581811115620004ec57600f016010900481600f01601090048360005260206000209182019101620004ec919062000586565b815481835581811115620004ec57601f016020900481601f01602090048360005260206000209182019101620004ec919062000586565b815481835581811115620004ec57600083815260209020620004ec918101908301620005a6565b620005a391905b80821115620004b157600081556001016200058d565b90565b620005a391905b80821115620004b15780546001600160481b0319168155600101620005ad565b614abd80620005dd6000396000f3fe608060405234801561001057600080fd5b50600436106103af5760003560e01c80638da5cb5b116101f4578063bd1562731161011a578063e7356cb5116100ad578063f2fde38b1161007c578063f2fde38b14611453578063f3beae6b14611479578063f4daaba114611496578063f5d709a11461149e576103af565b8063e7356cb5146113e9578063e7c51f1b146113f1578063e985e9c5146113f9578063ef42259b14611427576103af565b8063cdc2cfe2116100e9578063cdc2cfe214611362578063e0c931df14611385578063e27aa1d8146113a6578063e3fb1ac6146113c3576103af565b8063bd1562731461121e578063c5f4127a1461123b578063c87b56dd14611277578063c8be6b9b14611294576103af565b8063ab17d04011610192578063b76e8d0111610161578063b76e8d01146110e3578063b88d4fde14611100578063b93a89f7146111c4578063bc04852514611201576103af565b8063ab17d04014610ffd578063b0c4297c1461106d578063b309c36b146110a9578063b32c4d8d146110c6576103af565b80639f181b5e116101ce5780639f181b5e14610f87578063a138e44e14610f8f578063a22cb46514610fac578063a9c1a20014610fda576103af565b80638da5cb5b14610f6f5780638f32d59b14610f7757806395d89b4114610f7f576103af565b806337514295116102d95780636352211e11610277578063715018a611610246578063715018a614610ddb5780637962d59b14610de3578063815d9fa014610e9d578063856516c314610eba576103af565b80636352211e14610d6b5780636602eaf914610d885780636c0360eb14610dad57806370a0823114610db5576103af565b806342966c68116102b357806342966c6814610caa57806358895f6214610cc75780635ac4428214610cf05780635b65afe914610d32576103af565b80633751429514610c345780633af0725614610c5757806342842e0e14610c74576103af565b806318160ddd1161035157806323b872dd1161032057806323b872dd14610b125780632488508714610b4857806324a01da114610b745780632fa438a314610b93576103af565b806318160ddd146106615780631e41613c1461067b5780631e50739314610aab5780631fe25e4f14610ad1576103af565b8063081812fc1161038d578063081812fc1461049f578063095ea7b3146104d85780630bbe0ee314610506578063100cdd91146105c0576103af565b806301ffc9a7146103b457806302b19cea146103ef57806306fdde0314610422575b600080fd5b6103db600480360360208110156103ca57600080fd5b50356001600160e01b0319166114dc565b604080519115158252519081900360200190f35b61040c6004803603602081101561040557600080fd5b50356114ff565b6040805160ff9092168252519081900360200190f35b61042a611530565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561046457818101518382015260200161044c565b50505050905090810190601f1680156104915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104bc600480360360208110156104b557600080fd5b50356115c6565b604080516001600160a01b039092168252519081900360200190f35b610504600480360360408110156104ee57600080fd5b506001600160a01b038135169060200135611661565b005b6105046004803603606081101561051c57600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561054f57600080fd5b82018360208201111561056157600080fd5b803590602001918460208302840111600160201b8311171561058257600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506117a9945050505050565b610504600480360360208110156105d657600080fd5b810190602081018135600160201b8111156105f057600080fd5b82018360208201111561060257600080fd5b803590602001918460208302840111600160201b8311171561062357600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506117e1945050505050565b610669611815565b60408051918252519081900360200190f35b610504600480360361010081101561069257600080fd5b810190602081018135600160201b8111156106ac57600080fd5b8201836020820111156106be57600080fd5b803590602001918460208302840111600160201b831117156106df57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561072e57600080fd5b82018360208201111561074057600080fd5b803590602001918460208302840111600160201b8311171561076157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156107b057600080fd5b8201836020820111156107c257600080fd5b803590602001918460208302840111600160201b831117156107e357600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561083257600080fd5b82018360208201111561084457600080fd5b803590602001918460208302840111600160201b8311171561086557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156108b457600080fd5b8201836020820111156108c657600080fd5b803590602001918460208302840111600160201b831117156108e757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561093657600080fd5b82018360208201111561094857600080fd5b803590602001918460208302840111600160201b8311171561096957600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156109b857600080fd5b8201836020820111156109ca57600080fd5b803590602001918460208302840111600160201b831117156109eb57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610a3a57600080fd5b820183602082011115610a4c57600080fd5b803590602001918460208302840111600160201b83111715610a6d57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061181b945050505050565b61050460048036036020811015610ac157600080fd5b50356001600160a01b0316611c3f565b610af760048036036020811015610ae757600080fd5b50356001600160a01b0316611ca8565b6040805165ffffffffffff9092168252519081900360200190f35b61050460048036036060811015610b2857600080fd5b506001600160a01b03813581169160208101359091169060400135611cc2565b6103db60048036036040811015610b5e57600080fd5b506001600160a01b038135169060200135611d1f565b610b7c611d3f565b6040805161ffff9092168252519081900360200190f35b61050460048036036020811015610ba957600080fd5b810190602081018135600160201b811115610bc357600080fd5b820183602082011115610bd557600080fd5b803590602001918460208302840111600160201b83111715610bf657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611d45945050505050565b61066960048036036040811015610c4a57600080fd5b5080359060200135611f45565b61066960048036036020811015610c6d57600080fd5b5035611f80565b61050460048036036060811015610c8a57600080fd5b506001600160a01b03813581169160208101359091169060400135611faf565b61050460048036036020811015610cc057600080fd5b5035611fca565b61050460048036036060811015610cdd57600080fd5b5080359060208101359060400135612023565b610d0d60048036036020811015610d0657600080fd5b5035612088565b6040805165ffffffffffff909316835261ffff90911660208301528051918290030190f35b61066960048036036060811015610d4857600080fd5b5080356001600160a01b031690602081013561ffff16906040013560ff166120b0565b6104bc60048036036020811015610d8157600080fd5b5035612147565b6104bc60048036036020811015610d9e57600080fd5b503565ffffffffffff166122a4565b61042a6122bf565b61066960048036036020811015610dcb57600080fd5b50356001600160a01b03166122f8565b610504612313565b61050460048036036060811015610df957600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b811115610e2c57600080fd5b820183602082011115610e3e57600080fd5b803590602001918460208302840111600160201b83111715610e5f57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506123a4945050505050565b61066960048036036020811015610eb357600080fd5b50356123d6565b61066960048036036060811015610ed057600080fd5b810190602081018135600160201b811115610eea57600080fd5b820183602082011115610efc57600080fd5b803590602001918460018302840111600160201b83111715610f1d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505061ffff83358116945060209093013590921691506123fc9050565b6104bc6126b4565b6103db6126c3565b61042a6126d4565b610669612735565b61066960048036036020811015610fa557600080fd5b503561273b565b61050460048036036040811015610fc257600080fd5b506001600160a01b0381351690602001351515612760565b61050460048036036040811015610ff057600080fd5b508035906020013561282c565b61101a6004803603602081101561101357600080fd5b5035612890565b604080519915158a5297151560208a015260ff968716898901529486166060890152928516608088015290841660a0870152831660c0860152821660e08501521661010083015251908190036101200190f35b6105046004803603608081101561108357600080fd5b506001600160a01b03813581169160208101359091169060408101359060600135612900565b6103db600480360360208110156110bf57600080fd5b5035612924565b610d0d600480360360208110156110dc57600080fd5b5035612939565b610b7c600480360360208110156110f957600080fd5b5035612960565b6105046004803603608081101561111657600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561115057600080fd5b82018360208201111561116257600080fd5b803590602001918460018302840111600160201b8311171561118357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612995945050505050565b6111e1600480360360208110156111da57600080fd5b50356129e7565b6040805161ffff909316835260ff90911660208301528051918290030190f35b6105046004803603602081101561121757600080fd5b5035612a51565b6106696004803603602081101561123457600080fd5b5035612b17565b6105046004803603608081101561125157600080fd5b506001600160a01b03813581169160208101359091169060408101359060600135612b29565b61042a6004803603602081101561128d57600080fd5b5035612b46565b610669600480360360608110156112aa57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156112d457600080fd5b8201836020820111156112e657600080fd5b803590602001918460208302840111600160201b8311171561130757600080fd5b919390929091602081019035600160201b81111561132457600080fd5b82018360208201111561133657600080fd5b803590602001918460208302840111600160201b8311171561135757600080fd5b509092509050612ca0565b6106696004803603604081101561137857600080fd5b5080359060200135612dae565b6103db6004803603602081101561139b57600080fd5b503561ffff16612dd5565b6103db600480360360208110156113bc57600080fd5b5035612dea565b610504600480360360408110156113d957600080fd5b508035906020013560ff16612e6b565b6104bc612fb0565b610669612fbf565b6103db6004803603604081101561140f57600080fd5b506001600160a01b0381358116916020013516612fc5565b6105046004803603604081101561143d57600080fd5b506001600160a01b038135169060200135612ff3565b6105046004803603602081101561146957600080fd5b50356001600160a01b03166131de565b610b7c6004803603602081101561148f57600080fd5b503561322e565b61066961323b565b6114bb600480360360208110156114b457600080fd5b5035613241565b6040805161ffff938416815291909216602082015281519081900390910190f35b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b6015818154811061150c57fe5b9060005260206000209060209182820401919006915054906101000a900460ff1681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156115bc5780601f10611591576101008083540402835291602001916115bc565b820191906000526020600020905b81548152906001019060200180831161159f57829003601f168201915b5050505050905090565b60006115d18261326d565b61160c5760405162461bcd60e51b815260040180806020018281038252602c81526020018061499d602c913960400191505060405180910390fd5b60096000600f848154811061161d57fe5b6000918252602080832060058084049091015492066006026101000a90910465ffffffffffff1683528201929092526040019020546001600160a01b031692915050565b600061166c82612147565b9050806001600160a01b0316836001600160a01b031614156116bf5760405162461bcd60e51b8152600401808060200182810382526021815260200180614a126021913960400191505060405180910390fd5b336001600160a01b03821614806116db57506116db8133612fc5565b6117165760405162461bcd60e51b815260040180806020018281038252603881526020018061491c6038913960400191505060405180910390fd5b61171f8361328a565b600f838154811061172c57fe5b90600052602060002090600591828204019190066006026101000a81548165ffffffffffff021916908365ffffffffffff16021790555081836001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60005b81518110156117db576117d384848484815181106117c657fe5b6020026020010151611cc2565b6001016117ac565b50505050565b60005b8151811015611811576118098282815181106117fc57fe5b6020026020010151611fca565b6001016117e4565b5050565b600d5490565b6118236126c3565b611862576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b60005b8851811015611c3457600089828151811061187c57fe5b6020026020010151905060008161ffff16116118d8576040805162461bcd60e51b815260206004820152601660248201527570726f746f206d757374206e6f74206265207a65726f60501b604482015290519081900360640190fd5b6118e06147be565b60188261ffff16815481106118f157fe5b60009182526020918290206040805161012081018252929091015460ff808216158015855261010080840483161515968601969096526201000083048216938501939093526301000000820481166060850152600160201b820481166080850152650100000000008204811660a0850152600160301b8204811660c0850152600160381b8204811660e0850152600160401b909104169282019290925291506119d3576040805162461bcd60e51b815260206004820152600f60248201526e1c1c9bdd1bc81a5cc81b1bd8dad959608a1b604482015290519081900360640190fd5b6040518061012001604052806000151581526020016001151581526020018b85815181106119fd57fe5b602002602001015160ff1681526020018a8581518110611a1957fe5b602002602001015160ff168152602001898581518110611a3557fe5b602002602001015160ff168152602001888581518110611a5157fe5b602002602001015160ff168152602001878581518110611a6d57fe5b602002602001015160ff168152602001868581518110611a8957fe5b602002602001015160ff168152602001858581518110611aa557fe5b602002602001015160ff1681525060188361ffff1681548110611ac457fe5b9060005260206000200160008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff021916908360ff16021790555060608201518160000160036101000a81548160ff021916908360ff16021790555060808201518160000160046101000a81548160ff021916908360ff16021790555060a08201518160000160056101000a81548160ff021916908360ff16021790555060c08201518160000160066101000a81548160ff021916908360ff16021790555060e08201518160000160076101000a81548160ff021916908360ff1602179055506101008201518160000160086101000a81548160ff021916908360ff1602179055509050508161ffff167fe5d944d271f23cc2929e365ddfb8aa53de16aeb0e3c43908c454fc1110ceed7f60405160405180910390a25050600101611865565b505050505050505050565b611c476126c3565b611c86576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b600a6020526000908152604090205465ffffffffffff1681565b611ccb81612dea565b611d0f576040805162461bcd60e51b815260206004820152601060248201526f6e6f7420796574207472616461626c6560801b604482015290519081900360640190fd5b611d1a8383836133c9565b505050565b601b60209081526000928352604080842090915290825290205460ff1681565b61fde881565b611d4d6126c3565b611d8c576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b6000815111611dd3576040805162461bcd60e51b815260206004820152600e60248201526d6d757374206c6f636b20736f6d6560901b604482015290519081900360640190fd5b60005b8151811015611811576000828281518110611ded57fe5b6020026020010151905060008161ffff1611611e49576040805162461bcd60e51b815260206004820152601660248201527570726f746f206d757374206e6f74206265207a65726f60501b604482015290519081900360640190fd5b600060188261ffff1681548110611e5c57fe5b6000918252602090912001805490915060ff1615611eb3576040805162461bcd60e51b815260206004820152600f60248201526e1c1c9bdd1bc81a5cc81b1bd8dad959608a1b604482015290519081900360640190fd5b8054610100900460ff16611f01576040805162461bcd60e51b815260206004820152601060248201526f1c1c9bdd1bc81b5d5cdd08195e1a5cdd60821b604482015290519081900360640190fd5b805460ff1916600117815560405161ffff8316907fe5d944d271f23cc2929e365ddfb8aa53de16aeb0e3c43908c454fc1110ceed7f90600090a25050600101611dd6565b604080516001602080830191909152818301859052606080830185905283518084039091018152608090920190925280519101205b92915050565b604080516000602080830191909152818301939093528151808203830181526060909101909152805191012090565b611d1a83838360405180602001604052806000815250612995565b611fd381612dea565b612017576040805162461bcd60e51b815260206004820152601060248201526f6e6f7420796574207472616461626c6560801b604482015290519081900360640190fd5b612020816135c0565b50565b6017546001600160a01b0316331461207d576040805162461bcd60e51b815260206004820152601860248201527736bab9ba10313290383937b832b93a3c9036b0b730b3b2b960411b604482015290519081900360640190fd5b611d1a838383613712565b60009081526010602052604090205465ffffffffffff811691600160301b90910461ffff1690565b60006120bd846001613771565b90506120c88361397a565b82601482815481106120d657fe5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550816015828154811061211357fe5b90600052602060002090602091828204019190066101000a81548160ff021916908360ff1602179055508090509392505050565b600080600e838154811061215757fe5b90600052602060002090600591828204019190066006029054906101000a900465ffffffffffff1690508065ffffffffffff166000141561227e57600061219d846123d6565b90506121a761480a565b5060008181526010602090815260409182902082518084019093525465ffffffffffff81168352600160301b900461ffff169082018190528201851061222b576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b8051925065ffffffffffff831661227b576040805162461bcd60e51b815260206004820152600f60248201526e3130b2103130ba31b41037bbb732b960891b604482015290519081900360640190fd5b50505b65ffffffffffff166000908152600960205260409020546001600160a01b031692915050565b6009602052600090815260409020546001600160a01b031681565b6040518060400160405280602081526020017f68747470733a2f2f6170692e696d6d757461626c652e636f6d2f746f6b656e2f81525081565b6001600160a01b031660009081526012602052604090205490565b61231b6126c3565b61235a576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b60005b81518110156117db576123ce84848484815181106123c157fe5b6020026020010151611faf565b6001016123a7565b600b54600090611f7a906123f0848263ffffffff613aec16565b9063ffffffff613b5616565b60006124066126c3565b612445576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b60008361ffff1611612497576040805162461bcd60e51b81526020600482015260166024820152756d757374206e6f74206265207a65726f2070726f746f60501b604482015290519081900360640190fd5b8261ffff168261ffff16116124eb576040805162461bcd60e51b81526020600482015260156024820152746d75737420626520612076616c69642072616e676560581b604482015290519081900360640190fd5b601954158061251e575060198054600019810190811061250757fe5b60009182526020909120015461ffff908116908416115b612568576040805162461bcd60e51b81526020600482015260166024820152750736561736f6e732063616e6e6f74206f7665726c61760541b604482015290519081900360640190fd5b6040805180820190915261ffff80841682528481166020830181815260198054600181810180845560009390935295517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9695909101805493518616620100000263ffff00001992871661ffff19909516949094179190911692909217909155926016926125ff92849290918989039091011685613bb6565b8361ffff168561ffff168361ffff167f894c7f27fb3eb8728566da10c21ff64cffafe6700bf22074e653fcd20acc8bba896040518080602001828103825283818151815260200191508051906020019080838360005b8381101561266d578181015183820152602001612655565b50505050905090810190601f16801561269a5780820380516001836020036101000a031916815260200191505b509250505060405180910390a45061ffff16949350505050565b6005546001600160a01b031690565b6005546001600160a01b0316331490565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156115bc5780601f10611591576101008083540402835291602001916115bc565b600d5481565b60006013600061274a84611f80565b8152602001908152602001600020549050919050565b6001600160a01b0382163314156127be576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b6017546001600160a01b03163314612886576040805162461bcd60e51b815260206004820152601860248201527736bab9ba10313290383937b832b93a3c9036b0b730b3b2b960411b604482015290519081900360640190fd5b6118118282613bfa565b6018818154811061289d57fe5b60009182526020909120015460ff8082169250610100820481169162010000810482169163010000008204811691600160201b8104821691650100000000008204811691600160301b8104821691600160381b8204811691600160401b90041689565b815b8181101561291d57612915858583611faf565b600101612902565b5050505050565b601a6020526000908152604090205460ff1681565b60106020526000908152604090205465ffffffffffff811690600160301b900461ffff1682565b6016818154811061296d57fe5b9060005260206000209060109182820401919006600202915054906101000a900461ffff1681565b6129a0848484611cc2565b6129ac84848484613c53565b6117db5760405162461bcd60e51b81526004018080602001828103825260328152602001806148226032913960400191505060405180910390fd5b600080601483815481106129f757fe5b90600052602060002090601091828204019190066002029054906101000a900461ffff1660158481548110612a2857fe5b90600052602060002090602091828204019190069054906101000a900460ff1691509150915091565b612a596126c3565b612a98576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b6000818152601a602052604090205460ff1615612afc576040805162461bcd60e51b815260206004820152601b60248201527f736561736f6e206d757374206e6f74206265207472616461626c650000000000604482015290519081900360640190fd5b6000908152601a60205260409020805460ff19166001179055565b60136020526000908152604090205481565b815b8181101561291d57612b3e858583611cc2565b600101612b2b565b60606040518060400160405280602081526020017f68747470733a2f2f6170692e696d6d757461626c652e636f6d2f746f6b656e2f815250612b8730613d87565b612b9084613f2d565b6040516020018084805190602001908083835b60208310612bc25780518252601f199092019160209182019101612ba3565b51815160209384036101000a600019018019909216911617905286519190930192860191508083835b60208310612c0a5780518252601f199092019160209182019101612beb565b6001836020036101000a03801982511681845116808217855250505050505090500180602f60f81b81525060010182805190602001908083835b60208310612c635780518252601f199092019160209182019101612c44565b6001836020036101000a03801982511681845116808217855250505050505090500193505050506040516020818303038152906040529050919050565b600083612cea576040805162461bcd60e51b81526020600482015260136024820152726d75737420626520736f6d652070726f746f7360681b604482015290519081900360640190fd5b838214612d285760405162461bcd60e51b815260040180806020018281038252602b815260200180614a5e602b913960400191505060405180910390fd5b6000612d348786613771565b9050612da48187878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808b0282810182019093528a82529093508a925089918291850190849080828437600092019190915250613ff192505050565b9695505050505050565b600060136000612dbe8585611f45565b815260200190815260200160002054905092915050565b601c6020526000908152604090205460ff1681565b6000601a6000601660148581548110612dff57fe5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1681548110612e3157fe5b60009182526020808320601083040154600f9092166002026101000a90910461ffff16835282019290925260400190205460ff1692915050565b600060148381548110612e7a57fe5b90600052602060002090601091828204019190066002029054906101000a900461ffff169050600060168261ffff1681548110612eb357fe5b60009182526020808320601083040154338452601b82526040808520600f9094166002026101000a90910461ffff16808552929091529091205490915060ff16612f2e5760405162461bcd60e51b815260040180806020018281038252602b815260200180614a33602b913960400191505060405180910390fd5b8260158460ff1681548110612f3f57fe5b600091825260209182902082820401805460ff948516601f9093166101000a92830292850219169190911790556040805192861683523391830191909152805186927f892269e637adec3404715b55a46b36fba9383a540f8f5859b364909469fcd04d92908290030190a250505050565b6017546001600160a01b031681565b600c5481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b612ffb6126c3565b61303a576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b601954811115613085576040805162461bcd60e51b81526020600482015260116024820152701cd9585cdbdb881b5d5cdd08195e1a5cdd607a1b604482015290519081900360640190fd5b600081116130d1576040805162461bcd60e51b81526020600482015260146024820152730736561736f6e206d757374206e6f7420626520360641b604482015290519081900360640190fd5b6001600160a01b0382166000908152601b6020908152604080832084845290915290205460ff161561314a576040805162461bcd60e51b815260206004820181905260248201527f7468697320666163746f727920697320616c726561647920617070726f766564604482015290519081900360640190fd5b6000818152601a602052604090205460ff16156131ae576040805162461bcd60e51b815260206004820152601b60248201527f736561736f6e206d757374206e6f74206265207472616461626c650000000000604482015290519081900360640190fd5b6001600160a01b039091166000908152601b6020908152604080832093835292905220805460ff19166001179055565b6131e66126c3565b613225576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b61202081614014565b6014818154811061296d57fe5b600b5481565b6019818154811061324e57fe5b60009182526020909120015461ffff8082169250620100009091041682565b60008061327983612147565b6001600160a01b0316141592915050565b60006001600160a01b0382166132a2575060006114fa565b6001600160a01b0382166000908152600a602052604090205465ffffffffffff1680611f7a5760115465ffffffffffff9081166001810190911611613322576040805162461bcd60e51b81526020600482015260116024820152706d757374206e6f74206f766572666c6f7760781b604482015290519081900360640190fd5b506011805465ffffffffffff8082166001810190911665ffffffffffff1992831617909255600082815260096020908152604080832080546001600160a01b0389166001600160a01b031990911681179091558352600a909152902080549091168217905580611f7a576040805162461bcd60e51b815260206004820152600d60248201526c06d757374206e6f74206265203609c1b604482015290519081900360640190fd5b826001600160a01b03166133dc82612147565b6001600160a01b0316146134215760405162461bcd60e51b81526004018080602001828103825260298152602001806149e96029913960400191505060405180910390fd5b6001600160a01b0382166134665760405162461bcd60e51b815260040180806020018281038252602481526020018061487a6024913960400191505060405180910390fd5b61347033826140b5565b6134ab5760405162461bcd60e51b81526004018080602001828103825260288152602001806149756028913960400191505060405180910390fd5b6134b481614151565b6001600160a01b0383166000908152601260205260409020546134de90600163ffffffff6141de16565b6001600160a01b03808516600090815260126020526040808220939093559084168152205461351490600163ffffffff61423b16565b6001600160a01b0383166000908152601260205260409020556135368261328a565b600e828154811061354357fe5b90600052602060002090600591828204019190066006026101000a81548165ffffffffffff021916908365ffffffffffff16021790555080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6135ca33826140b5565b61361b576040805162461bcd60e51b815260206004820181905260248201527f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564604482015290519081900360640190fd5b61362481614151565b600061362f82612147565b6001600160a01b03811660009081526012602052604090205490915061365c90600163ffffffff6141de16565b6001600160a01b038216600090815260126020526040812091909155600e80548490811061368657fe5b90600052602060002090600591828204019190066006026101000a81548165ffffffffffff021916908365ffffffffffff1602179055506136d36001600d546141de90919063ffffffff16565b600d5560405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b80601360006137218686611f45565b81526020019081526020016000208190555081837fe437ad402a50c14d9de944e1d68d9708776aaccb860bd49a6e875a64e7d0b22a836040518082815260200191505060405180910390a3505050565b60006001600160a01b0383166137c1576040805162461bcd60e51b815260206004820152601060248201526f1b5d5cdd081b9bdd081899481b9d5b1b60821b604482015290519081900360640190fd5b60008261ffff161180156137db5750600b548261ffff1611155b61382c576040805162461bcd60e51b815260206004820152601a60248201527f73697a65206d7573742062652077697468696e206c696d697473000000000000604482015290519081900360640190fd5b600c54600061383a8561328a565b60408051808201825265ffffffffffff838116825261ffff888116602080850182815260008a8152601090925295812094518554965165ffffffffffff1990971694169390931767ffff0000000000001916600160301b9590921694909402179091559192506138ab90849061423b565b9050825b818110156138f75760405181906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46001016138af565b50600b54600c5461390d9163ffffffff61423b16565b600c556001600160a01b03861660009081526012602052604090205461393d9061ffff871663ffffffff61423b16565b6001600160a01b038716600090815260126020526040902055600d5461396d9061ffff871663ffffffff61423b16565b600d555090949350505050565b61fde861ffff821610613a135761ffff81166000908152601c602052604090205460ff16156139f0576040805162461bcd60e51b815260206004820152601f60248201527f6d79746869632068617320616c7265616479206265656e206372656174656400604482015290519081900360640190fd5b61ffff81166000908152601c60205260409020805460ff19166001179055612020565b600060168261ffff1681548110613a2657fe5b60009182526020909120601082040154600f9091166002026101000a900461ffff16905080613a93576040805162461bcd60e51b81526020600482015260146024820152731b5d5cdd081a185d99481cd9585cdbdb881cd95d60621b604482015290519081900360640190fd5b336000908152601b6020908152604080832084845290915290205460ff166118115760405162461bcd60e51b81526004018080602001828103825260288152602001806148f46028913960400191505060405180910390fd5b6000808211613b42576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b6000828481613b4d57fe5b04949350505050565b600082613b6557506000611f7a565b82820282848281613b7257fe5b0414613baf5760405162461bcd60e51b81526004018080602001828103825260218152602001806149546021913960400191505060405180910390fd5b9392505050565b6060613bc58585601086614295565b905060005b83811015613bec57613be482866010848761ffff1661435b565b600101613bca565b5061291d85856010846143e3565b60408051828152905183917fa065fb8968d66241513c49df78364990dc9917fcd41ede326cef2c15e82f4aec919081900360200190a28060136000613c3e85611f80565b81526020810191909152604001600020555050565b6000613c67846001600160a01b0316614440565b613c7357506001613d7f565b604051630a85bd0160e11b815233600482018181526001600160a01b03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b83811015613ced578181015183820152602001613cd5565b50505050905090810190601f168015613d1a5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015613d3c57600080fd5b505af1158015613d50573d6000803e3d6000fd5b505050506040513d6020811015613d6657600080fd5b50516001600160e01b031916630a85bd0160e11b149150505b949350505050565b60408051602a80825260608281019093526001600160a01b038416918391602082018180388339019050509050600360fc1b81600081518110613dc657fe5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613def57fe5b60200101906001600160f81b031916908160001a90535060005b6014811015613f25576040518060400160405280601081526020016f181899199a1a9b1b9c1cb0b131b232b360811b81525060048483600c0160208110613e4c57fe5b1a60f81b6001600160f81b031916901c60f81c60ff1681518110613e6c57fe5b602001015160f81c60f81b828260020260020181518110613e8957fe5b60200101906001600160f81b031916908160001a9053506040518060400160405280601081526020016f181899199a1a9b1b9c1cb0b131b232b360811b8152508382600c0160208110613ed857fe5b825191901a600f16908110613ee957fe5b602001015160f81c60f81b828260020260030181518110613f0657fe5b60200101906001600160f81b031916908160001a905350600101613e09565b509392505050565b606081613f5257506040805180820190915260018152600360fc1b60208201526114fa565b8160005b8115613f6a57600101600a82049150613f56565b6060816040519080825280601f01601f191660200182016040528015613f97576020820181803883390190505b50859350905060001982015b8315613fe857600a840660300160f81b82828060019003935081518110613fc657fe5b60200101906001600160f81b031916908160001a905350600a84049350613fa3565b50949350505050565b613ffa82614446565b6014614007818585614690565b601561291d8186856146e9565b6001600160a01b0381166140595760405162461bcd60e51b81526004018080602001828103825260268152602001806148546026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60006140c08261326d565b6140fb5760405162461bcd60e51b815260040180806020018281038252602c81526020018061489e602c913960400191505060405180910390fd5b600061410683612147565b9050806001600160a01b0316846001600160a01b031614806141415750836001600160a01b0316614136846115c6565b6001600160a01b0316145b80613d7f5750613d7f8185612fc5565b600f818154811061415e57fe5b90600052602060002090600591828204019190066006029054906101000a900465ffffffffffff1665ffffffffffff16600014612020576000600f82815481106141a457fe5b90600052602060002090600591828204019190066006026101000a81548165ffffffffffff021916908365ffffffffffff16021790555050565b600082821115614235576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015613baf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b606060006142a4858585614741565b9050806040519080825280602002602001820160405280156142d0578160200160208202803883390190505b50915060006142df8686614771565b90506142eb8782614784565b836000815181106142f857fe5b6020026020010181815250506001821115614351576000614328614322888763ffffffff61423b16565b87614771565b90506143348882614784565b84600185038151811061434357fe5b602002602001018181525050505b5050949350505050565b6000836101008161436857fe5b049050600081868161437657fe5b0690506000828583018161438657fe5b049050600086848988018161439757fe5b0602905060005b878110156143d7578082018187901c60ff16901b8a84815181106143be57fe5b602090810291909101018051909117905260080161439e565b50505050505050505050565b600061440283610100816143f357fe5b8691900463ffffffff613aec16565b905060005b8251811015614438576144308682840185848151811061442357fe5b602002602001015161479a565b600101614407565b505050505050565b3b151590565b600061ffff815b835181101561453c57600084828151811061446457fe5b6020026020010151905061fde861ffff168161ffff161061450b5761ffff81166000908152601c602052604090205460ff16156144e8576040805162461bcd60e51b815260206004820152601f60248201527f6d79746869632068617320616c7265616479206265656e206372656174656400604482015290519081900360640190fd5b61ffff81166000908152601c60205260409020805460ff19166001179055614533565b8361ffff168161ffff16111561451f578093505b8061ffff168361ffff161115614533578092505b5060010161444d565b5061ffff821615611d1a57600060168361ffff168154811061455a57fe5b60009182526020909120601082040154600f9091166002026101000a900461ffff169050806145c7576040805162461bcd60e51b81526020600482015260146024820152731b5d5cdd081a185d99481cd9585cdbdb881cd95d60621b604482015290519081900360640190fd5b60168261ffff16815481106145d857fe5b60009182526020909120601082040154600f9091166002026101000a900461ffff1681146146375760405162461bcd60e51b815260040180806020018281038252602a8152602001806148ca602a913960400191505060405180910390fd5b336000908152601b6020908152604080832084845290915290205460ff166117db5760405162461bcd60e51b81526004018080602001828103825260288152602001806148f46028913960400191505060405180910390fd5b60606146a0848460108551614295565b905060005b82518110156146db576146d382856010848786815181106146c257fe5b602002602001015161ffff1661435b565b6001016146a5565b506117db84846010846143e3565b60606146f9848460208551614295565b905060005b82518110156147335761472b828560088487868151811061471b57fe5b602002602001015160ff1661435b565b6001016146fe565b506117db84846008846143e3565b60008083858161474d57fe5b0490506000848487018161475d57fe5b049050818103600101925050509392505050565b600081838161477c57fe5b049392505050565b60008061479184846147af565b54949350505050565b60006147a684846147af565b91909155505050565b60405191825260209091200190565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081019190915290565b60408051808201909152600080825260208201529056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e63616e206f6e6c79206372656174652063617264732066726f6d207468652073616d6520736561736f6e6d75737420626520617070726f76656420666163746f727920666f72207468697320736561736f6e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e6572666163746f72792063616e2774206368616e6765207175616c697479206f66207468697320736561736f6e6d757374206265207468652073616d65206e756d626572206f662070726f746f732f7175616c6974696573a265627a7a72315820c48eea8554be8d778a3ae58706a610ab8f67b31a093b77bedc1777297221e3dd64736f6c634300050b003200000000000000000000000000000000000000000000000000000000000004e3000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000014476f647320556e636861696e656420436172647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000044341524400000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103af5760003560e01c80638da5cb5b116101f4578063bd1562731161011a578063e7356cb5116100ad578063f2fde38b1161007c578063f2fde38b14611453578063f3beae6b14611479578063f4daaba114611496578063f5d709a11461149e576103af565b8063e7356cb5146113e9578063e7c51f1b146113f1578063e985e9c5146113f9578063ef42259b14611427576103af565b8063cdc2cfe2116100e9578063cdc2cfe214611362578063e0c931df14611385578063e27aa1d8146113a6578063e3fb1ac6146113c3576103af565b8063bd1562731461121e578063c5f4127a1461123b578063c87b56dd14611277578063c8be6b9b14611294576103af565b8063ab17d04011610192578063b76e8d0111610161578063b76e8d01146110e3578063b88d4fde14611100578063b93a89f7146111c4578063bc04852514611201576103af565b8063ab17d04014610ffd578063b0c4297c1461106d578063b309c36b146110a9578063b32c4d8d146110c6576103af565b80639f181b5e116101ce5780639f181b5e14610f87578063a138e44e14610f8f578063a22cb46514610fac578063a9c1a20014610fda576103af565b80638da5cb5b14610f6f5780638f32d59b14610f7757806395d89b4114610f7f576103af565b806337514295116102d95780636352211e11610277578063715018a611610246578063715018a614610ddb5780637962d59b14610de3578063815d9fa014610e9d578063856516c314610eba576103af565b80636352211e14610d6b5780636602eaf914610d885780636c0360eb14610dad57806370a0823114610db5576103af565b806342966c68116102b357806342966c6814610caa57806358895f6214610cc75780635ac4428214610cf05780635b65afe914610d32576103af565b80633751429514610c345780633af0725614610c5757806342842e0e14610c74576103af565b806318160ddd1161035157806323b872dd1161032057806323b872dd14610b125780632488508714610b4857806324a01da114610b745780632fa438a314610b93576103af565b806318160ddd146106615780631e41613c1461067b5780631e50739314610aab5780631fe25e4f14610ad1576103af565b8063081812fc1161038d578063081812fc1461049f578063095ea7b3146104d85780630bbe0ee314610506578063100cdd91146105c0576103af565b806301ffc9a7146103b457806302b19cea146103ef57806306fdde0314610422575b600080fd5b6103db600480360360208110156103ca57600080fd5b50356001600160e01b0319166114dc565b604080519115158252519081900360200190f35b61040c6004803603602081101561040557600080fd5b50356114ff565b6040805160ff9092168252519081900360200190f35b61042a611530565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561046457818101518382015260200161044c565b50505050905090810190601f1680156104915780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104bc600480360360208110156104b557600080fd5b50356115c6565b604080516001600160a01b039092168252519081900360200190f35b610504600480360360408110156104ee57600080fd5b506001600160a01b038135169060200135611661565b005b6105046004803603606081101561051c57600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b81111561054f57600080fd5b82018360208201111561056157600080fd5b803590602001918460208302840111600160201b8311171561058257600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506117a9945050505050565b610504600480360360208110156105d657600080fd5b810190602081018135600160201b8111156105f057600080fd5b82018360208201111561060257600080fd5b803590602001918460208302840111600160201b8311171561062357600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506117e1945050505050565b610669611815565b60408051918252519081900360200190f35b610504600480360361010081101561069257600080fd5b810190602081018135600160201b8111156106ac57600080fd5b8201836020820111156106be57600080fd5b803590602001918460208302840111600160201b831117156106df57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561072e57600080fd5b82018360208201111561074057600080fd5b803590602001918460208302840111600160201b8311171561076157600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156107b057600080fd5b8201836020820111156107c257600080fd5b803590602001918460208302840111600160201b831117156107e357600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561083257600080fd5b82018360208201111561084457600080fd5b803590602001918460208302840111600160201b8311171561086557600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156108b457600080fd5b8201836020820111156108c657600080fd5b803590602001918460208302840111600160201b831117156108e757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b81111561093657600080fd5b82018360208201111561094857600080fd5b803590602001918460208302840111600160201b8311171561096957600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b8111156109b857600080fd5b8201836020820111156109ca57600080fd5b803590602001918460208302840111600160201b831117156109eb57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295949360208101935035915050600160201b811115610a3a57600080fd5b820183602082011115610a4c57600080fd5b803590602001918460208302840111600160201b83111715610a6d57600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955061181b945050505050565b61050460048036036020811015610ac157600080fd5b50356001600160a01b0316611c3f565b610af760048036036020811015610ae757600080fd5b50356001600160a01b0316611ca8565b6040805165ffffffffffff9092168252519081900360200190f35b61050460048036036060811015610b2857600080fd5b506001600160a01b03813581169160208101359091169060400135611cc2565b6103db60048036036040811015610b5e57600080fd5b506001600160a01b038135169060200135611d1f565b610b7c611d3f565b6040805161ffff9092168252519081900360200190f35b61050460048036036020811015610ba957600080fd5b810190602081018135600160201b811115610bc357600080fd5b820183602082011115610bd557600080fd5b803590602001918460208302840111600160201b83111715610bf657600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611d45945050505050565b61066960048036036040811015610c4a57600080fd5b5080359060200135611f45565b61066960048036036020811015610c6d57600080fd5b5035611f80565b61050460048036036060811015610c8a57600080fd5b506001600160a01b03813581169160208101359091169060400135611faf565b61050460048036036020811015610cc057600080fd5b5035611fca565b61050460048036036060811015610cdd57600080fd5b5080359060208101359060400135612023565b610d0d60048036036020811015610d0657600080fd5b5035612088565b6040805165ffffffffffff909316835261ffff90911660208301528051918290030190f35b61066960048036036060811015610d4857600080fd5b5080356001600160a01b031690602081013561ffff16906040013560ff166120b0565b6104bc60048036036020811015610d8157600080fd5b5035612147565b6104bc60048036036020811015610d9e57600080fd5b503565ffffffffffff166122a4565b61042a6122bf565b61066960048036036020811015610dcb57600080fd5b50356001600160a01b03166122f8565b610504612313565b61050460048036036060811015610df957600080fd5b6001600160a01b038235811692602081013590911691810190606081016040820135600160201b811115610e2c57600080fd5b820183602082011115610e3e57600080fd5b803590602001918460208302840111600160201b83111715610e5f57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506123a4945050505050565b61066960048036036020811015610eb357600080fd5b50356123d6565b61066960048036036060811015610ed057600080fd5b810190602081018135600160201b811115610eea57600080fd5b820183602082011115610efc57600080fd5b803590602001918460018302840111600160201b83111715610f1d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505061ffff83358116945060209093013590921691506123fc9050565b6104bc6126b4565b6103db6126c3565b61042a6126d4565b610669612735565b61066960048036036020811015610fa557600080fd5b503561273b565b61050460048036036040811015610fc257600080fd5b506001600160a01b0381351690602001351515612760565b61050460048036036040811015610ff057600080fd5b508035906020013561282c565b61101a6004803603602081101561101357600080fd5b5035612890565b604080519915158a5297151560208a015260ff968716898901529486166060890152928516608088015290841660a0870152831660c0860152821660e08501521661010083015251908190036101200190f35b6105046004803603608081101561108357600080fd5b506001600160a01b03813581169160208101359091169060408101359060600135612900565b6103db600480360360208110156110bf57600080fd5b5035612924565b610d0d600480360360208110156110dc57600080fd5b5035612939565b610b7c600480360360208110156110f957600080fd5b5035612960565b6105046004803603608081101561111657600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561115057600080fd5b82018360208201111561116257600080fd5b803590602001918460018302840111600160201b8311171561118357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550612995945050505050565b6111e1600480360360208110156111da57600080fd5b50356129e7565b6040805161ffff909316835260ff90911660208301528051918290030190f35b6105046004803603602081101561121757600080fd5b5035612a51565b6106696004803603602081101561123457600080fd5b5035612b17565b6105046004803603608081101561125157600080fd5b506001600160a01b03813581169160208101359091169060408101359060600135612b29565b61042a6004803603602081101561128d57600080fd5b5035612b46565b610669600480360360608110156112aa57600080fd5b6001600160a01b038235169190810190604081016020820135600160201b8111156112d457600080fd5b8201836020820111156112e657600080fd5b803590602001918460208302840111600160201b8311171561130757600080fd5b919390929091602081019035600160201b81111561132457600080fd5b82018360208201111561133657600080fd5b803590602001918460208302840111600160201b8311171561135757600080fd5b509092509050612ca0565b6106696004803603604081101561137857600080fd5b5080359060200135612dae565b6103db6004803603602081101561139b57600080fd5b503561ffff16612dd5565b6103db600480360360208110156113bc57600080fd5b5035612dea565b610504600480360360408110156113d957600080fd5b508035906020013560ff16612e6b565b6104bc612fb0565b610669612fbf565b6103db6004803603604081101561140f57600080fd5b506001600160a01b0381358116916020013516612fc5565b6105046004803603604081101561143d57600080fd5b506001600160a01b038135169060200135612ff3565b6105046004803603602081101561146957600080fd5b50356001600160a01b03166131de565b610b7c6004803603602081101561148f57600080fd5b503561322e565b61066961323b565b6114bb600480360360208110156114b457600080fd5b5035613241565b6040805161ffff938416815291909216602082015281519081900390910190f35b6001600160e01b0319811660009081526020819052604090205460ff165b919050565b6015818154811061150c57fe5b9060005260206000209060209182820401919006915054906101000a900460ff1681565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156115bc5780601f10611591576101008083540402835291602001916115bc565b820191906000526020600020905b81548152906001019060200180831161159f57829003601f168201915b5050505050905090565b60006115d18261326d565b61160c5760405162461bcd60e51b815260040180806020018281038252602c81526020018061499d602c913960400191505060405180910390fd5b60096000600f848154811061161d57fe5b6000918252602080832060058084049091015492066006026101000a90910465ffffffffffff1683528201929092526040019020546001600160a01b031692915050565b600061166c82612147565b9050806001600160a01b0316836001600160a01b031614156116bf5760405162461bcd60e51b8152600401808060200182810382526021815260200180614a126021913960400191505060405180910390fd5b336001600160a01b03821614806116db57506116db8133612fc5565b6117165760405162461bcd60e51b815260040180806020018281038252603881526020018061491c6038913960400191505060405180910390fd5b61171f8361328a565b600f838154811061172c57fe5b90600052602060002090600591828204019190066006026101000a81548165ffffffffffff021916908365ffffffffffff16021790555081836001600160a01b0316826001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60005b81518110156117db576117d384848484815181106117c657fe5b6020026020010151611cc2565b6001016117ac565b50505050565b60005b8151811015611811576118098282815181106117fc57fe5b6020026020010151611fca565b6001016117e4565b5050565b600d5490565b6118236126c3565b611862576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b60005b8851811015611c3457600089828151811061187c57fe5b6020026020010151905060008161ffff16116118d8576040805162461bcd60e51b815260206004820152601660248201527570726f746f206d757374206e6f74206265207a65726f60501b604482015290519081900360640190fd5b6118e06147be565b60188261ffff16815481106118f157fe5b60009182526020918290206040805161012081018252929091015460ff808216158015855261010080840483161515968601969096526201000083048216938501939093526301000000820481166060850152600160201b820481166080850152650100000000008204811660a0850152600160301b8204811660c0850152600160381b8204811660e0850152600160401b909104169282019290925291506119d3576040805162461bcd60e51b815260206004820152600f60248201526e1c1c9bdd1bc81a5cc81b1bd8dad959608a1b604482015290519081900360640190fd5b6040518061012001604052806000151581526020016001151581526020018b85815181106119fd57fe5b602002602001015160ff1681526020018a8581518110611a1957fe5b602002602001015160ff168152602001898581518110611a3557fe5b602002602001015160ff168152602001888581518110611a5157fe5b602002602001015160ff168152602001878581518110611a6d57fe5b602002602001015160ff168152602001868581518110611a8957fe5b602002602001015160ff168152602001858581518110611aa557fe5b602002602001015160ff1681525060188361ffff1681548110611ac457fe5b9060005260206000200160008201518160000160006101000a81548160ff02191690831515021790555060208201518160000160016101000a81548160ff02191690831515021790555060408201518160000160026101000a81548160ff021916908360ff16021790555060608201518160000160036101000a81548160ff021916908360ff16021790555060808201518160000160046101000a81548160ff021916908360ff16021790555060a08201518160000160056101000a81548160ff021916908360ff16021790555060c08201518160000160066101000a81548160ff021916908360ff16021790555060e08201518160000160076101000a81548160ff021916908360ff1602179055506101008201518160000160086101000a81548160ff021916908360ff1602179055509050508161ffff167fe5d944d271f23cc2929e365ddfb8aa53de16aeb0e3c43908c454fc1110ceed7f60405160405180910390a25050600101611865565b505050505050505050565b611c476126c3565b611c86576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b601780546001600160a01b0319166001600160a01b0392909216919091179055565b600a6020526000908152604090205465ffffffffffff1681565b611ccb81612dea565b611d0f576040805162461bcd60e51b815260206004820152601060248201526f6e6f7420796574207472616461626c6560801b604482015290519081900360640190fd5b611d1a8383836133c9565b505050565b601b60209081526000928352604080842090915290825290205460ff1681565b61fde881565b611d4d6126c3565b611d8c576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b6000815111611dd3576040805162461bcd60e51b815260206004820152600e60248201526d6d757374206c6f636b20736f6d6560901b604482015290519081900360640190fd5b60005b8151811015611811576000828281518110611ded57fe5b6020026020010151905060008161ffff1611611e49576040805162461bcd60e51b815260206004820152601660248201527570726f746f206d757374206e6f74206265207a65726f60501b604482015290519081900360640190fd5b600060188261ffff1681548110611e5c57fe5b6000918252602090912001805490915060ff1615611eb3576040805162461bcd60e51b815260206004820152600f60248201526e1c1c9bdd1bc81a5cc81b1bd8dad959608a1b604482015290519081900360640190fd5b8054610100900460ff16611f01576040805162461bcd60e51b815260206004820152601060248201526f1c1c9bdd1bc81b5d5cdd08195e1a5cdd60821b604482015290519081900360640190fd5b805460ff1916600117815560405161ffff8316907fe5d944d271f23cc2929e365ddfb8aa53de16aeb0e3c43908c454fc1110ceed7f90600090a25050600101611dd6565b604080516001602080830191909152818301859052606080830185905283518084039091018152608090920190925280519101205b92915050565b604080516000602080830191909152818301939093528151808203830181526060909101909152805191012090565b611d1a83838360405180602001604052806000815250612995565b611fd381612dea565b612017576040805162461bcd60e51b815260206004820152601060248201526f6e6f7420796574207472616461626c6560801b604482015290519081900360640190fd5b612020816135c0565b50565b6017546001600160a01b0316331461207d576040805162461bcd60e51b815260206004820152601860248201527736bab9ba10313290383937b832b93a3c9036b0b730b3b2b960411b604482015290519081900360640190fd5b611d1a838383613712565b60009081526010602052604090205465ffffffffffff811691600160301b90910461ffff1690565b60006120bd846001613771565b90506120c88361397a565b82601482815481106120d657fe5b90600052602060002090601091828204019190066002026101000a81548161ffff021916908361ffff160217905550816015828154811061211357fe5b90600052602060002090602091828204019190066101000a81548160ff021916908360ff1602179055508090509392505050565b600080600e838154811061215757fe5b90600052602060002090600591828204019190066006029054906101000a900465ffffffffffff1690508065ffffffffffff166000141561227e57600061219d846123d6565b90506121a761480a565b5060008181526010602090815260409182902082518084019093525465ffffffffffff81168352600160301b900461ffff169082018190528201851061222b576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015290519081900360640190fd5b8051925065ffffffffffff831661227b576040805162461bcd60e51b815260206004820152600f60248201526e3130b2103130ba31b41037bbb732b960891b604482015290519081900360640190fd5b50505b65ffffffffffff166000908152600960205260409020546001600160a01b031692915050565b6009602052600090815260409020546001600160a01b031681565b6040518060400160405280602081526020017f68747470733a2f2f6170692e696d6d757461626c652e636f6d2f746f6b656e2f81525081565b6001600160a01b031660009081526012602052604090205490565b61231b6126c3565b61235a576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b60005b81518110156117db576123ce84848484815181106123c157fe5b6020026020010151611faf565b6001016123a7565b600b54600090611f7a906123f0848263ffffffff613aec16565b9063ffffffff613b5616565b60006124066126c3565b612445576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b60008361ffff1611612497576040805162461bcd60e51b81526020600482015260166024820152756d757374206e6f74206265207a65726f2070726f746f60501b604482015290519081900360640190fd5b8261ffff168261ffff16116124eb576040805162461bcd60e51b81526020600482015260156024820152746d75737420626520612076616c69642072616e676560581b604482015290519081900360640190fd5b601954158061251e575060198054600019810190811061250757fe5b60009182526020909120015461ffff908116908416115b612568576040805162461bcd60e51b81526020600482015260166024820152750736561736f6e732063616e6e6f74206f7665726c61760541b604482015290519081900360640190fd5b6040805180820190915261ffff80841682528481166020830181815260198054600181810180845560009390935295517f944998273e477b495144fb8794c914197f3ccb46be2900f4698fd0ef743c9695909101805493518616620100000263ffff00001992871661ffff19909516949094179190911692909217909155926016926125ff92849290918989039091011685613bb6565b8361ffff168561ffff168361ffff167f894c7f27fb3eb8728566da10c21ff64cffafe6700bf22074e653fcd20acc8bba896040518080602001828103825283818151815260200191508051906020019080838360005b8381101561266d578181015183820152602001612655565b50505050905090810190601f16801561269a5780820380516001836020036101000a031916815260200191505b509250505060405180910390a45061ffff16949350505050565b6005546001600160a01b031690565b6005546001600160a01b0316331490565b60078054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156115bc5780601f10611591576101008083540402835291602001916115bc565b600d5481565b60006013600061274a84611f80565b8152602001908152602001600020549050919050565b6001600160a01b0382163314156127be576040805162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015290519081900360640190fd5b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b6017546001600160a01b03163314612886576040805162461bcd60e51b815260206004820152601860248201527736bab9ba10313290383937b832b93a3c9036b0b730b3b2b960411b604482015290519081900360640190fd5b6118118282613bfa565b6018818154811061289d57fe5b60009182526020909120015460ff8082169250610100820481169162010000810482169163010000008204811691600160201b8104821691650100000000008204811691600160301b8104821691600160381b8204811691600160401b90041689565b815b8181101561291d57612915858583611faf565b600101612902565b5050505050565b601a6020526000908152604090205460ff1681565b60106020526000908152604090205465ffffffffffff811690600160301b900461ffff1682565b6016818154811061296d57fe5b9060005260206000209060109182820401919006600202915054906101000a900461ffff1681565b6129a0848484611cc2565b6129ac84848484613c53565b6117db5760405162461bcd60e51b81526004018080602001828103825260328152602001806148226032913960400191505060405180910390fd5b600080601483815481106129f757fe5b90600052602060002090601091828204019190066002029054906101000a900461ffff1660158481548110612a2857fe5b90600052602060002090602091828204019190069054906101000a900460ff1691509150915091565b612a596126c3565b612a98576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b6000818152601a602052604090205460ff1615612afc576040805162461bcd60e51b815260206004820152601b60248201527f736561736f6e206d757374206e6f74206265207472616461626c650000000000604482015290519081900360640190fd5b6000908152601a60205260409020805460ff19166001179055565b60136020526000908152604090205481565b815b8181101561291d57612b3e858583611cc2565b600101612b2b565b60606040518060400160405280602081526020017f68747470733a2f2f6170692e696d6d757461626c652e636f6d2f746f6b656e2f815250612b8730613d87565b612b9084613f2d565b6040516020018084805190602001908083835b60208310612bc25780518252601f199092019160209182019101612ba3565b51815160209384036101000a600019018019909216911617905286519190930192860191508083835b60208310612c0a5780518252601f199092019160209182019101612beb565b6001836020036101000a03801982511681845116808217855250505050505090500180602f60f81b81525060010182805190602001908083835b60208310612c635780518252601f199092019160209182019101612c44565b6001836020036101000a03801982511681845116808217855250505050505090500193505050506040516020818303038152906040529050919050565b600083612cea576040805162461bcd60e51b81526020600482015260136024820152726d75737420626520736f6d652070726f746f7360681b604482015290519081900360640190fd5b838214612d285760405162461bcd60e51b815260040180806020018281038252602b815260200180614a5e602b913960400191505060405180910390fd5b6000612d348786613771565b9050612da48187878080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050604080516020808b0282810182019093528a82529093508a925089918291850190849080828437600092019190915250613ff192505050565b9695505050505050565b600060136000612dbe8585611f45565b815260200190815260200160002054905092915050565b601c6020526000908152604090205460ff1681565b6000601a6000601660148581548110612dff57fe5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff1681548110612e3157fe5b60009182526020808320601083040154600f9092166002026101000a90910461ffff16835282019290925260400190205460ff1692915050565b600060148381548110612e7a57fe5b90600052602060002090601091828204019190066002029054906101000a900461ffff169050600060168261ffff1681548110612eb357fe5b60009182526020808320601083040154338452601b82526040808520600f9094166002026101000a90910461ffff16808552929091529091205490915060ff16612f2e5760405162461bcd60e51b815260040180806020018281038252602b815260200180614a33602b913960400191505060405180910390fd5b8260158460ff1681548110612f3f57fe5b600091825260209182902082820401805460ff948516601f9093166101000a92830292850219169190911790556040805192861683523391830191909152805186927f892269e637adec3404715b55a46b36fba9383a540f8f5859b364909469fcd04d92908290030190a250505050565b6017546001600160a01b031681565b600c5481565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b612ffb6126c3565b61303a576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b601954811115613085576040805162461bcd60e51b81526020600482015260116024820152701cd9585cdbdb881b5d5cdd08195e1a5cdd607a1b604482015290519081900360640190fd5b600081116130d1576040805162461bcd60e51b81526020600482015260146024820152730736561736f6e206d757374206e6f7420626520360641b604482015290519081900360640190fd5b6001600160a01b0382166000908152601b6020908152604080832084845290915290205460ff161561314a576040805162461bcd60e51b815260206004820181905260248201527f7468697320666163746f727920697320616c726561647920617070726f766564604482015290519081900360640190fd5b6000818152601a602052604090205460ff16156131ae576040805162461bcd60e51b815260206004820152601b60248201527f736561736f6e206d757374206e6f74206265207472616461626c650000000000604482015290519081900360640190fd5b6001600160a01b039091166000908152601b6020908152604080832093835292905220805460ff19166001179055565b6131e66126c3565b613225576040805162461bcd60e51b815260206004820181905260248201526000805160206149c9833981519152604482015290519081900360640190fd5b61202081614014565b6014818154811061296d57fe5b600b5481565b6019818154811061324e57fe5b60009182526020909120015461ffff8082169250620100009091041682565b60008061327983612147565b6001600160a01b0316141592915050565b60006001600160a01b0382166132a2575060006114fa565b6001600160a01b0382166000908152600a602052604090205465ffffffffffff1680611f7a5760115465ffffffffffff9081166001810190911611613322576040805162461bcd60e51b81526020600482015260116024820152706d757374206e6f74206f766572666c6f7760781b604482015290519081900360640190fd5b506011805465ffffffffffff8082166001810190911665ffffffffffff1992831617909255600082815260096020908152604080832080546001600160a01b0389166001600160a01b031990911681179091558352600a909152902080549091168217905580611f7a576040805162461bcd60e51b815260206004820152600d60248201526c06d757374206e6f74206265203609c1b604482015290519081900360640190fd5b826001600160a01b03166133dc82612147565b6001600160a01b0316146134215760405162461bcd60e51b81526004018080602001828103825260298152602001806149e96029913960400191505060405180910390fd5b6001600160a01b0382166134665760405162461bcd60e51b815260040180806020018281038252602481526020018061487a6024913960400191505060405180910390fd5b61347033826140b5565b6134ab5760405162461bcd60e51b81526004018080602001828103825260288152602001806149756028913960400191505060405180910390fd5b6134b481614151565b6001600160a01b0383166000908152601260205260409020546134de90600163ffffffff6141de16565b6001600160a01b03808516600090815260126020526040808220939093559084168152205461351490600163ffffffff61423b16565b6001600160a01b0383166000908152601260205260409020556135368261328a565b600e828154811061354357fe5b90600052602060002090600591828204019190066006026101000a81548165ffffffffffff021916908365ffffffffffff16021790555080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6135ca33826140b5565b61361b576040805162461bcd60e51b815260206004820181905260248201527f63616c6c6572206973206e6f74206f776e6572206e6f7220617070726f766564604482015290519081900360640190fd5b61362481614151565b600061362f82612147565b6001600160a01b03811660009081526012602052604090205490915061365c90600163ffffffff6141de16565b6001600160a01b038216600090815260126020526040812091909155600e80548490811061368657fe5b90600052602060002090600591828204019190066006026101000a81548165ffffffffffff021916908365ffffffffffff1602179055506136d36001600d546141de90919063ffffffff16565b600d5560405182906000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b80601360006137218686611f45565b81526020019081526020016000208190555081837fe437ad402a50c14d9de944e1d68d9708776aaccb860bd49a6e875a64e7d0b22a836040518082815260200191505060405180910390a3505050565b60006001600160a01b0383166137c1576040805162461bcd60e51b815260206004820152601060248201526f1b5d5cdd081b9bdd081899481b9d5b1b60821b604482015290519081900360640190fd5b60008261ffff161180156137db5750600b548261ffff1611155b61382c576040805162461bcd60e51b815260206004820152601a60248201527f73697a65206d7573742062652077697468696e206c696d697473000000000000604482015290519081900360640190fd5b600c54600061383a8561328a565b60408051808201825265ffffffffffff838116825261ffff888116602080850182815260008a8152601090925295812094518554965165ffffffffffff1990971694169390931767ffff0000000000001916600160301b9590921694909402179091559192506138ab90849061423b565b9050825b818110156138f75760405181906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46001016138af565b50600b54600c5461390d9163ffffffff61423b16565b600c556001600160a01b03861660009081526012602052604090205461393d9061ffff871663ffffffff61423b16565b6001600160a01b038716600090815260126020526040902055600d5461396d9061ffff871663ffffffff61423b16565b600d555090949350505050565b61fde861ffff821610613a135761ffff81166000908152601c602052604090205460ff16156139f0576040805162461bcd60e51b815260206004820152601f60248201527f6d79746869632068617320616c7265616479206265656e206372656174656400604482015290519081900360640190fd5b61ffff81166000908152601c60205260409020805460ff19166001179055612020565b600060168261ffff1681548110613a2657fe5b60009182526020909120601082040154600f9091166002026101000a900461ffff16905080613a93576040805162461bcd60e51b81526020600482015260146024820152731b5d5cdd081a185d99481cd9585cdbdb881cd95d60621b604482015290519081900360640190fd5b336000908152601b6020908152604080832084845290915290205460ff166118115760405162461bcd60e51b81526004018080602001828103825260288152602001806148f46028913960400191505060405180910390fd5b6000808211613b42576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b6000828481613b4d57fe5b04949350505050565b600082613b6557506000611f7a565b82820282848281613b7257fe5b0414613baf5760405162461bcd60e51b81526004018080602001828103825260218152602001806149546021913960400191505060405180910390fd5b9392505050565b6060613bc58585601086614295565b905060005b83811015613bec57613be482866010848761ffff1661435b565b600101613bca565b5061291d85856010846143e3565b60408051828152905183917fa065fb8968d66241513c49df78364990dc9917fcd41ede326cef2c15e82f4aec919081900360200190a28060136000613c3e85611f80565b81526020810191909152604001600020555050565b6000613c67846001600160a01b0316614440565b613c7357506001613d7f565b604051630a85bd0160e11b815233600482018181526001600160a01b03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b83811015613ced578181015183820152602001613cd5565b50505050905090810190601f168015613d1a5780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015613d3c57600080fd5b505af1158015613d50573d6000803e3d6000fd5b505050506040513d6020811015613d6657600080fd5b50516001600160e01b031916630a85bd0160e11b149150505b949350505050565b60408051602a80825260608281019093526001600160a01b038416918391602082018180388339019050509050600360fc1b81600081518110613dc657fe5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613def57fe5b60200101906001600160f81b031916908160001a90535060005b6014811015613f25576040518060400160405280601081526020016f181899199a1a9b1b9c1cb0b131b232b360811b81525060048483600c0160208110613e4c57fe5b1a60f81b6001600160f81b031916901c60f81c60ff1681518110613e6c57fe5b602001015160f81c60f81b828260020260020181518110613e8957fe5b60200101906001600160f81b031916908160001a9053506040518060400160405280601081526020016f181899199a1a9b1b9c1cb0b131b232b360811b8152508382600c0160208110613ed857fe5b825191901a600f16908110613ee957fe5b602001015160f81c60f81b828260020260030181518110613f0657fe5b60200101906001600160f81b031916908160001a905350600101613e09565b509392505050565b606081613f5257506040805180820190915260018152600360fc1b60208201526114fa565b8160005b8115613f6a57600101600a82049150613f56565b6060816040519080825280601f01601f191660200182016040528015613f97576020820181803883390190505b50859350905060001982015b8315613fe857600a840660300160f81b82828060019003935081518110613fc657fe5b60200101906001600160f81b031916908160001a905350600a84049350613fa3565b50949350505050565b613ffa82614446565b6014614007818585614690565b601561291d8186856146e9565b6001600160a01b0381166140595760405162461bcd60e51b81526004018080602001828103825260268152602001806148546026913960400191505060405180910390fd5b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b60006140c08261326d565b6140fb5760405162461bcd60e51b815260040180806020018281038252602c81526020018061489e602c913960400191505060405180910390fd5b600061410683612147565b9050806001600160a01b0316846001600160a01b031614806141415750836001600160a01b0316614136846115c6565b6001600160a01b0316145b80613d7f5750613d7f8185612fc5565b600f818154811061415e57fe5b90600052602060002090600591828204019190066006029054906101000a900465ffffffffffff1665ffffffffffff16600014612020576000600f82815481106141a457fe5b90600052602060002090600591828204019190066006026101000a81548165ffffffffffff021916908365ffffffffffff16021790555050565b600082821115614235576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015613baf576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b606060006142a4858585614741565b9050806040519080825280602002602001820160405280156142d0578160200160208202803883390190505b50915060006142df8686614771565b90506142eb8782614784565b836000815181106142f857fe5b6020026020010181815250506001821115614351576000614328614322888763ffffffff61423b16565b87614771565b90506143348882614784565b84600185038151811061434357fe5b602002602001018181525050505b5050949350505050565b6000836101008161436857fe5b049050600081868161437657fe5b0690506000828583018161438657fe5b049050600086848988018161439757fe5b0602905060005b878110156143d7578082018187901c60ff16901b8a84815181106143be57fe5b602090810291909101018051909117905260080161439e565b50505050505050505050565b600061440283610100816143f357fe5b8691900463ffffffff613aec16565b905060005b8251811015614438576144308682840185848151811061442357fe5b602002602001015161479a565b600101614407565b505050505050565b3b151590565b600061ffff815b835181101561453c57600084828151811061446457fe5b6020026020010151905061fde861ffff168161ffff161061450b5761ffff81166000908152601c602052604090205460ff16156144e8576040805162461bcd60e51b815260206004820152601f60248201527f6d79746869632068617320616c7265616479206265656e206372656174656400604482015290519081900360640190fd5b61ffff81166000908152601c60205260409020805460ff19166001179055614533565b8361ffff168161ffff16111561451f578093505b8061ffff168361ffff161115614533578092505b5060010161444d565b5061ffff821615611d1a57600060168361ffff168154811061455a57fe5b60009182526020909120601082040154600f9091166002026101000a900461ffff169050806145c7576040805162461bcd60e51b81526020600482015260146024820152731b5d5cdd081a185d99481cd9585cdbdb881cd95d60621b604482015290519081900360640190fd5b60168261ffff16815481106145d857fe5b60009182526020909120601082040154600f9091166002026101000a900461ffff1681146146375760405162461bcd60e51b815260040180806020018281038252602a8152602001806148ca602a913960400191505060405180910390fd5b336000908152601b6020908152604080832084845290915290205460ff166117db5760405162461bcd60e51b81526004018080602001828103825260288152602001806148f46028913960400191505060405180910390fd5b60606146a0848460108551614295565b905060005b82518110156146db576146d382856010848786815181106146c257fe5b602002602001015161ffff1661435b565b6001016146a5565b506117db84846010846143e3565b60606146f9848460208551614295565b905060005b82518110156147335761472b828560088487868151811061471b57fe5b602002602001015160ff1661435b565b6001016146fe565b506117db84846008846143e3565b60008083858161474d57fe5b0490506000848487018161475d57fe5b049050818103600101925050509392505050565b600081838161477c57fe5b049392505050565b60008061479184846147af565b54949350505050565b60006147a684846147af565b91909155505050565b60405191825260209091200190565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081019190915290565b60408051808201909152600080825260208201529056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734552433732313a207472616e7366657220746f20746865207a65726f20616464726573734552433732313a206f70657261746f7220717565727920666f72206e6f6e6578697374656e7420746f6b656e63616e206f6e6c79206372656174652063617264732066726f6d207468652073616d6520736561736f6e6d75737420626520617070726f76656420666163746f727920666f72207468697320736561736f6e4552433732313a20617070726f76652063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f76656420666f7220616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774552433732313a2063616c6c6572206973206e6f74206f776e6572206e6f7220617070726f7665644552433732313a20617070726f76656420717565727920666f72206e6f6e6578697374656e7420746f6b656e4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65724552433732313a207472616e73666572206f6620746f6b656e2074686174206973206e6f74206f776e4552433732313a20617070726f76616c20746f2063757272656e74206f776e6572666163746f72792063616e2774206368616e6765207175616c697479206f66207468697320736561736f6e6d757374206265207468652073616d65206e756d626572206f662070726f746f732f7175616c6974696573a265627a7a72315820c48eea8554be8d778a3ae58706a610ab8f67b31a093b77bedc1777297221e3dd64736f6c634300050b0032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000004e3000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000014476f647320556e636861696e656420436172647300000000000000000000000000000000000000000000000000000000000000000000000000000000000000044341524400000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _batchSize (uint256): 1251
Arg [1] : _name (string): Gods Unchained Cards
Arg [2] : _symbol (string): CARD
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000004e3
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [4] : 476f647320556e636861696e6564204361726473000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 4341524400000000000000000000000000000000000000000000000000000000
Swarm Source
bzzr://c48eea8554be8d778a3ae58706a610ab8f67b31a093b77bedc1777297221e3dd
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.