ETH Price: $3,208.28 (-3.54%)
 

Overview

Max Total Supply

2,000 P-AZUKI

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.000000000000004042 P-AZUKI

Value
$0.00
0xBE4B862C48c4314678D3A7bc8F2A15419C2aCe78
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x25d6fe0d...3A552A400
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
BeaconProxy

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 5 : BeaconProxy.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.0;

import "@openzeppelin/contracts/proxy/Proxy.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/proxy/beacon/IBeacon.sol";
import "./interfaces/IPTokenFactory.sol";

/**
 * @dev This contract implements a proxy that gets the implementation address for each call from a {UpgradeableBeacon}.
 *
 * The beacon address is stored in storage slot `uint256(keccak256('eip1967.proxy.beacon')) - 1`, so that it doesn't
 * conflict with the storage layout of the implementation behind the proxy.
 *
 * _Available since v3.4._
 */
contract BeaconProxy is Proxy {
    /**
     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
     * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
     */
    bytes32 private constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;

    bytes32 private constant _OWNER_SLOT = 0xa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a;

    /**
     * @dev Initializes the proxy with `beacon`.
     *
     * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon. This
     * will typically be an encoded function call, and allows initializating the storage of the proxy like a Solidity
     * constructor.
     *
     * Requirements:
     *
     * - `beacon` must be a contract with the interface {IBeacon}.
     */
    constructor() payable {
        assert(_BEACON_SLOT == bytes32(uint256(keccak256("eip1967.proxy.beacon")) - 1));
        assert(_OWNER_SLOT == bytes32(uint256(keccak256("eip1967.proxy.owner")) - 1));
        (address beacon, bytes memory data) = IPTokenFactory(msg.sender).parameters();
        _setBeacon(beacon, data);
        _setOwner(msg.sender);
    }

    /**
     * @dev Returns the current beacon address.
     */
    function _beacon() internal view virtual returns (address beacon) {
        bytes32 slot = _BEACON_SLOT;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            beacon := sload(slot)
        }
    }

    /**
     * @dev Returns the current owner address.
     */
    function _owner() internal view virtual returns (address owner) {
        bytes32 slot = _OWNER_SLOT;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            owner := sload(slot)
        }
    }

    /**
     * @dev Returns the current implementation address of the associated beacon.
     */
    function _implementation() internal view virtual override returns (address) {
        return IBeacon(_beacon()).implementation();
    }

    /**
     * @dev Changes the proxy to use a new beacon.
     *
     * If `data` is nonempty, it's used as data in a delegate call to the implementation returned by the beacon.
     *
     * Requirements:
     *
     * - `beacon` must be a contract.
     * - The implementation returned by `beacon` must be a contract.
     */
    function _setBeacon(address beacon, bytes memory data) internal virtual {
        require(
            Address.isContract(beacon),
            "BeaconProxy: beacon is not a contract"
        );
        require(
            Address.isContract(IBeacon(beacon).implementation()),
            "BeaconProxy: beacon implementation is not a contract"
        );
        bytes32 slot = _BEACON_SLOT;

        // solhint-disable-next-line no-inline-assembly
        assembly {
            sstore(slot, beacon)
        }

        if (data.length > 0) {
            Address.functionDelegateCall(_implementation(), data, "BeaconProxy: function call failed");
        }
    }

    function _setOwner(address owner) internal virtual {
        bytes32 slot = _OWNER_SLOT;

        // solhint-disable-next-line no-inline-assembly
        assembly {
            sstore(slot, owner)
        }
    }

    function setBeacon(address beacon, bytes memory data) external virtual {
        address owner = _owner();
        require(msg.sender == owner, "BeaconProxy: caller is not owner address");
        _setBeacon(beacon, data);
    } 
}

File 2 of 5 : IBeacon.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)

pragma solidity ^0.8.0;

/**
 * @dev This is the interface that {BeaconProxy} expects of its beacon.
 */
interface IBeacon {
    /**
     * @dev Must return an address that can be used as a delegate call target.
     *
     * {BeaconProxy} will check that this address is a contract.
     */
    function implementation() external view returns (address);
}

File 3 of 5 : Proxy.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol)

