Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Source Code
Overview
Max Total Supply
100 PBS
Holders
46
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:
Indelible
Compiler Version
v0.8.14+commit.80d49f37
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import "erc721a/contracts/ERC721A.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "solady/src/utils/LibPRNG.sol";
import "solady/src/utils/Base64.sol";
import {DefaultOperatorFilterer} from "./DefaultOperatorFilterer.sol";
import "./SSTORE2.sol";
import "./DynamicBuffer.sol";
import "./HelperLib.sol";
contract Indelible is ERC721A, DefaultOperatorFilterer, ReentrancyGuard, Ownable {
using HelperLib for uint;
using DynamicBuffer for bytes;
using LibPRNG for *;
struct LinkedTraitDTO {
uint[] traitA;
uint[] traitB;
}
struct TraitDTO {
string name;
string mimetype;
bytes data;
bool hide;
bool useExistingData;
uint existingDataIndex;
}
struct Trait {
string name;
string mimetype;
bool hide;
}
struct ContractData {
string name;
string description;
string image;
string banner;
string website;
uint royalties;
string royaltiesRecipient;
}
struct WithdrawRecipient {
string name;
string imageUrl;
address recipientAddress;
uint percentage;
}
mapping(uint => address[]) private _traitDataPointers;
mapping(uint => mapping(uint => Trait)) private _traitDetails;
mapping(uint => bool) private _renderTokenOffChain;
mapping(uint => mapping(uint => uint[])) private _linkedTraits;
uint private constant DEVELOPER_FEE = 250; // of 10,000 = 2.5%
uint private constant MAX_BATCH_MINT = 20;
uint[] private primeNumbers = [
809964495083245361527940381794788695820367981156436813625509
];
uint[][1] private tiers;
string[] private layerNames = [unicode"Special"];
bool private shouldWrapSVG = true;
string private backgroundColor = "transparent";
uint private randomSeed;
bytes32 private merkleRoot = 0;
string private networkId = "1";
bool public isContractSealed;
uint public maxSupply = 100;
uint public maxPerAddress = 2;
uint public publicMintPrice = 0.010 ether;
string public baseURI;
bool public isPublicMintActive;
uint public allowListPrice = 0.010 ether;
uint public maxPerAllowList = 2;
bool public isAllowListActive;
ContractData public contractData = ContractData(unicode"Pepe Blocks", unicode"100 Pepe 1/1's. CC0. On-Chain.", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/profile/af5a13a9-20d5-48b9-9571-7f4f5d154fb9", "https://indeliblelabs-prod.s3.us-east-2.amazonaws.com/banner/af5a13a9-20d5-48b9-9571-7f4f5d154fb9", "", 600, "0x240b4b8BF7B50806C1823dE45f6fb85441867d01");
WithdrawRecipient[] public withdrawRecipients;
constructor() ERC721A(unicode"Pepe Blocks", unicode"PBS") {
tiers[0] = [1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1];
randomSeed = uint(
keccak256(
abi.encodePacked(
tx.gasprice,
block.number,
block.timestamp,
block.difficulty,
blockhash(block.number - 1),
msg.sender
)
)
);
}
modifier whenMintActive() {
require(isMintActive(), "Minting is not active");
_;
}
modifier whenUnsealed() {
require(!isContractSealed, "Contract is sealed");
_;
}
receive() external payable {
require(isPublicMintActive, "Public minting is not active");
handleMint(msg.value / publicMintPrice, msg.sender);
}
function rarityGen(uint randinput, uint rarityTier)
internal
view
returns (uint)
{
uint currentLowerBound = 0;
for (uint i = 0; i < tiers[rarityTier].length; i++) {
uint thisPercentage = tiers[rarityTier][i];
if (
randinput >= currentLowerBound &&
randinput < currentLowerBound + thisPercentage
) return i;
currentLowerBound = currentLowerBound + thisPercentage;
}
revert();
}
function getTokenDataId(uint tokenId) internal view returns (uint) {
uint[] memory indices = new uint[](maxSupply);
unchecked {
for (uint i; i < maxSupply; i += 1) {
indices[i] = i;
}
}
LibPRNG.PRNG memory prng;
prng.seed(randomSeed);
prng.shuffle(indices);
return indices[tokenId];
}
function tokenIdToHash(
uint tokenId
) public view returns (string memory) {
require(_exists(tokenId), "Invalid token");
bytes memory hashBytes = DynamicBuffer.allocate(tiers.length * 4);
uint tokenDataId = getTokenDataId(tokenId);
uint[] memory hash = new uint[](tiers.length);
bool[] memory modifiedLayers = new bool[](tiers.length);
uint traitSeed = randomSeed % maxSupply;
for (uint i = 0; i < tiers.length; i++) {
uint traitIndex = hash[i];
if (modifiedLayers[i] == false) {
uint traitRangePosition = ((tokenDataId + i + traitSeed) * primeNumbers[i]) % maxSupply;
traitIndex = rarityGen(traitRangePosition, i);
hash[i] = traitIndex;
}
if (_linkedTraits[i][traitIndex].length > 0) {
hash[_linkedTraits[i][traitIndex][0]] = _linkedTraits[i][traitIndex][1];
modifiedLayers[_linkedTraits[i][traitIndex][0]] = true;
}
}
for (uint i = 0; i < hash.length; i++) {
if (hash[i] < 10) {
hashBytes.appendSafe("00");
} else if (hash[i] < 100) {
hashBytes.appendSafe("0");
}
if (hash[i] > 999) {
hashBytes.appendSafe("999");
} else {
hashBytes.appendSafe(bytes(_toString(hash[i])));
}
}
return string(hashBytes);
}
function handleMint(uint count, address recipient) internal whenMintActive returns (uint) {
uint totalMinted = _totalMinted();
require(count > 0, "Invalid token count");
require(totalMinted + count <= maxSupply, "All tokens are gone");
if (isPublicMintActive) {
if (msg.sender != owner()) {
require(_numberMinted(msg.sender) + count <= maxPerAddress, "Exceeded max mints allowed");
require(count * publicMintPrice == msg.value, "Incorrect amount of ether sent");
}
require(msg.sender == tx.origin, "EOAs only");
}
uint batchCount = count / MAX_BATCH_MINT;
uint remainder = count % MAX_BATCH_MINT;
for (uint i = 0; i < batchCount; i++) {
_mint(recipient, MAX_BATCH_MINT);
}
if (remainder > 0) {
_mint(recipient, remainder);
}
return totalMinted;
}
function mint(uint count, bytes32[] calldata merkleProof)
external
payable
nonReentrant
whenMintActive
returns (uint)
{
if (!isPublicMintActive && msg.sender != owner()) {
require(onAllowList(msg.sender, merkleProof), "Not on allow list");
require(_numberMinted(msg.sender) + count <= maxPerAllowList, "Exceeded max mints allowed");
require(count * allowListPrice == msg.value, "Incorrect amount of ether sent");
}
return handleMint(count, msg.sender);
}
function airdrop(uint count, address recipient)
external
payable
nonReentrant
whenMintActive
returns (uint)
{
require(isPublicMintActive || msg.sender == owner(), "Public minting is not active");
return handleMint(count, recipient);
}
function isMintActive() public view returns (bool) {
return _totalMinted() < maxSupply && (isPublicMintActive || isAllowListActive || msg.sender == owner());
}
function hashToSVG(string memory _hash)
public
view
returns (string memory)
{
uint thisTraitIndex;
bytes memory svgBytes = DynamicBuffer.allocate(1024 * 128);
svgBytes.appendSafe('<svg width="1200" height="1200" viewBox="0 0 1200 1200" version="1.2" xmlns="http://www.w3.org/2000/svg" style="background-color:');
svgBytes.appendSafe(
abi.encodePacked(
backgroundColor,
";background-image:url("
)
);
for (uint i = 0; i < tiers.length - 1; i++) {
thisTraitIndex = HelperLib.parseInt(
HelperLib._substring(_hash, (i * 3), (i * 3) + 3)
);
svgBytes.appendSafe(
abi.encodePacked(
"data:",
_traitDetails[i][thisTraitIndex].mimetype,
";base64,",
Base64.encode(SSTORE2.read(_traitDataPointers[i][thisTraitIndex])),
"),url("
)
);
}
thisTraitIndex = HelperLib.parseInt(
HelperLib._substring(_hash, (tiers.length * 3) - 3, tiers.length * 3)
);
svgBytes.appendSafe(
abi.encodePacked(
"data:",
_traitDetails[tiers.length - 1][thisTraitIndex].mimetype,
";base64,",
Base64.encode(SSTORE2.read(_traitDataPointers[tiers.length - 1][thisTraitIndex])),
');background-repeat:no-repeat;background-size:contain;background-position:center;image-rendering:-webkit-optimize-contrast;-ms-interpolation-mode:nearest-neighbor;image-rendering:-moz-crisp-edges;image-rendering:pixelated;"></svg>'
)
);
return string(
abi.encodePacked(
"data:image/svg+xml;base64,",
Base64.encode(svgBytes)
)
);
}
function hashToMetadata(string memory _hash)
public
view
returns (string memory)
{
bytes memory metadataBytes = DynamicBuffer.allocate(1024 * 128);
metadataBytes.appendSafe("[");
bool afterFirstTrait;
for (uint i = 0; i < tiers.length; i++) {
uint thisTraitIndex = HelperLib.parseInt(
HelperLib._substring(_hash, (i * 3), (i * 3) + 3)
);
if (_traitDetails[i][thisTraitIndex].hide == false) {
if (afterFirstTrait) {
metadataBytes.appendSafe(",");
}
metadataBytes.appendSafe(
abi.encodePacked(
'{"trait_type":"',
layerNames[i],
'","value":"',
_traitDetails[i][thisTraitIndex].name,
'"}'
)
);
if (afterFirstTrait == false) {
afterFirstTrait = true;
}
}
if (i == tiers.length - 1) {
metadataBytes.appendSafe("]");
}
}
return string(metadataBytes);
}
function onAllowList(address addr, bytes32[] calldata merkleProof) public view returns (bool) {
return MerkleProof.verify(merkleProof, merkleRoot, keccak256(abi.encodePacked(addr)));
}
function tokenURI(uint tokenId)
public
view
override
returns (string memory)
{
require(_exists(tokenId), "Invalid token");
require(_traitDataPointers[0].length > 0, "Traits have not been added");
string memory tokenHash = tokenIdToHash(tokenId);
bytes memory jsonBytes = DynamicBuffer.allocate(1024 * 128);
jsonBytes.appendSafe(
abi.encodePacked(
'{"name":"',
contractData.name,
" #",
_toString(tokenId),
'","description":"',
contractData.description,
'",'
)
);
if (bytes(baseURI).length > 0 && _renderTokenOffChain[tokenId]) {
jsonBytes.appendSafe(
abi.encodePacked(
'"image":"',
baseURI,
_toString(tokenId),
"?dna=",
tokenHash,
'&networkId=',
networkId,
'",'
)
);
} else {
string memory svgCode = "";
if (shouldWrapSVG) {
string memory svgString = hashToSVG(tokenHash);
svgCode = string(
abi.encodePacked(
"data:image/svg+xml;base64,",
Base64.encode(
abi.encodePacked(
'<svg width="100%" height="100%" viewBox="0 0 1200 1200" version="1.2" xmlns="http://www.w3.org/2000/svg"><image width="1200" height="1200" href="',
svgString,
'"></image></svg>'
)
)
)
);
} else {
svgCode = hashToSVG(tokenHash);
}
jsonBytes.appendSafe(
abi.encodePacked(
'"image_data":"',
svgCode,
'",'
)
);
}
jsonBytes.appendSafe(
abi.encodePacked(
'"attributes":',
hashToMetadata(tokenHash),
"}"
)
);
return string(
abi.encodePacked(
"data:application/json;base64,",
Base64.encode(jsonBytes)
)
);
}
function contractURI()
public
view
returns (string memory)
{
return string(
abi.encodePacked(
"data:application/json;base64,",
Base64.encode(
abi.encodePacked(
'{"name":"',
contractData.name,
'","description":"',
contractData.description,
'","image":"',
contractData.image,
'","banner":"',
contractData.banner,
'","external_link":"',
contractData.website,
'","seller_fee_basis_points":',
_toString(contractData.royalties),
',"fee_recipient":"',
contractData.royaltiesRecipient,
'"}'
)
)
)
);
}
function tokenIdToSVG(uint tokenId)
public
view
returns (string memory)
{
return hashToSVG(tokenIdToHash(tokenId));
}
function traitDetails(uint layerIndex, uint traitIndex)
public
view
returns (Trait memory)
{
return _traitDetails[layerIndex][traitIndex];
}
function traitData(uint layerIndex, uint traitIndex)
public
view
returns (bytes memory)
{
return SSTORE2.read(_traitDataPointers[layerIndex][traitIndex]);
}
function getLinkedTraits(uint layerIndex, uint traitIndex)
public
view
returns (uint[] memory)
{
return _linkedTraits[layerIndex][traitIndex];
}
function addLayer(uint layerIndex, TraitDTO[] memory traits)
public
onlyOwner
whenUnsealed
{
require(tiers[layerIndex].length == traits.length, "Traits length is incorrect");
address[] memory dataPointers = new address[](traits.length);
for (uint i = 0; i < traits.length; i++) {
if (traits[i].useExistingData) {
dataPointers[i] = dataPointers[traits[i].existingDataIndex];
} else {
dataPointers[i] = SSTORE2.write(traits[i].data);
}
_traitDetails[layerIndex][i] = Trait(traits[i].name, traits[i].mimetype, traits[i].hide);
}
_traitDataPointers[layerIndex] = dataPointers;
return;
}
function addTrait(uint layerIndex, uint traitIndex, TraitDTO memory trait)
public
onlyOwner
whenUnsealed
{
_traitDetails[layerIndex][traitIndex] = Trait(trait.name, trait.mimetype, trait.hide);
address[] memory dataPointers = _traitDataPointers[layerIndex];
if (trait.useExistingData) {
dataPointers[traitIndex] = dataPointers[trait.existingDataIndex];
} else {
dataPointers[traitIndex] = SSTORE2.write(trait.data);
}
_traitDataPointers[layerIndex] = dataPointers;
return;
}
function setLinkedTraits(LinkedTraitDTO[] memory linkedTraits)
public
onlyOwner
whenUnsealed
{
for (uint i = 0; i < linkedTraits.length; i++) {
_linkedTraits[linkedTraits[i].traitA[0]][linkedTraits[i].traitA[1]] = [linkedTraits[i].traitB[0],linkedTraits[i].traitB[1]];
}
}
function setContractData(ContractData memory data) external onlyOwner whenUnsealed {
contractData = data;
}
function setMaxPerAddress(uint max) external onlyOwner {
maxPerAddress = max;
}
function setBaseURI(string memory uri) external onlyOwner {
baseURI = uri;
}
function setBackgroundColor(string memory color) external onlyOwner whenUnsealed {
backgroundColor = color;
}
function setRenderOfTokenId(uint tokenId, bool renderOffChain) external {
require(msg.sender == ownerOf(tokenId), "Not token owner");
_renderTokenOffChain[tokenId] = renderOffChain;
}
function setMerkleRoot(bytes32 newMerkleRoot) external onlyOwner {
merkleRoot = newMerkleRoot;
}
function setMaxPerAllowList(uint max) external onlyOwner {
maxPerAllowList = max;
}
function setAllowListPrice(uint price) external onlyOwner {
allowListPrice = price;
}
function toggleAllowListMint() external onlyOwner {
isAllowListActive = !isAllowListActive;
}
function toggleOperatorFilter() external onlyOwner {
isOperatorFilterEnabled = !isOperatorFilterEnabled;
}
function toggleWrapSVG() external onlyOwner {
shouldWrapSVG = !shouldWrapSVG;
}
function togglePublicMint() external onlyOwner {
isPublicMintActive = !isPublicMintActive;
}
function sealContract() external whenUnsealed onlyOwner {
isContractSealed = true;
}
function withdraw() external onlyOwner nonReentrant {
uint balance = address(this).balance;
uint amount = (balance * (10000 - DEVELOPER_FEE)) / 10000;
uint distAmount = 0;
uint totalDistributionPercentage = 0;
address payable receiver = payable(owner());
address payable dev = payable(0xEA208Da933C43857683C04BC76e3FD331D7bfdf7);
Address.sendValue(dev, balance - amount);
if (withdrawRecipients.length > 0) {
for (uint i = 0; i < withdrawRecipients.length; i++) {
totalDistributionPercentage = totalDistributionPercentage + withdrawRecipients[i].percentage;
address payable currRecepient = payable(withdrawRecipients[i].recipientAddress);
distAmount = (amount * (10000 - withdrawRecipients[i].percentage)) / 10000;
Address.sendValue(currRecepient, amount - distAmount);
}
}
balance = address(this).balance;
Address.sendValue(receiver, balance);
}
function transferFrom(address from, address to, uint tokenId)
public
payable
override
onlyAllowedOperator(from)
{
super.transferFrom(from, to, tokenId);
}
function safeTransferFrom(address from, address to, uint tokenId)
public
payable
override
onlyAllowedOperator(from)
{
super.safeTransferFrom(from, to, tokenId);
}
function safeTransferFrom(address from, address to, uint tokenId, bytes memory data)
public
payable
override
onlyAllowedOperator(from)
{
super.safeTransferFrom(from, to, tokenId, data);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import {OperatorFilterer} from "./OperatorFilterer.sol";
abstract contract DefaultOperatorFilterer is OperatorFilterer {
address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);
constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}// SPDX-License-Identifier: MIT
// Copyright (c) 2021 the ethier authors (github.com/divergencetech/ethier)
pragma solidity >=0.8.0;
/// @title DynamicBuffer
/// @author David Huber (@cxkoda) and Simon Fremaux (@dievardump). See also
/// https://raw.githubusercontent.com/dievardump/solidity-dynamic-buffer
/// @notice This library is used to allocate a big amount of container memory
// which will be subsequently filled without needing to reallocate
/// memory.
/// @dev First, allocate memory.
/// Then use `buffer.appendUnchecked(theBytes)` or `appendSafe()` if
/// bounds checking is required.
library DynamicBuffer {
/// @notice Allocates container space for the DynamicBuffer
/// @param capacity The intended max amount of bytes in the buffer
/// @return buffer The memory location of the buffer
/// @dev Allocates `capacity + 0x60` bytes of space
/// The buffer array starts at the first container data position,
/// (i.e. `buffer = container + 0x20`)
function allocate(uint256 capacity)
internal
pure
returns (bytes memory buffer)
{
assembly {
// Get next-free memory address
let container := mload(0x40)
// Allocate memory by setting a new next-free address
{
// Add 2 x 32 bytes in size for the two length fields
// Add 32 bytes safety space for 32B chunked copy
let size := add(capacity, 0x60)
let newNextFree := add(container, size)
mstore(0x40, newNextFree)
}
// Set the correct container length
{
let length := add(capacity, 0x40)
mstore(container, length)
}
// The buffer starts at idx 1 in the container (0 is length)
buffer := add(container, 0x20)
// Init content with length 0
mstore(buffer, 0)
}
return buffer;
}
/// @notice Appends data to buffer, and update buffer length
/// @param buffer the buffer to append the data to
/// @param data the data to append
/// @dev Does not perform out-of-bound checks (container capacity)
/// for efficiency.
function appendUnchecked(bytes memory buffer, bytes memory data)
internal
pure
{
assembly {
let length := mload(data)
for {
data := add(data, 0x20)
let dataEnd := add(data, length)
let copyTo := add(buffer, add(mload(buffer), 0x20))
} lt(data, dataEnd) {
data := add(data, 0x20)
copyTo := add(copyTo, 0x20)
} {
// Copy 32B chunks from data to buffer.
// This may read over data array boundaries and copy invalid
// bytes, which doesn't matter in the end since we will
// later set the correct buffer length, and have allocated an
// additional word to avoid buffer overflow.
mstore(copyTo, mload(data))
}
// Update buffer length
mstore(buffer, add(mload(buffer), length))
}
}
/// @notice Appends data to buffer, and update buffer length
/// @param buffer the buffer to append the data to
/// @param data the data to append
/// @dev Performs out-of-bound checks and calls `appendUnchecked`.
function appendSafe(bytes memory buffer, bytes memory data) internal pure {
uint256 capacity;
uint256 length;
assembly {
capacity := sub(mload(sub(buffer, 0x20)), 0x40)
length := mload(buffer)
}
require(
length + data.length <= capacity,
"DynamicBuffer: Appending out of bounds."
);
appendUnchecked(buffer, data);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.14;
library HelperLib {
function parseInt(string memory _a)
internal
pure
returns (uint8 _parsedInt)
{
bytes memory bresult = bytes(_a);
uint8 mint = 0;
for (uint8 i = 0; i < bresult.length; i++) {
if (
(uint8(uint8(bresult[i])) >= 48) &&
(uint8(uint8(bresult[i])) <= 57)
) {
mint *= 10;
mint += uint8(bresult[i]) - 48;
}
}
return mint;
}
function _substring(
string memory str,
uint256 startIndex,
uint256 endIndex
) internal pure returns (string memory) {
bytes memory strBytes = bytes(str);
bytes memory result = new bytes(endIndex - startIndex);
for (uint256 i = startIndex; i < endIndex; i++) {
result[i - startIndex] = strBytes[i];
}
return string(result);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
interface IOperatorFilterRegistry {
function isOperatorAllowed(address registrant, address operator) external view returns (bool);
function register(address registrant) external;
function registerAndSubscribe(address registrant, address subscription) external;
function registerAndCopyEntries(address registrant, address registrantToCopy) external;
function updateOperator(address registrant, address operator, bool filtered) external;
function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
function subscribe(address registrant, address registrantToSubscribe) external;
function unsubscribe(address registrant, bool copyExistingEntries) external;
function subscriptionOf(address addr) external returns (address registrant);
function subscribers(address registrant) external returns (address[] memory);
function subscriberAt(address registrant, uint256 index) external returns (address);
function copyEntriesOf(address registrant, address registrantToCopy) external;
function isOperatorFiltered(address registrant, address operator) external returns (bool);
function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
function filteredOperators(address addr) external returns (address[] memory);
function filteredCodeHashes(address addr) external returns (bytes32[] memory);
function filteredOperatorAt(address registrant, uint256 index) external returns (address);
function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
function isRegistered(address addr) external returns (bool);
function codeHashOf(address addr) external returns (bytes32);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
abstract contract OperatorFilterer {
error OperatorNotAllowed(address operator);
bool public isOperatorFilterEnabled = true;
IOperatorFilterRegistry constant operatorFilterRegistry =
IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);
constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
// If an inheriting token contract is deployed to a network without the registry deployed, the modifier
// will not revert, but the contract will need to be registered with the registry once it is deployed in
// order for the modifier to filter addresses.
if (address(operatorFilterRegistry).code.length > 0) {
if (subscribe) {
operatorFilterRegistry.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
} else {
if (subscriptionOrRegistrantToCopy != address(0)) {
operatorFilterRegistry.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
} else {
operatorFilterRegistry.register(address(this));
}
}
}
}
modifier onlyAllowedOperator(address from) virtual {
// Check if filter operator is enabled
if (!isOperatorFilterEnabled) {
_;
return;
}
// Check registry code length to facilitate testing in environments without a deployed registry.
if (address(operatorFilterRegistry).code.length > 0) {
// Allow spending tokens from addresses with balance
// Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
// from an EOA.
if (from == msg.sender) {
_;
return;
}
if (
!(
operatorFilterRegistry.isOperatorAllowed(address(this), msg.sender)
&& operatorFilterRegistry.isOperatorAllowed(address(this), from)
)
) {
revert OperatorNotAllowed(msg.sender);
}
}
_;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./utils/Bytecode.sol";
/**
@title A key-value storage with auto-generated keys for storing chunks of data with a lower write & read cost.
@author Agustin Aguilar <aa@horizon.io>
Readme: https://github.com/0xsequence/sstore2#readme
*/
library SSTORE2 {
error WriteError();
/**
@notice Stores `_data` and returns `pointer` as key for later retrieval
@dev The pointer is a contract address with `_data` as code
@param _data to be written
@return pointer Pointer to the written `_data`
*/
function write(bytes memory _data) internal returns (address pointer) {
// Append 00 to _data so contract can't be called
// Build init code
bytes memory code = Bytecode.creationCodeFor(
abi.encodePacked(
hex'00',
_data
)
);
// Deploy contract using create
assembly { pointer := create(0, add(code, 32), mload(code)) }
// Address MUST be non-zero
if (pointer == address(0)) revert WriteError();
}
/**
@notice Reads the contents of the `_pointer` code as data, skips the first byte
@dev The function is intended for reading pointers generated by `write`
@param _pointer to be read
@return data read from `_pointer` contract
*/
function read(address _pointer) internal view returns (bytes memory) {
return Bytecode.codeAt(_pointer, 1, type(uint256).max);
}
/**
@notice Reads the contents of the `_pointer` code as data, skips the first byte
@dev The function is intended for reading pointers generated by `write`
@param _pointer to be read
@param _start number of bytes to skip
@return data read from `_pointer` contract
*/
function read(address _pointer, uint256 _start) internal view returns (bytes memory) {
return Bytecode.codeAt(_pointer, _start + 1, type(uint256).max);
}
/**
@notice Reads the contents of the `_pointer` code as data, skips the first byte
@dev The function is intended for reading pointers generated by `write`
@param _pointer to be read
@param _start number of bytes to skip
@param _end index before which to end extraction
@return data read from `_pointer` contract
*/
function read(address _pointer, uint256 _start, uint256 _end) internal view returns (bytes memory) {
return Bytecode.codeAt(_pointer, _start + 1, _end + 1);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
library Bytecode {
error InvalidCodeAtRange(uint256 _size, uint256 _start, uint256 _end);
/**
@notice Generate a creation code that results on a contract with `_code` as bytecode
@param _code The returning value of the resulting `creationCode`
@return creationCode (constructor) for new contract
*/
function creationCodeFor(bytes memory _code) internal pure returns (bytes memory) {
/*
0x00 0x63 0x63XXXXXX PUSH4 _code.length size
0x01 0x80 0x80 DUP1 size size
0x02 0x60 0x600e PUSH1 14 14 size size
0x03 0x60 0x6000 PUSH1 00 0 14 size size
0x04 0x39 0x39 CODECOPY size
0x05 0x60 0x6000 PUSH1 00 0 size
0x06 0xf3 0xf3 RETURN
<CODE>
*/
return abi.encodePacked(
hex"63",
uint32(_code.length),
hex"80_60_0E_60_00_39_60_00_F3",
_code
);
}
/**
@notice Returns the size of the code on a given address
@param _addr Address that may or may not contain code
@return size of the code on the given `_addr`
*/
function codeSize(address _addr) internal view returns (uint256 size) {
assembly { size := extcodesize(_addr) }
}
/**
@notice Returns the code of a given address
@dev It will fail if `_end < _start`
@param _addr Address that may or may not contain code
@param _start number of bytes of code to skip on read
@param _end index before which to end extraction
@return oCode read from `_addr` deployed bytecode
Forked from: https://gist.github.com/KardanovIR/fe98661df9338c842b4a30306d507fbd
*/
function codeAt(address _addr, uint256 _start, uint256 _end) internal view returns (bytes memory oCode) {
uint256 csize = codeSize(_addr);
if (csize == 0) return bytes("");
if (_start > csize) return bytes("");
if (_end < _start) revert InvalidCodeAtRange(csize, _start, _end);
unchecked {
uint256 reqSize = _end - _start;
uint256 maxSize = csize - _start;
uint256 size = maxSize < reqSize ? maxSize : reqSize;
assembly {
// allocate output byte array - this could also be done without assembly
// by using o_code = new bytes(size)
oCode := mload(0x40)
// new "memory end" including padding
mstore(0x40, add(oCode, and(add(add(size, 0x20), 0x1f), not(0x1f))))
// store length in memory
mstore(oCode, size)
// actually retrieve the code, this needs assembly
extcodecopy(_addr, add(oCode, 0x20), _start, size)
}
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
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
// OpenZeppelin Contracts (last updated v4.8.0) (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
_nonReentrantBefore();
_;
_nonReentrantAfter();
}
function _nonReentrantBefore() private {
// On the first call to nonReentrant, _status will be _NOT_ENTERED
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
}
function _nonReentrantAfter() private {
// 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
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 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 functionCallWithValue(target, data, 0, "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");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResultFromTarget(target, 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) {
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResultFromTarget(target, success, returndata, errorMessage);
}
/**
* @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
* the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
*
* _Available since v4.8._
*/
function verifyCallResultFromTarget(
address target,
bool success,
bytes memory returndata,
string memory errorMessage
) internal view returns (bytes memory) {
if (success) {
if (returndata.length == 0) {
// only check isContract if the call was successful and the return data is empty
// otherwise we already know that it was a contract
require(isContract(target), "Address: call to non-contract");
}
return returndata;
} else {
_revert(returndata, errorMessage);
}
}
/**
* @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason or 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 {
_revert(returndata, errorMessage);
}
}
function _revert(bytes memory returndata, string memory errorMessage) private pure {
// 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
/// @solidity memory-safe-assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Tree proofs.
*
* The tree and the proofs can be generated using our
* https://github.com/OpenZeppelin/merkle-tree[JavaScript library].
* You will find a quickstart guide in the readme.
*
* WARNING: You should avoid using leaf values that are 64 bytes long prior to
* hashing, or use a hash function other than keccak256 for hashing leaves.
* This is because the concatenation of a sorted pair of internal nodes in
* the merkle tree could be reinterpreted as a leaf value.
* OpenZeppelin's JavaScript library generates merkle trees that are safe
* against this attack out of the box.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Calldata version of {verify}
*
* _Available since v4.7._
*/
function verifyCalldata(
bytes32[] calldata proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProofCalldata(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Calldata version of {processProof}
*
* _Available since v4.7._
*/
function processProofCalldata(bytes32[] calldata proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Returns true if the `leaves` can be simultaneously proven to be a part of a merkle tree defined by
* `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _Available since v4.7._
*/
function multiProofVerify(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProof(proof, proofFlags, leaves) == root;
}
/**
* @dev Calldata version of {multiProofVerify}
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _Available since v4.7._
*/
function multiProofVerifyCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProofCalldata(proof, proofFlags, leaves) == root;
}
/**
* @dev Returns the root of a tree reconstructed from `leaves` and sibling nodes in `proof`. The reconstruction
* proceeds by incrementally reconstructing all inner nodes by combining a leaf/inner node with either another
* leaf/inner node or a proof sibling node, depending on whether each `proofFlags` item is true or false
* respectively.
*
* CAUTION: Not all merkle trees admit multiproofs. To use multiproofs, it is sufficient to ensure that: 1) the tree
* is complete (but not necessarily perfect), 2) the leaves to be proven are in the opposite order they are in the
* tree (i.e., as seen from right to left starting at the deepest layer and continuing at the next layer).
*
* _Available since v4.7._
*/
function processMultiProof(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
/**
* @dev Calldata version of {processMultiProof}.
*
* CAUTION: Not all merkle trees admit multiproofs. See {processMultiProof} for details.
*
* _Available since v4.7._
*/
function processMultiProofCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(leavesLen + proof.length - 1 == totalHashes, "MerkleProof: invalid multiproof");
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++];
bytes32 b = proofFlags[i] ? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++] : proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721A.sol';
/**
* @dev Interface of ERC721 token receiver.
*/
interface ERC721A__IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @title ERC721A
*
* @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
* Non-Fungible Token Standard, including the Metadata extension.
* Optimized for lower gas during batch mints.
*
* Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
* starting from `_startTokenId()`.
*
* Assumptions:
*
* - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
* - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is IERC721A {
// Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
struct TokenApprovalRef {
address value;
}
// =============================================================
// CONSTANTS
// =============================================================
// Mask of an entry in packed address data.
uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
// The bit position of `numberMinted` in packed address data.
uint256 private constant _BITPOS_NUMBER_MINTED = 64;
// The bit position of `numberBurned` in packed address data.
uint256 private constant _BITPOS_NUMBER_BURNED = 128;
// The bit position of `aux` in packed address data.
uint256 private constant _BITPOS_AUX = 192;
// Mask of all 256 bits in packed address data except the 64 bits for `aux`.
uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
// The bit position of `startTimestamp` in packed ownership.
uint256 private constant _BITPOS_START_TIMESTAMP = 160;
// The bit mask of the `burned` bit in packed ownership.
uint256 private constant _BITMASK_BURNED = 1 << 224;
// The bit position of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;
// The bit mask of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;
// The bit position of `extraData` in packed ownership.
uint256 private constant _BITPOS_EXTRA_DATA = 232;
// Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;
// The mask of the lower 160 bits for addresses.
uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;
// The maximum `quantity` that can be minted with {_mintERC2309}.
// This limit is to prevent overflows on the address data entries.
// For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
// is required to cause an overflow, which is unrealistic.
uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;
// The `Transfer` event signature is given by:
// `keccak256(bytes("Transfer(address,address,uint256)"))`.
bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;
// =============================================================
// STORAGE
// =============================================================
// The next token ID to be minted.
uint256 private _currentIndex;
// The number of tokens burned.
uint256 private _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned.
// See {_packedOwnershipOf} implementation for details.
//
// Bits Layout:
// - [0..159] `addr`
// - [160..223] `startTimestamp`
// - [224] `burned`
// - [225] `nextInitialized`
// - [232..255] `extraData`
mapping(uint256 => uint256) private _packedOwnerships;
// Mapping owner address to address data.
//
// Bits Layout:
// - [0..63] `balance`
// - [64..127] `numberMinted`
// - [128..191] `numberBurned`
// - [192..255] `aux`
mapping(address => uint256) private _packedAddressData;
// Mapping from token ID to approved address.
mapping(uint256 => TokenApprovalRef) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// =============================================================
// CONSTRUCTOR
// =============================================================
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
// =============================================================
// TOKEN COUNTING OPERATIONS
// =============================================================
/**
* @dev Returns the starting token ID.
* To change the starting token ID, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Returns the next token ID to be minted.
*/
function _nextTokenId() internal view virtual returns (uint256) {
return _currentIndex;
}
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() public view virtual override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than `_currentIndex - _startTokenId()` times.
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* @dev Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view virtual returns (uint256) {
// Counter underflow is impossible as `_currentIndex` does not decrement,
// and it is initialized to `_startTokenId()`.
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev Returns the total number of tokens burned.
*/
function _totalBurned() internal view virtual returns (uint256) {
return _burnCounter;
}
// =============================================================
// ADDRESS DATA OPERATIONS
// =============================================================
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
}
/**
* Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal virtual {
uint256 packed = _packedAddressData[owner];
uint256 auxCasted;
// Cast `aux` with assembly to avoid redundant masking.
assembly {
auxCasted := aux
}
packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
_packedAddressData[owner] = packed;
}
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
// The interface IDs are constants representing the first 4 bytes
// of the XOR of all function selectors in the interface.
// See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
// (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
return
interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
}
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the token collection symbol.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, it can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
// =============================================================
// OWNERSHIPS OPERATIONS
// =============================================================
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
return address(uint160(_packedOwnershipOf(tokenId)));
}
/**
* @dev Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around over time.
*/
function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnershipOf(tokenId));
}
/**
* @dev Returns the unpacked `TokenOwnership` struct at `index`.
*/
function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnerships[index]);
}
/**
* @dev Initializes the ownership slot minted at `index` for efficiency purposes.
*/
function _initializeOwnershipAt(uint256 index) internal virtual {
if (_packedOwnerships[index] == 0) {
_packedOwnerships[index] = _packedOwnershipOf(index);
}
}
/**
* Returns the packed ownership data of `tokenId`.
*/
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr)
if (curr < _currentIndex) {
uint256 packed = _packedOwnerships[curr];
// If not burned.
if (packed & _BITMASK_BURNED == 0) {
// Invariant:
// There will always be an initialized ownership slot
// (i.e. `ownership.addr != address(0) && ownership.burned == false`)
// before an unintialized ownership slot
// (i.e. `ownership.addr == address(0) && ownership.burned == false`)
// Hence, `curr` will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed will be zero.
while (packed == 0) {
packed = _packedOwnerships[--curr];
}
return packed;
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev Returns the unpacked `TokenOwnership` struct from `packed`.
*/
function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
ownership.addr = address(uint160(packed));
ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
ownership.burned = packed & _BITMASK_BURNED != 0;
ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
}
/**
* @dev Packs ownership data into a single uint256.
*/
function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
}
}
/**
* @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
*/
function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
// For branchless setting of the `nextInitialized` flag.
assembly {
// `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
}
}
// =============================================================
// APPROVAL OPERATIONS
// =============================================================
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) public payable virtual override {
address owner = ownerOf(tokenId);
if (_msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_tokenApprovals[tokenId].value = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId].value;
}
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
}
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted. See {_mint}.
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return
_startTokenId() <= tokenId &&
tokenId < _currentIndex && // If within bounds,
_packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
}
/**
* @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
*/
function _isSenderApprovedOrOwner(
address approvedAddress,
address owner,
address msgSender
) private pure returns (bool result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
msgSender := and(msgSender, _BITMASK_ADDRESS)
// `msgSender == owner || msgSender == approvedAddress`.
result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
}
}
/**
* @dev Returns the storage slot and value for the approved address of `tokenId`.
*/
function _getApprovedSlotAndAddress(uint256 tokenId)
private
view
returns (uint256 approvedAddressSlot, address approvedAddress)
{
TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
// The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
assembly {
approvedAddressSlot := tokenApproval.slot
approvedAddress := sload(approvedAddressSlot)
}
}
// =============================================================
// TRANSFER OPERATIONS
// =============================================================
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public payable virtual override {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// We can directly increment and decrement the balances.
--_packedAddressData[from]; // Updates: `balance -= 1`.
++_packedAddressData[to]; // Updates: `balance += 1`.
// Updates:
// - `address` to the next owner.
// - `startTimestamp` to the timestamp of transfering.
// - `burned` to `false`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
to,
_BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public payable virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public payable virtual override {
transferFrom(from, to, tokenId);
if (to.code.length != 0)
if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @dev Hook that is called before a set of serially-ordered token IDs
* are about to be transferred. This includes minting.
* And also called before burning one token.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token IDs
* have been transferred. This includes minting.
* And also called after one token has been burned.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
*
* `from` - Previous owner of the given token ID.
* `to` - Target address that will receive the token.
* `tokenId` - Token ID to be transferred.
* `_data` - Optional data to send along with the call.
*
* Returns whether the call correctly returned the expected magic value.
*/
function _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
bytes4 retval
) {
return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
// =============================================================
// MINT OPERATIONS
// =============================================================
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event for each mint.
*/
function _mint(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// `balance` and `numberMinted` have a maximum limit of 2**64.
// `tokenId` has a maximum limit of 2**256.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
uint256 toMasked;
uint256 end = startTokenId + quantity;
// Use assembly to loop and emit the `Transfer` event for gas savings.
// The duplicated `log4` removes an extra check and reduces stack juggling.
// The assembly, together with the surrounding Solidity code, have been
// delicately arranged to nudge the compiler into producing optimized opcodes.
assembly {
// Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
toMasked := and(to, _BITMASK_ADDRESS)
// Emit the `Transfer` event.
log4(
0, // Start of data (0, since no data).
0, // End of data (0, since no data).
_TRANSFER_EVENT_SIGNATURE, // Signature.
0, // `address(0)`.
toMasked, // `to`.
startTokenId // `tokenId`.
)
// The `iszero(eq(,))` check ensures that large values of `quantity`
// that overflows uint256 will make the loop run out of gas.
// The compiler will optimize the `iszero` away for performance.
for {
let tokenId := add(startTokenId, 1)
} iszero(eq(tokenId, end)) {
tokenId := add(tokenId, 1)
} {
// Emit the `Transfer` event. Similar to above.
log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
}
}
if (toMasked == 0) revert MintToZeroAddress();
_currentIndex = end;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* This function is intended for efficient minting only during contract creation.
*
* It emits only one {ConsecutiveTransfer} as defined in
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
* instead of a sequence of {Transfer} event(s).
*
* Calling this function outside of contract creation WILL make your contract
* non-compliant with the ERC721 standard.
* For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
* {ConsecutiveTransfer} event is only permissible during contract creation.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {ConsecutiveTransfer} event.
*/
function _mintERC2309(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are unrealistic due to the above check for `quantity` to be below the limit.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);
_currentIndex = startTokenId + quantity;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* See {_mint}.
*
* Emits a {Transfer} event for each mint.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal virtual {
_mint(to, quantity);
unchecked {
if (to.code.length != 0) {
uint256 end = _currentIndex;
uint256 index = end - quantity;
do {
if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (index < end);
// Reentrancy protection.
if (_currentIndex != end) revert();
}
}
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity) internal virtual {
_safeMint(to, quantity, '');
}
// =============================================================
// BURN OPERATIONS
// =============================================================
/**
* @dev Equivalent to `_burn(tokenId, false)`.
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
address from = address(uint160(prevOwnershipPacked));
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
if (approvalCheck) {
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// Updates:
// - `balance -= 1`.
// - `numberBurned += 1`.
//
// We can directly decrement the balance, and increment the number burned.
// This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
_packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;
// Updates:
// - `address` to the last owner.
// - `startTimestamp` to the timestamp of burning.
// - `burned` to `true`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
from,
(_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
// =============================================================
// EXTRA DATA OPERATIONS
// =============================================================
/**
* @dev Directly sets the extra data for the ownership data `index`.
*/
function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
uint256 packed = _packedOwnerships[index];
if (packed == 0) revert OwnershipNotInitializedForExtraData();
uint256 extraDataCasted;
// Cast `extraData` with assembly to avoid redundant masking.
assembly {
extraDataCasted := extraData
}
packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
_packedOwnerships[index] = packed;
}
/**
* @dev Called during each token transfer to set the 24bit `extraData` field.
* Intended to be overridden by the cosumer contract.
*
* `previousExtraData` - the value of `extraData` before transfer.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _extraData(
address from,
address to,
uint24 previousExtraData
) internal view virtual returns (uint24) {}
/**
* @dev Returns the next extra data for the packed ownership data.
* The returned result is shifted into position.
*/
function _nextExtraData(
address from,
address to,
uint256 prevOwnershipPacked
) private view returns (uint256) {
uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
}
// =============================================================
// OTHER OPERATIONS
// =============================================================
/**
* @dev Returns the message sender (defaults to `msg.sender`).
*
* If you are writing GSN compatible contracts, you need to override this function.
*/
function _msgSenderERC721A() internal view virtual returns (address) {
return msg.sender;
}
/**
* @dev Converts a uint256 to its ASCII string decimal representation.
*/
function _toString(uint256 value) internal pure virtual returns (string memory str) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit), but
// we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
// We will need 1 word for the trailing zeros padding, 1 word for the length,
// and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
let m := add(mload(0x40), 0xa0)
// Update the free memory pointer to allocate.
mstore(0x40, m)
// Assign the `str` to the end.
str := sub(m, 0x20)
// Zeroize the slot after the string.
mstore(str, 0)
// Cache the end of the memory to calculate the length later.
let end := str
// We write the string from rightmost digit to leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// prettier-ignore
for { let temp := value } 1 {} {
str := sub(str, 1)
// Write the character to the pointer.
// The ASCII index of the '0' character is 48.
mstore8(str, add(48, mod(temp, 10)))
// Keep dividing `temp` until zero.
temp := div(temp, 10)
// prettier-ignore
if iszero(temp) { break }
}
let length := sub(end, str)
// Move the pointer 32 bytes leftwards to make room for the length.
str := sub(str, 0x20)
// Store the length.
mstore(str, length)
}
}
}// SPDX-License-Identifier: MIT
// ERC721A Contracts v4.2.3
// Creator: Chiru Labs
pragma solidity ^0.8.4;
/**
* @dev Interface of ERC721A.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
/**
* The quantity of tokens minted must be more than zero.
*/
error MintZeroQuantity();
/**
* The token does not exist.
*/
error OwnerQueryForNonexistentToken();
/**
* The caller must own the token or be an approved operator.
*/
error TransferCallerNotOwnerNorApproved();
/**
* The token must be owned by `from`.
*/
error TransferFromIncorrectOwner();
/**
* Cannot safely transfer to a contract that does not implement the
* ERC721Receiver interface.
*/
error TransferToNonERC721ReceiverImplementer();
/**
* Cannot transfer to the zero address.
*/
error TransferToZeroAddress();
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
/**
* The `quantity` minted with ERC2309 exceeds the safety limit.
*/
error MintERC2309QuantityExceedsLimit();
/**
* The `extraData` cannot be set on an unintialized ownership slot.
*/
error OwnershipNotInitializedForExtraData();
// =============================================================
// STRUCTS
// =============================================================
struct TokenOwnership {
// The address of the owner.
address addr;
// Stores the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
// Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
uint24 extraData;
}
// =============================================================
// TOKEN COUNTERS
// =============================================================
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() external view returns (uint256);
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
// =============================================================
// IERC721
// =============================================================
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables
* (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`,
* checking first that contract recipients are aware of the ERC721 protocol
* to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move
* this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external payable;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external payable;
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom}
* whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external payable;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external payable;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
// =============================================================
// IERC2309
// =============================================================
/**
* @dev Emitted when tokens in `fromTokenId` to `toTokenId`
* (inclusive) is transferred from `from` to `to`, as defined in the
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
*
* See {_mintERC2309} for more details.
*/
event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
/// @notice Library to encode strings in Base64.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/Base64.sol)
/// @author Modified from Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/Base64.sol)
/// @author Modified from (https://github.com/Brechtpd/base64/blob/main/base64.sol) by Brecht Devos - <brecht@loopring.org>.
library Base64 {
/// @dev Encodes `data` using the base64 encoding described in RFC 4648.
/// See: https://datatracker.ietf.org/doc/html/rfc4648
/// @param fileSafe Whether to replace '+' with '-' and '/' with '_'.
/// @param noPadding Whether to strip away the padding.
function encode(bytes memory data, bool fileSafe, bool noPadding)
internal
pure
returns (string memory result)
{
/// @solidity memory-safe-assembly
assembly {
let dataLength := mload(data)
if dataLength {
// Multiply by 4/3 rounded up.
// The `shl(2, ...)` is equivalent to multiplying by 4.
let encodedLength := shl(2, div(add(dataLength, 2), 3))
// Set `result` to point to the start of the free memory.
result := mload(0x40)
// Store the table into the scratch space.
// Offsetted by -1 byte so that the `mload` will load the character.
// We will rewrite the free memory pointer at `0x40` later with
// the allocated size.
// The magic constant 0x0230 will translate "-_" + "+/".
mstore(0x1f, "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdef")
mstore(0x3f, sub("ghijklmnopqrstuvwxyz0123456789-_", mul(iszero(fileSafe), 0x0230)))
// Skip the first slot, which stores the length.
let ptr := add(result, 0x20)
let end := add(ptr, encodedLength)
// Run over the input, 3 bytes at a time.
for {} 1 {} {
data := add(data, 3) // Advance 3 bytes.
let input := mload(data)
// Write 4 bytes. Optimized for fewer stack operations.
mstore8(ptr, mload(and(shr(18, input), 0x3F)))
mstore8(add(ptr, 1), mload(and(shr(12, input), 0x3F)))
mstore8(add(ptr, 2), mload(and(shr(6, input), 0x3F)))
mstore8(add(ptr, 3), mload(and(input, 0x3F)))
ptr := add(ptr, 4) // Advance 4 bytes.
if iszero(lt(ptr, end)) { break }
}
let r := mod(dataLength, 3)
switch noPadding
case 0 {
// Offset `ptr` and pad with '='. We can simply write over the end.
mstore8(sub(ptr, iszero(iszero(r))), 0x3d) // Pad at `ptr - 1` if `r > 0`.
mstore8(sub(ptr, shl(1, eq(r, 1))), 0x3d) // Pad at `ptr - 2` if `r == 1`.
// Write the length of the string.
mstore(result, encodedLength)
}
default {
// Write the length of the string.
mstore(result, sub(encodedLength, add(iszero(iszero(r)), eq(r, 1))))
}
// Allocate the memory for the string.
// Add 31 and mask with `not(31)` to round the
// free memory pointer up the next multiple of 32.
mstore(0x40, and(add(end, 31), not(31)))
}
}
}
/// @dev Encodes `data` using the base64 encoding described in RFC 4648.
/// Equivalent to `encode(data, false, false)`.
function encode(bytes memory data) internal pure returns (string memory result) {
result = encode(data, false, false);
}
/// @dev Encodes `data` using the base64 encoding described in RFC 4648.
/// Equivalent to `encode(data, fileSafe, false)`.
function encode(bytes memory data, bool fileSafe)
internal
pure
returns (string memory result)
{
result = encode(data, fileSafe, false);
}
/// @dev Encodes base64 encoded `data`.
///
/// Supports:
/// - RFC 4648 (both standard and file-safe mode).
/// - RFC 3501 (63: ',').
///
/// Does not support:
/// - Line breaks.
///
/// Note: For performance reasons,
/// this function will NOT revert on invalid `data` inputs.
/// Outputs for invalid inputs will simply be undefined behaviour.
/// It is the user's responsibility to ensure that the `data`
/// is a valid base64 encoded string.
function decode(string memory data) internal pure returns (bytes memory result) {
/// @solidity memory-safe-assembly
assembly {
let dataLength := mload(data)
if dataLength {
let end := add(data, dataLength)
let decodedLength := mul(shr(2, dataLength), 3)
switch and(dataLength, 3)
case 0 {
// If padded.
// forgefmt: disable-next-item
decodedLength := sub(
decodedLength,
add(eq(and(mload(end), 0xFF), 0x3d), eq(and(mload(end), 0xFFFF), 0x3d3d))
)
}
default {
// If non-padded.
decodedLength := add(decodedLength, sub(and(dataLength, 3), 1))
}
result := mload(0x40)
// Write the length of the string.
mstore(result, decodedLength)
// Skip the first slot, which stores the length.
let ptr := add(result, 0x20)
// Load the table into the scratch space.
// Constants are optimized for smaller bytecode with zero gas overhead.
// `m` also doubles as the mask of the upper 6 bits.
let m := 0xfc000000fc00686c7074787c8084888c9094989ca0a4a8acb0b4b8bcc0c4c8cc
mstore(0x5b, m)
mstore(0x3b, 0x04080c1014181c2024282c3034383c4044484c5054585c6064)
mstore(0x1a, 0xf8fcf800fcd0d4d8dce0e4e8ecf0f4)
for {} 1 {} {
// Read 4 bytes.
data := add(data, 4)
let input := mload(data)
// Write 3 bytes.
// forgefmt: disable-next-item
mstore(ptr, or(
and(m, mload(byte(28, input))),
shr(6, or(
and(m, mload(byte(29, input))),
shr(6, or(
and(m, mload(byte(30, input))),
shr(6, mload(byte(31, input)))
))
))
))
ptr := add(ptr, 3)
if iszero(lt(data, end)) { break }
}
// Allocate the memory for the string.
// Add 32 + 31 and mask with `not(31)` to round the
// free memory pointer up the next multiple of 32.
mstore(0x40, and(add(add(result, decodedLength), 63), not(31)))
// Restore the zero slot.
mstore(0x60, 0)
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
/// @notice Library for generating psuedorandom numbers.
/// @author Solady (https://github.com/vectorized/solady/blob/main/src/utils/LibPRNG.sol)
library LibPRNG {
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* STRUCTS */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
/// @dev A psuedorandom number state in memory.
struct PRNG {
uint256 state;
}
/*´:°•.°+.*•´.*:˚.°*.˚•´.°:°•.°•.*•´.*:˚.°*.˚•´.°:°•.°+.*•´.*:*/
/* OPERATIONS */
/*.•°:°.´+˚.*°.˚:*.´•*.+°.•°:´*.´•*.•°.•°:°.´:•˚°.*°.˚:*.´+°.•*/
/// @dev Seeds the `prng` with `state`.
function seed(PRNG memory prng, uint256 state) internal pure {
/// @solidity memory-safe-assembly
assembly {
mstore(prng, state)
}
}
/// @dev Returns the next psuedorandom uint256.
/// All bits of the returned uint256 pass the NIST Statistical Test Suite.
function next(PRNG memory prng) internal pure returns (uint256 result) {
// We simply use `keccak256` for a great balance between
// runtime gas costs, bytecode size, and statistical properties.
//
// A high-quality LCG with a 32-byte state
// is only about 30% more gas efficient during runtime,
// but requires a 32-byte multiplier, which can cause bytecode bloat
// when this function is inlined.
//
// Using this method is about 2x more efficient than
// `nextRandomness = uint256(keccak256(abi.encode(randomness)))`.
/// @solidity memory-safe-assembly
assembly {
result := keccak256(prng, 0x20)
mstore(prng, result)
}
}
/// @dev Returns a psuedorandom uint256, uniformly distributed
/// between 0 (inclusive) and `upper` (exclusive).
/// If your modulus is big, this method is recommended
/// for uniform sampling to avoid modulo bias.
/// For uniform sampling across all uint256 values,
/// or for small enough moduli such that the bias is neligible,
/// use {next} instead.
function uniform(PRNG memory prng, uint256 upper) internal pure returns (uint256 result) {
/// @solidity memory-safe-assembly
assembly {
for {} 1 {} {
result := keccak256(prng, 0x20)
mstore(prng, result)
if iszero(lt(result, mod(sub(0, upper), upper))) { break }
}
result := mod(result, upper)
}
}
/// @dev Shuffles the array in-place with Fisher-Yates shuffle.
function shuffle(PRNG memory prng, uint256[] memory a) internal pure {
/// @solidity memory-safe-assembly
assembly {
let n := mload(a)
let w := not(0)
let mask := shr(128, w)
if n {
for { a := add(a, 0x20) } 1 {} {
// We can just directly use `keccak256`, cuz
// the other approaches don't save much.
let r := keccak256(prng, 0x20)
mstore(prng, r)
// Note that there will be a very tiny modulo bias
// if the length of the array is not a power of 2.
// For all practical purposes, it is negligible
// and will not be a fairness or security concern.
{
let j := add(a, shl(5, mod(shr(128, r), n)))
n := add(n, w) // `sub(n, 1)`.
if iszero(n) { break }
let i := add(a, shl(5, n))
let t := mload(i)
mstore(i, mload(j))
mstore(j, t)
}
{
let j := add(a, shl(5, mod(and(r, mask), n)))
n := add(n, w) // `sub(n, 1)`.
if iszero(n) { break }
let i := add(a, shl(5, n))
let t := mload(i)
mstore(i, mload(j))
mstore(j, t)
}
}
}
}
}
}{
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"optimizer": {
"enabled": true,
"runs": 200
},
"metadata": {
"useLiteralContent": true
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[{"internalType":"uint256","name":"_size","type":"uint256"},{"internalType":"uint256","name":"_start","type":"uint256"},{"internalType":"uint256","name":"_end","type":"uint256"}],"name":"InvalidCodeAtRange","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WriteError","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint256","name":"layerIndex","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bool","name":"hide","type":"bool"},{"internalType":"bool","name":"useExistingData","type":"bool"},{"internalType":"uint256","name":"existingDataIndex","type":"uint256"}],"internalType":"struct Indelible.TraitDTO[]","name":"traits","type":"tuple[]"}],"name":"addLayer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"layerIndex","type":"uint256"},{"internalType":"uint256","name":"traitIndex","type":"uint256"},{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"bool","name":"hide","type":"bool"},{"internalType":"bool","name":"useExistingData","type":"bool"},{"internalType":"uint256","name":"existingDataIndex","type":"uint256"}],"internalType":"struct Indelible.TraitDTO","name":"trait","type":"tuple"}],"name":"addTrait","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"airdrop","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"allowListPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractData","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"image","type":"string"},{"internalType":"string","name":"banner","type":"string"},{"internalType":"string","name":"website","type":"string"},{"internalType":"uint256","name":"royalties","type":"uint256"},{"internalType":"string","name":"royaltiesRecipient","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"layerIndex","type":"uint256"},{"internalType":"uint256","name":"traitIndex","type":"uint256"}],"name":"getLinkedTraits","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"hashToMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_hash","type":"string"}],"name":"hashToSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isContractSealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOperatorFilterEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAllowList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"onAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"sealContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setAllowListPrice","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":"string","name":"color","type":"string"}],"name":"setBackgroundColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"description","type":"string"},{"internalType":"string","name":"image","type":"string"},{"internalType":"string","name":"banner","type":"string"},{"internalType":"string","name":"website","type":"string"},{"internalType":"uint256","name":"royalties","type":"uint256"},{"internalType":"string","name":"royaltiesRecipient","type":"string"}],"internalType":"struct Indelible.ContractData","name":"data","type":"tuple"}],"name":"setContractData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint256[]","name":"traitA","type":"uint256[]"},{"internalType":"uint256[]","name":"traitB","type":"uint256[]"}],"internalType":"struct Indelible.LinkedTraitDTO[]","name":"linkedTraits","type":"tuple[]"}],"name":"setLinkedTraits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxPerAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newMerkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bool","name":"renderOffChain","type":"bool"}],"name":"setRenderOfTokenId","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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAllowListMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleOperatorFilter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWrapSVG","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIdToHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenIdToSVG","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"layerIndex","type":"uint256"},{"internalType":"uint256","name":"traitIndex","type":"uint256"}],"name":"traitData","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"layerIndex","type":"uint256"},{"internalType":"uint256","name":"traitIndex","type":"uint256"}],"name":"traitDetails","outputs":[{"components":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"mimetype","type":"string"},{"internalType":"bool","name":"hide","type":"bool"}],"internalType":"struct Indelible.Trait","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"withdrawRecipients","outputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"imageUrl","type":"string"},{"internalType":"address","name":"recipientAddress","type":"address"},{"internalType":"uint256","name":"percentage","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6008805460ff1916600190811790915560a0604052788108e7e6e2da324e8e65ce5a4789ea242349c58d357d3938a560809081526200004291600f91906200088b565b50604080516060810182526007602082019081526614dc1958da585b60ca1b928201929092529081526200007b906011906001620008e6565b506012805460ff1916600117905560408051808201909152600b8082526a1d1c985b9cdc185c995b9d60aa1b6020909201918252620000bd9160139162000946565b506000601555604080518082019091526001808252603160f81b6020909201918252620000ed9160169162000946565b5060646018556002601955662386f26fc10000601a55662386f26fc10000601d556002601e556040518060e001604052806040518060400160405280600b81526020016a5065706520426c6f636b7360a81b81525081526020016040518060400160405280601e81526020017f313030205065706520312f3127732e204343302e204f6e2d436861696e2e000081525081526020016040518060a00160405280606281526020016200631b6062913981526020016040518060a0016040528060618152602001620062ba60619139815260200160405180602001604052806000815250815260200161025881526020016040518060600160405280602a815260200162006290602a91399052805180516020916200021091839182019062000946565b5060208281015180516200022b926001850192019062000946565b50604082015180516200024991600284019160209091019062000946565b50606082015180516200026791600384019160209091019062000946565b50608082015180516200028591600484019160209091019062000946565b5060a0820151600582015560c08201518051620002ad91600684019160209091019062000946565b505050348015620002bd57600080fd5b50604080518082018252600b81526a5065706520426c6f636b7360a81b60208083019182528351808501909452600384526250425360e81b908401528151733cc6cdda760b79bafa08df41ecfa224f810dceb693600193929091620003259160029162000946565b5080516200033b90600390602084019062000946565b506000805550506daaeb6d7670e522a718067333cd4e3b1562000487578015620003d557604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b158015620003b657600080fd5b505af1158015620003cb573d6000803e3d6000fd5b5050505062000487565b6001600160a01b03821615620004265760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af2903906044016200039b565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200046d57600080fd5b505af115801562000482573d6000803e3d6000fd5b505050505b50506001600955620004993362000839565b60408051610c8081018252600180825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e08101829052610100810182905261012081018290526101408101829052610160810182905261018081018290526101a081018290526101c081018290526101e08101829052610200810182905261022081018290526102408101829052610260810182905261028081018290526102a081018290526102c081018290526102e08101829052610300810182905261032081018290526103408101829052610360810182905261038081018290526103a081018290526103c081018290526103e08101829052610400810182905261042081018290526104408101829052610460810182905261048081018290526104a081018290526104c081018290526104e08101829052610500810182905261052081018290526105408101829052610560810182905261058081018290526105a081018290526105c081018290526105e08101829052610600810182905261062081018290526106408101829052610660810182905261068081018290526106a081018290526106c081018290526106e08101829052610700810182905261072081018290526107408101829052610760810182905261078081018290526107a081018290526107c081018290526107e08101829052610800810182905261082081018290526108408101829052610860810182905261088081018290526108a081018290526108c081018290526108e08101829052610900810182905261092081018290526109408101829052610960810182905261098081018290526109a081018290526109c081018290526109e08101829052610a008101829052610a208101829052610a408101829052610a608101829052610a808101829052610aa08101829052610ac08101829052610ae08101829052610b008101829052610b208101829052610b408101829052610b608101829052610b808101829052610ba08101829052610bc08101829052610be08101829052610c008101829052610c208101829052610c408101829052610c60810191909152620007ca906010906064620009c3565b503a434244620007dc60018462000a80565b6040805160208101969096528501939093526060808501929092526080840152904060a083015233901b6001600160601b03191660c082015260d40160408051601f19818403018152919052805160209091012060145562000ae2565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054828255906000526020600020908101928215620008d4579160200282015b82811115620008d457825182906001600160c81b0316905591602001919060010190620008ac565b50620008e292915062000a06565b5090565b82805482825590600052602060002090810192821562000938579160200282015b828111156200093857825180516200092791849160209091019062000946565b509160200191906001019062000907565b50620008e292915062000a1d565b828054620009549062000aa6565b90600052602060002090601f016020900481019282620009785760008555620008d4565b82601f106200099357805160ff1916838001178555620008d4565b82800160010185558215620008d4579182015b82811115620008d4578251825591602001919060010190620009a6565b828054828255906000526020600020908101928215620008d4579160200282015b82811115620008d4578251829060ff16905591602001919060010190620009e4565b5b80821115620008e2576000815560010162000a07565b80821115620008e257600062000a34828262000a3e565b5060010162000a1d565b50805462000a4c9062000aa6565b6000825580601f1062000a5d575050565b601f01602090049060005260206000209081019062000a7d919062000a06565b50565b60008282101562000aa157634e487b7160e01b600052601160045260246000fd5b500390565b600181811c9082168062000abb57607f821691505b60208210810362000adc57634e487b7160e01b600052602260045260246000fd5b50919050565b61579e8062000af26000396000f3fe6080604052600436106103855760003560e01c80636df9fa88116101d1578063b456806611610102578063da9e40ea116100a0578063e8a3d4851161006f578063e8a3d48514610a0e578063e985e9c514610a23578063ea84b59b14610a6c578063f2fde38b14610a9957600080fd5b8063da9e40ea14610996578063dbe9875f146109ab578063dc53fd92146109cb578063dc9867ce146109e157600080fd5b8063bc63f02e116100dc578063bc63f02e1461092d578063c11feac114610940578063c87b56dd14610960578063d5abeb011461098057600080fd5b8063b4568066146108e7578063b88d4fde14610907578063ba41b0c61461091a57600080fd5b80638da5cb5b1161016f57806397d194d71161014957806397d194d714610871578063a22cb46514610891578063a24e5153146108b1578063b32c5680146108c757600080fd5b80638da5cb5b146108295780638fb4e8a91461084757806395d89b411461085c57600080fd5b80637bddd65b116101ab5780637bddd65b146107995780637cb64759146107b9578063876171dc146107d957806389ce30741461080957600080fd5b80636df9fa881461074457806370a0823114610764578063715018a61461078457600080fd5b80634047638d116102b65780635b92ac0d11610254578063639814e011610223578063639814e0146106e457806366e33870146106fa57806368bd580e1461071a5780636c0360eb1461072f57600080fd5b80635b92ac0d1461066f5780636190e1da14610684578063621a1f74146106a45780636352211e146106c457600080fd5b80634ca1a0f2116102905780634ca1a0f2146105fb578063542d50411461061b57806355f804b31461063557806356b955621461065557600080fd5b80634047638d146105be57806342842e0e146105d35780634920154b146105e657600080fd5b806318160ddd116103235780632d6b6224116102fd5780632d6b62241461055157806336cd2edd1461056b5780633cca2420146105815780633ccfd60b146105a957600080fd5b806318160ddd1461050157806323b872dd1461052457806329fc6bae1461053757600080fd5b8063095ea7b31161035f578063095ea7b31461048e57806309dbabca146104a15780630f3debbe146104c1578063180c2cc0146104e157600080fd5b806301ffc9a7146103ff57806306fdde0314610434578063081812fc1461045657600080fd5b366103fa57601c5460ff166103e15760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b6103f8601a54346103f29190614275565b33610ab9565b005b600080fd5b34801561040b57600080fd5b5061041f61041a36600461429f565b610d06565b60405190151581526020015b60405180910390f35b34801561044057600080fd5b50610449610d54565b60405161042b9190614314565b34801561046257600080fd5b50610476610471366004614327565b610de6565b6040516001600160a01b03909116815260200161042b565b6103f861049c36600461435c565b610e2a565b3480156104ad57600080fd5b506104496104bc366004614386565b610eca565b3480156104cd57600080fd5b506103f86104dc3660046144c9565b610f12565b3480156104ed57600080fd5b506103f86104fc3660046146cb565b610fee565b34801561050d57600080fd5b50600154600054035b60405190815260200161042b565b6103f861053236600461471a565b6111c6565b34801561054357600080fd5b50601f5461041f9060ff1681565b34801561055d57600080fd5b50601c5461041f9060ff1681565b34801561057757600080fd5b50610516601e5481565b34801561058d57600080fd5b50610596611332565b60405161042b9796959493929190614756565b3480156105b557600080fd5b506103f8611690565b3480156105ca57600080fd5b506103f8611818565b6103f86105e136600461471a565b611834565b3480156105f257600080fd5b506103f861199b565b34801561060757600080fd5b506103f8610616366004614327565b6119b7565b34801561062757600080fd5b5060175461041f9060ff1681565b34801561064157600080fd5b506103f86106503660046147df565b6119c4565b34801561066157600080fd5b5060085461041f9060ff1681565b34801561067b57600080fd5b5061041f6119e3565b34801561069057600080fd5b506103f861069f3660046147df565b611a26565b3480156106b057600080fd5b506104496106bf366004614327565b611a64565b3480156106d057600080fd5b506104766106df366004614327565b611e57565b3480156106f057600080fd5b5061051660195481565b34801561070657600080fd5b506104496107153660046147df565b611e62565b34801561072657600080fd5b506103f8611ffa565b34801561073b57600080fd5b50610449612034565b34801561075057600080fd5b506103f861075f366004614327565b6120c2565b34801561077057600080fd5b5061051661077f366004614813565b6120cf565b34801561079057600080fd5b506103f861211d565b3480156107a557600080fd5b506103f86107b4366004614327565b61212f565b3480156107c557600080fd5b506103f86107d4366004614327565b61213c565b3480156107e557600080fd5b506107f96107f4366004614327565b612149565b60405161042b949392919061482e565b34801561081557600080fd5b506104496108243660046147df565b6122a3565b34801561083557600080fd5b50600a546001600160a01b0316610476565b34801561085357600080fd5b506103f86124b9565b34801561086857600080fd5b506104496124d5565b34801561087d57600080fd5b506103f861088c366004614893565b6124e4565b34801561089d57600080fd5b506103f86108ac366004614954565b6127b9565b3480156108bd57600080fd5b50610516601d5481565b3480156108d357600080fd5b5061041f6108e23660046149d6565b612825565b3480156108f357600080fd5b506103f8610902366004614a8e565b6128a5565b6103f8610915366004614b99565b612a12565b610516610928366004614c00565b612b81565b61051661093b366004614c32565b612d08565b34801561094c57600080fd5b5061044961095b366004614327565b612db3565b34801561096c57600080fd5b5061044961097b366004614327565b612dc1565b34801561098c57600080fd5b5061051660185481565b3480156109a257600080fd5b506103f8612ff2565b3480156109b757600080fd5b506103f86109c6366004614c5e565b61300e565b3480156109d757600080fd5b50610516601a5481565b3480156109ed57600080fd5b50610a016109fc366004614386565b613089565b60405161042b9190614c83565b348015610a1a57600080fd5b506104496130f4565b348015610a2f57600080fd5b5061041f610a3e366004614cc7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a7857600080fd5b50610a8c610a87366004614386565b613152565b60405161042b9190614cf1565b348015610aa557600080fd5b506103f8610ab4366004614813565b6132cd565b6000610ac36119e3565b610adf5760405162461bcd60e51b81526004016103d890614d43565b60005483610b255760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b60448201526064016103d8565b601854610b328583614d72565b1115610b765760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b60448201526064016103d8565b601c5460ff1615610ca357600a546001600160a01b03163314610c685760195433600090815260056020526040908190205486911c6001600160401b0316610bbe9190614d72565b1115610c0c5760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103d8565b34601a5485610c1b9190614d8a565b14610c685760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103d8565b333214610ca35760405162461bcd60e51b8152602060048201526009602482015268454f4173206f6e6c7960b81b60448201526064016103d8565b6000610cb0601486614275565b90506000610cbf601487614da9565b905060005b82811015610ce957610cd7866014613346565b80610ce181614dbd565b915050610cc4565b508015610cfa57610cfa8582613346565b50909150505b92915050565b60006301ffc9a760e01b6001600160e01b031983161480610d3757506380ac58cd60e01b6001600160e01b03198316145b80610d005750506001600160e01b031916635b5e139f60e01b1490565b606060028054610d6390614dd6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8f90614dd6565b8015610ddc5780601f10610db157610100808354040283529160200191610ddc565b820191906000526020600020905b815481529060010190602001808311610dbf57829003601f168201915b5050505050905090565b6000610df182613444565b610e0e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610e3582611e57565b9050336001600160a01b03821614610e6e57610e518133610a3e565b610e6e576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600b602052604090208054606091610f0b9184908110610ef157610ef1614e0a565b6000918252602090912001546001600160a01b031661346b565b9392505050565b610f1a61347b565b60175460ff1615610f3d5760405162461bcd60e51b81526004016103d890614e20565b805180518291602091610f5591839190820190614121565b506020828101518051610f6e9260018501920190614121565b5060408201518051610f8a916002840191602090910190614121565b5060608201518051610fa6916003840191602090910190614121565b5060808201518051610fc2916004840191602090910190614121565b5060a0820151600582015560c08201518051610fe8916006840191602090910190614121565b50505050565b610ff661347b565b60175460ff16156110195760405162461bcd60e51b81526004016103d890614e20565b60408051606080820183528351825260208085015181840152908401511515828401526000868152600c825283812086825282529290922081518051929391926110669284920190614121565b50602082810151805161107f9260018501920190614121565b50604091820151600291909101805460ff19169115159190911790556000848152600b6020908152828220805484518184028101840190955280855292939290918301828280156110f957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116110db575b5050505050905081608001511561115f57808260a001518151811061112057611120614e0a565b602002602001015181848151811061113a5761113a614e0a565b60200260200101906001600160a01b031690816001600160a01b03168152505061119f565b61116c82604001516134d5565b81848151811061117e5761117e614e0a565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6000848152600b6020908152604090912082516111be928401906141a5565b50505b505050565b600854839060ff166111e2576111dd84848461353a565b610fe8565b6daaeb6d7670e522a718067333cd4e3b1561132757336001600160a01b03821603611212576111dd84848461353a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611261573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112859190614e4c565b80156113085750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113089190614e4c565b61132757604051633b79c77360e21b81523360048201526024016103d8565b610fe884848461353a565b60208054819061134190614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461136d90614dd6565b80156113ba5780601f1061138f576101008083540402835291602001916113ba565b820191906000526020600020905b81548152906001019060200180831161139d57829003601f168201915b5050505050908060010180546113cf90614dd6565b80601f01602080910402602001604051908101604052809291908181526020018280546113fb90614dd6565b80156114485780601f1061141d57610100808354040283529160200191611448565b820191906000526020600020905b81548152906001019060200180831161142b57829003601f168201915b50505050509080600201805461145d90614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461148990614dd6565b80156114d65780601f106114ab576101008083540402835291602001916114d6565b820191906000526020600020905b8154815290600101906020018083116114b957829003601f168201915b5050505050908060030180546114eb90614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461151790614dd6565b80156115645780601f1061153957610100808354040283529160200191611564565b820191906000526020600020905b81548152906001019060200180831161154757829003601f168201915b50505050509080600401805461157990614dd6565b80601f01602080910402602001604051908101604052809291908181526020018280546115a590614dd6565b80156115f25780601f106115c7576101008083540402835291602001916115f2565b820191906000526020600020905b8154815290600101906020018083116115d557829003601f168201915b50505050509080600501549080600601805461160d90614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461163990614dd6565b80156116865780601f1061165b57610100808354040283529160200191611686565b820191906000526020600020905b81548152906001019060200180831161166957829003601f168201915b5050505050905087565b61169861347b565b6116a06136d2565b4760006127106116b160fa82614e69565b6116bb9084614d8a565b6116c59190614275565b905060008060006116de600a546001600160a01b031690565b905073ea208da933c43857683c04bc76e3fd331d7bfdf7611708816117038789614e69565b61372b565b602754156117f95760005b6027548110156117f7576027818154811061173057611730614e0a565b9060005260206000209060040201600301548461174d9190614d72565b935060006027828154811061176457611764614e0a565b906000526020600020906004020160020160009054906101000a90046001600160a01b03169050612710602783815481106117a1576117a1614e0a565b9060005260206000209060040201600301546127106117c09190614e69565b6117ca9089614d8a565b6117d49190614275565b95506117e481611703888a614e69565b50806117ef81614dbd565b915050611713565b505b479550611806828761372b565b5050505050506118166001600955565b565b61182061347b565b601c805460ff19811660ff90911615179055565b600854839060ff1661184b576111dd848484613844565b6daaeb6d7670e522a718067333cd4e3b1561199057336001600160a01b0382160361187b576111dd848484613844565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156118ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ee9190614e4c565b80156119715750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561194d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119719190614e4c565b61199057604051633b79c77360e21b81523360048201526024016103d8565b610fe8848484613844565b6119a361347b565b6012805460ff19811660ff90911615179055565b6119bf61347b565b601e55565b6119cc61347b565b80516119df90601b906020840190614121565b5050565b60006018546119f160005490565b108015611a215750601c5460ff1680611a0c5750601f5460ff165b80611a215750600a546001600160a01b031633145b905090565b611a2e61347b565b60175460ff1615611a515760405162461bcd60e51b81526004016103d890614e20565b80516119df906013906020840190614121565b6060611a6f82613444565b611aab5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103d8565b6000611ad9611abc60016004614d8a565b604080518281016060018252910181526000602090910190815290565b90506000611ae68461385f565b604080516001808252818301909252919250600091906020808301908036833750506040805160018082528183019092529293506000929150602080830190803683370190505090506000601854601454611b419190614da9565b905060005b6001811015611d23576000848281518110611b6357611b63614e0a565b60200260200101519050838281518110611b7f57611b7f614e0a565b602002602001015115156000151503611c0f576000601854600f8481548110611baa57611baa614e0a565b906000526020600020015485858a611bc29190614d72565b611bcc9190614d72565b611bd69190614d8a565b611be09190614da9565b9050611bec8184613919565b915081868481518110611c0157611c01614e0a565b602002602001018181525050505b6000828152600e6020908152604080832084845290915290205415611d10576000828152600e60209081526040808320848452909152902080546001908110611c5a57611c5a614e0a565b6000918252602080832090910154848352600e82526040808420858552909252908220805491928892611c8f57611c8f614e0a565b906000526020600020015481518110611caa57611caa614e0a565b6020908102919091018101919091526000838152600e825260408082208483529092529081208054600192879291611ce457611ce4614e0a565b906000526020600020015481518110611cff57611cff614e0a565b911515602092830291909101909101525b5080611d1b81614dbd565b915050611b46565b5060005b8351811015611e4b57600a848281518110611d4457611d44614e0a565b60200260200101511015611d7b57604080518082019091526002815261030360f41b6020820152611d769087906139b5565b611dc0565b6064848281518110611d8f57611d8f614e0a565b60200260200101511015611dc0576040805180820190915260018152600360fc1b6020820152611dc09087906139b5565b6103e7848281518110611dd557611dd5614e0a565b60200260200101511115611e0d5760408051808201909152600381526239393960e81b6020820152611e089087906139b5565b611e39565b611e39611e32858381518110611e2557611e25614e0a565b6020026020010151613a3a565b87906139b5565b80611e4381614dbd565b915050611d27565b50939695505050505050565b6000610d0082613a7e565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b91830191909152606091611ea49082906139b5565b6000805b6001811015611ff1576000611ee5611ee087611ec5856003614d8a565b611ed0866003614d8a565b611edb906003614d72565b613ae5565b613bb1565b6000838152600c6020908152604080832060ff948516808552925282206002015490935090911615159003611faa578215611f3d576040805180820190915260018152600b60fa1b6020820152611f3d9085906139b5565b611f9b60118381548110611f5357611f53614e0a565b60009182526020808320868452600c825260408085208786528352938490209351611f849493909101929101614f19565b60408051601f1981840301815291905285906139b5565b821515600003611faa57600192505b611fb5600180614e69565b8203611fde576040805180820190915260018152605d60f81b6020820152611fde9085906139b5565b5080611fe981614dbd565b915050611ea8565b50909392505050565b60175460ff161561201d5760405162461bcd60e51b81526004016103d890614e20565b61202561347b565b6017805460ff19166001179055565b601b805461204190614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461206d90614dd6565b80156120ba5780601f1061208f576101008083540402835291602001916120ba565b820191906000526020600020905b81548152906001019060200180831161209d57829003601f168201915b505050505081565b6120ca61347b565b601d55565b60006001600160a01b0382166120f8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61212561347b565b6118166000613c6f565b61213761347b565b601955565b61214461347b565b601555565b6027818154811061215957600080fd5b906000526020600020906004020160009150905080600001805461217c90614dd6565b80601f01602080910402602001604051908101604052809291908181526020018280546121a890614dd6565b80156121f55780601f106121ca576101008083540402835291602001916121f5565b820191906000526020600020905b8154815290600101906020018083116121d857829003601f168201915b50505050509080600101805461220a90614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461223690614dd6565b80156122835780601f1061225857610100808354040283529160200191612283565b820191906000526020600020905b81548152906001019060200180831161226657829003601f168201915b50505050600283015460039093015491926001600160a01b031691905084565b6040805162020060810190915262020040815260006020909101818152606091906122e76040518060c00160405280608181526020016156e86081913982906139b5565b61231360136040516020016122fc9190614f6f565b60408051601f1981840301815291905282906139b5565b60005b612321600180614e69565b8110156123dd57612345611ee08661233a846003614d8a565b611ed0856003614d8a565b60ff1692506123cb600c600083815260200190815260200160002060008581526020019081526020016000206001016123a361239e600b60008681526020019081526020016000208781548110610ef157610ef1614e0a565b613cc1565b6040516020016123b4929190614fa1565b60408051601f1981840301815291905283906139b5565b806123d581614dbd565b915050612316565b50612408611ee08560036123f2600182614d8a565b6123fc9190614e69565b611edb60016003614d8a565b60ff169150612488600c600061241f600180614e69565b8152602001908152602001600020600084815260200190815260200160002060010161247761239e600b60006001806124589190614e69565b81526020019081526020016000208681548110610ef157610ef1614e0a565b6040516020016122fc929190614ffb565b61249181613cc1565b6040516020016124a1919061515f565b60405160208183030381529060405292505050919050565b6124c161347b565b601f805460ff19811660ff90911615179055565b606060038054610d6390614dd6565b6124ec61347b565b60175460ff161561250f5760405162461bcd60e51b81526004016103d890614e20565b80516010836001811061252457612524614e0a565b0154146125735760405162461bcd60e51b815260206004820152601a60248201527f547261697473206c656e67746820697320696e636f727265637400000000000060448201526064016103d8565b600081516001600160401b0381111561258e5761258e6143a8565b6040519080825280602002602001820160405280156125b7578160200160208202803683370190505b50905060005b8251811015612799578281815181106125d8576125d8614e0a565b6020026020010151608001511561265757818382815181106125fc576125fc614e0a565b602002602001015160a001518151811061261857612618614e0a565b602002602001015182828151811061263257612632614e0a565b60200260200101906001600160a01b031690816001600160a01b0316815250506126b0565b61267d83828151811061266c5761266c614e0a565b6020026020010151604001516134d5565b82828151811061268f5761268f614e0a565b60200260200101906001600160a01b031690816001600160a01b0316815250505b60405180606001604052808483815181106126cd576126cd614e0a565b60200260200101516000015181526020018483815181106126f0576126f0614e0a565b602002602001015160200151815260200184838151811061271357612713614e0a565b6020908102919091018101516060015115159091526000868152600c825260408082208583528352902082518051919261275292849290910190614121565b50602082810151805161276b9260018501920190614121565b50604091909101516002909101805460ff19169115159190911790558061279181614dbd565b9150506125bd565b506000838152600b602090815260409091208251610fe8928401906141a5565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600061289d838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff1960608b901b166020820152909250603401905060405160208183030381529060405280519060200120613ccf565b949350505050565b6128ad61347b565b60175460ff16156128d05760405162461bcd60e51b81526004016103d890614e20565b60005b81518110156119df5760405180604001604052808383815181106128f9576128f9614e0a565b60200260200101516020015160008151811061291757612917614e0a565b6020026020010151815260200183838151811061293657612936614e0a565b60200260200101516020015160018151811061295457612954614e0a565b6020026020010151815250600e600084848151811061297557612975614e0a565b60200260200101516000015160008151811061299357612993614e0a565b6020026020010151815260200190815260200160002060008484815181106129bd576129bd614e0a565b6020026020010151600001516001815181106129db576129db614e0a565b602002602001015181526020019081526020016000209060026129ff9291906141fa565b5080612a0a81614dbd565b9150506128d3565b600854849060ff16612a2f57612a2a85858585613ce5565b6111be565b6daaeb6d7670e522a718067333cd4e3b15612b7557336001600160a01b03821603612a6057612a2a85858585613ce5565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612aaf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ad39190614e4c565b8015612b565750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612b32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b569190614e4c565b612b7557604051633b79c77360e21b81523360048201526024016103d8565b6111be85858585613ce5565b6000612b8b6136d2565b612b936119e3565b612baf5760405162461bcd60e51b81526004016103d890614d43565b601c5460ff16158015612bcd5750600a546001600160a01b03163314155b15612cf257612bdd338484612825565b612c1d5760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b60448201526064016103d8565b601e5433600090815260056020526040908190205486911c6001600160401b0316612c489190614d72565b1115612c965760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103d8565b34601d5485612ca59190614d8a565b14612cf25760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103d8565b612cfc8433610ab9565b9050610f0b6001600955565b6000612d126136d2565b612d1a6119e3565b612d365760405162461bcd60e51b81526004016103d890614d43565b601c5460ff1680612d515750600a546001600160a01b031633145b612d9d5760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064016103d8565b612da78383610ab9565b9050610d006001600955565b6060610d0061082483611a64565b6060612dcc82613444565b612e085760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103d8565b60008052600b6020527fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f7654612e7f5760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e20616464656400000000000060448201526064016103d8565b6000612e8a83611a64565b6040805162020060810190915262020040815260006020918201908152919250612ecb90612eb786613a3a565b6040516122fc9291906021906020016151a4565b6000601b8054612eda90614dd6565b9050118015612ef757506000848152600d602052604090205460ff165b15612f2557612f20601b612f0a86613a3a565b8460166040516020016122fc949392919061521e565b612fbd565b60408051602081019091526000815260125460ff1615612f9b576000612f4a846122a3565b9050612f7481604051602001612f6091906152a9565b604051602081830303815290604052613cc1565b604051602001612f84919061515f565b604051602081830303815290604052915050612fa7565b612fa4836122a3565b90505b612fbb816040516020016123b49190615394565b505b612fd9612fc983611e62565b6040516020016122fc91906153d7565b612fe281613cc1565b6040516020016124a19190615418565b612ffa61347b565b6008805460ff19811660ff90911615179055565b61301782611e57565b6001600160a01b0316336001600160a01b0316146130695760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b60448201526064016103d8565b6000918252600d6020526040909120805460ff1916911515919091179055565b6000828152600e602090815260408083208484528252918290208054835181840281018401909452808452606093928301828280156130e757602002820191906000526020600020905b8154815260200190600101908083116130d3575b5050505050905092915050565b60255460609061312e9060209060219060229060239060249061311690613a3a565b604051612f609695949392919060269060200161545d565b60405160200161313e9190615418565b604051602081830303815290604052905090565b604080516060808201835280825260208201526000918101919091526000838152600c60209081526040808320858452909152908190208151606081019092528054829082906131a190614dd6565b80601f01602080910402602001604051908101604052809291908181526020018280546131cd90614dd6565b801561321a5780601f106131ef5761010080835404028352916020019161321a565b820191906000526020600020905b8154815290600101906020018083116131fd57829003601f168201915b5050505050815260200160018201805461323390614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461325f90614dd6565b80156132ac5780601f10613281576101008083540402835291602001916132ac565b820191906000526020600020905b81548152906001019060200180831161328f57829003601f168201915b50505091835250506002919091015460ff1615156020909101529392505050565b6132d561347b565b6001600160a01b03811661333a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d8565b61334381613c6f565b50565b600080549082900361336b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461341a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016133e2565b508160000361343b57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000805482108015610d00575050600090815260046020526040902054600160e01b161590565b6060610d00826001600019613d29565b600a546001600160a01b031633146118165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103d8565b600080613500836040516020016134ec9190615586565b604051602081830303815290604052613dde565b90508051602082016000f091506001600160a01b0382166135345760405163046a55db60e11b815260040160405180910390fd5b50919050565b600061354582613a7e565b9050836001600160a01b0316816001600160a01b0316146135785760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176135c5576135a88633610a3e565b6135c557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166135ec57604051633a954ecd60e21b815260040160405180910390fd5b80156135f757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003613689576001840160008181526004602052604081205490036136875760005481146136875760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6002600954036137245760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103d8565b6002600955565b8047101561377b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016103d8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146137c8576040519150601f19603f3d011682016040523d82523d6000602084013e6137cd565b606091505b50509050806111c15760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016103d8565b6111c183838360405180602001604052806000815250612a12565b6000806018546001600160401b0381111561387c5761387c6143a8565b6040519080825280602002602001820160405280156138a5578160200160208202803683370190505b50905060005b6018548110156138db57808282815181106138c8576138c8614e0a565b60209081029190910101526001016138ab565b50604080516020810190915260145481526138f68183613e0a565b81848151811061390857613908614e0a565b602002602001015192505050919050565b600080805b6010846001811061393157613931614e0a565b01548110156103fa5760006010856001811061394f5761394f614e0a565b01828154811061396157613961614e0a565b9060005260206000200154905082861015801561398657506139838184614d72565b86105b1561399557509150610d009050565b61399f8184614d72565b92505080806139ad90614dbd565b91505061391e565b601f1982015182518251603f199092019182906139d29083614d72565b1115613a305760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b60648201526084016103d8565b610fe88484613e8e565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480613a545750819003601f19909101908152919050565b600081600054811015613acc5760008181526004602052604081205490600160e01b82169003613aca575b80600003610f0b575060001901600081815260046020526040902054613aa9565b505b604051636f96cda160e11b815260040160405180910390fd5b6060836000613af48585614e69565b6001600160401b03811115613b0b57613b0b6143a8565b6040519080825280601f01601f191660200182016040528015613b35576020820181803683370190505b509050845b84811015613ba757828181518110613b5457613b54614e0a565b01602001516001600160f81b03191682613b6e8884614e69565b81518110613b7e57613b7e614e0a565b60200101906001600160f81b031916908160001a90535080613b9f81614dbd565b915050613b3a565b5095945050505050565b60008181805b82518160ff161015613c67576030838260ff1681518110613bda57613bda614e0a565b016020015160f81c10801590613c0d57506039838260ff1681518110613c0257613c02614e0a565b016020015160f81c11155b15613c5557613c1d600a836155ac565b91506030838260ff1681518110613c3657613c36614e0a565b0160200151613c48919060f81c6155d5565b613c5290836155f8565b91505b80613c5f8161561d565b915050613bb7565b509392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060610d0082600080613ec4565b600082613cdc8584613fc2565b14949350505050565b613cf08484846111c6565b6001600160a01b0383163b15610fe857613d0c84848484614007565b610fe8576040516368d2bf6b60e11b815260040160405180910390fd5b6060833b6000819003613d4c575050604080516020810190915260008152610f0b565b80841115613d6a575050604080516020810190915260008152610f0b565b83831015613d9c5760405163162544fd60e11b81526004810182905260248101859052604481018490526064016103d8565b8383038482036000828210613db15782613db3565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b6060815182604051602001613df492919061563c565b6040516020818303038152906040529050919050565b80516000196fffffffffffffffffffffffffffffffff82156111be576020840193505b6020852080865282840193608082901c0660051b850184613e4f5750506111be565b600585811b8701805183519091529091528385019482841606901b850184613e785750506111be565b600585901b860180518251909152905250613e2d565b8051602082019150808201602084510184015b81841015613eb9578351815260209384019301613ea1565b505082510190915250565b606083518015613c67576003600282010460021b60405192507f4142434445464748494a4b4c4d4e4f505152535455565758595a616263646566601f526102308515027f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392d5f03603f52602083018181015b6003880197508751603f8160121c16518353603f81600c1c16516001840153603f8160061c16516002840153603f811651600384015350600482019150808210613f345760038406868015613f9457600182148215150185038752613fac565b603d821515850353603d6001831460011b8503538487525b5050601f01601f19166040525050509392505050565b600081815b8451811015613c6757613ff382868381518110613fe657613fe6614e0a565b60200260200101516140f2565b915080613fff81614dbd565b915050613fc7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061403c90339089908890889060040161568d565b6020604051808303816000875af1925050508015614077575060408051601f3d908101601f19168201909252614074918101906156ca565b60015b6140d5573d8080156140a5576040519150601f19603f3d011682016040523d82523d6000602084013e6140aa565b606091505b5080516000036140cd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081831061410e576000828152602084905260409020610f0b565b6000838152602083905260409020610f0b565b82805461412d90614dd6565b90600052602060002090601f01602090048101928261414f5760008555614195565b82601f1061416857805160ff1916838001178555614195565b82800160010185558215614195579182015b8281111561419557825182559160200191906001019061417a565b506141a1929150614234565b5090565b828054828255906000526020600020908101928215614195579160200282015b8281111561419557825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906141c5565b828054828255906000526020600020908101928215614195579160200282018281111561419557825182559160200191906001019061417a565b5b808211156141a15760008155600101614235565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008261428457614284614249565b500490565b6001600160e01b03198116811461334357600080fd5b6000602082840312156142b157600080fd5b8135610f0b81614289565b60005b838110156142d75781810151838201526020016142bf565b83811115610fe85750506000910152565b600081518084526143008160208601602086016142bc565b601f01601f19169290920160200192915050565b602081526000610f0b60208301846142e8565b60006020828403121561433957600080fd5b5035919050565b80356001600160a01b038116811461435757600080fd5b919050565b6000806040838503121561436f57600080fd5b61437883614340565b946020939093013593505050565b6000806040838503121561439957600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156143e0576143e06143a8565b60405290565b60405160c081016001600160401b03811182821017156143e0576143e06143a8565b604080519081016001600160401b03811182821017156143e0576143e06143a8565b604051601f8201601f191681016001600160401b0381118282101715614452576144526143a8565b604052919050565b600082601f83011261446b57600080fd5b81356001600160401b03811115614484576144846143a8565b614497601f8201601f191660200161442a565b8181528460208386010111156144ac57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156144db57600080fd5b81356001600160401b03808211156144f257600080fd5b9083019060e0828603121561450657600080fd5b61450e6143be565b82358281111561451d57600080fd5b6145298782860161445a565b82525060208301358281111561453e57600080fd5b61454a8782860161445a565b60208301525060408301358281111561456257600080fd5b61456e8782860161445a565b60408301525060608301358281111561458657600080fd5b6145928782860161445a565b6060830152506080830135828111156145aa57600080fd5b6145b68782860161445a565b60808301525060a083013560a082015260c0830135828111156145d857600080fd5b6145e48782860161445a565b60c08301525095945050505050565b801515811461334357600080fd5b8035614357816145f3565b600060c0828403121561461e57600080fd5b6146266143e6565b905081356001600160401b038082111561463f57600080fd5b61464b8583860161445a565b8352602084013591508082111561466157600080fd5b61466d8583860161445a565b6020840152604084013591508082111561468657600080fd5b506146938482850161445a565b6040830152506146a560608301614601565b60608201526146b660808301614601565b608082015260a082013560a082015292915050565b6000806000606084860312156146e057600080fd5b833592506020840135915060408401356001600160401b0381111561470457600080fd5b6147108682870161460c565b9150509250925092565b60008060006060848603121561472f57600080fd5b61473884614340565b925061474660208501614340565b9150604084013590509250925092565b60e08152600061476960e083018a6142e8565b828103602084015261477b818a6142e8565b9050828103604084015261478f81896142e8565b905082810360608401526147a381886142e8565b905082810360808401526147b781876142e8565b90508460a084015282810360c08401526147d181856142e8565b9a9950505050505050505050565b6000602082840312156147f157600080fd5b81356001600160401b0381111561480757600080fd5b61289d8482850161445a565b60006020828403121561482557600080fd5b610f0b82614340565b60808152600061484160808301876142e8565b828103602084015261485381876142e8565b6001600160a01b0395909516604084015250506060015292915050565b60006001600160401b03821115614889576148896143a8565b5060051b60200190565b600080604083850312156148a657600080fd5b823591506020808401356001600160401b03808211156148c557600080fd5b818601915086601f8301126148d957600080fd5b81356148ec6148e782614870565b61442a565b81815260059190911b8301840190848101908983111561490b57600080fd5b8585015b83811015614943578035858111156149275760008081fd5b6149358c89838a010161460c565b84525091860191860161490f565b508096505050505050509250929050565b6000806040838503121561496757600080fd5b61497083614340565b91506020830135614980816145f3565b809150509250929050565b60008083601f84011261499d57600080fd5b5081356001600160401b038111156149b457600080fd5b6020830191508360208260051b85010111156149cf57600080fd5b9250929050565b6000806000604084860312156149eb57600080fd5b6149f484614340565b925060208401356001600160401b03811115614a0f57600080fd5b614a1b8682870161498b565b9497909650939450505050565b600082601f830112614a3957600080fd5b81356020614a496148e783614870565b82815260059290921b84018101918181019086841115614a6857600080fd5b8286015b84811015614a835780358352918301918301614a6c565b509695505050505050565b60006020808385031215614aa157600080fd5b82356001600160401b0380821115614ab857600080fd5b818501915085601f830112614acc57600080fd5b8135614ada6148e782614870565b81815260059190911b83018401908481019088831115614af957600080fd5b8585015b83811015614b8c57803585811115614b155760008081fd5b86016040818c03601f1901811315614b2d5760008081fd5b614b35614408565b8983013588811115614b475760008081fd5b614b558e8c83870101614a28565b825250908201359087821115614b6b5760008081fd5b614b798d8b84860101614a28565b818b015285525050918601918601614afd565b5098975050505050505050565b60008060008060808587031215614baf57600080fd5b614bb885614340565b9350614bc660208601614340565b92506040850135915060608501356001600160401b03811115614be857600080fd5b614bf48782880161445a565b91505092959194509250565b600080600060408486031215614c1557600080fd5b8335925060208401356001600160401b03811115614a0f57600080fd5b60008060408385031215614c4557600080fd5b82359150614c5560208401614340565b90509250929050565b60008060408385031215614c7157600080fd5b823591506020830135614980816145f3565b6020808252825182820181905260009190848201906040850190845b81811015614cbb57835183529284019291840191600101614c9f565b50909695505050505050565b60008060408385031215614cda57600080fd5b614ce383614340565b9150614c5560208401614340565b602081526000825160606020840152614d0d60808401826142e8565b90506020840151601f19848303016040850152614d2a82826142e8565b9150506040840151151560608401528091505092915050565b6020808252601590820152744d696e74696e67206973206e6f742061637469766560581b604082015260600190565b60008219821115614d8557614d8561425f565b500190565b6000816000190483118215151615614da457614da461425f565b500290565b600082614db857614db8614249565b500690565b600060018201614dcf57614dcf61425f565b5060010190565b600181811c90821680614dea57607f821691505b60208210810361353457634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b600060208284031215614e5e57600080fd5b8151610f0b816145f3565b600082821015614e7b57614e7b61425f565b500390565b8054600090600181811c9080831680614e9a57607f831692505b60208084108203614ebb57634e487b7160e01b600052602260045260246000fd5b818015614ecf5760018114614ee057614f0d565b60ff19861689528489019650614f0d565b60008881526020902060005b86811015614f055781548b820152908501908301614eec565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b81526000614f3d600f830185614e80565b6a1116113b30b63ab2911d1160a91b8152614f5b600b820185614e80565b61227d60f01b815260020195945050505050565b6000614f7b8284614e80565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b81526000614fbb6005830185614e80565b670ed8985cd94d8d0b60c21b81528351614fdc8160088401602088016142bc565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b815260006150156005830185614e80565b670ed8985cd94d8d0b60c21b815283516150368160088401602088016142bc565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000081526000825161519781601a8501602087016142bc565b91909101601a0192915050565b683d913730b6b2911d1160b91b815260006151c26009830186614e80565b61202360f01b815284516151dd8160028401602089016142bc565b701116113232b9b1b934b83a34b7b7111d1160791b600292909101918201526152096013820185614e80565b61088b60f21b81526002019695505050505050565b681134b6b0b3b2911d1160b91b8152600061523c6009830187614e80565b855161524c818360208a016142bc565b643f646e613d60d81b9101908152845161526d8160058401602089016142bc565b6a266e6574776f726b49643d60a81b600592909101918201526152936010820185614e80565b61088b60f21b8152600201979650505050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b60808201526000825161536d8160918501602087016142bc565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b6d1134b6b0b3b2afb230ba30911d1160911b815281516000906153be81600e8501602087016142bc565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b8152815160009061540081600d8501602087016142bc565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161545081601d8501602087016142bc565b91909101601d0192915050565b683d913730b6b2911d1160b91b8152600061547b600983018a614e80565b701116113232b9b1b934b83a34b7b7111d1160791b815261549f601182018a614e80565b6a11161134b6b0b3b2911d1160a91b815290506154bf600b820189614e80565b6b1116113130b73732b9111d1160a11b815290506154e0600c820188614e80565b7211161132bc3a32b93730b62fb634b735911d1160691b815290506155086013820187614e80565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a000000008152845161554081601c8401602089016142bc565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c929091019182015261556d602e820185614e80565b61227d60f01b81526002019a9950505050505050505050565b600081526000825161559f8160018501602087016142bc565b9190910160010192915050565b600060ff821660ff84168160ff04811182151516156155cd576155cd61425f565b029392505050565b600060ff821660ff8416808210156155ef576155ef61425f565b90039392505050565b600060ff821660ff84168060ff038211156156155761561561425f565b019392505050565b600060ff821660ff81036156335761563361425f565b60010192915050565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b6005820152815160009061567f81600e8501602087016142bc565b91909101600e019392505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906156c0908301846142e8565b9695505050505050565b6000602082840312156156dc57600080fd5b8151610f0b8161428956fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723aa2646970667358221220a931b5280d15014361650b83cf28173eee8d826b4c763ac32db57dd31c9d2cdc64736f6c634300080e003330783234306234623842463742353038303643313832336445343566366662383534343138363764303168747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f62616e6e65722f61663561313361392d323064352d343862392d393537312d37663466356431353466623968747470733a2f2f696e64656c69626c656c6162732d70726f642e73332e75732d656173742d322e616d617a6f6e6177732e636f6d2f70726f66696c652f61663561313361392d323064352d343862392d393537312d376634663564313534666239
Deployed Bytecode
0x6080604052600436106103855760003560e01c80636df9fa88116101d1578063b456806611610102578063da9e40ea116100a0578063e8a3d4851161006f578063e8a3d48514610a0e578063e985e9c514610a23578063ea84b59b14610a6c578063f2fde38b14610a9957600080fd5b8063da9e40ea14610996578063dbe9875f146109ab578063dc53fd92146109cb578063dc9867ce146109e157600080fd5b8063bc63f02e116100dc578063bc63f02e1461092d578063c11feac114610940578063c87b56dd14610960578063d5abeb011461098057600080fd5b8063b4568066146108e7578063b88d4fde14610907578063ba41b0c61461091a57600080fd5b80638da5cb5b1161016f57806397d194d71161014957806397d194d714610871578063a22cb46514610891578063a24e5153146108b1578063b32c5680146108c757600080fd5b80638da5cb5b146108295780638fb4e8a91461084757806395d89b411461085c57600080fd5b80637bddd65b116101ab5780637bddd65b146107995780637cb64759146107b9578063876171dc146107d957806389ce30741461080957600080fd5b80636df9fa881461074457806370a0823114610764578063715018a61461078457600080fd5b80634047638d116102b65780635b92ac0d11610254578063639814e011610223578063639814e0146106e457806366e33870146106fa57806368bd580e1461071a5780636c0360eb1461072f57600080fd5b80635b92ac0d1461066f5780636190e1da14610684578063621a1f74146106a45780636352211e146106c457600080fd5b80634ca1a0f2116102905780634ca1a0f2146105fb578063542d50411461061b57806355f804b31461063557806356b955621461065557600080fd5b80634047638d146105be57806342842e0e146105d35780634920154b146105e657600080fd5b806318160ddd116103235780632d6b6224116102fd5780632d6b62241461055157806336cd2edd1461056b5780633cca2420146105815780633ccfd60b146105a957600080fd5b806318160ddd1461050157806323b872dd1461052457806329fc6bae1461053757600080fd5b8063095ea7b31161035f578063095ea7b31461048e57806309dbabca146104a15780630f3debbe146104c1578063180c2cc0146104e157600080fd5b806301ffc9a7146103ff57806306fdde0314610434578063081812fc1461045657600080fd5b366103fa57601c5460ff166103e15760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064015b60405180910390fd5b6103f8601a54346103f29190614275565b33610ab9565b005b600080fd5b34801561040b57600080fd5b5061041f61041a36600461429f565b610d06565b60405190151581526020015b60405180910390f35b34801561044057600080fd5b50610449610d54565b60405161042b9190614314565b34801561046257600080fd5b50610476610471366004614327565b610de6565b6040516001600160a01b03909116815260200161042b565b6103f861049c36600461435c565b610e2a565b3480156104ad57600080fd5b506104496104bc366004614386565b610eca565b3480156104cd57600080fd5b506103f86104dc3660046144c9565b610f12565b3480156104ed57600080fd5b506103f86104fc3660046146cb565b610fee565b34801561050d57600080fd5b50600154600054035b60405190815260200161042b565b6103f861053236600461471a565b6111c6565b34801561054357600080fd5b50601f5461041f9060ff1681565b34801561055d57600080fd5b50601c5461041f9060ff1681565b34801561057757600080fd5b50610516601e5481565b34801561058d57600080fd5b50610596611332565b60405161042b9796959493929190614756565b3480156105b557600080fd5b506103f8611690565b3480156105ca57600080fd5b506103f8611818565b6103f86105e136600461471a565b611834565b3480156105f257600080fd5b506103f861199b565b34801561060757600080fd5b506103f8610616366004614327565b6119b7565b34801561062757600080fd5b5060175461041f9060ff1681565b34801561064157600080fd5b506103f86106503660046147df565b6119c4565b34801561066157600080fd5b5060085461041f9060ff1681565b34801561067b57600080fd5b5061041f6119e3565b34801561069057600080fd5b506103f861069f3660046147df565b611a26565b3480156106b057600080fd5b506104496106bf366004614327565b611a64565b3480156106d057600080fd5b506104766106df366004614327565b611e57565b3480156106f057600080fd5b5061051660195481565b34801561070657600080fd5b506104496107153660046147df565b611e62565b34801561072657600080fd5b506103f8611ffa565b34801561073b57600080fd5b50610449612034565b34801561075057600080fd5b506103f861075f366004614327565b6120c2565b34801561077057600080fd5b5061051661077f366004614813565b6120cf565b34801561079057600080fd5b506103f861211d565b3480156107a557600080fd5b506103f86107b4366004614327565b61212f565b3480156107c557600080fd5b506103f86107d4366004614327565b61213c565b3480156107e557600080fd5b506107f96107f4366004614327565b612149565b60405161042b949392919061482e565b34801561081557600080fd5b506104496108243660046147df565b6122a3565b34801561083557600080fd5b50600a546001600160a01b0316610476565b34801561085357600080fd5b506103f86124b9565b34801561086857600080fd5b506104496124d5565b34801561087d57600080fd5b506103f861088c366004614893565b6124e4565b34801561089d57600080fd5b506103f86108ac366004614954565b6127b9565b3480156108bd57600080fd5b50610516601d5481565b3480156108d357600080fd5b5061041f6108e23660046149d6565b612825565b3480156108f357600080fd5b506103f8610902366004614a8e565b6128a5565b6103f8610915366004614b99565b612a12565b610516610928366004614c00565b612b81565b61051661093b366004614c32565b612d08565b34801561094c57600080fd5b5061044961095b366004614327565b612db3565b34801561096c57600080fd5b5061044961097b366004614327565b612dc1565b34801561098c57600080fd5b5061051660185481565b3480156109a257600080fd5b506103f8612ff2565b3480156109b757600080fd5b506103f86109c6366004614c5e565b61300e565b3480156109d757600080fd5b50610516601a5481565b3480156109ed57600080fd5b50610a016109fc366004614386565b613089565b60405161042b9190614c83565b348015610a1a57600080fd5b506104496130f4565b348015610a2f57600080fd5b5061041f610a3e366004614cc7565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a7857600080fd5b50610a8c610a87366004614386565b613152565b60405161042b9190614cf1565b348015610aa557600080fd5b506103f8610ab4366004614813565b6132cd565b6000610ac36119e3565b610adf5760405162461bcd60e51b81526004016103d890614d43565b60005483610b255760405162461bcd60e51b8152602060048201526013602482015272125b9d985b1a59081d1bdad95b8818dbdd5b9d606a1b60448201526064016103d8565b601854610b328583614d72565b1115610b765760405162461bcd60e51b8152602060048201526013602482015272416c6c20746f6b656e732061726520676f6e6560681b60448201526064016103d8565b601c5460ff1615610ca357600a546001600160a01b03163314610c685760195433600090815260056020526040908190205486911c6001600160401b0316610bbe9190614d72565b1115610c0c5760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103d8565b34601a5485610c1b9190614d8a565b14610c685760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103d8565b333214610ca35760405162461bcd60e51b8152602060048201526009602482015268454f4173206f6e6c7960b81b60448201526064016103d8565b6000610cb0601486614275565b90506000610cbf601487614da9565b905060005b82811015610ce957610cd7866014613346565b80610ce181614dbd565b915050610cc4565b508015610cfa57610cfa8582613346565b50909150505b92915050565b60006301ffc9a760e01b6001600160e01b031983161480610d3757506380ac58cd60e01b6001600160e01b03198316145b80610d005750506001600160e01b031916635b5e139f60e01b1490565b606060028054610d6390614dd6565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8f90614dd6565b8015610ddc5780601f10610db157610100808354040283529160200191610ddc565b820191906000526020600020905b815481529060010190602001808311610dbf57829003601f168201915b5050505050905090565b6000610df182613444565b610e0e576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610e3582611e57565b9050336001600160a01b03821614610e6e57610e518133610a3e565b610e6e576040516367d9dca160e11b815260040160405180910390fd5b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000828152600b602052604090208054606091610f0b9184908110610ef157610ef1614e0a565b6000918252602090912001546001600160a01b031661346b565b9392505050565b610f1a61347b565b60175460ff1615610f3d5760405162461bcd60e51b81526004016103d890614e20565b805180518291602091610f5591839190820190614121565b506020828101518051610f6e9260018501920190614121565b5060408201518051610f8a916002840191602090910190614121565b5060608201518051610fa6916003840191602090910190614121565b5060808201518051610fc2916004840191602090910190614121565b5060a0820151600582015560c08201518051610fe8916006840191602090910190614121565b50505050565b610ff661347b565b60175460ff16156110195760405162461bcd60e51b81526004016103d890614e20565b60408051606080820183528351825260208085015181840152908401511515828401526000868152600c825283812086825282529290922081518051929391926110669284920190614121565b50602082810151805161107f9260018501920190614121565b50604091820151600291909101805460ff19169115159190911790556000848152600b6020908152828220805484518184028101840190955280855292939290918301828280156110f957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116110db575b5050505050905081608001511561115f57808260a001518151811061112057611120614e0a565b602002602001015181848151811061113a5761113a614e0a565b60200260200101906001600160a01b031690816001600160a01b03168152505061119f565b61116c82604001516134d5565b81848151811061117e5761117e614e0a565b60200260200101906001600160a01b031690816001600160a01b0316815250505b6000848152600b6020908152604090912082516111be928401906141a5565b50505b505050565b600854839060ff166111e2576111dd84848461353a565b610fe8565b6daaeb6d7670e522a718067333cd4e3b1561132757336001600160a01b03821603611212576111dd84848461353a565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611261573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112859190614e4c565b80156113085750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156112e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113089190614e4c565b61132757604051633b79c77360e21b81523360048201526024016103d8565b610fe884848461353a565b60208054819061134190614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461136d90614dd6565b80156113ba5780601f1061138f576101008083540402835291602001916113ba565b820191906000526020600020905b81548152906001019060200180831161139d57829003601f168201915b5050505050908060010180546113cf90614dd6565b80601f01602080910402602001604051908101604052809291908181526020018280546113fb90614dd6565b80156114485780601f1061141d57610100808354040283529160200191611448565b820191906000526020600020905b81548152906001019060200180831161142b57829003601f168201915b50505050509080600201805461145d90614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461148990614dd6565b80156114d65780601f106114ab576101008083540402835291602001916114d6565b820191906000526020600020905b8154815290600101906020018083116114b957829003601f168201915b5050505050908060030180546114eb90614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461151790614dd6565b80156115645780601f1061153957610100808354040283529160200191611564565b820191906000526020600020905b81548152906001019060200180831161154757829003601f168201915b50505050509080600401805461157990614dd6565b80601f01602080910402602001604051908101604052809291908181526020018280546115a590614dd6565b80156115f25780601f106115c7576101008083540402835291602001916115f2565b820191906000526020600020905b8154815290600101906020018083116115d557829003601f168201915b50505050509080600501549080600601805461160d90614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461163990614dd6565b80156116865780601f1061165b57610100808354040283529160200191611686565b820191906000526020600020905b81548152906001019060200180831161166957829003601f168201915b5050505050905087565b61169861347b565b6116a06136d2565b4760006127106116b160fa82614e69565b6116bb9084614d8a565b6116c59190614275565b905060008060006116de600a546001600160a01b031690565b905073ea208da933c43857683c04bc76e3fd331d7bfdf7611708816117038789614e69565b61372b565b602754156117f95760005b6027548110156117f7576027818154811061173057611730614e0a565b9060005260206000209060040201600301548461174d9190614d72565b935060006027828154811061176457611764614e0a565b906000526020600020906004020160020160009054906101000a90046001600160a01b03169050612710602783815481106117a1576117a1614e0a565b9060005260206000209060040201600301546127106117c09190614e69565b6117ca9089614d8a565b6117d49190614275565b95506117e481611703888a614e69565b50806117ef81614dbd565b915050611713565b505b479550611806828761372b565b5050505050506118166001600955565b565b61182061347b565b601c805460ff19811660ff90911615179055565b600854839060ff1661184b576111dd848484613844565b6daaeb6d7670e522a718067333cd4e3b1561199057336001600160a01b0382160361187b576111dd848484613844565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156118ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118ee9190614e4c565b80156119715750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa15801561194d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119719190614e4c565b61199057604051633b79c77360e21b81523360048201526024016103d8565b610fe8848484613844565b6119a361347b565b6012805460ff19811660ff90911615179055565b6119bf61347b565b601e55565b6119cc61347b565b80516119df90601b906020840190614121565b5050565b60006018546119f160005490565b108015611a215750601c5460ff1680611a0c5750601f5460ff165b80611a215750600a546001600160a01b031633145b905090565b611a2e61347b565b60175460ff1615611a515760405162461bcd60e51b81526004016103d890614e20565b80516119df906013906020840190614121565b6060611a6f82613444565b611aab5760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103d8565b6000611ad9611abc60016004614d8a565b604080518281016060018252910181526000602090910190815290565b90506000611ae68461385f565b604080516001808252818301909252919250600091906020808301908036833750506040805160018082528183019092529293506000929150602080830190803683370190505090506000601854601454611b419190614da9565b905060005b6001811015611d23576000848281518110611b6357611b63614e0a565b60200260200101519050838281518110611b7f57611b7f614e0a565b602002602001015115156000151503611c0f576000601854600f8481548110611baa57611baa614e0a565b906000526020600020015485858a611bc29190614d72565b611bcc9190614d72565b611bd69190614d8a565b611be09190614da9565b9050611bec8184613919565b915081868481518110611c0157611c01614e0a565b602002602001018181525050505b6000828152600e6020908152604080832084845290915290205415611d10576000828152600e60209081526040808320848452909152902080546001908110611c5a57611c5a614e0a565b6000918252602080832090910154848352600e82526040808420858552909252908220805491928892611c8f57611c8f614e0a565b906000526020600020015481518110611caa57611caa614e0a565b6020908102919091018101919091526000838152600e825260408082208483529092529081208054600192879291611ce457611ce4614e0a565b906000526020600020015481518110611cff57611cff614e0a565b911515602092830291909101909101525b5080611d1b81614dbd565b915050611b46565b5060005b8351811015611e4b57600a848281518110611d4457611d44614e0a565b60200260200101511015611d7b57604080518082019091526002815261030360f41b6020820152611d769087906139b5565b611dc0565b6064848281518110611d8f57611d8f614e0a565b60200260200101511015611dc0576040805180820190915260018152600360fc1b6020820152611dc09087906139b5565b6103e7848281518110611dd557611dd5614e0a565b60200260200101511115611e0d5760408051808201909152600381526239393960e81b6020820152611e089087906139b5565b611e39565b611e39611e32858381518110611e2557611e25614e0a565b6020026020010151613a3a565b87906139b5565b80611e4381614dbd565b915050611d27565b50939695505050505050565b6000610d0082613a7e565b60408051620200608101825262020040815260006020918201908152825180840190935260018352605b60f81b91830191909152606091611ea49082906139b5565b6000805b6001811015611ff1576000611ee5611ee087611ec5856003614d8a565b611ed0866003614d8a565b611edb906003614d72565b613ae5565b613bb1565b6000838152600c6020908152604080832060ff948516808552925282206002015490935090911615159003611faa578215611f3d576040805180820190915260018152600b60fa1b6020820152611f3d9085906139b5565b611f9b60118381548110611f5357611f53614e0a565b60009182526020808320868452600c825260408085208786528352938490209351611f849493909101929101614f19565b60408051601f1981840301815291905285906139b5565b821515600003611faa57600192505b611fb5600180614e69565b8203611fde576040805180820190915260018152605d60f81b6020820152611fde9085906139b5565b5080611fe981614dbd565b915050611ea8565b50909392505050565b60175460ff161561201d5760405162461bcd60e51b81526004016103d890614e20565b61202561347b565b6017805460ff19166001179055565b601b805461204190614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461206d90614dd6565b80156120ba5780601f1061208f576101008083540402835291602001916120ba565b820191906000526020600020905b81548152906001019060200180831161209d57829003601f168201915b505050505081565b6120ca61347b565b601d55565b60006001600160a01b0382166120f8576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b61212561347b565b6118166000613c6f565b61213761347b565b601955565b61214461347b565b601555565b6027818154811061215957600080fd5b906000526020600020906004020160009150905080600001805461217c90614dd6565b80601f01602080910402602001604051908101604052809291908181526020018280546121a890614dd6565b80156121f55780601f106121ca576101008083540402835291602001916121f5565b820191906000526020600020905b8154815290600101906020018083116121d857829003601f168201915b50505050509080600101805461220a90614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461223690614dd6565b80156122835780601f1061225857610100808354040283529160200191612283565b820191906000526020600020905b81548152906001019060200180831161226657829003601f168201915b50505050600283015460039093015491926001600160a01b031691905084565b6040805162020060810190915262020040815260006020909101818152606091906122e76040518060c00160405280608181526020016156e86081913982906139b5565b61231360136040516020016122fc9190614f6f565b60408051601f1981840301815291905282906139b5565b60005b612321600180614e69565b8110156123dd57612345611ee08661233a846003614d8a565b611ed0856003614d8a565b60ff1692506123cb600c600083815260200190815260200160002060008581526020019081526020016000206001016123a361239e600b60008681526020019081526020016000208781548110610ef157610ef1614e0a565b613cc1565b6040516020016123b4929190614fa1565b60408051601f1981840301815291905283906139b5565b806123d581614dbd565b915050612316565b50612408611ee08560036123f2600182614d8a565b6123fc9190614e69565b611edb60016003614d8a565b60ff169150612488600c600061241f600180614e69565b8152602001908152602001600020600084815260200190815260200160002060010161247761239e600b60006001806124589190614e69565b81526020019081526020016000208681548110610ef157610ef1614e0a565b6040516020016122fc929190614ffb565b61249181613cc1565b6040516020016124a1919061515f565b60405160208183030381529060405292505050919050565b6124c161347b565b601f805460ff19811660ff90911615179055565b606060038054610d6390614dd6565b6124ec61347b565b60175460ff161561250f5760405162461bcd60e51b81526004016103d890614e20565b80516010836001811061252457612524614e0a565b0154146125735760405162461bcd60e51b815260206004820152601a60248201527f547261697473206c656e67746820697320696e636f727265637400000000000060448201526064016103d8565b600081516001600160401b0381111561258e5761258e6143a8565b6040519080825280602002602001820160405280156125b7578160200160208202803683370190505b50905060005b8251811015612799578281815181106125d8576125d8614e0a565b6020026020010151608001511561265757818382815181106125fc576125fc614e0a565b602002602001015160a001518151811061261857612618614e0a565b602002602001015182828151811061263257612632614e0a565b60200260200101906001600160a01b031690816001600160a01b0316815250506126b0565b61267d83828151811061266c5761266c614e0a565b6020026020010151604001516134d5565b82828151811061268f5761268f614e0a565b60200260200101906001600160a01b031690816001600160a01b0316815250505b60405180606001604052808483815181106126cd576126cd614e0a565b60200260200101516000015181526020018483815181106126f0576126f0614e0a565b602002602001015160200151815260200184838151811061271357612713614e0a565b6020908102919091018101516060015115159091526000868152600c825260408082208583528352902082518051919261275292849290910190614121565b50602082810151805161276b9260018501920190614121565b50604091909101516002909101805460ff19169115159190911790558061279181614dbd565b9150506125bd565b506000838152600b602090815260409091208251610fe8928401906141a5565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600061289d838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015546040516bffffffffffffffffffffffff1960608b901b166020820152909250603401905060405160208183030381529060405280519060200120613ccf565b949350505050565b6128ad61347b565b60175460ff16156128d05760405162461bcd60e51b81526004016103d890614e20565b60005b81518110156119df5760405180604001604052808383815181106128f9576128f9614e0a565b60200260200101516020015160008151811061291757612917614e0a565b6020026020010151815260200183838151811061293657612936614e0a565b60200260200101516020015160018151811061295457612954614e0a565b6020026020010151815250600e600084848151811061297557612975614e0a565b60200260200101516000015160008151811061299357612993614e0a565b6020026020010151815260200190815260200160002060008484815181106129bd576129bd614e0a565b6020026020010151600001516001815181106129db576129db614e0a565b602002602001015181526020019081526020016000209060026129ff9291906141fa565b5080612a0a81614dbd565b9150506128d3565b600854849060ff16612a2f57612a2a85858585613ce5565b6111be565b6daaeb6d7670e522a718067333cd4e3b15612b7557336001600160a01b03821603612a6057612a2a85858585613ce5565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612aaf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ad39190614e4c565b8015612b565750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015612b32573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b569190614e4c565b612b7557604051633b79c77360e21b81523360048201526024016103d8565b6111be85858585613ce5565b6000612b8b6136d2565b612b936119e3565b612baf5760405162461bcd60e51b81526004016103d890614d43565b601c5460ff16158015612bcd5750600a546001600160a01b03163314155b15612cf257612bdd338484612825565b612c1d5760405162461bcd60e51b8152602060048201526011602482015270139bdd081bdb88185b1b1bddc81b1a5cdd607a1b60448201526064016103d8565b601e5433600090815260056020526040908190205486911c6001600160401b0316612c489190614d72565b1115612c965760405162461bcd60e51b815260206004820152601a60248201527f4578636565646564206d6178206d696e747320616c6c6f77656400000000000060448201526064016103d8565b34601d5485612ca59190614d8a565b14612cf25760405162461bcd60e51b815260206004820152601e60248201527f496e636f727265637420616d6f756e74206f662065746865722073656e74000060448201526064016103d8565b612cfc8433610ab9565b9050610f0b6001600955565b6000612d126136d2565b612d1a6119e3565b612d365760405162461bcd60e51b81526004016103d890614d43565b601c5460ff1680612d515750600a546001600160a01b031633145b612d9d5760405162461bcd60e51b815260206004820152601c60248201527f5075626c6963206d696e74696e67206973206e6f74206163746976650000000060448201526064016103d8565b612da78383610ab9565b9050610d006001600955565b6060610d0061082483611a64565b6060612dcc82613444565b612e085760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b2103a37b5b2b760991b60448201526064016103d8565b60008052600b6020527fdf7de25b7f1fd6d0b5205f0e18f1f35bd7b8d84cce336588d184533ce43a6f7654612e7f5760405162461bcd60e51b815260206004820152601a60248201527f5472616974732068617665206e6f74206265656e20616464656400000000000060448201526064016103d8565b6000612e8a83611a64565b6040805162020060810190915262020040815260006020918201908152919250612ecb90612eb786613a3a565b6040516122fc9291906021906020016151a4565b6000601b8054612eda90614dd6565b9050118015612ef757506000848152600d602052604090205460ff165b15612f2557612f20601b612f0a86613a3a565b8460166040516020016122fc949392919061521e565b612fbd565b60408051602081019091526000815260125460ff1615612f9b576000612f4a846122a3565b9050612f7481604051602001612f6091906152a9565b604051602081830303815290604052613cc1565b604051602001612f84919061515f565b604051602081830303815290604052915050612fa7565b612fa4836122a3565b90505b612fbb816040516020016123b49190615394565b505b612fd9612fc983611e62565b6040516020016122fc91906153d7565b612fe281613cc1565b6040516020016124a19190615418565b612ffa61347b565b6008805460ff19811660ff90911615179055565b61301782611e57565b6001600160a01b0316336001600160a01b0316146130695760405162461bcd60e51b815260206004820152600f60248201526e2737ba103a37b5b2b71037bbb732b960891b60448201526064016103d8565b6000918252600d6020526040909120805460ff1916911515919091179055565b6000828152600e602090815260408083208484528252918290208054835181840281018401909452808452606093928301828280156130e757602002820191906000526020600020905b8154815260200190600101908083116130d3575b5050505050905092915050565b60255460609061312e9060209060219060229060239060249061311690613a3a565b604051612f609695949392919060269060200161545d565b60405160200161313e9190615418565b604051602081830303815290604052905090565b604080516060808201835280825260208201526000918101919091526000838152600c60209081526040808320858452909152908190208151606081019092528054829082906131a190614dd6565b80601f01602080910402602001604051908101604052809291908181526020018280546131cd90614dd6565b801561321a5780601f106131ef5761010080835404028352916020019161321a565b820191906000526020600020905b8154815290600101906020018083116131fd57829003601f168201915b5050505050815260200160018201805461323390614dd6565b80601f016020809104026020016040519081016040528092919081815260200182805461325f90614dd6565b80156132ac5780601f10613281576101008083540402835291602001916132ac565b820191906000526020600020905b81548152906001019060200180831161328f57829003601f168201915b50505091835250506002919091015460ff1615156020909101529392505050565b6132d561347b565b6001600160a01b03811661333a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103d8565b61334381613c6f565b50565b600080549082900361336b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b03831660008181526005602090815260408083208054680100000000000000018802019055848352600490915281206001851460e11b4260a01b178317905582840190839083907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8180a4600183015b81811461341a57808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a46001016133e2565b508160000361343b57604051622e076360e81b815260040160405180910390fd5b60005550505050565b6000805482108015610d00575050600090815260046020526040902054600160e01b161590565b6060610d00826001600019613d29565b600a546001600160a01b031633146118165760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103d8565b600080613500836040516020016134ec9190615586565b604051602081830303815290604052613dde565b90508051602082016000f091506001600160a01b0382166135345760405163046a55db60e11b815260040160405180910390fd5b50919050565b600061354582613a7e565b9050836001600160a01b0316816001600160a01b0316146135785760405162a1148160e81b815260040160405180910390fd5b60008281526006602052604090208054338082146001600160a01b038816909114176135c5576135a88633610a3e565b6135c557604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0385166135ec57604051633a954ecd60e21b815260040160405180910390fd5b80156135f757600082555b6001600160a01b038681166000908152600560205260408082208054600019019055918716808252919020805460010190554260a01b17600160e11b17600085815260046020526040812091909155600160e11b84169003613689576001840160008181526004602052604081205490036136875760005481146136875760008181526004602052604090208490555b505b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6002600954036137245760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016103d8565b6002600955565b8047101561377b5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016103d8565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146137c8576040519150601f19603f3d011682016040523d82523d6000602084013e6137cd565b606091505b50509050806111c15760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016103d8565b6111c183838360405180602001604052806000815250612a12565b6000806018546001600160401b0381111561387c5761387c6143a8565b6040519080825280602002602001820160405280156138a5578160200160208202803683370190505b50905060005b6018548110156138db57808282815181106138c8576138c8614e0a565b60209081029190910101526001016138ab565b50604080516020810190915260145481526138f68183613e0a565b81848151811061390857613908614e0a565b602002602001015192505050919050565b600080805b6010846001811061393157613931614e0a565b01548110156103fa5760006010856001811061394f5761394f614e0a565b01828154811061396157613961614e0a565b9060005260206000200154905082861015801561398657506139838184614d72565b86105b1561399557509150610d009050565b61399f8184614d72565b92505080806139ad90614dbd565b91505061391e565b601f1982015182518251603f199092019182906139d29083614d72565b1115613a305760405162461bcd60e51b815260206004820152602760248201527f44796e616d69634275666665723a20417070656e64696e67206f7574206f66206044820152663137bab732399760c91b60648201526084016103d8565b610fe88484613e8e565b606060a06040510180604052602081039150506000815280825b600183039250600a81066030018353600a900480613a545750819003601f19909101908152919050565b600081600054811015613acc5760008181526004602052604081205490600160e01b82169003613aca575b80600003610f0b575060001901600081815260046020526040902054613aa9565b505b604051636f96cda160e11b815260040160405180910390fd5b6060836000613af48585614e69565b6001600160401b03811115613b0b57613b0b6143a8565b6040519080825280601f01601f191660200182016040528015613b35576020820181803683370190505b509050845b84811015613ba757828181518110613b5457613b54614e0a565b01602001516001600160f81b03191682613b6e8884614e69565b81518110613b7e57613b7e614e0a565b60200101906001600160f81b031916908160001a90535080613b9f81614dbd565b915050613b3a565b5095945050505050565b60008181805b82518160ff161015613c67576030838260ff1681518110613bda57613bda614e0a565b016020015160f81c10801590613c0d57506039838260ff1681518110613c0257613c02614e0a565b016020015160f81c11155b15613c5557613c1d600a836155ac565b91506030838260ff1681518110613c3657613c36614e0a565b0160200151613c48919060f81c6155d5565b613c5290836155f8565b91505b80613c5f8161561d565b915050613bb7565b509392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6060610d0082600080613ec4565b600082613cdc8584613fc2565b14949350505050565b613cf08484846111c6565b6001600160a01b0383163b15610fe857613d0c84848484614007565b610fe8576040516368d2bf6b60e11b815260040160405180910390fd5b6060833b6000819003613d4c575050604080516020810190915260008152610f0b565b80841115613d6a575050604080516020810190915260008152610f0b565b83831015613d9c5760405163162544fd60e11b81526004810182905260248101859052604481018490526064016103d8565b8383038482036000828210613db15782613db3565b815b60408051603f8301601f19168101909152818152955090508087602087018a3c505050509392505050565b6060815182604051602001613df492919061563c565b6040516020818303038152906040529050919050565b80516000196fffffffffffffffffffffffffffffffff82156111be576020840193505b6020852080865282840193608082901c0660051b850184613e4f5750506111be565b600585811b8701805183519091529091528385019482841606901b850184613e785750506111be565b600585901b860180518251909152905250613e2d565b8051602082019150808201602084510184015b81841015613eb9578351815260209384019301613ea1565b505082510190915250565b606083518015613c67576003600282010460021b60405192507f4142434445464748494a4b4c4d4e4f505152535455565758595a616263646566601f526102308515027f6768696a6b6c6d6e6f707172737475767778797a303132333435363738392d5f03603f52602083018181015b6003880197508751603f8160121c16518353603f81600c1c16516001840153603f8160061c16516002840153603f811651600384015350600482019150808210613f345760038406868015613f9457600182148215150185038752613fac565b603d821515850353603d6001831460011b8503538487525b5050601f01601f19166040525050509392505050565b600081815b8451811015613c6757613ff382868381518110613fe657613fe6614e0a565b60200260200101516140f2565b915080613fff81614dbd565b915050613fc7565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061403c90339089908890889060040161568d565b6020604051808303816000875af1925050508015614077575060408051601f3d908101601f19168201909252614074918101906156ca565b60015b6140d5573d8080156140a5576040519150601f19603f3d011682016040523d82523d6000602084013e6140aa565b606091505b5080516000036140cd576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b600081831061410e576000828152602084905260409020610f0b565b6000838152602083905260409020610f0b565b82805461412d90614dd6565b90600052602060002090601f01602090048101928261414f5760008555614195565b82601f1061416857805160ff1916838001178555614195565b82800160010185558215614195579182015b8281111561419557825182559160200191906001019061417a565b506141a1929150614234565b5090565b828054828255906000526020600020908101928215614195579160200282015b8281111561419557825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906141c5565b828054828255906000526020600020908101928215614195579160200282018281111561419557825182559160200191906001019061417a565b5b808211156141a15760008155600101614235565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008261428457614284614249565b500490565b6001600160e01b03198116811461334357600080fd5b6000602082840312156142b157600080fd5b8135610f0b81614289565b60005b838110156142d75781810151838201526020016142bf565b83811115610fe85750506000910152565b600081518084526143008160208601602086016142bc565b601f01601f19169290920160200192915050565b602081526000610f0b60208301846142e8565b60006020828403121561433957600080fd5b5035919050565b80356001600160a01b038116811461435757600080fd5b919050565b6000806040838503121561436f57600080fd5b61437883614340565b946020939093013593505050565b6000806040838503121561439957600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b60405160e081016001600160401b03811182821017156143e0576143e06143a8565b60405290565b60405160c081016001600160401b03811182821017156143e0576143e06143a8565b604080519081016001600160401b03811182821017156143e0576143e06143a8565b604051601f8201601f191681016001600160401b0381118282101715614452576144526143a8565b604052919050565b600082601f83011261446b57600080fd5b81356001600160401b03811115614484576144846143a8565b614497601f8201601f191660200161442a565b8181528460208386010111156144ac57600080fd5b816020850160208301376000918101602001919091529392505050565b6000602082840312156144db57600080fd5b81356001600160401b03808211156144f257600080fd5b9083019060e0828603121561450657600080fd5b61450e6143be565b82358281111561451d57600080fd5b6145298782860161445a565b82525060208301358281111561453e57600080fd5b61454a8782860161445a565b60208301525060408301358281111561456257600080fd5b61456e8782860161445a565b60408301525060608301358281111561458657600080fd5b6145928782860161445a565b6060830152506080830135828111156145aa57600080fd5b6145b68782860161445a565b60808301525060a083013560a082015260c0830135828111156145d857600080fd5b6145e48782860161445a565b60c08301525095945050505050565b801515811461334357600080fd5b8035614357816145f3565b600060c0828403121561461e57600080fd5b6146266143e6565b905081356001600160401b038082111561463f57600080fd5b61464b8583860161445a565b8352602084013591508082111561466157600080fd5b61466d8583860161445a565b6020840152604084013591508082111561468657600080fd5b506146938482850161445a565b6040830152506146a560608301614601565b60608201526146b660808301614601565b608082015260a082013560a082015292915050565b6000806000606084860312156146e057600080fd5b833592506020840135915060408401356001600160401b0381111561470457600080fd5b6147108682870161460c565b9150509250925092565b60008060006060848603121561472f57600080fd5b61473884614340565b925061474660208501614340565b9150604084013590509250925092565b60e08152600061476960e083018a6142e8565b828103602084015261477b818a6142e8565b9050828103604084015261478f81896142e8565b905082810360608401526147a381886142e8565b905082810360808401526147b781876142e8565b90508460a084015282810360c08401526147d181856142e8565b9a9950505050505050505050565b6000602082840312156147f157600080fd5b81356001600160401b0381111561480757600080fd5b61289d8482850161445a565b60006020828403121561482557600080fd5b610f0b82614340565b60808152600061484160808301876142e8565b828103602084015261485381876142e8565b6001600160a01b0395909516604084015250506060015292915050565b60006001600160401b03821115614889576148896143a8565b5060051b60200190565b600080604083850312156148a657600080fd5b823591506020808401356001600160401b03808211156148c557600080fd5b818601915086601f8301126148d957600080fd5b81356148ec6148e782614870565b61442a565b81815260059190911b8301840190848101908983111561490b57600080fd5b8585015b83811015614943578035858111156149275760008081fd5b6149358c89838a010161460c565b84525091860191860161490f565b508096505050505050509250929050565b6000806040838503121561496757600080fd5b61497083614340565b91506020830135614980816145f3565b809150509250929050565b60008083601f84011261499d57600080fd5b5081356001600160401b038111156149b457600080fd5b6020830191508360208260051b85010111156149cf57600080fd5b9250929050565b6000806000604084860312156149eb57600080fd5b6149f484614340565b925060208401356001600160401b03811115614a0f57600080fd5b614a1b8682870161498b565b9497909650939450505050565b600082601f830112614a3957600080fd5b81356020614a496148e783614870565b82815260059290921b84018101918181019086841115614a6857600080fd5b8286015b84811015614a835780358352918301918301614a6c565b509695505050505050565b60006020808385031215614aa157600080fd5b82356001600160401b0380821115614ab857600080fd5b818501915085601f830112614acc57600080fd5b8135614ada6148e782614870565b81815260059190911b83018401908481019088831115614af957600080fd5b8585015b83811015614b8c57803585811115614b155760008081fd5b86016040818c03601f1901811315614b2d5760008081fd5b614b35614408565b8983013588811115614b475760008081fd5b614b558e8c83870101614a28565b825250908201359087821115614b6b5760008081fd5b614b798d8b84860101614a28565b818b015285525050918601918601614afd565b5098975050505050505050565b60008060008060808587031215614baf57600080fd5b614bb885614340565b9350614bc660208601614340565b92506040850135915060608501356001600160401b03811115614be857600080fd5b614bf48782880161445a565b91505092959194509250565b600080600060408486031215614c1557600080fd5b8335925060208401356001600160401b03811115614a0f57600080fd5b60008060408385031215614c4557600080fd5b82359150614c5560208401614340565b90509250929050565b60008060408385031215614c7157600080fd5b823591506020830135614980816145f3565b6020808252825182820181905260009190848201906040850190845b81811015614cbb57835183529284019291840191600101614c9f565b50909695505050505050565b60008060408385031215614cda57600080fd5b614ce383614340565b9150614c5560208401614340565b602081526000825160606020840152614d0d60808401826142e8565b90506020840151601f19848303016040850152614d2a82826142e8565b9150506040840151151560608401528091505092915050565b6020808252601590820152744d696e74696e67206973206e6f742061637469766560581b604082015260600190565b60008219821115614d8557614d8561425f565b500190565b6000816000190483118215151615614da457614da461425f565b500290565b600082614db857614db8614249565b500690565b600060018201614dcf57614dcf61425f565b5060010190565b600181811c90821680614dea57607f821691505b60208210810361353457634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b60208082526012908201527110dbdb9d1c9858dd081a5cc81cd9585b195960721b604082015260600190565b600060208284031215614e5e57600080fd5b8151610f0b816145f3565b600082821015614e7b57614e7b61425f565b500390565b8054600090600181811c9080831680614e9a57607f831692505b60208084108203614ebb57634e487b7160e01b600052602260045260246000fd5b818015614ecf5760018114614ee057614f0d565b60ff19861689528489019650614f0d565b60008881526020902060005b86811015614f055781548b820152908501908301614eec565b505084890196505b50505050505092915050565b6e3d913a3930b4ba2fba3cb832911d1160891b81526000614f3d600f830185614e80565b6a1116113b30b63ab2911d1160a91b8152614f5b600b820185614e80565b61227d60f01b815260020195945050505050565b6000614f7b8284614e80565b75076c4c2c6d6cee4deeadcc85ad2dac2ceca74eae4d8560531b81526016019392505050565b643230ba309d60d91b81526000614fbb6005830185614e80565b670ed8985cd94d8d0b60c21b81528351614fdc8160088401602088016142bc565b6505258eae4d8560d31b60089290910191820152600e01949350505050565b643230ba309d60d91b815260006150156005830185614e80565b670ed8985cd94d8d0b60c21b815283516150368160088401602088016142bc565b7f293b6261636b67726f756e642d7265706561743a6e6f2d7265706561743b6261600892909101918201527f636b67726f756e642d73697a653a636f6e7461696e3b6261636b67726f756e6460288201527f2d706f736974696f6e3a63656e7465723b696d6167652d72656e646572696e6760488201527f3a2d7765626b69742d6f7074696d697a652d636f6e74726173743b2d6d732d6960688201527f6e746572706f6c6174696f6e2d6d6f64653a6e6561726573742d6e656967686260888201527f6f723b696d6167652d72656e646572696e673a2d6d6f7a2d63726973702d656460a88201527f6765733b696d6167652d72656e646572696e673a706978656c617465643b223e60c8820152651e17b9bb339f60d11b60e882015260ee01949350505050565b7f646174613a696d6167652f7376672b786d6c3b6261736536342c00000000000081526000825161519781601a8501602087016142bc565b91909101601a0192915050565b683d913730b6b2911d1160b91b815260006151c26009830186614e80565b61202360f01b815284516151dd8160028401602089016142bc565b701116113232b9b1b934b83a34b7b7111d1160791b600292909101918201526152096013820185614e80565b61088b60f21b81526002019695505050505050565b681134b6b0b3b2911d1160b91b8152600061523c6009830187614e80565b855161524c818360208a016142bc565b643f646e613d60d81b9101908152845161526d8160058401602089016142bc565b6a266e6574776f726b49643d60a81b600592909101918201526152936010820185614e80565b61088b60f21b8152600201979650505050505050565b7f3c7376672077696474683d223130302522206865696768743d2231303025222081527f76696577426f783d2230203020313230302031323030222076657273696f6e3d60208201527f22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f3260408201527f3030302f737667223e3c696d6167652077696474683d2231323030222068656960608201527033b43a1e91189918181110343932b31e9160791b60808201526000825161536d8160918501602087016142bc565b6f111f1e17b4b6b0b3b29f1e17b9bb339f60811b609193909101928301525060a101919050565b6d1134b6b0b3b2afb230ba30911d1160911b815281516000906153be81600e8501602087016142bc565b61088b60f21b600e939091019283015250601001919050565b6c1130ba3a3934b13aba32b9911d60991b8152815160009061540081600d8501602087016142bc565b607d60f81b600d939091019283015250600e01919050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c00000081526000825161545081601d8501602087016142bc565b91909101601d0192915050565b683d913730b6b2911d1160b91b8152600061547b600983018a614e80565b701116113232b9b1b934b83a34b7b7111d1160791b815261549f601182018a614e80565b6a11161134b6b0b3b2911d1160a91b815290506154bf600b820189614e80565b6b1116113130b73732b9111d1160a11b815290506154e0600c820188614e80565b7211161132bc3a32b93730b62fb634b735911d1160691b815290506155086013820187614e80565b90507f222c2273656c6c65725f6665655f62617369735f706f696e7473223a000000008152845161554081601c8401602089016142bc565b7116113332b2afb932b1b4b834b2b73a111d1160711b601c929091019182015261556d602e820185614e80565b61227d60f01b81526002019a9950505050505050505050565b600081526000825161559f8160018501602087016142bc565b9190910160010192915050565b600060ff821660ff84168160ff04811182151516156155cd576155cd61425f565b029392505050565b600060ff821660ff8416808210156155ef576155ef61425f565b90039392505050565b600060ff821660ff84168060ff038211156156155761561561425f565b019392505050565b600060ff821660ff81036156335761563361425f565b60010192915050565b606360f81b815260e083901b6001600160e01b03191660018201526880600e6000396000f360b81b6005820152815160009061567f81600e8501602087016142bc565b91909101600e019392505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906156c0908301846142e8565b9695505050505050565b6000602082840312156156dc57600080fd5b8151610f0b8161428956fe3c7376672077696474683d223132303022206865696768743d2231323030222076696577426f783d2230203020313230302031323030222076657273696f6e3d22312e322220786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207374796c653d226261636b67726f756e642d636f6c6f723aa2646970667358221220a931b5280d15014361650b83cf28173eee8d826b4c763ac32db57dd31c9d2cdc64736f6c634300080e0033
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.