More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,412 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Buy NF Ts | 21698351 | 16 hrs ago | IN | 0.05529953 ETH | 0.00332118 | ||||
Buy NF Ts | 21635348 | 9 days ago | IN | 0.02304147 ETH | 0.0005681 | ||||
Buy Jay | 21623149 | 11 days ago | IN | 0.00827205 ETH | 0.00513466 | ||||
Buy NF Ts | 21596421 | 14 days ago | IN | 0.01843317 ETH | 0.00160386 | ||||
Buy NF Ts | 21577833 | 17 days ago | IN | 0.00460829 ETH | 0.00058457 | ||||
Buy NF Ts | 21570608 | 18 days ago | IN | 0.03225806 ETH | 0.00117676 | ||||
Buy Jay | 21569201 | 18 days ago | IN | 0.00091911 ETH | 0.00145151 | ||||
Buy Jay | 21569196 | 18 days ago | IN | 0.00827205 ETH | 0.0048734 | ||||
Buy Jay | 21528220 | 24 days ago | IN | 0.00827205 ETH | 0.00337034 | ||||
Buy Jay | 21528209 | 24 days ago | IN | 0.00091911 ETH | 0.00134678 | ||||
Buy Jay | 21528201 | 24 days ago | IN | 0.00091911 ETH | 0.00114959 | ||||
Buy Jay | 21528173 | 24 days ago | IN | 0.0055147 ETH | 0.00255033 | ||||
Buy Jay | 21528148 | 24 days ago | IN | 0.00091911 ETH | 0.00108358 | ||||
Buy NF Ts | 21528014 | 24 days ago | IN | 0.00921658 ETH | 0.00050122 | ||||
Buy NF Ts | 21527993 | 24 days ago | IN | 0.01382488 ETH | 0.00067076 | ||||
Buy NF Ts | 21527955 | 24 days ago | IN | 0.0231 ETH | 0.0006998 | ||||
Buy Jay | 21527554 | 24 days ago | IN | 0.00275735 ETH | 0.000775 | ||||
Buy Jay | 21527552 | 24 days ago | IN | 0.00459558 ETH | 0.00088436 | ||||
Buy Jay | 21527527 | 24 days ago | IN | 0.00183823 ETH | 0.00063463 | ||||
Buy Jay | 21527352 | 24 days ago | IN | 0.00091911 ETH | 0.00040353 | ||||
Buy Jay | 21527347 | 24 days ago | IN | 0.00367647 ETH | 0.00068684 | ||||
Buy Jay | 21527325 | 24 days ago | IN | 0.00919117 ETH | 0.00263937 | ||||
Buy Jay | 21527202 | 24 days ago | IN | 0.06433823 ETH | 0.00846918 | ||||
Buy Jay | 21527127 | 24 days ago | IN | 0.00275735 ETH | 0.00073861 | ||||
Buy Jay | 21527089 | 24 days ago | IN | 0.00091911 ETH | 0.00044416 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
||||
---|---|---|---|---|---|---|---|
21698351 | 16 hrs ago | 0 ETH | |||||
21698351 | 16 hrs ago | 0.02764976 ETH | |||||
21698351 | 16 hrs ago | 0.02764976 ETH | |||||
21698351 | 16 hrs ago | 0 ETH | |||||
21698351 | 16 hrs ago | 0 ETH | |||||
21698351 | 16 hrs ago | 0 ETH | |||||
21698351 | 16 hrs ago | 0 ETH | |||||
21698351 | 16 hrs ago | 0 ETH | |||||
21698351 | 16 hrs ago | 0 ETH | |||||
21698351 | 16 hrs ago | 0 ETH | |||||
21698351 | 16 hrs ago | 0 ETH | |||||
21698351 | 16 hrs ago | 0 ETH | |||||
21698351 | 16 hrs ago | 0 ETH | |||||
21698351 | 16 hrs ago | 0 ETH | |||||
21698351 | 16 hrs ago | 0 ETH | |||||
21635348 | 9 days ago | 0 ETH | |||||
21635348 | 9 days ago | 0.01152073 ETH | |||||
21635348 | 9 days ago | 0.01152073 ETH | |||||
21635348 | 9 days ago | 0 ETH | |||||
21635348 | 9 days ago | 0 ETH | |||||
21635348 | 9 days ago | 0 ETH | |||||
21635348 | 9 days ago | 0 ETH | |||||
21635348 | 9 days ago | 0 ETH | |||||
21623149 | 11 days ago | 0.00413602 ETH | |||||
21623149 | 11 days ago | 0.00206801 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
JayMart
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity 0.8.16; import "@openzeppelin/contracts/token/ERC1155/IERC1155Receiver.sol"; import "@openzeppelin/contracts/token/ERC1155/IERC1155.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@chainlink/contracts/src/v0.8/interfaces/AggregatorV3Interface.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import {ReentrancyGuard} from "@openzeppelin/contracts/security/ReentrancyGuard.sol"; interface IJAY { function sell(uint256 value) external; function buy(address reciever) external payable; function burnFrom(address account, uint256 amount) external; function ETHtoJAY(uint256 value) external view returns (uint256); } contract JayMart is Ownable, ReentrancyGuard { // Define our price feed interface AggregatorV3Interface internal priceFeed; // Create variable to hold the team wallet address address payable private TEAM_WALLET; // Create variable to hold contract address address payable private immutable JAY_ADDRESS; // Define new IJAY interface IJAY private immutable JAY; // Define some constant variables uint256 private constant SELL_NFT_PAYOUT = 2; uint256 private constant SELL_NFT_FEE_VAULT = 4; uint256 private constant SELL_NFT_FEE_TEAM = 4; uint256 private constant BUY_NFT_FEE_TEAM = 2; uint256 private constant USD_PRICE_SELL = 2 * 10 ** 18; uint256 private constant USD_PRICE_BUY = 10 * 10 ** 18; // Define variables for amount of NFTs bought/sold uint256 private nftsBought; uint256 private nftsSold; // Create variables for gas fee calculation uint256 private buyNftFeeEth = 0.01 * 10 ** 18; uint256 private buyNftFeeJay = 10 * 10 ** 18; uint256 private sellNftFeeEth = 0.001 * 10 ** 18; // Create variable to hold when the next fee update can occur uint256 private nextFeeUpdate = block.timestamp + (7 days); // Constructor constructor(address _jayAddress) { JAY = IJAY(_jayAddress); JAY_ADDRESS = payable(_jayAddress); setTEAMWallet(0x985B6B9064212091B4b325F68746B77262801BcB); priceFeed = AggregatorV3Interface( 0x5f4eC3Df9cbd43714FE2740f5E3616155c5b8419 ); //main } function setTEAMWallet(address _address) public onlyOwner { TEAM_WALLET = payable(_address); } /* * Name: sendEth * Purpose: Tranfer ETH tokens * Parameters: * - @param 1: Address * - @param 2: Value * Return: n/a */ function sendEth(address _address, uint256 _value) private { (bool success, ) = _address.call{value: _value}(""); require(success, "ETH Transfer failed."); } /* * Name: buyNFTs * Purpose: Purchase NFTs with ETH * Parameters: * - @param 1: ERC721 Token Address * - @param 2: ERC721 IDs * - @param 3: ERC1155 Token Address * - @param 4: ERC1155 IDs * - @param 5: ERC1155 Amounts * Return: n/a */ function buyNFTs( address[] calldata erc721TokenAddress, uint256[] calldata erc721Ids, address[] calldata erc1155TokenAddress, uint256[] calldata erc1155Ids, uint256[] calldata erc1155Amounts ) external payable nonReentrant { // Calculate total require( erc721TokenAddress.length + erc1155TokenAddress.length <= 500, "Max is 500" ); uint256 total = erc721TokenAddress.length; // Transfer ERC721 NFTs buyERC721(erc721TokenAddress, erc721Ids); // Transfer ERC1155 NFTs total += buyERC1155(erc1155TokenAddress, erc1155Ids, erc1155Amounts); // Increase NFTs bought nftsBought += total; // Calculate Jay fee uint256 _fee = total * (buyNftFeeEth); // Make sure enough ETH is present require(msg.value >= _fee, "You need to pay more ETH."); // Send fees to designated wallets sendEth(TEAM_WALLET, msg.value / (BUY_NFT_FEE_TEAM)); sendEth(JAY_ADDRESS, address(this).balance); // Initiate burn method JAY.burnFrom(msg.sender, total * (buyNftFeeJay)); } /* * Name: buyJay * Purpose: Purchase JAY tokens by selling NFTs * Parameters: * - @param 1: ERC721 Token Address * - @param 2: ERC721 IDs * - @param 3: ERC1155 Token Address * - @param 4: ERC1155 IDs * - @param 5: ERC1155 Amounts * Return: n/a */ function buyJay( address[] calldata erc721TokenAddress, uint256[] calldata erc721Ids, address[] calldata erc1155TokenAddress, uint256[] calldata erc1155Ids, uint256[] calldata erc1155Amounts ) external payable nonReentrant { require( erc721TokenAddress.length + erc1155TokenAddress.length <= 500, "Max is 500" ); uint256 teamFee = msg.value / (SELL_NFT_FEE_TEAM); uint256 jayFee = msg.value / (SELL_NFT_FEE_VAULT); uint256 userValue = msg.value / (SELL_NFT_PAYOUT); uint256 total = erc721TokenAddress.length; // Transfer ERC721 NFTs buyJayWithERC721(erc721TokenAddress, erc721Ids); // Transfer ERC1155 NFTs total += buyJayWithERC1155( erc1155TokenAddress, erc1155Ids, erc1155Amounts ); // Increase nftsSold variable nftsSold += total; // Calculate fee uint256 _fee = total >= 100 ? ((total) * (sellNftFeeEth)) / (2) : (total) * (sellNftFeeEth); // Make sure enough ETH is present require(msg.value >= _fee, "You need to pay more ETH."); // Send fees to their designated wallets sendEth(TEAM_WALLET, teamFee); sendEth(JAY_ADDRESS, jayFee); // buy JAY JAY.buy{value: userValue}(msg.sender); } /* * Name: buyERC721 * Purpose: Transfer ERC721 NFTs * Parameters: * - @param 1: ERC721 Token Address * - @param 2: ERC721 IDs * Return: n/a */ function buyERC721( address[] calldata _tokenAddress, uint256[] calldata ids ) internal { for (uint256 id = 0; id < ids.length; id++) { IERC721(_tokenAddress[id]).safeTransferFrom( address(this), msg.sender, ids[id] ); } } /* * Name: buyERC1155 * Purpose: Transfer ERC1155 NFTs * Parameters: * - @param 1: ERC1155 Token Address * - @param 2: ERC1155 IDs * - @param 3: ERC1155 Amounts * Return: Amount of NFTs bought */ function buyERC1155( address[] calldata _tokenAddress, uint256[] calldata ids, uint256[] calldata amounts ) internal returns (uint256) { uint256 amount = 0; for (uint256 id = 0; id < ids.length; id++) { amount = amount + (amounts[id]); IERC1155(_tokenAddress[id]).safeTransferFrom( address(this), msg.sender, ids[id], amounts[id], "" ); } return amount; } /* * Name: buyJayWithERC721 * Purpose: Buy JAY from selling ERC721 NFTs * Parameters: * - @param 1: ERC721 Token Address * - @param 2: ERC721 IDs * * Return: n/a */ function buyJayWithERC721( address[] calldata _tokenAddress, uint256[] calldata ids ) internal { for (uint256 id = 0; id < ids.length; id++) { IERC721(_tokenAddress[id]).safeTransferFrom( msg.sender, address(this), ids[id] ); } } /* * Name: buyJayWithERC1155 * Purpose: Buy JAY from selling ERC1155 NFTs * Parameters: * - @param 1: ERC1155 Token Address * - @param 2: ERC1155 IDs * - @param 3: ERC1155 Amounts * * Return: Number of NFTs sold */ function buyJayWithERC1155( address[] calldata _tokenAddress, uint256[] calldata ids, uint256[] calldata amounts ) internal returns (uint256) { uint256 amount = 0; for (uint256 id = 0; id < ids.length; id++) { amount = amount + (amounts[id]); IERC1155(_tokenAddress[id]).safeTransferFrom( msg.sender, address(this), ids[id], amounts[id], "" ); } return amount; } function getPriceSell(uint256 total) public view returns (uint256) { return total * sellNftFeeEth; } function getPriceBuy(uint256 total) public view returns (uint256) { return total * buyNftFeeEth; } function getFees() public view returns (uint256, uint256, uint256, uint256) { return (sellNftFeeEth, buyNftFeeEth, buyNftFeeJay, nextFeeUpdate); } function getTotals() public view returns (uint256, uint256) { return (nftsBought, nftsSold); } /* * Name: updateFees * Purpose: Update the NFT sales fees * Parameters: n/a * Return: Array of uint256: NFT Sell Fee (ETH), NFT Buy Fee (ETH), NFT Buy Fee (JAY), time of next update */ function updateFees() external nonReentrant returns (uint256, uint256, uint256, uint256) { // Get latest price feed ( uint80 roundID, int256 price, , uint256 timestamp, uint80 answeredInRound ) = priceFeed.latestRoundData(); require(price > 0, "Chainlink price <= 0"); require(answeredInRound >= roundID, "Stale price"); require(timestamp != 0, "Round not complete"); uint256 _price = uint256(price) * (1 * 10 ** 10); require(timestamp > nextFeeUpdate, "Fee update every 24 hrs"); uint256 _sellNftFeeEth; if (_price > USD_PRICE_SELL) { uint256 _p = _price / (USD_PRICE_SELL); _sellNftFeeEth = uint256(1 * 10 ** 18) / (_p); } else { _sellNftFeeEth = USD_PRICE_SELL / (_price); } require( owner() == msg.sender || (sellNftFeeEth / (2) < _sellNftFeeEth && sellNftFeeEth * (150) > _sellNftFeeEth), "Fee swing too high" ); sellNftFeeEth = _sellNftFeeEth; if (_price > USD_PRICE_BUY) { uint256 _p = _price / (USD_PRICE_BUY); buyNftFeeEth = uint256(1 * 10 ** 18) / (_p); } else { buyNftFeeEth = USD_PRICE_BUY / (_price); } buyNftFeeJay = JAY.ETHtoJAY(buyNftFeeEth); nextFeeUpdate = timestamp + (24 hours); return (sellNftFeeEth, buyNftFeeEth, buyNftFeeJay, nextFeeUpdate); } function getLatestPrice() public view returns (int256) { (, int256 price, , , ) = priceFeed.latestRoundData(); return price; } receive() external payable {} function onERC1155Received( address, address, uint256, uint256, bytes memory ) public virtual returns (bytes4) { return this.onERC1155Received.selector; } function onERC721Received( address, address, uint256, bytes memory ) public virtual returns (bytes4) { return this.onERC721Received.selector; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; interface AggregatorV3Interface { function decimals() external view returns (uint8); function description() external view returns (string memory); function version() external view returns (uint256); function getRoundData(uint80 _roundId) external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); function latestRoundData() external view returns ( uint80 roundId, int256 answer, uint256 startedAt, uint256 updatedAt, uint80 answeredInRound ); }
// 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.7.0) (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @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`. * * 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 calldata data ) external; /** * @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 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 ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721 * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must * understand this adds an external call which potentially creates a reentrancy vulnerability. * * 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; /** * @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; /** * @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); }
// 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 v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_jayAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"address[]","name":"erc721TokenAddress","type":"address[]"},{"internalType":"uint256[]","name":"erc721Ids","type":"uint256[]"},{"internalType":"address[]","name":"erc1155TokenAddress","type":"address[]"},{"internalType":"uint256[]","name":"erc1155Ids","type":"uint256[]"},{"internalType":"uint256[]","name":"erc1155Amounts","type":"uint256[]"}],"name":"buyJay","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"erc721TokenAddress","type":"address[]"},{"internalType":"uint256[]","name":"erc721Ids","type":"uint256[]"},{"internalType":"address[]","name":"erc1155TokenAddress","type":"address[]"},{"internalType":"uint256[]","name":"erc1155Ids","type":"uint256[]"},{"internalType":"uint256[]","name":"erc1155Amounts","type":"uint256[]"}],"name":"buyNFTs","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"getFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLatestPrice","outputs":[{"internalType":"int256","name":"","type":"int256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"name":"getPriceBuy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"name":"getPriceSell","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotals","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC1155Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"","type":"bytes"}],"name":"onERC721Received","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setTEAMWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052662386f26fc10000600655678ac7230489e8000060075566038d7ea4c6800060085562093a804262000037919062000390565b6009553480156200004757600080fd5b50604051620029213803806200292183398181016040528101906200006d919062000435565b6200008d620000816200017d60201b60201c565b6200018560201b60201c565b600180819055508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506200012173985b6b9064212091b4b325f68746b77262801bcb6200024960201b60201c565b735f4ec3df9cbd43714fe2740f5e3616155c5b8419600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620004ea565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002596200029d60201b60201c565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b620002ad6200017d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002d36200032e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200032c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200032390620004c8565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200039d8262000357565b9150620003aa8362000357565b9250828201905080821115620003c557620003c462000361565b5b92915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003fd82620003d0565b9050919050565b6200040f81620003f0565b81146200041b57600080fd5b50565b6000815190506200042f8162000404565b92915050565b6000602082840312156200044e576200044d620003cb565b5b60006200045e848285016200041e565b91505092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620004b060208362000467565b9150620004bd8262000478565b602082019050919050565b60006020820190508181036000830152620004e381620004a1565b9050919050565b60805160a0516123fc6200052560003960008181610536015281816107930152610d4b01526000818161050f015261076c01526123fc6000f3fe6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063db8d55f111610059578063db8d55f11461029e578063f23a6e61146102cc578063f2fde38b14610309578063fc9fc6c714610332576100e8565b80638da5cb5b1461020b5780638e15f4731461023657806395b6712814610261576100e8565b80634ef26f6a116100bb5780634ef26f6a14610190578063666566e8146101ac578063715018a6146101c857806384e10a90146101df576100e8565b8063150b7a02146100ed57806329de6d201461012a57806343a43ec814610153576100e8565b366100e857005b600080fd5b3480156100f957600080fd5b50610114600480360381019061010f9190611667565b610360565b6040516101219190611725565b60405180910390f35b34801561013657600080fd5b50610151600480360381019061014c9190611740565b610374565b005b34801561015f57600080fd5b5061017a6004803603810190610175919061176d565b6103c0565b60405161018791906117a9565b60405180910390f35b6101aa60048036038101906101a5919061187a565b6103d7565b005b6101c660048036038101906101c1919061187a565b6105e4565b005b3480156101d457600080fd5b506101dd610836565b005b3480156101eb57600080fd5b506101f461084a565b604051610202929190611997565b60405180910390f35b34801561021757600080fd5b5061022061085b565b60405161022d91906119cf565b60405180910390f35b34801561024257600080fd5b5061024b610884565b6040516102589190611a03565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061176d565b610925565b60405161029591906117a9565b60405180910390f35b3480156102aa57600080fd5b506102b361093c565b6040516102c39493929190611a1e565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190611a63565b61095c565b6040516103009190611725565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190611740565b610971565b005b34801561033e57600080fd5b506103476109f4565b6040516103579493929190611a1e565b60405180910390f35b600063150b7a0260e01b9050949350505050565b61037c610e28565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600654826103d09190611b29565b9050919050565b6103df610ea6565b6101f4868690508b8b90506103f49190611b83565b1115610435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042c90611c14565b60405180910390fd5b60008a8a905090506104498b8b8b8b610ef5565b610457878787878787610fcc565b816104629190611b83565b905080600460008282546104769190611b83565b9250508190555060006006548261048d9190611b29565b9050803410156104d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c990611c80565b60405180910390fd5b61050a600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166002346105059190611ccf565b6110f4565b6105347f0000000000000000000000000000000000000000000000000000000000000000476110f4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166379cc6790336007548561057f9190611b29565b6040518363ffffffff1660e01b815260040161059c929190611d00565b600060405180830381600087803b1580156105b657600080fd5b505af11580156105ca573d6000803e3d6000fd5b5050505050506105d86111a5565b50505050505050505050565b6105ec610ea6565b6101f4868690508b8b90506106019190611b83565b1115610642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063990611c14565b60405180910390fd5b60006004346106519190611ccf565b905060006004346106629190611ccf565b905060006002346106739190611ccf565b905060008d8d905090506106898e8e8e8e6111ae565b6106978a8a8a8a8a8a611285565b816106a29190611b83565b905080600560008282546106b69190611b83565b92505081905550600060648210156106db57600854826106d69190611b29565b6106f6565b6002600854836106eb9190611b29565b6106f59190611ccf565b5b90508034101561073b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073290611c80565b60405180910390fd5b610767600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866110f4565b6107917f0000000000000000000000000000000000000000000000000000000000000000856110f4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f088d54784336040518363ffffffff1660e01b81526004016107eb91906119cf565b6000604051808303818588803b15801561080457600080fd5b505af1158015610818573d6000803e3d6000fd5b5050505050505050505061082a6111a5565b50505050505050505050565b61083e610e28565b61084860006113ad565b565b600080600454600554915091509091565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156108f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109189190611dac565b5050509150508091505090565b6000600854826109359190611b29565b9050919050565b600080600080600854600654600754600954935093509350935090919293565b600063f23a6e6160e01b905095945050505050565b610979610e28565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90611e99565b60405180910390fd5b6109f1816113ad565b50565b600080600080610a02610ea6565b600080600080600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015610a75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a999190611dac565b94509450509350935060008313610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc90611f05565b60405180910390fd5b8369ffffffffffffffffffff168169ffffffffffffffffffff161015610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790611f71565b60405180910390fd5b60008203610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611fdd565b60405180910390fd5b60006402540be40084610b969190611b29565b90506009548311610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390612049565b60405180910390fd5b6000671bc16d674ec80000821115610c22576000671bc16d674ec8000083610c049190611ccf565b905080670de0b6b3a7640000610c1a9190611ccf565b915050610c39565b81671bc16d674ec80000610c369190611ccf565b90505b3373ffffffffffffffffffffffffffffffffffffffff16610c5861085b565b73ffffffffffffffffffffffffffffffffffffffff161480610ca05750806002600854610c859190611ccf565b108015610c9f5750806096600854610c9d9190611b29565b115b5b610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd6906120b5565b60405180910390fd5b80600881905550678ac7230489e80000821115610d2e576000678ac7230489e8000083610d0c9190611ccf565b905080670de0b6b3a7640000610d229190611ccf565b60068190555050610d49565b81678ac7230489e80000610d429190611ccf565b6006819055505b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f57557476006546040518263ffffffff1660e01b8152600401610da491906117a9565b602060405180830381865afa158015610dc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de591906120d5565b6007819055506201518084610dfa9190611b83565b6009819055506008546006546007546009549950995099509950505050505050610e226111a5565b90919293565b610e30611471565b73ffffffffffffffffffffffffffffffffffffffff16610e4e61085b565b73ffffffffffffffffffffffffffffffffffffffff1614610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b9061214e565b60405180910390fd5b565b600260015403610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee2906121ba565b60405180910390fd5b6002600181905550565b60005b82829050811015610fc557848482818110610f1657610f156121da565b5b9050602002016020810190610f2b9190611740565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3033868686818110610f5b57610f5a6121da565b5b905060200201356040518463ffffffff1660e01b8152600401610f8093929190612209565b600060405180830381600087803b158015610f9a57600080fd5b505af1158015610fae573d6000803e3d6000fd5b505050508080610fbd90612240565b915050610ef8565b5050505050565b6000806000905060005b868690508110156110e557848482818110610ff457610ff36121da565b5b90506020020135826110069190611b83565b915088888281811061101b5761101a6121da565b5b90506020020160208101906110309190611740565b73ffffffffffffffffffffffffffffffffffffffff1663f242432a30338a8a868181106110605761105f6121da565b5b9050602002013589898781811061107a576110796121da565b5b905060200201356040518563ffffffff1660e01b81526004016110a094939291906122bf565b600060405180830381600087803b1580156110ba57600080fd5b505af11580156110ce573d6000803e3d6000fd5b5050505080806110dd90612240565b915050610fd6565b50809150509695505050505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161111a90612345565b60006040518083038185875af1925050503d8060008114611157576040519150601f19603f3d011682016040523d82523d6000602084013e61115c565b606091505b50509050806111a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611197906123a6565b60405180910390fd5b505050565b60018081905550565b60005b8282905081101561127e578484828181106111cf576111ce6121da565b5b90506020020160208101906111e49190611740565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3330868686818110611214576112136121da565b5b905060200201356040518463ffffffff1660e01b815260040161123993929190612209565b600060405180830381600087803b15801561125357600080fd5b505af1158015611267573d6000803e3d6000fd5b50505050808061127690612240565b9150506111b1565b5050505050565b6000806000905060005b8686905081101561139e578484828181106112ad576112ac6121da565b5b90506020020135826112bf9190611b83565b91508888828181106112d4576112d36121da565b5b90506020020160208101906112e99190611740565b73ffffffffffffffffffffffffffffffffffffffff1663f242432a33308a8a86818110611319576113186121da565b5b90506020020135898987818110611333576113326121da565b5b905060200201356040518563ffffffff1660e01b815260040161135994939291906122bf565b600060405180830381600087803b15801561137357600080fd5b505af1158015611387573d6000803e3d6000fd5b50505050808061139690612240565b91505061128f565b50809150509695505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114b88261148d565b9050919050565b6114c8816114ad565b81146114d357600080fd5b50565b6000813590506114e5816114bf565b92915050565b6000819050919050565b6114fe816114eb565b811461150957600080fd5b50565b60008135905061151b816114f5565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6115748261152b565b810181811067ffffffffffffffff821117156115935761159261153c565b5b80604052505050565b60006115a6611479565b90506115b2828261156b565b919050565b600067ffffffffffffffff8211156115d2576115d161153c565b5b6115db8261152b565b9050602081019050919050565b82818337600083830152505050565b600061160a611605846115b7565b61159c565b90508281526020810184848401111561162657611625611526565b5b6116318482856115e8565b509392505050565b600082601f83011261164e5761164d611521565b5b813561165e8482602086016115f7565b91505092915050565b6000806000806080858703121561168157611680611483565b5b600061168f878288016114d6565b94505060206116a0878288016114d6565b93505060406116b18782880161150c565b925050606085013567ffffffffffffffff8111156116d2576116d1611488565b5b6116de87828801611639565b91505092959194509250565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61171f816116ea565b82525050565b600060208201905061173a6000830184611716565b92915050565b60006020828403121561175657611755611483565b5b6000611764848285016114d6565b91505092915050565b60006020828403121561178357611782611483565b5b60006117918482850161150c565b91505092915050565b6117a3816114eb565b82525050565b60006020820190506117be600083018461179a565b92915050565b600080fd5b600080fd5b60008083601f8401126117e4576117e3611521565b5b8235905067ffffffffffffffff811115611801576118006117c4565b5b60208301915083602082028301111561181d5761181c6117c9565b5b9250929050565b60008083601f84011261183a57611839611521565b5b8235905067ffffffffffffffff811115611857576118566117c4565b5b602083019150836020820283011115611873576118726117c9565b5b9250929050565b60008060008060008060008060008060a08b8d03121561189d5761189c611483565b5b60008b013567ffffffffffffffff8111156118bb576118ba611488565b5b6118c78d828e016117ce565b9a509a505060208b013567ffffffffffffffff8111156118ea576118e9611488565b5b6118f68d828e01611824565b985098505060408b013567ffffffffffffffff81111561191957611918611488565b5b6119258d828e016117ce565b965096505060608b013567ffffffffffffffff81111561194857611947611488565b5b6119548d828e01611824565b945094505060808b013567ffffffffffffffff81111561197757611976611488565b5b6119838d828e01611824565b92509250509295989b9194979a5092959850565b60006040820190506119ac600083018561179a565b6119b9602083018461179a565b9392505050565b6119c9816114ad565b82525050565b60006020820190506119e460008301846119c0565b92915050565b6000819050919050565b6119fd816119ea565b82525050565b6000602082019050611a1860008301846119f4565b92915050565b6000608082019050611a33600083018761179a565b611a40602083018661179a565b611a4d604083018561179a565b611a5a606083018461179a565b95945050505050565b600080600080600060a08688031215611a7f57611a7e611483565b5b6000611a8d888289016114d6565b9550506020611a9e888289016114d6565b9450506040611aaf8882890161150c565b9350506060611ac08882890161150c565b925050608086013567ffffffffffffffff811115611ae157611ae0611488565b5b611aed88828901611639565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b34826114eb565b9150611b3f836114eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611b7857611b77611afa565b5b828202905092915050565b6000611b8e826114eb565b9150611b99836114eb565b9250828201905080821115611bb157611bb0611afa565b5b92915050565b600082825260208201905092915050565b7f4d61782069732035303000000000000000000000000000000000000000000000600082015250565b6000611bfe600a83611bb7565b9150611c0982611bc8565b602082019050919050565b60006020820190508181036000830152611c2d81611bf1565b9050919050565b7f596f75206e65656420746f20706179206d6f7265204554482e00000000000000600082015250565b6000611c6a601983611bb7565b9150611c7582611c34565b602082019050919050565b60006020820190508181036000830152611c9981611c5d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611cda826114eb565b9150611ce5836114eb565b925082611cf557611cf4611ca0565b5b828204905092915050565b6000604082019050611d1560008301856119c0565b611d22602083018461179a565b9392505050565b600069ffffffffffffffffffff82169050919050565b611d4881611d29565b8114611d5357600080fd5b50565b600081519050611d6581611d3f565b92915050565b611d74816119ea565b8114611d7f57600080fd5b50565b600081519050611d9181611d6b565b92915050565b600081519050611da6816114f5565b92915050565b600080600080600060a08688031215611dc857611dc7611483565b5b6000611dd688828901611d56565b9550506020611de788828901611d82565b9450506040611df888828901611d97565b9350506060611e0988828901611d97565b9250506080611e1a88828901611d56565b9150509295509295909350565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e83602683611bb7565b9150611e8e82611e27565b604082019050919050565b60006020820190508181036000830152611eb281611e76565b9050919050565b7f436861696e6c696e6b207072696365203c3d2030000000000000000000000000600082015250565b6000611eef601483611bb7565b9150611efa82611eb9565b602082019050919050565b60006020820190508181036000830152611f1e81611ee2565b9050919050565b7f5374616c65207072696365000000000000000000000000000000000000000000600082015250565b6000611f5b600b83611bb7565b9150611f6682611f25565b602082019050919050565b60006020820190508181036000830152611f8a81611f4e565b9050919050565b7f526f756e64206e6f7420636f6d706c6574650000000000000000000000000000600082015250565b6000611fc7601283611bb7565b9150611fd282611f91565b602082019050919050565b60006020820190508181036000830152611ff681611fba565b9050919050565b7f4665652075706461746520657665727920323420687273000000000000000000600082015250565b6000612033601783611bb7565b915061203e82611ffd565b602082019050919050565b6000602082019050818103600083015261206281612026565b9050919050565b7f466565207377696e6720746f6f20686967680000000000000000000000000000600082015250565b600061209f601283611bb7565b91506120aa82612069565b602082019050919050565b600060208201905081810360008301526120ce81612092565b9050919050565b6000602082840312156120eb576120ea611483565b5b60006120f984828501611d97565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612138602083611bb7565b915061214382612102565b602082019050919050565b600060208201905081810360008301526121678161212b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006121a4601f83611bb7565b91506121af8261216e565b602082019050919050565b600060208201905081810360008301526121d381612197565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060608201905061221e60008301866119c0565b61222b60208301856119c0565b612238604083018461179a565b949350505050565b600061224b826114eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361227d5761227c611afa565b5b600182019050919050565b600082825260208201905092915050565b50565b60006122a9600083612288565b91506122b482612299565b600082019050919050565b600060a0820190506122d460008301876119c0565b6122e160208301866119c0565b6122ee604083018561179a565b6122fb606083018461179a565b818103608083015261230c8161229c565b905095945050505050565b600081905092915050565b600061232f600083612317565b915061233a82612299565b600082019050919050565b600061235082612322565b9150819050919050565b7f455448205472616e73666572206661696c65642e000000000000000000000000600082015250565b6000612390601483611bb7565b915061239b8261235a565b602082019050919050565b600060208201905081810360008301526123bf81612383565b905091905056fea2646970667358221220e577e75ea967503ca8086eb2a59f3b0aad33eb72bffbbc9d9ee8fcd3b8fff20464736f6c63430008100033000000000000000000000000da7c0810ce6f8329786160bb3d1734cf6661ca6e
Deployed Bytecode
0x6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063db8d55f111610059578063db8d55f11461029e578063f23a6e61146102cc578063f2fde38b14610309578063fc9fc6c714610332576100e8565b80638da5cb5b1461020b5780638e15f4731461023657806395b6712814610261576100e8565b80634ef26f6a116100bb5780634ef26f6a14610190578063666566e8146101ac578063715018a6146101c857806384e10a90146101df576100e8565b8063150b7a02146100ed57806329de6d201461012a57806343a43ec814610153576100e8565b366100e857005b600080fd5b3480156100f957600080fd5b50610114600480360381019061010f9190611667565b610360565b6040516101219190611725565b60405180910390f35b34801561013657600080fd5b50610151600480360381019061014c9190611740565b610374565b005b34801561015f57600080fd5b5061017a6004803603810190610175919061176d565b6103c0565b60405161018791906117a9565b60405180910390f35b6101aa60048036038101906101a5919061187a565b6103d7565b005b6101c660048036038101906101c1919061187a565b6105e4565b005b3480156101d457600080fd5b506101dd610836565b005b3480156101eb57600080fd5b506101f461084a565b604051610202929190611997565b60405180910390f35b34801561021757600080fd5b5061022061085b565b60405161022d91906119cf565b60405180910390f35b34801561024257600080fd5b5061024b610884565b6040516102589190611a03565b60405180910390f35b34801561026d57600080fd5b506102886004803603810190610283919061176d565b610925565b60405161029591906117a9565b60405180910390f35b3480156102aa57600080fd5b506102b361093c565b6040516102c39493929190611a1e565b60405180910390f35b3480156102d857600080fd5b506102f360048036038101906102ee9190611a63565b61095c565b6040516103009190611725565b60405180910390f35b34801561031557600080fd5b50610330600480360381019061032b9190611740565b610971565b005b34801561033e57600080fd5b506103476109f4565b6040516103579493929190611a1e565b60405180910390f35b600063150b7a0260e01b9050949350505050565b61037c610e28565b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600654826103d09190611b29565b9050919050565b6103df610ea6565b6101f4868690508b8b90506103f49190611b83565b1115610435576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161042c90611c14565b60405180910390fd5b60008a8a905090506104498b8b8b8b610ef5565b610457878787878787610fcc565b816104629190611b83565b905080600460008282546104769190611b83565b9250508190555060006006548261048d9190611b29565b9050803410156104d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104c990611c80565b60405180910390fd5b61050a600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166002346105059190611ccf565b6110f4565b6105347f000000000000000000000000da7c0810ce6f8329786160bb3d1734cf6661ca6e476110f4565b7f000000000000000000000000da7c0810ce6f8329786160bb3d1734cf6661ca6e73ffffffffffffffffffffffffffffffffffffffff166379cc6790336007548561057f9190611b29565b6040518363ffffffff1660e01b815260040161059c929190611d00565b600060405180830381600087803b1580156105b657600080fd5b505af11580156105ca573d6000803e3d6000fd5b5050505050506105d86111a5565b50505050505050505050565b6105ec610ea6565b6101f4868690508b8b90506106019190611b83565b1115610642576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063990611c14565b60405180910390fd5b60006004346106519190611ccf565b905060006004346106629190611ccf565b905060006002346106739190611ccf565b905060008d8d905090506106898e8e8e8e6111ae565b6106978a8a8a8a8a8a611285565b816106a29190611b83565b905080600560008282546106b69190611b83565b92505081905550600060648210156106db57600854826106d69190611b29565b6106f6565b6002600854836106eb9190611b29565b6106f59190611ccf565b5b90508034101561073b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073290611c80565b60405180910390fd5b610767600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16866110f4565b6107917f000000000000000000000000da7c0810ce6f8329786160bb3d1734cf6661ca6e856110f4565b7f000000000000000000000000da7c0810ce6f8329786160bb3d1734cf6661ca6e73ffffffffffffffffffffffffffffffffffffffff1663f088d54784336040518363ffffffff1660e01b81526004016107eb91906119cf565b6000604051808303818588803b15801561080457600080fd5b505af1158015610818573d6000803e3d6000fd5b5050505050505050505061082a6111a5565b50505050505050505050565b61083e610e28565b61084860006113ad565b565b600080600454600554915091509091565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600080600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa1580156108f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109189190611dac565b5050509150508091505090565b6000600854826109359190611b29565b9050919050565b600080600080600854600654600754600954935093509350935090919293565b600063f23a6e6160e01b905095945050505050565b610979610e28565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109df90611e99565b60405180910390fd5b6109f1816113ad565b50565b600080600080610a02610ea6565b600080600080600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663feaf968c6040518163ffffffff1660e01b815260040160a060405180830381865afa158015610a75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a999190611dac565b94509450509350935060008313610ae5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610adc90611f05565b60405180910390fd5b8369ffffffffffffffffffff168169ffffffffffffffffffff161015610b40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b3790611f71565b60405180910390fd5b60008203610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90611fdd565b60405180910390fd5b60006402540be40084610b969190611b29565b90506009548311610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390612049565b60405180910390fd5b6000671bc16d674ec80000821115610c22576000671bc16d674ec8000083610c049190611ccf565b905080670de0b6b3a7640000610c1a9190611ccf565b915050610c39565b81671bc16d674ec80000610c369190611ccf565b90505b3373ffffffffffffffffffffffffffffffffffffffff16610c5861085b565b73ffffffffffffffffffffffffffffffffffffffff161480610ca05750806002600854610c859190611ccf565b108015610c9f5750806096600854610c9d9190611b29565b115b5b610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd6906120b5565b60405180910390fd5b80600881905550678ac7230489e80000821115610d2e576000678ac7230489e8000083610d0c9190611ccf565b905080670de0b6b3a7640000610d229190611ccf565b60068190555050610d49565b81678ac7230489e80000610d429190611ccf565b6006819055505b7f000000000000000000000000da7c0810ce6f8329786160bb3d1734cf6661ca6e73ffffffffffffffffffffffffffffffffffffffff1663f57557476006546040518263ffffffff1660e01b8152600401610da491906117a9565b602060405180830381865afa158015610dc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de591906120d5565b6007819055506201518084610dfa9190611b83565b6009819055506008546006546007546009549950995099509950505050505050610e226111a5565b90919293565b610e30611471565b73ffffffffffffffffffffffffffffffffffffffff16610e4e61085b565b73ffffffffffffffffffffffffffffffffffffffff1614610ea4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9b9061214e565b60405180910390fd5b565b600260015403610eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee2906121ba565b60405180910390fd5b6002600181905550565b60005b82829050811015610fc557848482818110610f1657610f156121da565b5b9050602002016020810190610f2b9190611740565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3033868686818110610f5b57610f5a6121da565b5b905060200201356040518463ffffffff1660e01b8152600401610f8093929190612209565b600060405180830381600087803b158015610f9a57600080fd5b505af1158015610fae573d6000803e3d6000fd5b505050508080610fbd90612240565b915050610ef8565b5050505050565b6000806000905060005b868690508110156110e557848482818110610ff457610ff36121da565b5b90506020020135826110069190611b83565b915088888281811061101b5761101a6121da565b5b90506020020160208101906110309190611740565b73ffffffffffffffffffffffffffffffffffffffff1663f242432a30338a8a868181106110605761105f6121da565b5b9050602002013589898781811061107a576110796121da565b5b905060200201356040518563ffffffff1660e01b81526004016110a094939291906122bf565b600060405180830381600087803b1580156110ba57600080fd5b505af11580156110ce573d6000803e3d6000fd5b5050505080806110dd90612240565b915050610fd6565b50809150509695505050505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161111a90612345565b60006040518083038185875af1925050503d8060008114611157576040519150601f19603f3d011682016040523d82523d6000602084013e61115c565b606091505b50509050806111a0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611197906123a6565b60405180910390fd5b505050565b60018081905550565b60005b8282905081101561127e578484828181106111cf576111ce6121da565b5b90506020020160208101906111e49190611740565b73ffffffffffffffffffffffffffffffffffffffff166342842e0e3330868686818110611214576112136121da565b5b905060200201356040518463ffffffff1660e01b815260040161123993929190612209565b600060405180830381600087803b15801561125357600080fd5b505af1158015611267573d6000803e3d6000fd5b50505050808061127690612240565b9150506111b1565b5050505050565b6000806000905060005b8686905081101561139e578484828181106112ad576112ac6121da565b5b90506020020135826112bf9190611b83565b91508888828181106112d4576112d36121da565b5b90506020020160208101906112e99190611740565b73ffffffffffffffffffffffffffffffffffffffff1663f242432a33308a8a86818110611319576113186121da565b5b90506020020135898987818110611333576113326121da565b5b905060200201356040518563ffffffff1660e01b815260040161135994939291906122bf565b600060405180830381600087803b15801561137357600080fd5b505af1158015611387573d6000803e3d6000fd5b50505050808061139690612240565b91505061128f565b50809150509695505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600033905090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114b88261148d565b9050919050565b6114c8816114ad565b81146114d357600080fd5b50565b6000813590506114e5816114bf565b92915050565b6000819050919050565b6114fe816114eb565b811461150957600080fd5b50565b60008135905061151b816114f5565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6115748261152b565b810181811067ffffffffffffffff821117156115935761159261153c565b5b80604052505050565b60006115a6611479565b90506115b2828261156b565b919050565b600067ffffffffffffffff8211156115d2576115d161153c565b5b6115db8261152b565b9050602081019050919050565b82818337600083830152505050565b600061160a611605846115b7565b61159c565b90508281526020810184848401111561162657611625611526565b5b6116318482856115e8565b509392505050565b600082601f83011261164e5761164d611521565b5b813561165e8482602086016115f7565b91505092915050565b6000806000806080858703121561168157611680611483565b5b600061168f878288016114d6565b94505060206116a0878288016114d6565b93505060406116b18782880161150c565b925050606085013567ffffffffffffffff8111156116d2576116d1611488565b5b6116de87828801611639565b91505092959194509250565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61171f816116ea565b82525050565b600060208201905061173a6000830184611716565b92915050565b60006020828403121561175657611755611483565b5b6000611764848285016114d6565b91505092915050565b60006020828403121561178357611782611483565b5b60006117918482850161150c565b91505092915050565b6117a3816114eb565b82525050565b60006020820190506117be600083018461179a565b92915050565b600080fd5b600080fd5b60008083601f8401126117e4576117e3611521565b5b8235905067ffffffffffffffff811115611801576118006117c4565b5b60208301915083602082028301111561181d5761181c6117c9565b5b9250929050565b60008083601f84011261183a57611839611521565b5b8235905067ffffffffffffffff811115611857576118566117c4565b5b602083019150836020820283011115611873576118726117c9565b5b9250929050565b60008060008060008060008060008060a08b8d03121561189d5761189c611483565b5b60008b013567ffffffffffffffff8111156118bb576118ba611488565b5b6118c78d828e016117ce565b9a509a505060208b013567ffffffffffffffff8111156118ea576118e9611488565b5b6118f68d828e01611824565b985098505060408b013567ffffffffffffffff81111561191957611918611488565b5b6119258d828e016117ce565b965096505060608b013567ffffffffffffffff81111561194857611947611488565b5b6119548d828e01611824565b945094505060808b013567ffffffffffffffff81111561197757611976611488565b5b6119838d828e01611824565b92509250509295989b9194979a5092959850565b60006040820190506119ac600083018561179a565b6119b9602083018461179a565b9392505050565b6119c9816114ad565b82525050565b60006020820190506119e460008301846119c0565b92915050565b6000819050919050565b6119fd816119ea565b82525050565b6000602082019050611a1860008301846119f4565b92915050565b6000608082019050611a33600083018761179a565b611a40602083018661179a565b611a4d604083018561179a565b611a5a606083018461179a565b95945050505050565b600080600080600060a08688031215611a7f57611a7e611483565b5b6000611a8d888289016114d6565b9550506020611a9e888289016114d6565b9450506040611aaf8882890161150c565b9350506060611ac08882890161150c565b925050608086013567ffffffffffffffff811115611ae157611ae0611488565b5b611aed88828901611639565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611b34826114eb565b9150611b3f836114eb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611b7857611b77611afa565b5b828202905092915050565b6000611b8e826114eb565b9150611b99836114eb565b9250828201905080821115611bb157611bb0611afa565b5b92915050565b600082825260208201905092915050565b7f4d61782069732035303000000000000000000000000000000000000000000000600082015250565b6000611bfe600a83611bb7565b9150611c0982611bc8565b602082019050919050565b60006020820190508181036000830152611c2d81611bf1565b9050919050565b7f596f75206e65656420746f20706179206d6f7265204554482e00000000000000600082015250565b6000611c6a601983611bb7565b9150611c7582611c34565b602082019050919050565b60006020820190508181036000830152611c9981611c5d565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611cda826114eb565b9150611ce5836114eb565b925082611cf557611cf4611ca0565b5b828204905092915050565b6000604082019050611d1560008301856119c0565b611d22602083018461179a565b9392505050565b600069ffffffffffffffffffff82169050919050565b611d4881611d29565b8114611d5357600080fd5b50565b600081519050611d6581611d3f565b92915050565b611d74816119ea565b8114611d7f57600080fd5b50565b600081519050611d9181611d6b565b92915050565b600081519050611da6816114f5565b92915050565b600080600080600060a08688031215611dc857611dc7611483565b5b6000611dd688828901611d56565b9550506020611de788828901611d82565b9450506040611df888828901611d97565b9350506060611e0988828901611d97565b9250506080611e1a88828901611d56565b9150509295509295909350565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611e83602683611bb7565b9150611e8e82611e27565b604082019050919050565b60006020820190508181036000830152611eb281611e76565b9050919050565b7f436861696e6c696e6b207072696365203c3d2030000000000000000000000000600082015250565b6000611eef601483611bb7565b9150611efa82611eb9565b602082019050919050565b60006020820190508181036000830152611f1e81611ee2565b9050919050565b7f5374616c65207072696365000000000000000000000000000000000000000000600082015250565b6000611f5b600b83611bb7565b9150611f6682611f25565b602082019050919050565b60006020820190508181036000830152611f8a81611f4e565b9050919050565b7f526f756e64206e6f7420636f6d706c6574650000000000000000000000000000600082015250565b6000611fc7601283611bb7565b9150611fd282611f91565b602082019050919050565b60006020820190508181036000830152611ff681611fba565b9050919050565b7f4665652075706461746520657665727920323420687273000000000000000000600082015250565b6000612033601783611bb7565b915061203e82611ffd565b602082019050919050565b6000602082019050818103600083015261206281612026565b9050919050565b7f466565207377696e6720746f6f20686967680000000000000000000000000000600082015250565b600061209f601283611bb7565b91506120aa82612069565b602082019050919050565b600060208201905081810360008301526120ce81612092565b9050919050565b6000602082840312156120eb576120ea611483565b5b60006120f984828501611d97565b91505092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612138602083611bb7565b915061214382612102565b602082019050919050565b600060208201905081810360008301526121678161212b565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006121a4601f83611bb7565b91506121af8261216e565b602082019050919050565b600060208201905081810360008301526121d381612197565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600060608201905061221e60008301866119c0565b61222b60208301856119c0565b612238604083018461179a565b949350505050565b600061224b826114eb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361227d5761227c611afa565b5b600182019050919050565b600082825260208201905092915050565b50565b60006122a9600083612288565b91506122b482612299565b600082019050919050565b600060a0820190506122d460008301876119c0565b6122e160208301866119c0565b6122ee604083018561179a565b6122fb606083018461179a565b818103608083015261230c8161229c565b905095945050505050565b600081905092915050565b600061232f600083612317565b915061233a82612299565b600082019050919050565b600061235082612322565b9150819050919050565b7f455448205472616e73666572206661696c65642e000000000000000000000000600082015250565b6000612390601483611bb7565b915061239b8261235a565b602082019050919050565b600060208201905081810360008301526123bf81612383565b905091905056fea2646970667358221220e577e75ea967503ca8086eb2a59f3b0aad33eb72bffbbc9d9ee8fcd3b8fff20464736f6c63430008100033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000da7c0810ce6f8329786160bb3d1734cf6661ca6e
-----Decoded View---------------
Arg [0] : _jayAddress (address): 0xDA7C0810cE6F8329786160bb3d1734cf6661CA6E
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000da7c0810ce6f8329786160bb3d1734cf6661ca6e
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.