pragma solidity ^0.8.0;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    /**
     * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _beforeFallback();
        _delegate(_implementation());
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive() external payable virtual {
        _fallback();
    }

    /**
     * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
     * call, or as part of the Solidity `fallback` or `receive` functions.
     *
     * If overridden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {}
}

File 4 of 5 : Address.sol
// 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);
        }
    }
}

File 5 of 5 : IPTokenFactory.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity ^0.8.0;

interface IPTokenFactory {
    
    /*** User Interface ***/
    function feeTo() external view returns(address);
    function beacon() external view returns(address);
    function controller() external view returns(address);
    function nftTransferManager() external view returns(address);
    function allNFTsLength() external view returns(uint256);
    function allNFTs(uint256 index) external view returns(address);
    function getNftAddress(address ptokenAddr) external view returns(address);
    function getPiece(address nftAddr) external view returns(address);
    function parameters() external view returns (address, bytes memory);
    function createPiece(address nftAddr) external returns(address pieceTokenAddr);

    /*** Admin Functions ***/
    function setFeeTo(address feeTo_) external;
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"beacon","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"setBeacon","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526200003160017fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d51620004c1565b60008051602062000d1683398151915214620000515762000051620004e9565b6200007e60017fa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126b620004c1565b60008051602062000d57833981519152146200009e576200009e620004e9565b600080336001600160a01b031663890357306040518163ffffffff1660e01b8152600401600060405180830381865afa158015620000e0573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526200010a919081019062000558565b90925090506200011b82826200013b565b620001333360008051602062000d5783398151915255565b50506200069e565b6200015182620002fb60201b620001141760201c565b620001b15760405162461bcd60e51b815260206004820152602560248201527f426561636f6e50726f78793a20626561636f6e206973206e6f74206120636f6e6044820152641d1c9858dd60da1b60648201526084015b60405180910390fd5b6200022b826001600160a01b0316635c60da1b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021a919062000626565b620002fb60201b620001141760201c565b6200029f5760405162461bcd60e51b815260206004820152603460248201527f426561636f6e50726f78793a20626561636f6e20696d706c656d656e7461746960448201527f6f6e206973206e6f74206120636f6e74726163740000000000000000000000006064820152608401620001a8565b60008051602062000d16833981519152828155815115620002f657620002f4620002c86200030a565b8360405180606001604052806021815260200162000d36602191396200038d60201b620001231760201c565b505b505050565b6001600160a01b03163b151590565b60006200032460008051602062000d168339815191525490565b6001600160a01b0316635c60da1b6040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000362573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000388919062000626565b905090565b6060600080856001600160a01b031685604051620003ac91906200064b565b600060405180830381855af49150503d8060008114620003e9576040519150601f19603f3d011682016040523d82523d6000602084013e620003ee565b606091505b50909250905062000402868383876200040c565b9695505050505050565b606083156200048057825160000362000478576001600160a01b0385163b620004785760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401620001a8565b50816200048c565b6200048c838362000494565b949350505050565b815115620004a55781518083602001fd5b8060405162461bcd60e51b8152600401620001a8919062000669565b81810381811115620004e357634e487b7160e01b600052601160045260246000fd5b92915050565b634e487b7160e01b600052600160045260246000fd5b80516001600160a01b03811681146200051757600080fd5b919050565b634e487b7160e01b600052604160045260246000fd5b60005b838110156200054f57818101518382015260200162000535565b50506000910152565b600080604083850312156200056c57600080fd5b6200057783620004ff565b60208401519092506001600160401b03808211156200059557600080fd5b818501915085601f830112620005aa57600080fd5b815181811115620005bf57620005bf6200051c565b604051601f8201601f19908116603f01168101908382118183101715620005ea57620005ea6200051c565b816040528281528860208487010111156200060457600080fd5b6200061783602083016020880162000532565b80955050505050509250929050565b6000602082840312156200063957600080fd5b6200064482620004ff565b9392505050565b600082516200065f81846020870162000532565b9190910192915050565b60208152600082518060208401526200068a81604085016020870162000532565b601f01601f19169190910160400192915050565b61066880620006ae6000396000f3fe6080604052600436106100225760003560e01c8063099af0e91461003957610031565b366100315761002f610059565b005b61002f610059565b34801561004557600080fd5b5061002f6100543660046104b6565b61006b565b61006961006461019b565b61022b565b565b60006100957fa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a5490565b9050336001600160a01b038216146101055760405162461bcd60e51b815260206004820152602860248201527f426561636f6e50726f78793a2063616c6c6572206973206e6f74206f776e6572604482015267206164647265737360c01b60648201526084015b60405180910390fd5b61010f838361024f565b505050565b6001600160a01b03163b151590565b6060600080856001600160a01b031685604051610140919061059e565b600060405180830381855af49150503d806000811461017b576040519150601f19603f3d011682016040523d82523d6000602084013e610180565b606091505b5091509150610191868383876103dd565b9695505050505050565b60006101c57fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d505490565b6001600160a01b0316635c60da1b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610202573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061022691906105ba565b905090565b3660008037600080366000845af43d6000803e80801561024a573d6000f35b3d6000fd5b6001600160a01b0382163b6102b45760405162461bcd60e51b815260206004820152602560248201527f426561636f6e50726f78793a20626561636f6e206973206e6f74206120636f6e6044820152641d1c9858dd60da1b60648201526084016100fc565b610319826001600160a01b0316635c60da1b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061011491906105ba565b6103825760405162461bcd60e51b815260206004820152603460248201527f426561636f6e50726f78793a20626561636f6e20696d706c656d656e746174696044820152731bdb881a5cc81b9bdd08184818dbdb9d1c9858dd60621b60648201526084016100fc565b7fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5082815581511561010f576103d76103b861019b565b8360405180606001604052806021815260200161061260219139610123565b50505050565b6060831561044c578251600003610445576001600160a01b0385163b6104455760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016100fc565b5081610456565b610456838361045e565b949350505050565b81511561046e5781518083602001fd5b8060405162461bcd60e51b81526004016100fc91906105de565b6001600160a01b038116811461049d57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156104c957600080fd5b82356104d481610488565b9150602083013567ffffffffffffffff808211156104f157600080fd5b818501915085601f83011261050557600080fd5b813581811115610517576105176104a0565b604051601f8201601f19908116603f0116810190838211818310171561053f5761053f6104a0565b8160405282815288602084870101111561055857600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b60005b8381101561059557818101518382015260200161057d565b50506000910152565b600082516105b081846020870161057a565b9190910192915050565b6000602082840312156105cc57600080fd5b81516105d781610488565b9392505050565b60208152600082518060208401526105fd81604085016020870161057a565b601f01601f1916919091016040019291505056fe426561636f6e50726f78793a2066756e6374696f6e2063616c6c206661696c6564a264697066735822122013a2edb36ddb0f4bc05985e0833eade49a8afce8c5ef60fafec0596a609025f964736f6c63430008110033a3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50426561636f6e50726f78793a2066756e6374696f6e2063616c6c206661696c6564a7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a

