Contract Overview
Balance:
0 BTT
My Name Tag:
Not Available
TokenTracker:
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x08c00baa529dde4571d16bcf5a604bf55031dd0fcf1f76a97cdac8770ee8ce6d | Approve | 15087614 | 70 days 7 hrs ago | 0x02ac6c07818ed43dced8786423cb46325ea18c5b | IN | 0x2cce8d839d7eb5036b945863ac9f0f0bc39c7079 | 0 BTT | 13.8792 | |
0x64a015310eaca105b3f43cd7e614c9fd47e6063b6c9d14f74bdbd6a9c364c64b | 0x60806040 | 15085549 | 70 days 8 hrs ago | 0x02ac6c07818ed43dced8786423cb46325ea18c5b | IN | Create: USDT | 0 BTT | 196.7058 |
[ Download CSV Export ]
Latest 2 internal transactions
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0xe6ea918baa6edcbf18b7b6f48ae6a3045a0e54fe14c8fa40a8d9cc8ce7a5d43c | 15087641 | 70 days 7 hrs ago | 0xfc63039911037742a7255a86ef4d281273876d12 | 0x2cce8d839d7eb5036b945863ac9f0f0bc39c7079 | 0 BTT | ||
0x2763670911184e14edae17d23135f2e7d3b958889ff733ff2492903290a12e4a | 15087566 | 70 days 7 hrs ago | 0xfc63039911037742a7255a86ef4d281273876d12 | 0x2cce8d839d7eb5036b945863ac9f0f0bc39c7079 | 0 BTT |
[ Download CSV Export ]
Contract Name:
USDT
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.6; import "./ERC20.sol"; import "./ERC20Detailed.sol"; /** * @title SimpleToken * @dev Very simple ERC20 Token example, where all tokens are pre-assigned to the creator. * Note they can later distribute these tokens as they wish using `transfer` and other * `ERC20` functions. */ contract USDT is ERC20, ERC20Detailed { /** * @dev Constructor that gives msg.sender all of existing tokens. */ constructor () ERC20Detailed("Tether USD", "USDT", 6) { _mint(msg.sender, 1000000000 * (10 ** uint256(decimals()))); } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.6; import "./IERC20.sol"; import "./SafeMath.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20Mintable}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public override returns (bool) { _approve(msg.sender, spender, value); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue)); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { 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); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal { 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); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, msg.sender, _allowances[account][msg.sender].sub(amount)); } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.6; import "./IERC20.sol"; /** * @dev Optional functions from the ERC20 standard. */ abstract contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_, uint8 decimals_) { _name = name_; _symbol = symbol_; _decimals = decimals_; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.6; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @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); }
// SPDX-License-Identifier: GPL-3.0 pragma solidity ^0.8.6; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } }
[{"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":"value","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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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
60806040523480156200001157600080fd5b50604080518082018252600a81526915195d1a195c881554d160b21b6020808301918252835180850190945260048452631554d11560e21b9084015281519192916006916200006491600391906200022c565b5081516200007a9060049060208501906200022c565b506005805460ff191660ff929092169182179055620000ba9250339150620000a490600a62000336565b620000b490633b9aca00620003ff565b620000c0565b62000474565b6001600160a01b0382166200011c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200013881600254620001c060201b6200034d1790919060201c565b6002556001600160a01b038216600090815260208181526040909120546200016b9183906200034d620001c0821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080620001cf8385620002d2565b905083811015620002235760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015260640162000113565b90505b92915050565b8280546200023a9062000421565b90600052602060002090601f0160209004810192826200025e5760008555620002a9565b82601f106200027957805160ff1916838001178555620002a9565b82800160010185558215620002a9579182015b82811115620002a95782518255916020019190600101906200028c565b50620002b7929150620002bb565b5090565b5b80821115620002b75760008155600101620002bc565b60008219821115620002e857620002e86200045e565b500190565b600181815b808511156200032e5781600019048211156200031257620003126200045e565b808516156200032057918102915b93841c9390800290620002f2565b509250929050565b60006200034483836200034b565b9392505050565b6000826200035c5750600162000226565b816200036b5750600062000226565b81600181146200038457600281146200038f57620003af565b600191505062000226565b60ff841115620003a357620003a36200045e565b50506001821b62000226565b5060208310610133831016604e8410600b8410161715620003d4575081810a62000226565b620003e08383620002ed565b8060001904821115620003f757620003f76200045e565b029392505050565b60008160001904831182151516156200041c576200041c6200045e565b500290565b600181811c908216806200043657607f821691505b602082108114156200045857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b61088780620004846000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461012957806370a082311461013c57806395d89b4114610165578063a457c2d71461016d578063a9059cbb14610180578063dd62ed3e1461019357600080fd5b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100ef57806323b872dd14610101578063313ce56714610114575b600080fd5b6100b66101cc565b6040516100c3919061077c565b60405180910390f35b6100df6100da366004610752565b61025e565b60405190151581526020016100c3565b6002545b6040519081526020016100c3565b6100df61010f366004610716565b610274565b60055460405160ff90911681526020016100c3565b6100df610137366004610752565b6102c5565b6100f361014a3660046106c8565b6001600160a01b031660009081526020819052604090205490565b6100b66102fb565b6100df61017b366004610752565b61030a565b6100df61018e366004610752565b610340565b6100f36101a13660046106e3565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546101db90610800565b80601f016020809104026020016040519081016040528092919081815260200182805461020790610800565b80156102545780601f1061022957610100808354040283529160200191610254565b820191906000526020600020905b81548152906001019060200180831161023757829003601f168201915b5050505050905090565b600061026b3384846103b8565b50600192915050565b60006102818484846104dd565b6001600160a01b0384166000908152600160209081526040808320338085529252909120546102bb9186916102b69086610646565b6103b8565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161026b9185906102b6908661034d565b6060600480546101db90610800565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161026b9185906102b69086610646565b600061026b3384846104dd565b60008061035a83856107d1565b9050838110156103b15760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064015b60405180910390fd5b9392505050565b6001600160a01b03831661041a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a8565b6001600160a01b03821661047b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a8565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166105415760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a8565b6001600160a01b0382166105a35760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a8565b6001600160a01b0383166000908152602081905260409020546105c69082610646565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546105f5908261034d565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016104d0565b6000828211156106985760405162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f77000060448201526064016103a8565b60006106a483856107e9565b949350505050565b80356001600160a01b03811681146106c357600080fd5b919050565b6000602082840312156106da57600080fd5b6103b1826106ac565b600080604083850312156106f657600080fd5b6106ff836106ac565b915061070d602084016106ac565b90509250929050565b60008060006060848603121561072b57600080fd5b610734846106ac565b9250610742602085016106ac565b9150604084013590509250925092565b6000806040838503121561076557600080fd5b61076e836106ac565b946020939093013593505050565b600060208083528351808285015260005b818110156107a95785810183015185820160400152820161078d565b818111156107bb576000604083870101525b50601f01601f1916929092016040019392505050565b600082198211156107e4576107e461083b565b500190565b6000828210156107fb576107fb61083b565b500390565b600181811c9082168061081457607f821691505b6020821081141561083557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220a145f36725b8f0dc2c2a60c9341b5ed555de4497e2e421eec24a6688389003a764736f6c63430008060033
Deployed ByteCode Sourcemap
346:263:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;691:81:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2521:154:0;;;;;;:::i;:::-;;:::i;:::-;;;1405:14:5;;1398:22;1380:41;;1368:2;1353:18;2521:154:0;1335:92:5;1546:98:0;1625:12;;1546:98;;;4513:25:5;;;4501:2;4486:18;1546:98:0;4468:76:5;3132:261:0;;;;;;:::i;:::-;;:::i;1519:81:1:-;1584:9;;1519:81;;1584:9;;;;4691:36:5;;4679:2;4664:18;1519:81:1;4646:87:5;3788:203:0;;;;;;:::i;:::-;;:::i;1702:117::-;;;;;;:::i;:::-;-1:-1:-1;;;;;1794:18:0;1768:7;1794:18;;;;;;;;;;;;1702:117;885:85:1;;;:::i;4478:213:0:-;;;;;;:::i;:::-;;:::i;2022:162::-;;;;;;:::i;:::-;;:::i;2242:141::-;;;;;;:::i;:::-;-1:-1:-1;;;;;2349:18:0;;;2323:7;2349:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;2242:141;691:81:1;728:13;760:5;753:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;691:81;:::o;2521:154:0:-;2595:4;2611:36;2620:10;2632:7;2641:5;2611:8;:36::i;:::-;-1:-1:-1;2664:4:0;2521:154;;;;:::o;3132:261::-;3230:4;3246:36;3256:6;3264:9;3275:6;3246:9;:36::i;:::-;-1:-1:-1;;;;;3321:19:0;;;;;;:11;:19;;;;;;;;3309:10;3321:31;;;;;;;;;3292:73;;3301:6;;3321:43;;3357:6;3321:35;:43::i;:::-;3292:8;:73::i;:::-;-1:-1:-1;3382:4:0;3132:261;;;;;:::o;3788:203::-;3893:10;3868:4;3914:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;3914:32:0;;;;;;;;;;3868:4;;3884:79;;3905:7;;3914:48;;3951:10;3914:36;:48::i;885:85:1:-;924:13;956:7;949:14;;;;;:::i;4478:213:0:-;4588:10;4563:4;4609:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;4609:32:0;;;;;;;;;;4563:4;;4579:84;;4600:7;;4609:53;;4646:15;4609:36;:53::i;2022:162::-;2100:4;2116:40;2126:10;2138:9;2149:6;2116:9;:40::i;871:176:3:-;929:7;;960:5;964:1;960;:5;:::i;:::-;948:17;;988:1;983;:6;;975:46;;;;-1:-1:-1;;;975:46:3;;3043:2:5;975:46:3;;;3025:21:5;3082:2;3062:18;;;3055:30;3121:29;3101:18;;;3094:57;3168:18;;975:46:3;;;;;;;;;1039:1;871:176;-1:-1:-1;;;871:176:3:o;7204:329:0:-;-1:-1:-1;;;;;7296:19:0;;7288:68;;;;-1:-1:-1;;;7288:68:0;;4164:2:5;7288:68:0;;;4146:21:5;4203:2;4183:18;;;4176:30;4242:34;4222:18;;;4215:62;-1:-1:-1;;;4293:18:5;;;4286:34;4337:19;;7288:68:0;4136:226:5;7288:68:0;-1:-1:-1;;;;;7374:21:0;;7366:68;;;;-1:-1:-1;;;7366:68:0;;2640:2:5;7366:68:0;;;2622:21:5;2679:2;2659:18;;;2652:30;2718:34;2698:18;;;2691:62;-1:-1:-1;;;2769:18:5;;;2762:32;2811:19;;7366:68:0;2612:224:5;7366:68:0;-1:-1:-1;;;;;7445:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;7495:31;;4513:25:5;;;7495:31:0;;4486:18:5;7495:31:0;;;;;;;;7204:329;;;:::o;5165:422::-;-1:-1:-1;;;;;5262:20:0;;5254:70;;;;-1:-1:-1;;;5254:70:0;;3758:2:5;5254:70:0;;;3740:21:5;3797:2;3777:18;;;3770:30;3836:34;3816:18;;;3809:62;-1:-1:-1;;;3887:18:5;;;3880:35;3932:19;;5254:70:0;3730:227:5;5254:70:0;-1:-1:-1;;;;;5342:23:0;;5334:71;;;;-1:-1:-1;;;5334:71:0;;2236:2:5;5334:71:0;;;2218:21:5;2275:2;2255:18;;;2248:30;2314:34;2294:18;;;2287:62;-1:-1:-1;;;2365:18:5;;;2358:33;2408:19;;5334:71:0;2208:225:5;5334:71:0;-1:-1:-1;;;;;5436:17:0;;:9;:17;;;;;;;;;;;:29;;5458:6;5436:21;:29::i;:::-;-1:-1:-1;;;;;5416:17:0;;;:9;:17;;;;;;;;;;;:49;;;;5498:20;;;;;;;:32;;5523:6;5498:24;:32::i;:::-;-1:-1:-1;;;;;5475:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;5545:35;4513:25:5;;;5475:20:0;;5545:35;;;;;;4486:18:5;5545:35:0;4468:76:5;1311:179:3;1369:7;1401:1;1396;:6;;1388:49;;;;-1:-1:-1;;;1388:49:3;;3399:2:5;1388:49:3;;;3381:21:5;3438:2;3418:18;;;3411:30;3477:32;3457:18;;;3450:60;3527:18;;1388:49:3;3371:180:5;1388:49:3;1447:9;1459:5;1463:1;1459;:5;:::i;:::-;1447:17;1311:179;-1:-1:-1;;;;1311:179:3:o;14:173:5:-;82:20;;-1:-1:-1;;;;;131:31:5;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;320:1;317;310:12;272:2;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:2;;;528:1;525;518:12;480:2;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;470:173;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:2;;;810:1;807;800:12;762:2;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;752:224;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:2;;;1126:1;1123;1116:12;1078:2;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;1068:167:5:o;1432:597::-;1544:4;1573:2;1602;1591:9;1584:21;1634:6;1628:13;1677:6;1672:2;1661:9;1657:18;1650:34;1702:1;1712:140;1726:6;1723:1;1720:13;1712:140;;;1821:14;;;1817:23;;1811:30;1787:17;;;1806:2;1783:26;1776:66;1741:10;;1712:140;;;1870:6;1867:1;1864:13;1861:2;;;1940:1;1935:2;1926:6;1915:9;1911:22;1907:31;1900:42;1861:2;-1:-1:-1;2013:2:5;1992:15;-1:-1:-1;;1988:29:5;1973:45;;;;2020:2;1969:54;;1553:476;-1:-1:-1;;;1553:476:5:o;4738:128::-;4778:3;4809:1;4805:6;4802:1;4799:13;4796:2;;;4815:18;;:::i;:::-;-1:-1:-1;4851:9:5;;4786:80::o;4871:125::-;4911:4;4939:1;4936;4933:8;4930:2;;;4944:18;;:::i;:::-;-1:-1:-1;4981:9:5;;4920:76::o;5001:380::-;5080:1;5076:12;;;;5123;;;5144:2;;5198:4;5190:6;5186:17;5176:27;;5144:2;5251;5243:6;5240:14;5220:18;5217:38;5214:2;;;5297:10;5292:3;5288:20;5285:1;5278:31;5332:4;5329:1;5322:15;5360:4;5357:1;5350:15;5214:2;;5056:325;;;:::o;5386:127::-;5447:10;5442:3;5438:20;5435:1;5428:31;5478:4;5475:1;5468:15;5502:4;5499:1;5492:15
Swarm Source
ipfs://a145f36725b8f0dc2c2a60c9341b5ed555de4497e2e421eec24a6688389003a7
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|