ERC-20
Overview
Max Total Supply
1,880.855647939933971349 PT-wstkscETH-29MAY2025
Holders
48
Market
Price
$0.00 @ 0.000000 S
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0 PT-wstkscETH-29MAY2025Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x020c8A52...59eAb6ED5 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
PendlePrincipalToken
Compiler Version
v0.8.24+commit.e11b9ed9
Optimization Enabled:
Yes with 1000000 runs
Other Settings:
shanghai EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.17;import "../../interfaces/IPPrincipalToken.sol";import "../../interfaces/IPYieldToken.sol";import "../libraries/MiniHelpers.sol";import "../libraries/Errors.sol";import "../erc20/PendleERC20.sol";import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol";contract PendlePrincipalToken is PendleERC20, Initializable, IPPrincipalToken {address public immutable SY;address public immutable factory;uint256 public immutable expiry;address public YT;modifier onlyYT() {if (msg.sender != YT) revert Errors.OnlyYT();_;}modifier onlyYieldFactory() {if (msg.sender != factory) revert Errors.OnlyYCFactory();
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol)pragma solidity ^0.8.2;import "../../utils/AddressUpgradeable.sol";/*** @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed* behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an* external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer* function so it can only be called once. The {initializer} modifier provided by this contract will have this effect.** The initialization functions use a version number. Once a version number is used, it is consumed and cannot be* reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in* case an upgrade adds a module that needs to be initialized.** For example:** [.hljs-theme-light.nopadding]* ```solidity* contract MyToken is ERC20Upgradeable {* function initialize() initializer public {* __ERC20_init("MyToken", "MTK");* }* }
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol)pragma solidity ^0.8.1;/*** @dev Collection of functions related to the address type*/library AddressUpgradeable {/*** @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** Furthermore, `isContract` will also return true if the target contract within
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)pragma solidity ^0.8.0;import "../IERC20.sol";/*** @dev Interface for the optional metadata functions from the ERC20 standard.** _Available since v4.1._*/interface IERC20Metadata is IERC20 {/*** @dev Returns the name of the token.*/function name() external view returns (string memory);/*** @dev Returns the symbol of the token.*/function symbol() external view returns (string memory);/*** @dev Returns the decimals places of the token.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)pragma solidity ^0.8.0;/*** @dev Interface of the ERC20 standard as defined in the EIP.*/interface IERC20 {/*** @dev Emitted when `value` tokens are moved from one account (`from`) to* another (`to`).** Note that `value` may be zero.*/event Transfer(address indexed from, address indexed to, uint256 value);/*** @dev Emitted when the allowance of a `spender` for an `owner` is set by* a call to {approve}. `value` is the new allowance.*/event Approval(address indexed owner, address indexed spender, uint256 value);/*** @dev Returns the amount of tokens in existence.*/
123456789101112131415161718192021222324// 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;}}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0-or-later// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/ERC20.sol)pragma solidity ^0.8.0;import "@openzeppelin/contracts/token/ERC20/IERC20.sol";import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";import "@openzeppelin/contracts/utils/Context.sol";/*** @dev Pendle's ERC20 implementation, modified from @openzeppelin implementation* Changes are:* - comes with built-in reentrancy protection, storage-packed with totalSupply variable* - delete increaseAllowance / decreaseAllowance* - add nonReentrancy protection to transfer / transferFrom functions* - allow decimals to be passed in* - block self-transfer by default*/// solhint-disablecontract PendleERC20 is Context, IERC20, IERC20Metadata {uint8 private constant _NOT_ENTERED = 1;uint8 private constant _ENTERED = 2;mapping(address => uint256) private _balances;mapping(address => mapping(address => uint256)) private _allowances;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.0;library Errors {// BulkSellererror BulkInsufficientSyForTrade(uint256 currentAmount, uint256 requiredAmount);error BulkInsufficientTokenForTrade(uint256 currentAmount, uint256 requiredAmount);error BulkInSufficientSyOut(uint256 actualSyOut, uint256 requiredSyOut);error BulkInSufficientTokenOut(uint256 actualTokenOut, uint256 requiredTokenOut);error BulkInsufficientSyReceived(uint256 actualBalance, uint256 requiredBalance);error BulkNotMaintainer();error BulkNotAdmin();error BulkSellerAlreadyExisted(address token, address SY, address bulk);error BulkSellerInvalidToken(address token, address SY);error BulkBadRateTokenToSy(uint256 actualRate, uint256 currentRate, uint256 eps);error BulkBadRateSyToToken(uint256 actualRate, uint256 currentRate, uint256 eps);// APPROXerror ApproxFail();error ApproxParamsInvalid(uint256 guessMin, uint256 guessMax, uint256 eps);error ApproxBinarySearchInputInvalid(uint256 approxGuessMin,uint256 approxGuessMax,uint256 minGuessMin,uint256 maxGuessMax);
12345678910111213141516// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.0;library MiniHelpers {function isCurrentlyExpired(uint256 expiry) internal view returns (bool) {return (expiry <= block.timestamp);}function isExpired(uint256 expiry, uint256 blockTime) internal pure returns (bool) {return (expiry <= blockTime);}function isTimeInThePast(uint256 timestamp) internal view returns (bool) {return (timestamp <= block.timestamp); // same definition as isCurrentlyExpired}}
12345678// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.0;interface IPInterestManagerYT {event CollectInterestFee(uint256 amountInterestFee);function userInterest(address user) external view returns (uint128 lastPYIndex, uint128 accruedInterest);}
123456789101112131415161718192021// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.0;import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";interface IPPrincipalToken is IERC20Metadata {function burnByYT(address user, uint256 amount) external;function mintByYT(address user, uint256 amount) external;function initialize(address _YT) external;function SY() external view returns (address);function YT() external view returns (address);function factory() external view returns (address);function expiry() external view returns (uint256);function isExpired() external view returns (bool);}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.0;import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";import "./IRewardManager.sol";import "./IPInterestManagerYT.sol";interface IPYieldToken is IERC20Metadata, IRewardManager, IPInterestManagerYT {event NewInterestIndex(uint256 indexed newIndex);event Mint(address indexed caller,address indexed receiverPT,address indexed receiverYT,uint256 amountSyToMint,uint256 amountPYOut);event Burn(address indexed caller, address indexed receiver, uint256 amountPYToRedeem, uint256 amountSyOut);event RedeemRewards(address indexed user, uint256[] amountRewardsOut);event RedeemInterest(address indexed user, uint256 interestOut);event CollectRewardFee(address indexed rewardToken, uint256 amountRewardFee);function mintPY(address receiverPT, address receiverYT) external returns (uint256 amountPYOut);
123456// SPDX-License-Identifier: GPL-3.0-or-laterpragma solidity ^0.8.0;interface IRewardManager {function userReward(address token, address user) external view returns (uint128 index, uint128 accrued);}
123456789101112131415161718192021{"optimizer": {"enabled": true,"runs": 1000000},"viaIR": true,"evmVersion": "shanghai","outputSelection": {"*": {"*": ["evm.bytecode","evm.deployedBytecode","devdoc","userdoc","metadata","abi"]}},"libraries": {}}
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_SY","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"__decimals","type":"uint8"},{"internalType":"uint256","name":"_expiry","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"OnlyYCFactory","type":"error"},{"inputs":[],"name":"OnlyYT","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"SY","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"YT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnByYT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"expiry","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_YT","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isExpired","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintByYT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
610100604052346200038a5762001a77803803806200001e816200038e565b92833981019060a0818303126200038a578051906001600160a01b03821682036200038a576020818101516001600160401b0394908581116200038a578162000069918501620003b4565b906040840151908682116200038a5762000085918501620003b4565b9460608401519360ff851685036200038a576080015195825182811162000295576003918254916001958684811c941680156200037f575b888510146200036b578190601f9485811162000318575b508890858311600114620002b5575f92620002a9575b50505f1982861b1c191690861b1783555b8051938411620002955760049586548681811c911680156200028a575b8282101462000277578381116200022f575b5080928511600114620001c557509383949184925f95620001b9575b50501b925f19911b1c19161790555b608052600280546001600160f81b0316600160f81b17905560a05260e0523360c052604051611652908162000425823960805181610b17015260a0518161073a015260c05181818161024c0152610457015260e05181818161010f0152610b710152f35b015193505f8062000146565b92919084601f198116885f52855f20955f905b89838310620002145750505010620001fa575b50505050811b01905562000155565b01519060f8845f19921b161c191690555f808080620001eb565b858701518955909701969485019488935090810190620001d8565b875f52815f208480880160051c8201928489106200026d575b0160051c019087905b828110620002615750506200012a565b5f815501879062000251565b9250819262000248565b602288634e487b7160e01b5f525260245ffd5b90607f169062000118565b634e487b7160e01b5f52604160045260245ffd5b015190505f80620000ea565b90889350601f19831691875f528a5f20925f5b8c828210620003015750508411620002e9575b505050811b018355620000fb565b01515f1983881b60f8161c191690555f8080620002db565b8385015186558c97909501949384019301620002c8565b909150855f52885f208580850160051c8201928b861062000361575b918a91869594930160051c01915b82811062000352575050620000d4565b5f81558594508a910162000342565b9250819262000334565b634e487b7160e01b5f52602260045260245ffd5b93607f1693620000bd565b5f80fd5b6040519190601f01601f191682016001600160401b038111838210176200029557604052565b919080601f840112156200038a5782516001600160401b0381116200029557602090620003ea601f8201601f191683016200038e565b928184528282870101116200038a575f5b818110620004105750825f9394955001015290565b8581018301518482018401528201620003fb56fe6080604090808252600480361015610015575f80fd5b5f3560e01c91826306fdde0314610fa557508163095ea7b314610f5757816312a31dcc14610dc257816318160ddd14610d6557816323b872dd14610b965781632f13b60c14610b3b578163313ce56714610ae057816370a0823114610a7f578163781c18db14610a2a57816395d89b4114610831578163a9059cbb1461075e578163afd27bf5146106f0578163b64761f91461047b578163c45a01551461040d578163c4d66de8146101ab57508063dd62ed3e146101365763e184c9be146100db575f80fd5b34610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261013257602090517f00000000000000000000000000000000000000000000000000000000000000008152f35b5f80fd5b503461013257807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101325760209061017061114c565b61017861116f565b9073ffffffffffffffffffffffffffffffffffffffff8091165f5260018452825f2091165f528252805f20549051908152f35b82346101325760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576101e361114c565b90600580549360ff8560081c161594858096610400575b80156103e9575b15610366578560017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008316178455610338575b5073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163303610311575075ffffffffffffffffffffffffffffffffffffffff000081549360101b1693847fffffffffffffffffffff0000000000000000000000000000000000000000ffff85161782556102bf57005b7f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498937fffffffffffffffffffff000000000000000000000000000000000000000000ff602094161790555160018152a1005b82517ffe108173000000000000000000000000000000000000000000000000000000008152fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661010117825585610234565b60848260208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152fd5b50303b1580156102015750600160ff821614610201565b50600160ff8216106101fa565b8234610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b90503461013257817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576104b361114c565b916024359273ffffffffffffffffffffffffffffffffffffffff908160055460101c1633036106c8571691821561064657825f525f602052815f20548481106105c3578490845f525f60205203825f20557effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff808511610132576002549181861682841603908282116105975750926020927fff000000000000000000000000000000000000000000000000000000000000005f97937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef961691161760025551908152a3005b6011907f4e487b71000000000000000000000000000000000000000000000000000000005f525260245ffd5b50602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152fd5b602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152fd5b5050517fb114ba98000000000000000000000000000000000000000000000000000000008152fd5b8234610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b823461013257807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576020907f01000000000000000000000000000000000000000000000000000000000000006107b961114c565b610822600254916107d060028460f81c1415611192565b7f02000000000000000000000000000000000000000000000000000000000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8094161760025560243590336113a2565b60025416176002555160018152f35b905034610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101325781515f928254936001948060011c60018216968715610a20575b60209283831089146109f457869798838897985290815f14610999575060011461091e575b50505003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019267ffffffffffffffff8411838510176108f257508291826108ee9252826110e8565b0390f35b6041907f4e487b71000000000000000000000000000000000000000000000000000000005f525260245ffd5b5f888152929493507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b82841061098357505050907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe092601f928201019181936108a0565b8054888501870152879450928501928101610948565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016848701525050151560051b830101905081601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06108a0565b6022887f4e487b71000000000000000000000000000000000000000000000000000000005f525260245ffd5b90607f169061087b565b8234610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101325760209073ffffffffffffffffffffffffffffffffffffffff60055460101c169051908152f35b82346101325760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101325760209073ffffffffffffffffffffffffffffffffffffffff610acf61114c565b165f525f8252805f20549051908152f35b8234610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576020905160ff7f0000000000000000000000000000000000000000000000000000000000000000168152f35b8234610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101325760209051427f000000000000000000000000000000000000000000000000000000000000000011158152f35b9050346101325760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261013257610bcf61114c565b610bd761116f565b6044359160025493610bef60028660f81c1415611192565b7f02000000000000000000000000000000000000000000000000000000000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8096161760025573ffffffffffffffffffffffffffffffffffffffff82165f526001602052855f20335f52602052855f2054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610cbb575b6020877f0100000000000000000000000000000000000000000000000000000000000000886108228989896113a2565b848210610d08575092602095949261082292610cfb837f0100000000000000000000000000000000000000000000000000000000000000970333836111f7565b9250929495819450610c8b565b60649060208851917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b8234610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576020907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600254169051908152f35b823461013257807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261013257610df961114c565b906024359173ffffffffffffffffffffffffffffffffffffffff908160055460101c163303610f2f5716928315610ed3577effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff808411610132576002549181851682841601908282116105975750926020927fff000000000000000000000000000000000000000000000000000000000000005f96937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9616911617600255858552848352808520610eca838254611368565b905551908152a3005b602060649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b8483517fb114ba98000000000000000000000000000000000000000000000000000000008152fd5b823461013257807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261013257602090610f9e610f9461114c565b60243590336111f7565b5160018152f35b90915034610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132575f92600354936001948060011c600182169687156110de575b60209283831089146109f457869798838897985290815f1461099957506001146110615750505003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019267ffffffffffffffff8411838510176108f257508291826108ee9252826110e8565b60035f908152929493507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106110c857505050907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe092601f928201019181936108a0565b805488850187015287945092850192810161108d565b90607f1690610fef565b6020808252825181830181905293925f5b858110611138575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6040809697860101520116010190565b8181018301518482016040015282016110f9565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361013257565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361013257565b1561119957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152fd5b73ffffffffffffffffffffffffffffffffffffffff8091169182156112e557169182156112615760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591835f526001825260405f20855f5282528060405f2055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b9190820180921161137557565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b73ffffffffffffffffffffffffffffffffffffffff8091169182156115985716918215611514578282146114b657815f525f60205260405f205481811061143257817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92602092855f525f84520360405f2055845f5260405f20611427828254611368565b9055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f45524332303a207472616e7366657220746f2073656c660000000000000000006044820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fdfea2646970667358221220c6cc46cd4eff19bc113c3577aa91a72e23b53bbec85786b0c30888dd5682728264736f6c63430008180033000000000000000000000000986a98967ed30dced4cc458066f3aae9c7fc47a400000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000006812b9800000000000000000000000000000000000000000000000000000000000000011505420546f6b656e20314d415932303235000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001150542d546f6b656e2d314d415932303235000000000000000000000000000000
Deployed Bytecode
0x6080604090808252600480361015610015575f80fd5b5f3560e01c91826306fdde0314610fa557508163095ea7b314610f5757816312a31dcc14610dc257816318160ddd14610d6557816323b872dd14610b965781632f13b60c14610b3b578163313ce56714610ae057816370a0823114610a7f578163781c18db14610a2a57816395d89b4114610831578163a9059cbb1461075e578163afd27bf5146106f0578163b64761f91461047b578163c45a01551461040d578163c4d66de8146101ab57508063dd62ed3e146101365763e184c9be146100db575f80fd5b34610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261013257602090517f000000000000000000000000000000000000000000000000000000006812b9808152f35b5f80fd5b503461013257807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101325760209061017061114c565b61017861116f565b9073ffffffffffffffffffffffffffffffffffffffff8091165f5260018452825f2091165f528252805f20549051908152f35b82346101325760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576101e361114c565b90600580549360ff8560081c161594858096610400575b80156103e9575b15610366578560017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff008316178455610338575b5073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000582d93fd9c9d42f26be5d86a5f75291f92102c2163303610311575075ffffffffffffffffffffffffffffffffffffffff000081549360101b1693847fffffffffffffffffffff0000000000000000000000000000000000000000ffff85161782556102bf57005b7f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb3847402498937fffffffffffffffffffff000000000000000000000000000000000000000000ff602094161790555160018152a1005b82517ffe108173000000000000000000000000000000000000000000000000000000008152fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00001661010117825585610234565b60848260208651917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201527f647920696e697469616c697a65640000000000000000000000000000000000006064820152fd5b50303b1580156102015750600160ff821614610201565b50600160ff8216106101fa565b8234610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576020905173ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000582d93fd9c9d42f26be5d86a5f75291f92102c2168152f35b90503461013257817ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576104b361114c565b916024359273ffffffffffffffffffffffffffffffffffffffff908160055460101c1633036106c8571691821561064657825f525f602052815f20548481106105c3578490845f525f60205203825f20557effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff808511610132576002549181861682841603908282116105975750926020927fff000000000000000000000000000000000000000000000000000000000000005f97937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef961691161760025551908152a3005b6011907f4e487b71000000000000000000000000000000000000000000000000000000005f525260245ffd5b50602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f63650000000000000000000000000000000000000000000000000000000000006064820152fd5b602060849251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f73000000000000000000000000000000000000000000000000000000000000006064820152fd5b5050517fb114ba98000000000000000000000000000000000000000000000000000000008152fd5b8234610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576020905173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000986a98967ed30dced4cc458066f3aae9c7fc47a4168152f35b823461013257807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576020907f01000000000000000000000000000000000000000000000000000000000000006107b961114c565b610822600254916107d060028460f81c1415611192565b7f02000000000000000000000000000000000000000000000000000000000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8094161760025560243590336113a2565b60025416176002555160018152f35b905034610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101325781515f928254936001948060011c60018216968715610a20575b60209283831089146109f457869798838897985290815f14610999575060011461091e575b50505003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019267ffffffffffffffff8411838510176108f257508291826108ee9252826110e8565b0390f35b6041907f4e487b71000000000000000000000000000000000000000000000000000000005f525260245ffd5b5f888152929493507f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b5b82841061098357505050907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe092601f928201019181936108a0565b8054888501870152879450928501928101610948565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016848701525050151560051b830101905081601f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe06108a0565b6022887f4e487b71000000000000000000000000000000000000000000000000000000005f525260245ffd5b90607f169061087b565b8234610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101325760209073ffffffffffffffffffffffffffffffffffffffff60055460101c169051908152f35b82346101325760207ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101325760209073ffffffffffffffffffffffffffffffffffffffff610acf61114c565b165f525f8252805f20549051908152f35b8234610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576020905160ff7f0000000000000000000000000000000000000000000000000000000000000012168152f35b8234610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc3601126101325760209051427f000000000000000000000000000000000000000000000000000000006812b98011158152f35b9050346101325760607ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261013257610bcf61114c565b610bd761116f565b6044359160025493610bef60028660f81c1415611192565b7f02000000000000000000000000000000000000000000000000000000000000007effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8096161760025573ffffffffffffffffffffffffffffffffffffffff82165f526001602052855f20335f52602052855f2054907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610cbb575b6020877f0100000000000000000000000000000000000000000000000000000000000000886108228989896113a2565b848210610d08575092602095949261082292610cfb837f0100000000000000000000000000000000000000000000000000000000000000970333836111f7565b9250929495819450610c8b565b60649060208851917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152fd5b8234610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132576020907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff600254169051908152f35b823461013257807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261013257610df961114c565b906024359173ffffffffffffffffffffffffffffffffffffffff908160055460101c163303610f2f5716928315610ed3577effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff808411610132576002549181851682841601908282116105975750926020927fff000000000000000000000000000000000000000000000000000000000000005f96937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9616911617600255858552848352808520610eca838254611368565b905551908152a3005b602060649251917f08c379a0000000000000000000000000000000000000000000000000000000008352820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152fd5b8483517fb114ba98000000000000000000000000000000000000000000000000000000008152fd5b823461013257807ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc36011261013257602090610f9e610f9461114c565b60243590336111f7565b5160018152f35b90915034610132575f7ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc360112610132575f92600354936001948060011c600182169687156110de575b60209283831089146109f457869798838897985290815f1461099957506001146110615750505003601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01682019267ffffffffffffffff8411838510176108f257508291826108ee9252826110e8565b60035f908152929493507fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b5b8284106110c857505050907fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe092601f928201019181936108a0565b805488850187015287945092850192810161108d565b90607f1690610fef565b6020808252825181830181905293925f5b858110611138575050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f845f6040809697860101520116010190565b8181018301518482016040015282016110f9565b6004359073ffffffffffffffffffffffffffffffffffffffff8216820361013257565b6024359073ffffffffffffffffffffffffffffffffffffffff8216820361013257565b1561119957565b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152fd5b73ffffffffffffffffffffffffffffffffffffffff8091169182156112e557169182156112615760207f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591835f526001825260405f20855f5282528060405f2055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152fd5b9190820180921161137557565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b73ffffffffffffffffffffffffffffffffffffffff8091169182156115985716918215611514578282146114b657815f525f60205260405f205481811061143257817fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92602092855f525f84520360405f2055845f5260405f20611427828254611368565b9055604051908152a3565b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e636500000000000000000000000000000000000000000000000000006064820152fd5b60646040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f45524332303a207472616e7366657220746f2073656c660000000000000000006044820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152fd5b60846040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152fdfea2646970667358221220c6cc46cd4eff19bc113c3577aa91a72e23b53bbec85786b0c30888dd5682728264736f6c63430008180033
[ 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.