Deployed Bytecode

0x6080604052600436106100225760003560e01c8063099af0e91461003957610031565b366100315761002f610059565b005b61002f610059565b34801561004557600080fd5b5061002f6100543660046104b6565b61006b565b61006961006461019b565b61022b565b565b60006100957fa7b53796fd2d99cb1f5ae019b54f9e024446c3d12b483f733ccc62ed04eb126a5490565b9050336001600160a01b038216146101055760405162461bcd60e51b815260206004820152602860248201527f426561636f6e50726f78793a2063616c6c6572206973206e6f74206f776e6572604482015267206164647265737360c01b60648201526084015b60405180910390fd5b61010f838361024f565b505050565b6001600160a01b03163b151590565b6060600080856001600160a01b031685604051610140919061059e565b600060405180830381855af49150503d806000811461017b576040519150601f19603f3d011682016040523d82523d6000602084013e610180565b606091505b5091509150610191868383876103dd565b9695505050505050565b60006101c57fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d505490565b6001600160a01b0316635c60da1b6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610202573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061022691906105ba565b905090565b3660008037600080366000845af43d6000803e80801561024a573d6000f35b3d6000fd5b6001600160a01b0382163b6102b45760405162461bcd60e51b815260206004820152602560248201527f426561636f6e50726f78793a20626561636f6e206973206e6f74206120636f6e6044820152641d1c9858dd60da1b60648201526084016100fc565b610319826001600160a01b0316635c60da1b6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102f5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061011491906105ba565b6103825760405162461bcd60e51b815260206004820152603460248201527f426561636f6e50726f78793a20626561636f6e20696d706c656d656e746174696044820152731bdb881a5cc81b9bdd08184818dbdb9d1c9858dd60621b60648201526084016100fc565b7fa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d5082815581511561010f576103d76103b861019b565b8360405180606001604052806021815260200161061260219139610123565b50505050565b6060831561044c578251600003610445576001600160a01b0385163b6104455760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016100fc565b5081610456565b610456838361045e565b949350505050565b81511561046e5781518083602001fd5b8060405162461bcd60e51b81526004016100fc91906105de565b6001600160a01b038116811461049d57600080fd5b50565b634e487b7160e01b600052604160045260246000fd5b600080604083850312156104c957600080fd5b82356104d481610488565b9150602083013567ffffffffffffffff808211156104f157600080fd5b818501915085601f83011261050557600080fd5b813581811115610517576105176104a0565b604051601f8201601f19908116603f0116810190838211818310171561053f5761053f6104a0565b8160405282815288602084870101111561055857600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b60005b8381101561059557818101518382015260200161057d565b50506000910152565b600082516105b081846020870161057a565b9190910192915050565b6000602082840312156105cc57600080fd5b81516105d781610488565b9392505050565b60208152600082518060208401526105fd81604085016020870161057a565b601f01601f1916919091016040019291505056fe426561636f6e50726f78793a2066756e6374696f6e2063616c6c206661696c6564a264697066735822122013a2edb36ddb0f4bc05985e0833eade49a8afce8c5ef60fafec0596a609025f964736f6c63430008110033

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.