ERC-1155
Source Code
Overview
Max Total Supply
10,101
Holders
2
Transfers
-
0
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
CitizenNFT
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/**
*Submitted for verification at Etherscan.io on 2021-11-01
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
import "./lib/Context.sol";
import "./lib/Ownable.sol";
import "./lib/Address.sol";
import "./lib/ERC165.sol";
import "./lib/ReentrancyGuard.sol";
import "./lib/SafeMath.sol";
import "./lib/Base64.sol";
import "./lib/Errors.sol";
import "./interfaces/IERC165.sol";
import "./interfaces/IERC1155.sol";
import "./interfaces/IEIP2981.sol";
import "./interfaces/IERC1155Receiver.sol";
import "./interfaces/IERC1155MetadataURI.sol";
import "./interfaces/IERC1155WithRoyalty.sol";
import "./ERC1155.sol";
/// @title CitizenNFT
/// @author Odysseas Lamtzidis
/// @notice An ERC721 NFT that replaces the Citizen NFTs that are issued by the OpenSea Storefront Smart contract.
/// This smart contract enables users to either mint a new CitizenNFT or
/// "transfer" their Citizen NFTs from the OpenSea smart contract to this one.
contract CitizenNFT is
ERC1155,
Ownable,
IERC1155WithRoyalty,
IEIP2981,
ReentrancyGuard
{
// We use safemath to avoid under and over flows
using SafeMath for uint256;
// At the time of writing, a new CitizenNFT costs 0.2 ether.
// This variable can change by the appropriate function
uint256 private citizenshipStampCostInWei = 200000000000000000;
// Internal Ids that are used to differentiate between the different Citizen NFTs
uint256 private constant FIRST_NFT_ID = 7;
uint256 private constant LAND_NFT_ID = 69;
uint256 private constant CITIZEN_NFT_ID = 42;
// Events
event LogEthDeposit(address);
event CitizenLegislatureChanged(string, uint256);
event NewCitizen(address, uint256, uint256);
event TokenRoyaltySet(uint256 tokenId, address recipient, uint16 bps);
event DefaultRoyaltySet(address recipient, uint16 bps);
// ERC1155
uint256 private mintedCitizensCounter = 0;
uint256 private mintedLandCounter = 0;
uint256 private mintedFirstCitizensCounter = 0;
// EIP2981
struct TokenRoyalty {
address recipient;
uint16 bps;
}
TokenRoyalty public defaultRoyalty;
mapping(uint256 => TokenRoyalty) private _tokenRoyalties;
// NFT metadata
mapping(uint256 => string) private tokenURIs;
mapping(uint256 => string) private citizenNFTDescriptions;
//Initialisation
bool private contractInitialized;
uint256 private reservedCitizenships;
/// @notice Initialise CitizenNFT smart contract with the appropriate address and ItemIds of the
/// Open Sea shared storefront smart contract and the Citizen NFTs that are locked in it.
constructor(address _royaltyRecipient, uint16 _royaltyBPS)
Ownable()
ERC1155("")
{
defaultRoyalty = TokenRoyalty(_royaltyRecipient, _royaltyBPS);
tokenURIs[
CITIZEN_NFT_ID
] = "https://gateway.pinata.cloud/ipfs/QmW1i8i5LBHEGkg62ZgJ3aVcU68E8N64D8YDh8Qtyx4egF";
tokenURIs[
LAND_NFT_ID
] = "https://gateway.pinata.cloud/ipfs/QmWQRKdkwQsaPTmUb8iw3iMLe5okAQJAFy5YzetRnyWyfb";
tokenURIs[
FIRST_NFT_ID
] = "https://gateway.pinata.cloud/ipfs/QmQupVZ3tfvm5DC6pDexaJNcV6rsQCx2c4cWMdqSJaebYs";
citizenNFTDescriptions[CITIZEN_NFT_ID] = "MoonDAO Citizen";
citizenNFTDescriptions[LAND_NFT_ID] = "MoonDAO Land";
citizenNFTDescriptions[FIRST_NFT_ID] = "MoonDAO First Citizen";
contractInitialized = false;
reservedCitizenships = 0;
}
///@notice Request a new Citizen NFT from the owner of the smart contract.
/// You can request any number of NFTs and pay `citizenshipStampCostInWei` per NFT
///@param _citizenNumber Number of Citizen NFTs to request
function onlineApplicationForCitizenship(uint256 _citizenNumber)
public
payable
nonReentrant
{
require(
msg.value >= citizenshipStampCostInWei * _citizenNumber,
"ser, the state machine needs oil"
);
require(
this.balanceOf(this.owner(), CITIZEN_NFT_ID) - _citizenNumber >
reservedCitizenships,
"No available Citizenship"
);
_safeTransferFrom(
this.owner(),
msg.sender,
CITIZEN_NFT_ID,
_citizenNumber,
""
);
}
///@notice Mint new citizenNFTs to an address, usually that of MoonDAO.
///@param _to Address to where the NFTs must be minted
///@param _citizenType ID for the Citizen NFT (42 for regular, 69 for land, 7 for first)
///@param _numberOfCitizens The number of Citizen NFTs to be minted
function issueNewCitizenships(
address _to,
uint256 _citizenType,
uint256 _numberOfCitizens
) public onlyOwner {
if (_citizenType == 42) {
mintedCitizensCounter = mintedCitizensCounter.add(
_numberOfCitizens
);
} else if (_citizenType == 69) {
mintedLandCounter = mintedLandCounter.add(_numberOfCitizens);
} else if (_citizenType == 7) {
mintedFirstCitizensCounter = mintedFirstCitizensCounter.add(
_numberOfCitizens
);
} else {
revert(Errors.invalidCitizenshipId);
}
_mint(_to, _citizenType, _numberOfCitizens, "");
}
function initialCitizenship() external onlyOwner {
require(contractInitialized == false, "contract initialized already");
issueNewCitizenships(msg.sender, CITIZEN_NFT_ID, 10000);
issueNewCitizenships(msg.sender, LAND_NFT_ID, 100);
issueNewCitizenships(msg.sender, FIRST_NFT_ID, 1);
contractInitialized = true;
}
/// @notice Change the cost for minting a new regular Citizen NFT
/// Can only be called by the owner of the smart contract.
function legislateCostOfEntry(uint256 _stampCost) external onlyOwner {
citizenshipStampCostInWei = _stampCost;
emit CitizenLegislatureChanged("stampCost", _stampCost);
}
/// @notice Return the current cost of minting a new regular Citizen NFT.
function inquireCostOfEntry() external view returns (uint256) {
return citizenshipStampCostInWei;
}
/// @notice Return the number of minted Citizen NFTs
function inquireHousingNumbers() external view returns (uint256) {
return mintedCitizensCounter;
}
/// @notice Return the current maximum number of minted Land NFTs
function inquireAboutHistory() external view returns (uint256) {
return mintedLandCounter;
}
/// @notice Withdraw the funds locked in the smart contract,
/// originating from the minting of new regular Citizen NFTs.
/// Can only becalled by the owner of the smart contract.
function raidTheCoffers() external onlyOwner {
uint256 amount = address(this).balance;
(bool success, ) = owner().call{value: amount}("");
require(success, "Anti-corruption agencies stopped the transfer");
}
function reserveCitizenships(uint256 _numberOfCitizenships)
external
onlyOwner
{
reservedCitizenships = _numberOfCitizenships;
}
function howManyReservedCitizenships() external view returns (uint256) {
return reservedCitizenships;
}
fallback() external payable {
emit LogEthDeposit(msg.sender);
}
receive() external payable {
emit LogEthDeposit(msg.sender);
}
/// @notice Airdrop Citizen NFTs to users. The citizen NFTs must first be minted to the owner address.
function awardCitizenship(
address[] calldata _awardees,
uint256[] calldata _numberOfCitizenships,
uint256 _citizenshipType
) external onlyOwner {
require(
_awardees.length == _numberOfCitizenships.length,
"array length not equal"
);
address MoonDAO = this.owner();
for (uint256 i = 0; i < _awardees.length; i++) {
safeTransferFrom(
MoonDAO,
_awardees[i],
_citizenshipType,
_numberOfCitizenships[i],
""
);
}
}
/// @notice returns the uri metadata. Used by marketplaces and wallets to show the NFT
function uri(uint256 _citizenNFTId)
public
view
override
returns (string memory)
{
string memory json = Base64.encode(
bytes(
string(
abi.encodePacked(
'{ "name": "',
citizenNFTDescriptions[_citizenNFTId],
'", ',
'"description" : ',
'"A Citizen of MoonDAO holds governance in the operations and activities of MoonDAO.",',
'"image": "',
tokenURIs[_citizenNFTId],
'"'
"}"
)
)
)
);
return string(abi.encodePacked("data:application/json;base64,", json));
}
/// @notice Change the URI of citizen NFTs
/// @param _tokenURIs Array of new token URIs
/// @param _citizenNFTIds Array of citizen NFT Ids (69 OR 42 OR 7) for the respective URIs
function changeURIs(
string[] calldata _tokenURIs,
uint256[] calldata _citizenNFTIds
) external onlyOwner {
for (uint256 i = 0; i < _tokenURIs.length; i++) {
tokenURIs[_citizenNFTIds[i]] = _tokenURIs[i];
}
}
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// Royalty implementation based on @abbouali
// https://github.com/abbouali/sample_erc1155_with_eip2981
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
/// @dev Define the fee for the token specify
/// @param tokenId uint256 token ID to specify
/// @param recipient address account that receives the royalties
function setTokenRoyalty(
uint256 tokenId,
address recipient,
uint16 bps
) public override onlyOwner {
_tokenRoyalties[tokenId] = TokenRoyalty(recipient, bps);
emit TokenRoyaltySet(tokenId, recipient, bps);
}
/// @dev Define the default amount of fee and receive address
/// @param recipient address ID account receive royalty
/// @param bps uint256 amount of fee (1% == 100)
function setDefaultRoyalty(address recipient, uint16 bps)
public
override
onlyOwner
{
defaultRoyalty = TokenRoyalty(recipient, bps);
emit DefaultRoyaltySet(recipient, bps);
}
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(ERC1155)
returns (bool)
{
return
interfaceId == type(IEIP2981).interfaceId ||
interfaceId == type(IERC1155WithRoyalty).interfaceId ||
super.supportsInterface(interfaceId);
}
/// @dev Returns royalty info (address to send fee, and fee to send)
/// @param tokenId uint256 ID of the token to display information
/// @param value uint256 sold price
function royaltyInfo(uint256 tokenId, uint256 value)
public
view
override
returns (address, uint256)
{
if (_tokenRoyalties[tokenId].recipient != address(0)) {
return (
_tokenRoyalties[tokenId].recipient,
(value * _tokenRoyalties[tokenId].bps) / 10000
);
}
if (defaultRoyalty.recipient != address(0) && defaultRoyalty.bps != 0) {
return (
defaultRoyalty.recipient,
(value * defaultRoyalty.bps) / 10000
);
}
return (address(0), 0);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
////// lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
// 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 (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b)
internal
pure
returns (bool, uint256)
{
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @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) {
return a + b;
}
/**
* @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) {
return a - b;
}
/**
* @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) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting 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) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message 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,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* 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,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
////// lib/openzeppelin-contracts/contracts/access/Ownable.sol
import "./Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
/// @notice Error library for centralised error messaging
library Errors {
string constant invalidCitizenshipId = "Unknown Citizen NFT ID";
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
////// lib/openzeppelin-contracts/contracts/utils/introspection/ERC165.sol
import "../interfaces/IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override
returns (bool)
{
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
////// lib/openzeppelin-contracts/contracts/utils/Context.sol
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
////// src/Base64.sol
library Base64 {
bytes internal constant TABLE =
"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
/// @notice Encodes some bytes to the base64 representation
function encode(bytes memory data) internal pure returns (string memory) {
uint256 len = data.length;
if (len == 0) return "";
// multiply by 4/3 rounded up
uint256 encodedLen = 4 * ((len + 2) / 3);
// Add some extra buffer at the end
bytes memory result = new bytes(encodedLen + 32);
bytes memory table = TABLE;
assembly {
let tablePtr := add(table, 1)
let resultPtr := add(result, 32)
for {
let i := 0
} lt(i, len) {
} {
i := add(i, 3)
let input := and(mload(add(data, i)), 0xffffff)
let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
out := shl(8, out)
out := add(
out,
and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)
)
out := shl(8, out)
out := add(
out,
and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)
)
out := shl(8, out)
out := add(
out,
and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)
)
out := shl(224, out)
mstore(resultPtr, out)
resultPtr := add(resultPtr, 4)
}
switch mod(len, 3)
case 1 {
mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
}
case 2 {
mstore(sub(resultPtr, 1), shl(248, 0x3d))
}
mstore(result, encodedLen)
}
return string(result);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
////// lib/openzeppelin-contracts/contracts/utils/Address.sol
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(
address(this).balance >= amount,
"Address: insufficient balance"
);
(bool success, ) = recipient.call{value: amount}("");
require(
success,
"Address: unable to send value, recipient may have reverted"
);
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return
functionCallWithValue(
target,
data,
value,
"Address: low-level call with value failed"
);
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(
address(this).balance >= value,
"Address: insufficient balance for call"
);
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(
data
);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data)
internal
view
returns (bytes memory)
{
return
functionStaticCall(
target,
data,
"Address: low-level static call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return
functionDelegateCall(
target,
data,
"Address: low-level delegate call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
////// lib/openzeppelin-contracts/contracts/security/ReentrancyGuard.sol
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
/// @author: lifetimeapp.io && manifold.xyz
/**
* Simple EIP2981 reference override implementation
*/
interface IERC1155WithRoyalty {
function setTokenRoyalty(
uint256 tokenId,
address recipient,
uint16 bps
) external;
function setDefaultRoyalty(address recipient, uint16 bps) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
////// lib/openzeppelin-contracts/contracts/token/ERC1155/IERC1155Receiver.sol
import "./IERC165.sol";
/**
* @dev _Available since v3.1._
*/
interface IERC1155Receiver is IERC165 {
/**
@dev Handles the receipt of a single ERC1155 token type. This function is
called at the end of a `safeTransferFrom` after the balance has been updated.
To accept the transfer, this must return
`bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
(i.e. 0xf23a6e61, or its own function selector).
@param operator The address which initiated the transfer (i.e. msg.sender)
@param from The address which previously owned the token
@param id The ID of the token being transferred
@param value The amount of tokens being transferred
@param data Additional data with no specified format
@return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
*/
function onERC1155Received(
address operator,
address from,
uint256 id,
uint256 value,
bytes calldata data
) external returns (bytes4);
/**
@dev Handles the receipt of a multiple ERC1155 token types. This function
is called at the end of a `safeBatchTransferFrom` after the balances have
been updated. To accept the transfer(s), this must return
`bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
(i.e. 0xbc197c81, or its own function selector).
@param operator The address which initiated the batch transfer (i.e. msg.sender)
@param from The address which previously owned the token
@param ids An array containing ids of each token being transferred (order and length must match values array)
@param values An array containing amounts of each token being transferred (order and length must match ids array)
@param data Additional data with no specified format
@return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
*/
function onERC1155BatchReceived(
address operator,
address from,
uint256[] calldata ids,
uint256[] calldata values,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
////// lib/openzeppelin-contracts/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol
import "./IERC1155.sol";
/**
* @dev Interface of the optional ERC1155MetadataExtension interface, as defined
* in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
*
* _Available since v3.1._
*/
interface IERC1155MetadataURI is IERC1155 {
/**
* @dev Returns the URI for token type `id`.
*
* If the `\{id\}` substring is present in the URI, it must be replaced by
* clients with the actual token type ID.
*/
function uri(uint256 id) external view returns (string memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
////// lib/openzeppelin-contracts/contracts/token/ERC1155/IERC1155.sol
import "./IERC165.sol";
/**
* @dev Required interface of an ERC1155 compliant contract, as defined in the
* https://eips.ethereum.org/EIPS/eip-1155[EIP].
*
* _Available since v3.1._
*/
interface IERC1155 is IERC165 {
/**
* @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
*/
event TransferSingle(
address indexed operator,
address indexed from,
address indexed to,
uint256 id,
uint256 value
);
/**
* @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
* transfers.
*/
event TransferBatch(
address indexed operator,
address indexed from,
address indexed to,
uint256[] ids,
uint256[] values
);
/**
* @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
* `approved`.
*/
event ApprovalForAll(
address indexed account,
address indexed operator,
bool approved
);
/**
* @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
*
* If an {URI} event was emitted for `id`, the standard
* https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
* returned by {IERC1155MetadataURI-uri}.
*/
event URI(string value, uint256 indexed id);
/**
* @dev Returns the amount of tokens of token type `id` owned by `account`.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id)
external
view
returns (uint256);
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
external
view
returns (uint256[] memory);
/**
* @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
*
* Emits an {ApprovalForAll} event.
*
* Requirements:
*
* - `operator` cannot be the caller.
*/
function setApprovalForAll(address operator, bool approved) external;
/**
* @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address account, address operator)
external
view
returns (bool);
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes calldata data
) external;
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] calldata ids,
uint256[] calldata amounts,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
////// src/IEIP2981.sol
/* pragma solidity ^0.8.0; */
/**
* EIP-2981
*/
interface IEIP2981 {
/**
* bytes4(keccak256("royaltyInfo(uint256,uint256)")) == 0x2a55205a
*
* => 0x2a55205a = 0x2a55205a
*/
function royaltyInfo(uint256 tokenId, uint256 value)
external
view
returns (address, uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
////// lib/openzeppelin-contracts/contracts/token/ERC1155/ERC1155.sol
import "./lib/Context.sol";
import "./lib/Address.sol";
import "./lib/ERC165.sol";
import "./interfaces/IERC1155.sol";
import "./interfaces/IERC1155MetadataURI.sol";
import "./interfaces/IERC1155Receiver.sol";
/**
* @dev Implementation of the basic standard multi-token.
* See https://eips.ethereum.org/EIPS/eip-1155
* Originally based on code by Enjin: https://github.com/enjin/erc-1155
*
* _Available since v3.1._
*/
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
using Address for address;
// Mapping from token ID to account balances
mapping(uint256 => mapping(address => uint256)) private _balances;
// Mapping from account to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
string private _uri;
/**
* @dev See {_setURI}.
*/
constructor(string memory uri_) {
_setURI(uri_);
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(ERC165, IERC165)
returns (bool)
{
return
interfaceId == type(IERC1155).interfaceId ||
interfaceId == type(IERC1155MetadataURI).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC1155MetadataURI-uri}.
*
* This implementation returns the same URI for *all* token types. It relies
* on the token type ID substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* Clients calling this function must replace the `\{id\}` substring with the
* actual token type ID.
*/
function uri(uint256) public view virtual override returns (string memory) {
return _uri;
}
/**
* @dev See {IERC1155-balanceOf}.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function balanceOf(address account, uint256 id)
public
view
virtual
override
returns (uint256)
{
require(
account != address(0),
"ERC1155: balance query for the zero address"
);
return _balances[id][account];
}
/**
* @dev See {IERC1155-balanceOfBatch}.
*
* Requirements:
*
* - `accounts` and `ids` must have the same length.
*/
function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
public
view
virtual
override
returns (uint256[] memory)
{
require(
accounts.length == ids.length,
"ERC1155: accounts and ids length mismatch"
);
uint256[] memory batchBalances = new uint256[](accounts.length);
for (uint256 i = 0; i < accounts.length; ++i) {
batchBalances[i] = balanceOf(accounts[i], ids[i]);
}
return batchBalances;
}
/**
* @dev See {IERC1155-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved)
public
virtual
override
{
_setApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC1155-isApprovedForAll}.
*/
function isApprovedForAll(address account, address operator)
public
view
virtual
override
returns (bool)
{
return _operatorApprovals[account][operator];
}
/**
* @dev See {IERC1155-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: caller is not owner nor approved"
);
_safeTransferFrom(from, to, id, amount, data);
}
/**
* @dev See {IERC1155-safeBatchTransferFrom}.
*/
function safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) public virtual override {
require(
from == _msgSender() || isApprovedForAll(from, _msgSender()),
"ERC1155: transfer caller is not owner nor approved"
);
_safeBatchTransferFrom(from, to, ids, amounts, data);
}
/**
* @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `from` must have a balance of tokens of type `id` of at least `amount`.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _safeTransferFrom(
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: transfer to the zero address");
address operator = _msgSender();
_beforeTokenTransfer(
operator,
from,
to,
_asSingletonArray(id),
_asSingletonArray(amount),
data
);
uint256 fromBalance = _balances[id][from];
require(
fromBalance >= amount,
"ERC1155: insufficient balance for transfer"
);
unchecked {
_balances[id][from] = fromBalance - amount;
}
_balances[id][to] += amount;
emit TransferSingle(operator, from, to, id, amount);
_doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
*
* Emits a {TransferBatch} event.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _safeBatchTransferFrom(
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {
require(
ids.length == amounts.length,
"ERC1155: ids and amounts length mismatch"
);
require(to != address(0), "ERC1155: transfer to the zero address");
address operator = _msgSender();
_beforeTokenTransfer(operator, from, to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; ++i) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 fromBalance = _balances[id][from];
require(
fromBalance >= amount,
"ERC1155: insufficient balance for transfer"
);
unchecked {
_balances[id][from] = fromBalance - amount;
}
_balances[id][to] += amount;
}
emit TransferBatch(operator, from, to, ids, amounts);
_doSafeBatchTransferAcceptanceCheck(
operator,
from,
to,
ids,
amounts,
data
);
}
/**
* @dev Sets a new URI for all token types, by relying on the token type ID
* substitution mechanism
* https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
*
* By this mechanism, any occurrence of the `\{id\}` substring in either the
* URI or any of the amounts in the JSON file at said URI will be replaced by
* clients with the token type ID.
*
* For example, the `https://token-cdn-domain/\{id\}.json` URI would be
* interpreted by clients as
* `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
* for token type ID 0x4cce0.
*
* See {uri}.
*
* Because these URIs cannot be meaningfully represented by the {URI} event,
* this function emits no events.
*/
function _setURI(string memory newuri) internal virtual {
_uri = newuri;
}
/**
* @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
*
* Emits a {TransferSingle} event.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
* acceptance magic value.
*/
function _mint(
address to,
uint256 id,
uint256 amount,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: mint to the zero address");
address operator = _msgSender();
_beforeTokenTransfer(
operator,
address(0),
to,
_asSingletonArray(id),
_asSingletonArray(amount),
data
);
_balances[id][to] += amount;
emit TransferSingle(operator, address(0), to, id, amount);
_doSafeTransferAcceptanceCheck(
operator,
address(0),
to,
id,
amount,
data
);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
* - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
* acceptance magic value.
*/
function _mintBatch(
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {
require(to != address(0), "ERC1155: mint to the zero address");
require(
ids.length == amounts.length,
"ERC1155: ids and amounts length mismatch"
);
address operator = _msgSender();
_beforeTokenTransfer(operator, address(0), to, ids, amounts, data);
for (uint256 i = 0; i < ids.length; i++) {
_balances[ids[i]][to] += amounts[i];
}
emit TransferBatch(operator, address(0), to, ids, amounts);
_doSafeBatchTransferAcceptanceCheck(
operator,
address(0),
to,
ids,
amounts,
data
);
}
/**
* @dev Destroys `amount` tokens of token type `id` from `from`
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `from` must have at least `amount` tokens of token type `id`.
*/
function _burn(
address from,
uint256 id,
uint256 amount
) internal virtual {
require(from != address(0), "ERC1155: burn from the zero address");
address operator = _msgSender();
_beforeTokenTransfer(
operator,
from,
address(0),
_asSingletonArray(id),
_asSingletonArray(amount),
""
);
uint256 fromBalance = _balances[id][from];
require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
unchecked {
_balances[id][from] = fromBalance - amount;
}
emit TransferSingle(operator, from, address(0), id, amount);
}
/**
* @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
*
* Requirements:
*
* - `ids` and `amounts` must have the same length.
*/
function _burnBatch(
address from,
uint256[] memory ids,
uint256[] memory amounts
) internal virtual {
require(from != address(0), "ERC1155: burn from the zero address");
require(
ids.length == amounts.length,
"ERC1155: ids and amounts length mismatch"
);
address operator = _msgSender();
_beforeTokenTransfer(operator, from, address(0), ids, amounts, "");
for (uint256 i = 0; i < ids.length; i++) {
uint256 id = ids[i];
uint256 amount = amounts[i];
uint256 fromBalance = _balances[id][from];
require(
fromBalance >= amount,
"ERC1155: burn amount exceeds balance"
);
unchecked {
_balances[id][from] = fromBalance - amount;
}
}
emit TransferBatch(operator, from, address(0), ids, amounts);
}
/**
* @dev Approve `operator` to operate on all of `owner` tokens
*
* Emits a {ApprovalForAll} event.
*/
function _setApprovalForAll(
address owner,
address operator,
bool approved
) internal virtual {
require(owner != operator, "ERC1155: setting approval status for self");
_operatorApprovals[owner][operator] = approved;
emit ApprovalForAll(owner, operator, approved);
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning, as well as batched variants.
*
* The same hook is called on both single and batched variants. For single
* transfers, the length of the `id` and `amount` arrays will be 1.
*
* Calling conditions (for each `id` and `amount` pair):
*
* - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* of token type `id` will be transferred to `to`.
* - When `from` is zero, `amount` tokens of token type `id` will be minted
* for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
* will be burned.
* - `from` and `to` are never both zero.
* - `ids` and `amounts` have the same, non-zero length.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) internal virtual {}
function _doSafeTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256 id,
uint256 amount,
bytes memory data
) private {
if (to.isContract()) {
try
IERC1155Receiver(to).onERC1155Received(
operator,
from,
id,
amount,
data
)
returns (bytes4 response) {
if (response != IERC1155Receiver.onERC1155Received.selector) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _doSafeBatchTransferAcceptanceCheck(
address operator,
address from,
address to,
uint256[] memory ids,
uint256[] memory amounts,
bytes memory data
) private {
if (to.isContract()) {
try
IERC1155Receiver(to).onERC1155BatchReceived(
operator,
from,
ids,
amounts,
data
)
returns (bytes4 response) {
if (
response != IERC1155Receiver.onERC1155BatchReceived.selector
) {
revert("ERC1155: ERC1155Receiver rejected tokens");
}
} catch Error(string memory reason) {
revert(reason);
} catch {
revert("ERC1155: transfer to non ERC1155Receiver implementer");
}
}
}
function _asSingletonArray(uint256 element)
private
pure
returns (uint256[] memory)
{
uint256[] memory array = new uint256[](1);
array[0] = element;
return array;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
////// lib/openzeppelin-contracts/contracts/utils/introspection/IERC165.sol
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}{
"remappings": [],
"optimizer": {
"enabled": true,
"runs": 1000
},
"evmVersion": "london",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_royaltyRecipient","type":"address"},{"internalType":"uint16","name":"_royaltyBPS","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"","type":"string"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"CitizenLegislatureChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint16","name":"bps","type":"uint16"}],"name":"DefaultRoyaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"}],"name":"LogEthDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"NewCitizen","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint16","name":"bps","type":"uint16"}],"name":"TokenRoyaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address[]","name":"_awardees","type":"address[]"},{"internalType":"uint256[]","name":"_numberOfCitizenships","type":"uint256[]"},{"internalType":"uint256","name":"_citizenshipType","type":"uint256"}],"name":"awardCitizenship","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"_tokenURIs","type":"string[]"},{"internalType":"uint256[]","name":"_citizenNFTIds","type":"uint256[]"}],"name":"changeURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultRoyalty","outputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint16","name":"bps","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"howManyReservedCitizenships","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialCitizenship","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"inquireAboutHistory","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inquireCostOfEntry","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"inquireHousingNumbers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_citizenType","type":"uint256"},{"internalType":"uint256","name":"_numberOfCitizens","type":"uint256"}],"name":"issueNewCitizenships","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stampCost","type":"uint256"}],"name":"legislateCostOfEntry","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_citizenNumber","type":"uint256"}],"name":"onlineApplicationForCitizenship","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raidTheCoffers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfCitizenships","type":"uint256"}],"name":"reserveCitizenships","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint16","name":"bps","type":"uint16"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint16","name":"bps","type":"uint16"}],"name":"setTokenRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_citizenNFTId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
60806040526702c68af0bb1400006005556000600655600060075560006008553480156200002c57600080fd5b5060405162003528380380620035288339810160408190526200004f9162000418565b604080516020810190915260008152620000698162000307565b50620000753362000320565b60016004556040805180820182526001600160a01b03841680825261ffff84166020928301819052600980546001600160b01b031916909217600160a01b9091021790558151608081019092526050808352906200348890830139602a600052600b602090815281516200010d927fda204be036e53b730a88c834137c75955908459ff9d69b2812ea686472ffa19e92019062000372565b5060405180608001604052806050815260200162003438605091396045600052600b6020908152815162000165927f27c4d14c30e909e6ff0ffaadfaccb763055b05b233559a3e890cb811540bc39d92019062000372565b50604051806080016040528060508152602001620034d8605091396007600052600b60209081528151620001bd927ff5559028dc9ba50d75343c779b2f75e13a84a14662932fc67a486f263ca31a9692019062000372565b5060408051808201909152600f81526e26b7b7b72220a79021b4ba34bd32b760891b6020808301918252602a600052600c905290516200021f917f2b66750ad81d2c4a0a0ad3fe62fe97e0506e09b7b878f08f5caf5fc39cb69bfc9162000372565b5060408051808201909152600c8082526b135bdbdb911053c813185b9960a21b602080840191825260456000529190915290516200027f917fef9aad54ca4e280881e390d924dfb5941eaae731516e72f1697a43c699e855a99162000372565b5060408051808201909152601581527f4d6f6f6e44414f20466972737420436974697a656e000000000000000000000060208083019182526007600052600c90529051620002ef917fdae089abd7155aa13ce498edb0d7a7156b783d015031f10c9a3d4f5fcb5189719162000372565b5050600d805460ff19169055506000600e55620004a5565b80516200031c90600290602084019062000372565b5050565b600380546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620003809062000468565b90600052602060002090601f016020900481019282620003a45760008555620003ef565b82601f10620003bf57805160ff1916838001178555620003ef565b82800160010185558215620003ef579182015b82811115620003ef578251825591602001919060010190620003d2565b50620003fd92915062000401565b5090565b5b80821115620003fd576000815560010162000402565b600080604083850312156200042c57600080fd5b82516001600160a01b03811681146200044457600080fd5b602084015190925061ffff811681146200045d57600080fd5b809150509250929050565b600181811c908216806200047d57607f821691505b602082108114156200049f57634e487b7160e01b600052602260045260246000fd5b50919050565b612f8380620004b56000396000f3fe6080604052600436106101af5760003560e01c806374b005d6116100ec578063c9e551311161008a578063eea677fe11610064578063eea677fe1461056b578063f242432a1461058b578063f2d8e2bf146105ab578063f2fde38b146105be576101ea565b8063c9e55131146104ed578063d1563a7b14610502578063e985e9c514610522576101ea565b80638b754e7b116100c65780638b754e7b146104705780638da5cb5b14610490578063a22cb465146104b8578063c058f66c146104d8576101ea565b806374b005d6146103e15780637885fdc71461040157806378db6c5314610450576101ea565b80632eb2c2d6116101595780634331f639116101335780634331f6391461036a5780634e1273f41461038a5780636c4c4284146103b7578063715018a6146103cc576101ea565b80632eb2c2d6146103135780632eddcb3a1461033557806332e08d2214610355576101ea565b80630e89341c1161018a5780630e89341c146102925780631a8735ff146102bf5780632a55205a146102d4576101ea565b8062fdd58e1461021a57806301ffc9a71461024d5780630449e3df1461027d576101ea565b366101ea576040513381527ffd132aba343c58980093ca9e470909842e0f7df051d3c44bc01500ee0c18ae30906020015b60405180910390a1005b6040513381527ffd132aba343c58980093ca9e470909842e0f7df051d3c44bc01500ee0c18ae30906020016101e0565b34801561022657600080fd5b5061023a6102353660046122ca565b6105de565b6040519081526020015b60405180910390f35b34801561025957600080fd5b5061026d61026836600461230c565b610687565b6040519015158152602001610244565b34801561028957600080fd5b50600e5461023a565b34801561029e57600080fd5b506102b26102ad366004612329565b6106ff565b604051610244919061239e565b3480156102cb57600080fd5b5060055461023a565b3480156102e057600080fd5b506102f46102ef3660046123b1565b61076c565b604080516001600160a01b039093168352602083019190915201610244565b34801561031f57600080fd5b5061033361032e36600461251f565b610831565b005b34801561034157600080fd5b50610333610350366004612329565b6108d3565b34801561036157600080fd5b50610333610989565b34801561037657600080fd5b506103336103853660046125e4565b610a5b565b34801561039657600080fd5b506103aa6103a5366004612619565b610b2a565b6040516102449190612721565b3480156103c357600080fd5b5060075461023a565b3480156103d857600080fd5b50610333610c68565b3480156103ed57600080fd5b506103336103fc366004612779565b610cbc565b34801561040d57600080fd5b5060095461042e906001600160a01b03811690600160a01b900461ffff1682565b604080516001600160a01b03909316835261ffff909116602083015201610244565b34801561045c57600080fd5b5061033361046b3660046127e5565b610d7e565b34801561047c57600080fd5b5061033361048b366004612329565b610e6e565b34801561049c57600080fd5b506003546040516001600160a01b039091168152602001610244565b3480156104c457600080fd5b506103336104d3366004612823565b610ebb565b3480156104e457600080fd5b5060065461023a565b3480156104f957600080fd5b50610333610eca565b34801561050e57600080fd5b5061033361051d366004612861565b610fed565b34801561052e57600080fd5b5061026d61053d3660046128d5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561057757600080fd5b50610333610586366004612903565b61116a565b34801561059757600080fd5b506103336105a6366004612938565b611277565b6103336105b9366004612329565b611312565b3480156105ca57600080fd5b506103336105d93660046129a1565b611587565b60006001600160a01b0383166106615760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b031982167f2a55205a0000000000000000000000000000000000000000000000000000000014806106ea57506001600160e01b031982167f3bea9a6a00000000000000000000000000000000000000000000000000000000145b806106f957506106f982611657565b92915050565b6000818152600c60209081526040808320600b83528184209151606094936107429361072e9392909101612a93565b6040516020818303038152906040526116f2565b9050806040516020016107559190612be2565b604051602081830303815290604052915050919050565b6000828152600a602052604081205481906001600160a01b0316156107d1576000848152600a60205260409020546001600160a01b03811690612710906107be90600160a01b900461ffff1686612c3d565b6107c89190612c5c565b9150915061082a565b6009546001600160a01b0316158015906107f75750600954600160a01b900461ffff1615155b15610823576009546001600160a01b03811690612710906107be90600160a01b900461ffff1686612c3d565b5060009050805b9250929050565b6001600160a01b03851633148061084d575061084d853361053d565b6108bf5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610658565b6108cc858585858561188f565b5050505050565b6003546001600160a01b0316331461091b5760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b6005819055604080518181526009818301527f7374616d70436f7374000000000000000000000000000000000000000000000060608201526020810183905290517fa2d6cd1104f502a237d55c3f99b1499ae85dfbf61b3f51f0ca8b80f06fab1c889181900360800190a150565b6003546001600160a01b031633146109d15760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b600d5460ff1615610a245760405162461bcd60e51b815260206004820152601c60248201527f636f6e747261637420696e697469616c697a656420616c7265616479000000006044820152606401610658565b610a3233602a61271061116a565b610a3f336045606461116a565b610a4c336007600161116a565b600d805460ff19166001179055565b6003546001600160a01b03163314610aa35760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b6040805180820182526001600160a01b03841680825261ffff841660209283018190526009805475ffffffffffffffffffffffffffffffffffffffffffff19168317600160a01b83021790558351918252918101919091527f2c5ea6e4103e78cb101e796fb2dace540362fc542cbff5145eaa24af7dd8fe41910160405180910390a15050565b60608151835114610ba35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610658565b6000835167ffffffffffffffff811115610bbf57610bbf6123d3565b604051908082528060200260200182016040528015610be8578160200160208202803683370190505b50905060005b8451811015610c6057610c33858281518110610c0c57610c0c612c7e565b6020026020010151858381518110610c2657610c26612c7e565b60200260200101516105de565b828281518110610c4557610c45612c7e565b6020908102919091010152610c5981612c94565b9050610bee565b509392505050565b6003546001600160a01b03163314610cb05760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b610cba6000611b02565b565b6003546001600160a01b03163314610d045760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b60005b838110156108cc57848482818110610d2157610d21612c7e565b9050602002810190610d339190612caf565b600b6000868686818110610d4957610d49612c7e565b9050602002013581526020019081526020016000209190610d6b92919061221c565b5080610d7681612c94565b915050610d07565b6003546001600160a01b03163314610dc65760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b6040805180820182526001600160a01b0384811680835261ffff858116602080860182815260008b8152600a8352889020965187549151961675ffffffffffffffffffffffffffffffffffffffffffff1990911617600160a01b959093169490940291909117909355835187815291820152918201527f389b70fb0887f01e83784eb1c4c589f740eca53b00ed0f45e41db5d079719abb9060600160405180910390a1505050565b6003546001600160a01b03163314610eb65760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b600e55565b610ec6338383611b6c565b5050565b6003546001600160a01b03163314610f125760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b476000610f276003546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610f71576040519150601f19603f3d011682016040523d82523d6000602084013e610f76565b606091505b5050905080610ec65760405162461bcd60e51b815260206004820152602d60248201527f416e74692d636f7272757074696f6e206167656e636965732073746f7070656460448201527f20746865207472616e73666572000000000000000000000000000000000000006064820152608401610658565b6003546001600160a01b031633146110355760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b8382146110845760405162461bcd60e51b815260206004820152601660248201527f6172726179206c656e677468206e6f7420657175616c000000000000000000006044820152606401610658565b6000306001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e89190612cf6565b905060005b858110156111615761114f8288888481811061110b5761110b612c7e565b905060200201602081019061112091906129a1565b8588888681811061113357611133612c7e565b9050602002013560405180602001604052806000815250611277565b8061115981612c94565b9150506110ed565b50505050505050565b6003546001600160a01b031633146111b25760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b81602a14156111d0576006546111c89082611c61565b600655611257565b81604514156111ee576007546111e69082611c61565b600755611257565b816007141561120c576008546112049082611c61565b600855611257565b604080518082018252601681527f556e6b6e6f776e20436974697a656e204e4654204944000000000000000000006020820152905162461bcd60e51b8152610658919060040161239e565b61127283838360405180602001604052806000815250611c74565b505050565b6001600160a01b0385163314806112935750611293853361053d565b6113055760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610658565b6108cc8585858585611d9a565b600260045414156113655760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610658565b6002600455600554611378908290612c3d565b3410156113c75760405162461bcd60e51b815260206004820181905260248201527f7365722c20746865207374617465206d616368696e65206e65656473206f696c6044820152606401610658565b600e5481306001600160a01b031662fdd58e306001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611417573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143b9190612cf6565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602a6024820152604401602060405180830381865afa158015611486573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114aa9190612d13565b6114b49190612d2c565b116115015760405162461bcd60e51b815260206004820152601860248201527f4e6f20617661696c61626c6520436974697a656e7368697000000000000000006044820152606401610658565b61157f306001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115669190612cf6565b33602a8460405180602001604052806000815250611d9a565b506001600455565b6003546001600160a01b031633146115cf5760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b6001600160a01b03811661164b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610658565b61165481611b02565b50565b60006001600160e01b031982167fd9b67a260000000000000000000000000000000000000000000000000000000014806116ba57506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b806106f957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146106f9565b805160609080611712575050604080516020810190915260008152919050565b60006003611721836002612d43565b61172b9190612c5c565b611736906004612c3d565b90506000611745826020612d43565b67ffffffffffffffff81111561175d5761175d6123d3565b6040519080825280601f01601f191660200182016040528015611787576020820181803683370190505b5090506000604051806060016040528060408152602001612eee604091399050600181016020830160005b86811015611813576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016117b2565b50600386066001811461182d576002811461185957611881565b7f3d3d000000000000000000000000000000000000000000000000000000000000600119830152611881565b7f3d000000000000000000000000000000000000000000000000000000000000006000198301525b505050918152949350505050565b81518351146119065760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610658565b6001600160a01b03841661196a5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610658565b3360005b8451811015611a9457600085828151811061198b5761198b612c7e565b6020026020010151905060008583815181106119a9576119a9612c7e565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611a3c5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610658565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611a79908490612d43565b9250508190555050505080611a8d90612c94565b905061196e565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ae4929190612d5b565b60405180910390a4611afa818787878787611f2f565b505050505050565b600380546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611bf45760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610658565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000611c6d8284612d43565b9392505050565b6001600160a01b038416611cf05760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610658565b33611d0a81600087611d01886120d5565b6108cc886120d5565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611d3a908490612d43565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46108cc81600087878787612120565b6001600160a01b038416611dfe5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610658565b33611e0e818787611d01886120d5565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611e925760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610658565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611ecf908490612d43565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611161828888888888612120565b6001600160a01b0384163b15611afa5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611f739089908990889088908890600401612d89565b6020604051808303816000875af1925050508015611fae575060408051601f3d908101601f19168201909252611fab91810190612de7565b60015b61206457611fba612e04565b806308c379a01415611ff45750611fcf612e20565b80611fda5750611ff6565b8060405162461bcd60e51b8152600401610658919061239e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610658565b6001600160e01b0319811663bc197c8160e01b146111615760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610658565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061210f5761210f612c7e565b602090810291909101015292915050565b6001600160a01b0384163b15611afa5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906121649089908990889088908890600401612eaa565b6020604051808303816000875af192505050801561219f575060408051601f3d908101601f1916820190925261219c91810190612de7565b60015b6121ab57611fba612e04565b6001600160e01b0319811663f23a6e6160e01b146111615760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610658565b828054612228906129be565b90600052602060002090601f01602090048101928261224a5760008555612290565b82601f106122635782800160ff19823516178555612290565b82800160010185558215612290579182015b82811115612290578235825591602001919060010190612275565b5061229c9291506122a0565b5090565b5b8082111561229c57600081556001016122a1565b6001600160a01b038116811461165457600080fd5b600080604083850312156122dd57600080fd5b82356122e8816122b5565b946020939093013593505050565b6001600160e01b03198116811461165457600080fd5b60006020828403121561231e57600080fd5b8135611c6d816122f6565b60006020828403121561233b57600080fd5b5035919050565b60005b8381101561235d578181015183820152602001612345565b8381111561236c576000848401525b50505050565b6000815180845261238a816020860160208601612342565b601f01601f19169290920160200192915050565b602081526000611c6d6020830184612372565b600080604083850312156123c457600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561240f5761240f6123d3565b6040525050565b600067ffffffffffffffff821115612430576124306123d3565b5060051b60200190565b600082601f83011261244b57600080fd5b8135602061245882612416565b60405161246582826123e9565b83815260059390931b850182019282810191508684111561248557600080fd5b8286015b848110156124a05780358352918301918301612489565b509695505050505050565b600082601f8301126124bc57600080fd5b813567ffffffffffffffff8111156124d6576124d66123d3565b6040516124ed601f8301601f1916602001826123e9565b81815284602083860101111561250257600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561253757600080fd5b8535612542816122b5565b94506020860135612552816122b5565b9350604086013567ffffffffffffffff8082111561256f57600080fd5b61257b89838a0161243a565b9450606088013591508082111561259157600080fd5b61259d89838a0161243a565b935060808801359150808211156125b357600080fd5b506125c0888289016124ab565b9150509295509295909350565b803561ffff811681146125df57600080fd5b919050565b600080604083850312156125f757600080fd5b8235612602816122b5565b9150612610602084016125cd565b90509250929050565b6000806040838503121561262c57600080fd5b823567ffffffffffffffff8082111561264457600080fd5b818501915085601f83011261265857600080fd5b8135602061266582612416565b60405161267282826123e9565b83815260059390931b850182019282810191508984111561269257600080fd5b948201945b838610156126b95785356126aa816122b5565b82529482019490820190612697565b965050860135925050808211156126cf57600080fd5b506126dc8582860161243a565b9150509250929050565b600081518084526020808501945080840160005b83811015612716578151875295820195908201906001016126fa565b509495945050505050565b602081526000611c6d60208301846126e6565b60008083601f84011261274657600080fd5b50813567ffffffffffffffff81111561275e57600080fd5b6020830191508360208260051b850101111561082a57600080fd5b6000806000806040858703121561278f57600080fd5b843567ffffffffffffffff808211156127a757600080fd5b6127b388838901612734565b909650945060208701359150808211156127cc57600080fd5b506127d987828801612734565b95989497509550505050565b6000806000606084860312156127fa57600080fd5b83359250602084013561280c816122b5565b915061281a604085016125cd565b90509250925092565b6000806040838503121561283657600080fd5b8235612841816122b5565b91506020830135801515811461285657600080fd5b809150509250929050565b60008060008060006060868803121561287957600080fd5b853567ffffffffffffffff8082111561289157600080fd5b61289d89838a01612734565b909750955060208801359150808211156128b657600080fd5b506128c388828901612734565b96999598509660400135949350505050565b600080604083850312156128e857600080fd5b82356128f3816122b5565b91506020830135612856816122b5565b60008060006060848603121561291857600080fd5b8335612923816122b5565b95602085013595506040909401359392505050565b600080600080600060a0868803121561295057600080fd5b853561295b816122b5565b9450602086013561296b816122b5565b93506040860135925060608601359150608086013567ffffffffffffffff81111561299557600080fd5b6125c0888289016124ab565b6000602082840312156129b357600080fd5b8135611c6d816122b5565b600181811c908216806129d257607f821691505b602082108114156129f357634e487b7160e01b600052602260045260246000fd5b50919050565b8054600090600181811c9080831680612a1357607f831692505b6020808410821415612a3557634e487b7160e01b600052602260045260246000fd5b818015612a495760018114612a5a57612a87565b60ff19861689528489019650612a87565b60008881526020902060005b86811015612a7f5781548b820152908501908301612a66565b505084890196505b50505050505092915050565b7f7b20226e616d65223a202200000000000000000000000000000000000000000081526000612ac5600b8301856129f9565b7f222c20000000000000000000000000000000000000000000000000000000000081527f226465736372697074696f6e22203a200000000000000000000000000000000060038201527f224120436974697a656e206f66204d6f6f6e44414f20686f6c647320676f766560138201527f726e616e636520696e20746865206f7065726174696f6e7320616e642061637460338201527f69766974696573206f66204d6f6f6e44414f2e222c000000000000000000000060538201527f22696d616765223a2022000000000000000000000000000000000000000000006068820152612bb360728201856129f9565b7f227d000000000000000000000000000000000000000000000000000000000000815260020195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612c1a81601d850160208701612342565b91909101601d0192915050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612c5757612c57612c27565b500290565b600082612c7957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612ca857612ca8612c27565b5060010190565b6000808335601e19843603018112612cc657600080fd5b83018035915067ffffffffffffffff821115612ce157600080fd5b60200191503681900382131561082a57600080fd5b600060208284031215612d0857600080fd5b8151611c6d816122b5565b600060208284031215612d2557600080fd5b5051919050565b600082821015612d3e57612d3e612c27565b500390565b60008219821115612d5657612d56612c27565b500190565b604081526000612d6e60408301856126e6565b8281036020840152612d8081856126e6565b95945050505050565b60006001600160a01b03808816835280871660208401525060a06040830152612db560a08301866126e6565b8281036060840152612dc781866126e6565b90508281036080840152612ddb8185612372565b98975050505050505050565b600060208284031215612df957600080fd5b8151611c6d816122f6565b600060033d1115612e1d5760046000803e5060005160e01c5b90565b600060443d1015612e2e5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715612e5e57505050505090565b8285019150815181811115612e765750505050505090565b843d8701016020828501011115612e905750505050505090565b612e9f602082860101876123e9565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152612ee260a0830184612372565b97965050505050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122089e025d8de26279b14983325d56e8f70bd4020e99a417293f36153d5aee2b2ee64736f6c634300080a003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5751524b646b7751736150546d556238697733694d4c65356f6b41514a41467935597a6574526e795779666268747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5731693869354c424845476b6736325a674a3361566355363845384e3634443859446838517479783465674668747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d517570565a337466766d3544433670446578614a4e635636727351437832633463574d6471534a61656259730000000000000000000000000e25518b2c74b50d9c6d74d2e66b918bb903e6a900000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x6080604052600436106101af5760003560e01c806374b005d6116100ec578063c9e551311161008a578063eea677fe11610064578063eea677fe1461056b578063f242432a1461058b578063f2d8e2bf146105ab578063f2fde38b146105be576101ea565b8063c9e55131146104ed578063d1563a7b14610502578063e985e9c514610522576101ea565b80638b754e7b116100c65780638b754e7b146104705780638da5cb5b14610490578063a22cb465146104b8578063c058f66c146104d8576101ea565b806374b005d6146103e15780637885fdc71461040157806378db6c5314610450576101ea565b80632eb2c2d6116101595780634331f639116101335780634331f6391461036a5780634e1273f41461038a5780636c4c4284146103b7578063715018a6146103cc576101ea565b80632eb2c2d6146103135780632eddcb3a1461033557806332e08d2214610355576101ea565b80630e89341c1161018a5780630e89341c146102925780631a8735ff146102bf5780632a55205a146102d4576101ea565b8062fdd58e1461021a57806301ffc9a71461024d5780630449e3df1461027d576101ea565b366101ea576040513381527ffd132aba343c58980093ca9e470909842e0f7df051d3c44bc01500ee0c18ae30906020015b60405180910390a1005b6040513381527ffd132aba343c58980093ca9e470909842e0f7df051d3c44bc01500ee0c18ae30906020016101e0565b34801561022657600080fd5b5061023a6102353660046122ca565b6105de565b6040519081526020015b60405180910390f35b34801561025957600080fd5b5061026d61026836600461230c565b610687565b6040519015158152602001610244565b34801561028957600080fd5b50600e5461023a565b34801561029e57600080fd5b506102b26102ad366004612329565b6106ff565b604051610244919061239e565b3480156102cb57600080fd5b5060055461023a565b3480156102e057600080fd5b506102f46102ef3660046123b1565b61076c565b604080516001600160a01b039093168352602083019190915201610244565b34801561031f57600080fd5b5061033361032e36600461251f565b610831565b005b34801561034157600080fd5b50610333610350366004612329565b6108d3565b34801561036157600080fd5b50610333610989565b34801561037657600080fd5b506103336103853660046125e4565b610a5b565b34801561039657600080fd5b506103aa6103a5366004612619565b610b2a565b6040516102449190612721565b3480156103c357600080fd5b5060075461023a565b3480156103d857600080fd5b50610333610c68565b3480156103ed57600080fd5b506103336103fc366004612779565b610cbc565b34801561040d57600080fd5b5060095461042e906001600160a01b03811690600160a01b900461ffff1682565b604080516001600160a01b03909316835261ffff909116602083015201610244565b34801561045c57600080fd5b5061033361046b3660046127e5565b610d7e565b34801561047c57600080fd5b5061033361048b366004612329565b610e6e565b34801561049c57600080fd5b506003546040516001600160a01b039091168152602001610244565b3480156104c457600080fd5b506103336104d3366004612823565b610ebb565b3480156104e457600080fd5b5060065461023a565b3480156104f957600080fd5b50610333610eca565b34801561050e57600080fd5b5061033361051d366004612861565b610fed565b34801561052e57600080fd5b5061026d61053d3660046128d5565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b34801561057757600080fd5b50610333610586366004612903565b61116a565b34801561059757600080fd5b506103336105a6366004612938565b611277565b6103336105b9366004612329565b611312565b3480156105ca57600080fd5b506103336105d93660046129a1565b611587565b60006001600160a01b0383166106615760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201527f65726f206164647265737300000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152602081815260408083206001600160a01b03949094168352929052205490565b60006001600160e01b031982167f2a55205a0000000000000000000000000000000000000000000000000000000014806106ea57506001600160e01b031982167f3bea9a6a00000000000000000000000000000000000000000000000000000000145b806106f957506106f982611657565b92915050565b6000818152600c60209081526040808320600b83528184209151606094936107429361072e9392909101612a93565b6040516020818303038152906040526116f2565b9050806040516020016107559190612be2565b604051602081830303815290604052915050919050565b6000828152600a602052604081205481906001600160a01b0316156107d1576000848152600a60205260409020546001600160a01b03811690612710906107be90600160a01b900461ffff1686612c3d565b6107c89190612c5c565b9150915061082a565b6009546001600160a01b0316158015906107f75750600954600160a01b900461ffff1615155b15610823576009546001600160a01b03811690612710906107be90600160a01b900461ffff1686612c3d565b5060009050805b9250929050565b6001600160a01b03851633148061084d575061084d853361053d565b6108bf5760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f76656400000000000000000000000000006064820152608401610658565b6108cc858585858561188f565b5050505050565b6003546001600160a01b0316331461091b5760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b6005819055604080518181526009818301527f7374616d70436f7374000000000000000000000000000000000000000000000060608201526020810183905290517fa2d6cd1104f502a237d55c3f99b1499ae85dfbf61b3f51f0ca8b80f06fab1c889181900360800190a150565b6003546001600160a01b031633146109d15760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b600d5460ff1615610a245760405162461bcd60e51b815260206004820152601c60248201527f636f6e747261637420696e697469616c697a656420616c7265616479000000006044820152606401610658565b610a3233602a61271061116a565b610a3f336045606461116a565b610a4c336007600161116a565b600d805460ff19166001179055565b6003546001600160a01b03163314610aa35760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b6040805180820182526001600160a01b03841680825261ffff841660209283018190526009805475ffffffffffffffffffffffffffffffffffffffffffff19168317600160a01b83021790558351918252918101919091527f2c5ea6e4103e78cb101e796fb2dace540362fc542cbff5145eaa24af7dd8fe41910160405180910390a15050565b60608151835114610ba35760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e67746860448201527f206d69736d6174636800000000000000000000000000000000000000000000006064820152608401610658565b6000835167ffffffffffffffff811115610bbf57610bbf6123d3565b604051908082528060200260200182016040528015610be8578160200160208202803683370190505b50905060005b8451811015610c6057610c33858281518110610c0c57610c0c612c7e565b6020026020010151858381518110610c2657610c26612c7e565b60200260200101516105de565b828281518110610c4557610c45612c7e565b6020908102919091010152610c5981612c94565b9050610bee565b509392505050565b6003546001600160a01b03163314610cb05760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b610cba6000611b02565b565b6003546001600160a01b03163314610d045760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b60005b838110156108cc57848482818110610d2157610d21612c7e565b9050602002810190610d339190612caf565b600b6000868686818110610d4957610d49612c7e565b9050602002013581526020019081526020016000209190610d6b92919061221c565b5080610d7681612c94565b915050610d07565b6003546001600160a01b03163314610dc65760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b6040805180820182526001600160a01b0384811680835261ffff858116602080860182815260008b8152600a8352889020965187549151961675ffffffffffffffffffffffffffffffffffffffffffff1990911617600160a01b959093169490940291909117909355835187815291820152918201527f389b70fb0887f01e83784eb1c4c589f740eca53b00ed0f45e41db5d079719abb9060600160405180910390a1505050565b6003546001600160a01b03163314610eb65760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b600e55565b610ec6338383611b6c565b5050565b6003546001600160a01b03163314610f125760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b476000610f276003546001600160a01b031690565b6001600160a01b03168260405160006040518083038185875af1925050503d8060008114610f71576040519150601f19603f3d011682016040523d82523d6000602084013e610f76565b606091505b5050905080610ec65760405162461bcd60e51b815260206004820152602d60248201527f416e74692d636f7272757074696f6e206167656e636965732073746f7070656460448201527f20746865207472616e73666572000000000000000000000000000000000000006064820152608401610658565b6003546001600160a01b031633146110355760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b8382146110845760405162461bcd60e51b815260206004820152601660248201527f6172726179206c656e677468206e6f7420657175616c000000000000000000006044820152606401610658565b6000306001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156110c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e89190612cf6565b905060005b858110156111615761114f8288888481811061110b5761110b612c7e565b905060200201602081019061112091906129a1565b8588888681811061113357611133612c7e565b9050602002013560405180602001604052806000815250611277565b8061115981612c94565b9150506110ed565b50505050505050565b6003546001600160a01b031633146111b25760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b81602a14156111d0576006546111c89082611c61565b600655611257565b81604514156111ee576007546111e69082611c61565b600755611257565b816007141561120c576008546112049082611c61565b600855611257565b604080518082018252601681527f556e6b6e6f776e20436974697a656e204e4654204944000000000000000000006020820152905162461bcd60e51b8152610658919060040161239e565b61127283838360405180602001604052806000815250611c74565b505050565b6001600160a01b0385163314806112935750611293853361053d565b6113055760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201527f20617070726f76656400000000000000000000000000000000000000000000006064820152608401610658565b6108cc8585858585611d9a565b600260045414156113655760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610658565b6002600455600554611378908290612c3d565b3410156113c75760405162461bcd60e51b815260206004820181905260248201527f7365722c20746865207374617465206d616368696e65206e65656473206f696c6044820152606401610658565b600e5481306001600160a01b031662fdd58e306001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611417573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061143b9190612cf6565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602a6024820152604401602060405180830381865afa158015611486573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114aa9190612d13565b6114b49190612d2c565b116115015760405162461bcd60e51b815260206004820152601860248201527f4e6f20617661696c61626c6520436974697a656e7368697000000000000000006044820152606401610658565b61157f306001600160a01b0316638da5cb5b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611542573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115669190612cf6565b33602a8460405180602001604052806000815250611d9a565b506001600455565b6003546001600160a01b031633146115cf5760405162461bcd60e51b81526020600482018190526024820152600080516020612f2e8339815191526044820152606401610658565b6001600160a01b03811661164b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610658565b61165481611b02565b50565b60006001600160e01b031982167fd9b67a260000000000000000000000000000000000000000000000000000000014806116ba57506001600160e01b031982167f0e89341c00000000000000000000000000000000000000000000000000000000145b806106f957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146106f9565b805160609080611712575050604080516020810190915260008152919050565b60006003611721836002612d43565b61172b9190612c5c565b611736906004612c3d565b90506000611745826020612d43565b67ffffffffffffffff81111561175d5761175d6123d3565b6040519080825280601f01601f191660200182016040528015611787576020820181803683370190505b5090506000604051806060016040528060408152602001612eee604091399050600181016020830160005b86811015611813576003818a01810151603f601282901c8116860151600c83901c8216870151600684901c831688015192909316870151600891821b60ff94851601821b92841692909201901b91160160e01b8352600490920191016117b2565b50600386066001811461182d576002811461185957611881565b7f3d3d000000000000000000000000000000000000000000000000000000000000600119830152611881565b7f3d000000000000000000000000000000000000000000000000000000000000006000198301525b505050918152949350505050565b81518351146119065760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060448201527f6d69736d617463680000000000000000000000000000000000000000000000006064820152608401610658565b6001600160a01b03841661196a5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610658565b3360005b8451811015611a9457600085828151811061198b5761198b612c7e565b6020026020010151905060008583815181106119a9576119a9612c7e565b602090810291909101810151600084815280835260408082206001600160a01b038e168352909352919091205490915081811015611a3c5760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610658565b6000838152602081815260408083206001600160a01b038e8116855292528083208585039055908b16825281208054849290611a79908490612d43565b9250508190555050505080611a8d90612c94565b905061196e565b50846001600160a01b0316866001600160a01b0316826001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051611ae4929190612d5b565b60405180910390a4611afa818787878787611f2f565b505050505050565b600380546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611bf45760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c2073746174757360448201527f20666f722073656c6600000000000000000000000000000000000000000000006064820152608401610658565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6000611c6d8284612d43565b9392505050565b6001600160a01b038416611cf05760405162461bcd60e51b815260206004820152602160248201527f455243313135353a206d696e7420746f20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152608401610658565b33611d0a81600087611d01886120d5565b6108cc886120d5565b6000848152602081815260408083206001600160a01b038916845290915281208054859290611d3a908490612d43565b909155505060408051858152602081018590526001600160a01b0380881692600092918516917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a46108cc81600087878787612120565b6001600160a01b038416611dfe5760405162461bcd60e51b815260206004820152602560248201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610658565b33611e0e818787611d01886120d5565b6000848152602081815260408083206001600160a01b038a16845290915290205483811015611e925760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610658565b6000858152602081815260408083206001600160a01b038b8116855292528083208785039055908816825281208054869290611ecf908490612d43565b909155505060408051868152602081018690526001600160a01b03808916928a821692918616917fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62910160405180910390a4611161828888888888612120565b6001600160a01b0384163b15611afa5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611f739089908990889088908890600401612d89565b6020604051808303816000875af1925050508015611fae575060408051601f3d908101601f19168201909252611fab91810190612de7565b60015b61206457611fba612e04565b806308c379a01415611ff45750611fcf612e20565b80611fda5750611ff6565b8060405162461bcd60e51b8152600401610658919061239e565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e204552433131353560448201527f526563656976657220696d706c656d656e7465720000000000000000000000006064820152608401610658565b6001600160e01b0319811663bc197c8160e01b146111615760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610658565b6040805160018082528183019092526060916000919060208083019080368337019050509050828160008151811061210f5761210f612c7e565b602090810291909101015292915050565b6001600160a01b0384163b15611afa5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e61906121649089908990889088908890600401612eaa565b6020604051808303816000875af192505050801561219f575060408051601f3d908101601f1916820190925261219c91810190612de7565b60015b6121ab57611fba612e04565b6001600160e01b0319811663f23a6e6160e01b146111615760405162461bcd60e51b815260206004820152602860248201527f455243313135353a204552433131353552656365697665722072656a656374656044820152676420746f6b656e7360c01b6064820152608401610658565b828054612228906129be565b90600052602060002090601f01602090048101928261224a5760008555612290565b82601f106122635782800160ff19823516178555612290565b82800160010185558215612290579182015b82811115612290578235825591602001919060010190612275565b5061229c9291506122a0565b5090565b5b8082111561229c57600081556001016122a1565b6001600160a01b038116811461165457600080fd5b600080604083850312156122dd57600080fd5b82356122e8816122b5565b946020939093013593505050565b6001600160e01b03198116811461165457600080fd5b60006020828403121561231e57600080fd5b8135611c6d816122f6565b60006020828403121561233b57600080fd5b5035919050565b60005b8381101561235d578181015183820152602001612345565b8381111561236c576000848401525b50505050565b6000815180845261238a816020860160208601612342565b601f01601f19169290920160200192915050565b602081526000611c6d6020830184612372565b600080604083850312156123c457600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b601f8201601f1916810167ffffffffffffffff8111828210171561240f5761240f6123d3565b6040525050565b600067ffffffffffffffff821115612430576124306123d3565b5060051b60200190565b600082601f83011261244b57600080fd5b8135602061245882612416565b60405161246582826123e9565b83815260059390931b850182019282810191508684111561248557600080fd5b8286015b848110156124a05780358352918301918301612489565b509695505050505050565b600082601f8301126124bc57600080fd5b813567ffffffffffffffff8111156124d6576124d66123d3565b6040516124ed601f8301601f1916602001826123e9565b81815284602083860101111561250257600080fd5b816020850160208301376000918101602001919091529392505050565b600080600080600060a0868803121561253757600080fd5b8535612542816122b5565b94506020860135612552816122b5565b9350604086013567ffffffffffffffff8082111561256f57600080fd5b61257b89838a0161243a565b9450606088013591508082111561259157600080fd5b61259d89838a0161243a565b935060808801359150808211156125b357600080fd5b506125c0888289016124ab565b9150509295509295909350565b803561ffff811681146125df57600080fd5b919050565b600080604083850312156125f757600080fd5b8235612602816122b5565b9150612610602084016125cd565b90509250929050565b6000806040838503121561262c57600080fd5b823567ffffffffffffffff8082111561264457600080fd5b818501915085601f83011261265857600080fd5b8135602061266582612416565b60405161267282826123e9565b83815260059390931b850182019282810191508984111561269257600080fd5b948201945b838610156126b95785356126aa816122b5565b82529482019490820190612697565b965050860135925050808211156126cf57600080fd5b506126dc8582860161243a565b9150509250929050565b600081518084526020808501945080840160005b83811015612716578151875295820195908201906001016126fa565b509495945050505050565b602081526000611c6d60208301846126e6565b60008083601f84011261274657600080fd5b50813567ffffffffffffffff81111561275e57600080fd5b6020830191508360208260051b850101111561082a57600080fd5b6000806000806040858703121561278f57600080fd5b843567ffffffffffffffff808211156127a757600080fd5b6127b388838901612734565b909650945060208701359150808211156127cc57600080fd5b506127d987828801612734565b95989497509550505050565b6000806000606084860312156127fa57600080fd5b83359250602084013561280c816122b5565b915061281a604085016125cd565b90509250925092565b6000806040838503121561283657600080fd5b8235612841816122b5565b91506020830135801515811461285657600080fd5b809150509250929050565b60008060008060006060868803121561287957600080fd5b853567ffffffffffffffff8082111561289157600080fd5b61289d89838a01612734565b909750955060208801359150808211156128b657600080fd5b506128c388828901612734565b96999598509660400135949350505050565b600080604083850312156128e857600080fd5b82356128f3816122b5565b91506020830135612856816122b5565b60008060006060848603121561291857600080fd5b8335612923816122b5565b95602085013595506040909401359392505050565b600080600080600060a0868803121561295057600080fd5b853561295b816122b5565b9450602086013561296b816122b5565b93506040860135925060608601359150608086013567ffffffffffffffff81111561299557600080fd5b6125c0888289016124ab565b6000602082840312156129b357600080fd5b8135611c6d816122b5565b600181811c908216806129d257607f821691505b602082108114156129f357634e487b7160e01b600052602260045260246000fd5b50919050565b8054600090600181811c9080831680612a1357607f831692505b6020808410821415612a3557634e487b7160e01b600052602260045260246000fd5b818015612a495760018114612a5a57612a87565b60ff19861689528489019650612a87565b60008881526020902060005b86811015612a7f5781548b820152908501908301612a66565b505084890196505b50505050505092915050565b7f7b20226e616d65223a202200000000000000000000000000000000000000000081526000612ac5600b8301856129f9565b7f222c20000000000000000000000000000000000000000000000000000000000081527f226465736372697074696f6e22203a200000000000000000000000000000000060038201527f224120436974697a656e206f66204d6f6f6e44414f20686f6c647320676f766560138201527f726e616e636520696e20746865206f7065726174696f6e7320616e642061637460338201527f69766974696573206f66204d6f6f6e44414f2e222c000000000000000000000060538201527f22696d616765223a2022000000000000000000000000000000000000000000006068820152612bb360728201856129f9565b7f227d000000000000000000000000000000000000000000000000000000000000815260020195945050505050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000815260008251612c1a81601d850160208701612342565b91909101601d0192915050565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615612c5757612c57612c27565b500290565b600082612c7957634e487b7160e01b600052601260045260246000fd5b500490565b634e487b7160e01b600052603260045260246000fd5b6000600019821415612ca857612ca8612c27565b5060010190565b6000808335601e19843603018112612cc657600080fd5b83018035915067ffffffffffffffff821115612ce157600080fd5b60200191503681900382131561082a57600080fd5b600060208284031215612d0857600080fd5b8151611c6d816122b5565b600060208284031215612d2557600080fd5b5051919050565b600082821015612d3e57612d3e612c27565b500390565b60008219821115612d5657612d56612c27565b500190565b604081526000612d6e60408301856126e6565b8281036020840152612d8081856126e6565b95945050505050565b60006001600160a01b03808816835280871660208401525060a06040830152612db560a08301866126e6565b8281036060840152612dc781866126e6565b90508281036080840152612ddb8185612372565b98975050505050505050565b600060208284031215612df957600080fd5b8151611c6d816122f6565b600060033d1115612e1d5760046000803e5060005160e01c5b90565b600060443d1015612e2e5790565b6040516003193d81016004833e81513d67ffffffffffffffff8160248401118184111715612e5e57505050505090565b8285019150815181811115612e765750505050505090565b843d8701016020828501011115612e905750505050505090565b612e9f602082860101876123e9565b509095945050505050565b60006001600160a01b03808816835280871660208401525084604083015283606083015260a06080830152612ee260a0830184612372565b97965050505050505056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572a264697066735822122089e025d8de26279b14983325d56e8f70bd4020e99a417293f36153d5aee2b2ee64736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000e25518b2c74b50d9c6d74d2e66b918bb903e6a900000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : _royaltyRecipient (address): 0x0E25518B2c74B50d9C6D74D2E66b918BB903e6A9
Arg [1] : _royaltyBPS (uint16): 1000
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000e25518b2c74b50d9c6d74d2e66b918bb903e6a9
Arg [1] : 00000000000000000000000000000000000000000000000000000000000003e8
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.