[ Download CSV Export ]
OVERVIEW
Beta Polypulsar is a yield farming project with NFT gaming. This project aims to integrate farming experience with blockchain games in a way that it will reward players.Contract Name:
BetaPulsarToken
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-06-18 */ // SPDX-License-Identifier: MIT pragma solidity ^0.6.2; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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 functionCall(target, data, "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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity ^0.6.0; /** * @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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); 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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { require(b > 0, errorMessage); 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) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ 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); } pragma solidity ^0.6.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 GSN 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 payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } pragma solidity ^0.6.0; /** * @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 {ERC20PresetMinterPauser}. * * 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 Ownable, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @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. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * 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; } /** * @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 virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); 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 `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ 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; } /** * @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 virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][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 virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); 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 virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _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 virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _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 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @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 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); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } pragma solidity 0.6.12; // BetaPulsarToken with Governance. contract BetaPulsarToken is ERC20('BetaPulsarToken', 'BPUL') { uint256 public transferTaxRate = 700; uint256 public transferPvpComission = 100; uint256 public totalTransferTaxRate = transferTaxRate + transferPvpComission; uint256 public constant MAXIMUM_TRANSFER_TAX_RATE = 2000; uint256 public constant MAXIMUM_TRANSFER_PVP_COMISSION = 2000; uint256 public maxTransfer = 500; address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; address public developer; address public master; address public pvp; constructor( address _developer, address _pvp ) public { developer = _developer; pvp = _pvp; } /// @notice Creates `_amount` token to `_to`. Must only be called by the owner (MasterChef). function mint(address _to, uint256 _amount) public onlyOwner { _mint(_to, _amount); _moveDelegates(address(0), _delegates[_to], _amount); } // Copied and modified from YAM code: // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol // Which is copied and modified from COMPOUND: // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol mapping (address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); event TransferTaxRateUpdated(uint256 previousTaxRate, uint256 newTaxRate); event TransferPvpComissionUpdated(uint256 previousPvpComission, uint256 newPvpComission); event SetNewDeveloper(address indexed oldDeveloper, address indexed newDeveloper); event SetMaxTransfer(address indexed dev, uint256 newAmount); event SetPvpAddress(address indexed dev, address indexed previousPvpAddress, address indexed newPvpAddress); modifier onlyDeveloper() { require(developer == _msgSender(), "Caller is not the developer"); _; } modifier antiWhale(address sender, address recipient, uint256 amount) { bool antiWhaleDeactivate = (sender == developer || recipient == developer || sender == master || recipient == master); if (maxTransferAmount() > 0 && !antiWhaleDeactivate) { require(amount <= maxTransferAmount(), "BPUL::antiWhale: Transfer amount exceeds the maxTransferAmount"); } _; } function setMasterAddress(address _master) public onlyDeveloper{ master = _master; } function setMaxTransfer(uint256 _amount) public onlyDeveloper{ maxTransfer = _amount; emit SetMaxTransfer(msg.sender, _amount); } function maxTransferAmount() public view returns (uint256) { return totalSupply().mul(maxTransfer).div(10000); } function updateTransferTaxRate(uint256 _transferTaxRate) public onlyDeveloper { require(_transferTaxRate <= MAXIMUM_TRANSFER_TAX_RATE, "BPUL::updateTransferTaxRate: Transfer tax rate must not exceed the maximum rate."); emit TransferTaxRateUpdated(transferTaxRate, _transferTaxRate); transferTaxRate = _transferTaxRate; totalTransferTaxRate = transferTaxRate + transferPvpComission; } function updateTransferPvpComission(uint256 _transferPvpComission) public onlyDeveloper { require(_transferPvpComission <= MAXIMUM_TRANSFER_PVP_COMISSION, "BPUL::updateTransferTaxRate: Transfer tax rate must not exceed the maximum rate."); emit TransferPvpComissionUpdated(transferPvpComission, _transferPvpComission); transferPvpComission = _transferPvpComission; totalTransferTaxRate = transferTaxRate + transferPvpComission; } function setDeveloperAddress(address _newDeveloper) public onlyDeveloper{ require(_newDeveloper != address(0), "Dev address can't be zero."); emit SetNewDeveloper(developer, _newDeveloper); developer = _newDeveloper; } function setPvpAddress(address _newPvp) public onlyDeveloper{ emit SetPvpAddress(developer, pvp, _newPvp); pvp = _newPvp; } function _transfer(address sender, address recipient, uint256 amount) internal virtual override antiWhale(sender, recipient, amount){ if (recipient == BURN_ADDRESS || transferTaxRate == 0 || sender == developer || recipient == developer) { super._transfer(sender, recipient, amount); } else { // default tax is 7% of every transfer uint256 taxAmount = amount.mul(transferTaxRate).div(10000); // default comission is 1% of every transfer uint256 pvpTaxAmount = amount.mul(transferPvpComission).div(10000); // default 92% of transfer sent to recipient uint256 sendAmount = amount.sub(taxAmount).sub(pvpTaxAmount); require(amount == sendAmount + taxAmount + pvpTaxAmount, "BPUL::transfer: Tax value invalid"); super._transfer(sender, BURN_ADDRESS, taxAmount); super._transfer(sender, pvp, pvpTaxAmount); super._transfer(sender, recipient, sendAmount); } } function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode( DELEGATION_TYPEHASH, delegatee, nonce, expiry ) ); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", domainSeparator, structHash ) ); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "TOKEN::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "TOKEN::delegateBySig: invalid nonce"); require(now <= expiry, "TOKEN::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) external view returns (uint256) { require(blockNumber < block.number, "TOKEN::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying TOKENs (not scaled); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld.sub(amount); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld.add(amount); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "TOKEN::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal pure returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_developer","type":"address"},{"internalType":"address","name":"_pvp","type":"address"}],"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"dev","type":"address"},{"indexed":false,"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"SetMaxTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldDeveloper","type":"address"},{"indexed":true,"internalType":"address","name":"newDeveloper","type":"address"}],"name":"SetNewDeveloper","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"dev","type":"address"},{"indexed":true,"internalType":"address","name":"previousPvpAddress","type":"address"},{"indexed":true,"internalType":"address","name":"newPvpAddress","type":"address"}],"name":"SetPvpAddress","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousPvpComission","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newPvpComission","type":"uint256"}],"name":"TransferPvpComissionUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"previousTaxRate","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTaxRate","type":"uint256"}],"name":"TransferTaxRateUpdated","type":"event"},{"inputs":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_TRANSFER_PVP_COMISSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_TRANSFER_TAX_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"master","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransfer","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransferAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pvp","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newDeveloper","type":"address"}],"name":"setDeveloperAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_master","type":"address"}],"name":"setMasterAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newPvp","type":"address"}],"name":"setPvpAddress","outputs":[],"stateMutability":"nonpayable","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":[],"name":"totalTransferTaxRate","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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferPvpComission","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transferTaxRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferPvpComission","type":"uint256"}],"name":"updateTransferPvpComission","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferTaxRate","type":"uint256"}],"name":"updateTransferTaxRate","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526102bc60075560646008556103206009556101f4600a553480156200002857600080fd5b50604051620027dc380380620027dc833981810160405260408110156200004e57600080fd5b508051602091820151604080518082018252600f81526e2132ba30a83ab639b0b92a37b5b2b760891b81860152815180830190925260048252631094155360e21b94820194909452919290916000620000a66200015d565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35081516200010590600490602085019062000161565b5080516200011b90600590602084019062000161565b50506006805460ff1916601217905550600b80546001600160a01b039384166001600160a01b031991821617909155600d8054929093169116179055620001fd565b3390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620001a457805160ff1916838001178555620001d4565b82800160010185558215620001d4579182015b82811115620001d4578251825591602001919060010190620001b7565b50620001e2929150620001e6565b5090565b5b80821115620001e25760008155600101620001e7565b6125cf806200020d6000396000f3fe608060405234801561001057600080fd5b506004361061025e5760003560e01c8063782d6fe111610146578063b65d08b0116100c3578063e7a324dc11610087578063e7a324dc1461071b578063ed233ee914610723578063ee97f7f31461072b578063f1127ed814610733578063f2fde38b14610785578063fccc2813146107ab5761025e565b8063b65d08b014610670578063c3cda52014610678578063ca4b208b146106bf578063dcc345f2146106c7578063dd62ed3e146106ed5761025e565b8063a457c2d71161010a578063a457c2d7146105cd578063a9059cbb146105f9578063a9bce06314610625578063a9e7572314610642578063b4b5ea571461064a5761025e565b8063782d6fe1146105635780637ecebe001461058f5780638da5cb5b146105b557806395d89b41146105bd5780639bd22ca9146105c55761025e565b806339509351116101df5780635d06a611116101a35780635d06a611146104ab5780636fcfff45146104d1578063700cc66f1461051057806370a0823114610518578063715018a61461053e57806377348de9146105465761025e565b806339509351146103ce57806340c10f19146103fa57806358615c1b14610426578063587cde1e146104435780635c19a95c146104855761025e565b80631ad9339a116102265780631ad9339a1461026357806320606b701461034a57806323b872dd14610352578063313ce56714610388578063331ee848146103a65761025e565b80630359346e1461026357806306fdde031461027d578063095ea7b3146102fa57806309c954bf1461033a57806318160ddd14610342575b600080fd5b61026b6107b3565b60408051918252519081900360200190f35b6102856107b9565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102bf5781810151838201526020016102a7565b50505050905090810190601f1680156102ec5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103266004803603604081101561031057600080fd5b506001600160a01b03813516906020013561084f565b604080519115158252519081900360200190f35b61026b61086d565b61026b610873565b61026b610879565b6103266004803603606081101561036857600080fd5b506001600160a01b0381358116916020810135909116906040013561089d565b610390610924565b6040805160ff9092168252519081900360200190f35b6103cc600480360360208110156103bc57600080fd5b50356001600160a01b031661092d565b005b610326600480360360408110156103e457600080fd5b506001600160a01b0381351690602001356109e7565b6103cc6004803603604081101561041057600080fd5b506001600160a01b038135169060200135610a35565b6103cc6004803603602081101561043c57600080fd5b5035610ad2565b6104696004803603602081101561045957600080fd5b50356001600160a01b0316610bb6565b604080516001600160a01b039092168252519081900360200190f35b6103cc6004803603602081101561049b57600080fd5b50356001600160a01b0316610bd4565b6103cc600480360360208110156104c157600080fd5b50356001600160a01b0316610be1565b6104f7600480360360208110156104e757600080fd5b50356001600160a01b0316610c5b565b6040805163ffffffff9092168252519081900360200190f35b610469610c73565b61026b6004803603602081101561052e57600080fd5b50356001600160a01b0316610c82565b6103cc610c9d565b6103cc6004803603602081101561055c57600080fd5b5035610d51565b61026b6004803603604081101561057957600080fd5b506001600160a01b038135169060200135610de7565b61026b600480360360208110156105a557600080fd5b50356001600160a01b0316610fef565b610469611001565b610285611010565b61026b611071565b610326600480360360408110156105e357600080fd5b506001600160a01b038135169060200135611077565b6103266004803603604081101561060f57600080fd5b506001600160a01b0381351690602001356110df565b6103cc6004803603602081101561063b57600080fd5b50356110f3565b61026b6111d7565b61026b6004803603602081101561066057600080fd5b50356001600160a01b03166111fe565b61026b611262565b6103cc600480360360c081101561068e57600080fd5b506001600160a01b038135169060208101359060408101359060ff6060820135169060808101359060a00135611268565b6104696114db565b6103cc600480360360208110156106dd57600080fd5b50356001600160a01b03166114ea565b61026b6004803603604081101561070357600080fd5b506001600160a01b03813581169160200135166115f9565b61026b611624565b61026b611648565b61046961164e565b6107656004803603604081101561074957600080fd5b5080356001600160a01b0316906020013563ffffffff1661165d565b6040805163ffffffff909316835260208301919091528051918290030190f35b6103cc6004803603602081101561079b57600080fd5b50356001600160a01b031661168a565b610469611794565b6107d081565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108455780601f1061081a57610100808354040283529160200191610845565b820191906000526020600020905b81548152906001019060200180831161082857829003601f168201915b5050505050905090565b600061086361085c61179a565b848461179e565b5060015b92915050565b60095481565b60035490565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60006108aa84848461188a565b61091a846108b661179a565b61091585604051806060016040528060288152602001612434602891396001600160a01b038a166000908152600260205260408120906108f461179a565b6001600160a01b031681526020810191909152604001600020549190611a7d565b61179e565b5060019392505050565b60065460ff1690565b61093561179a565b600b546001600160a01b03908116911614610985576040805162461bcd60e51b815260206004820152601b60248201526000805160206124f4833981519152604482015290519081900360640190fd5b600d54600b546040516001600160a01b038085169381169216907f8a852d45a22814ce1b345d777c785a80579215a942510443db3d0a0397b109e790600090a4600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60006108636109f461179a565b846109158560026000610a0561179a565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611b14565b610a3d61179a565b6000546001600160a01b03908116911614610a9f576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610aa98282611b6e565b6001600160a01b038083166000908152600e6020526040812054610ace921683611c60565b5050565b610ada61179a565b600b546001600160a01b03908116911614610b2a576040805162461bcd60e51b815260206004820152601b60248201526000805160206124f4833981519152604482015290519081900360640190fd5b6107d0811115610b6b5760405162461bcd60e51b815260040180806020018281038252605081526020018061237b6050913960600191505060405180910390fd5b600754604080519182526020820183905280517feccc1250761b676d0deb70751adef3ceaa6804c5836fe8798588bff5a6ee18b19281900390910190a1600781905560085401600955565b6001600160a01b039081166000908152600e60205260409020541690565b610bde3382611da2565b50565b610be961179a565b600b546001600160a01b03908116911614610c39576040805162461bcd60e51b815260206004820152601b60248201526000805160206124f4833981519152604482015290519081900360640190fd5b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60106020526000908152604090205463ffffffff1681565b600d546001600160a01b031681565b6001600160a01b031660009081526001602052604090205490565b610ca561179a565b6000546001600160a01b03908116911614610d07576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610d5961179a565b600b546001600160a01b03908116911614610da9576040805162461bcd60e51b815260206004820152601b60248201526000805160206124f4833981519152604482015290519081900360640190fd5b600a81905560408051828152905133917f17b66a7bf081448f92bee01dd35034886680267a559e92cfd949da80e562ec5c919081900360200190a250565b6000438210610e275760405162461bcd60e51b81526004018080602001828103825260288152602001806124a86028913960400191505060405180910390fd5b6001600160a01b03831660009081526010602052604090205463ffffffff1680610e55576000915050610867565b6001600160a01b0384166000908152600f6020908152604080832063ffffffff600019860181168552925290912054168310610ec4576001600160a01b0384166000908152600f602090815260408083206000199490940163ffffffff16835292905220600101549050610867565b6001600160a01b0384166000908152600f6020908152604080832083805290915290205463ffffffff16831015610eff576000915050610867565b600060001982015b8163ffffffff168163ffffffff161115610fb857600282820363ffffffff16048103610f3161229d565b506001600160a01b0387166000908152600f6020908152604080832063ffffffff808616855290835292819020815180830190925280549093168082526001909301549181019190915290871415610f93576020015194506108679350505050565b805163ffffffff16871115610faa57819350610fb1565b6001820392505b5050610f07565b506001600160a01b0385166000908152600f6020908152604080832063ffffffff9094168352929052206001015491505092915050565b60116020526000908152604090205481565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108455780601f1061081a57610100808354040283529160200191610845565b60085481565b600061086361108461179a565b846109158560405180606001604052806025815260200161257560259139600260006110ae61179a565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611a7d565b60006108636110ec61179a565b848461188a565b6110fb61179a565b600b546001600160a01b0390811691161461114b576040805162461bcd60e51b815260206004820152601b60248201526000805160206124f4833981519152604482015290519081900360640190fd5b6107d081111561118c5760405162461bcd60e51b815260040180806020018281038252605081526020018061237b6050913960600191505060405180910390fd5b600854604080519182526020820183905280517f3a2e6656bc83771e580119bd25266d461e2756a0b1bd77f00f6797d87d5b4f759281900390910190a1600881905560075401600955565b60006111f96127106111f3600a546111ed610873565b90611e37565b90611e90565b905090565b6001600160a01b03811660009081526010602052604081205463ffffffff168061122957600061125b565b6001600160a01b0383166000908152600f6020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b60075481565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a8666112936107b9565b805190602001206112a2611ed2565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a0830182528051908401207fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf60c08401526001600160a01b038b1660e084015261010083018a90526101208084018a9052825180850390910181526101408401835280519085012061190160f01b6101608501526101628401829052610182808501829052835180860390910181526101a285018085528151918701919091206000918290526101c2860180865281905260ff8b166101e287015261020286018a90526102228601899052935192965090949293909260019261024280840193601f198301929081900390910190855afa1580156113d5573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166114275760405162461bcd60e51b815260040180806020018281038252602781526020018061245c6027913960400191505060405180910390fd5b6001600160a01b038116600090815260116020526040902080546001810190915589146114855760405162461bcd60e51b81526004018080602001828103825260238152602001806125146023913960400191505060405180910390fd5b874211156114c45760405162461bcd60e51b81526004018080602001828103825260278152602001806123cb6027913960400191505060405180910390fd5b6114ce818b611da2565b505050505b505050505050565b600b546001600160a01b031681565b6114f261179a565b600b546001600160a01b03908116911614611542576040805162461bcd60e51b815260206004820152601b60248201526000805160206124f4833981519152604482015290519081900360640190fd5b6001600160a01b03811661159d576040805162461bcd60e51b815260206004820152601a60248201527f44657620616464726573732063616e2774206265207a65726f2e000000000000604482015290519081900360640190fd5b600b546040516001600160a01b038084169216907fbd9bef03eb725f96bdfcefa1314964385381810d47146ec93044f353b560428890600090a3600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b600a5481565b600c546001600160a01b031681565b600f6020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b61169261179a565b6000546001600160a01b039081169116146116f4576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b6001600160a01b0381166117395760405162461bcd60e51b81526004018080602001828103825260268152602001806122d86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61dead81565b3390565b6001600160a01b0383166117e35760405162461bcd60e51b81526004018080602001828103825260248152602001806124d06024913960400191505060405180910390fd5b6001600160a01b0382166118285760405162461bcd60e51b81526004018080602001828103825260228152602001806122fe6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600b548390839083906000906001600160a01b03808616911614806118bc5750600b546001600160a01b038481169116145b806118d45750600c546001600160a01b038581169116145b806118ec5750600c546001600160a01b038481169116145b905060006118f86111d7565b118015611903575080155b1561194e576119106111d7565b82111561194e5760405162461bcd60e51b815260040180806020018281038252603e815260200180612537603e913960400191505060405180910390fd5b6001600160a01b03861661dead14806119675750600754155b8061197f5750600b546001600160a01b038881169116145b806119975750600b546001600160a01b038781169116145b156119ac576119a7878787611ed6565b611a74565b60006119c96127106111f360075489611e3790919063ffffffff16565b905060006119e86127106111f36008548a611e3790919063ffffffff16565b90506000611a00826119fa8a86612033565b90612033565b905081838201018814611a445760405162461bcd60e51b81526004018080602001828103825260218152602001806124136021913960400191505060405180910390fd5b611a518a61dead85611ed6565b600d54611a69908b906001600160a01b031684611ed6565b6114ce8a8a83611ed6565b50505050505050565b60008184841115611b0c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611ad1578181015183820152602001611ab9565b50505050905090810190601f168015611afe5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b60008282018381101561125b576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b038216611bc9576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b611bd560008383611d9d565b600354611be29082611b14565b6003556001600160a01b038216600090815260016020526040902054611c089082611b14565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b816001600160a01b0316836001600160a01b031614158015611c825750600081115b15611d9d576001600160a01b03831615611d14576001600160a01b03831660009081526010602052604081205463ffffffff169081611cc2576000611cf4565b6001600160a01b0385166000908152600f6020908152604080832063ffffffff60001987011684529091529020600101545b90506000611d028285612033565b9050611d1086848484612075565b5050505b6001600160a01b03821615611d9d576001600160a01b03821660009081526010602052604081205463ffffffff169081611d4f576000611d81565b6001600160a01b0384166000908152600f6020908152604080832063ffffffff60001987011684529091529020600101545b90506000611d8f8285611b14565b90506114d385848484612075565b505050565b6001600160a01b038083166000908152600e602052604081205490911690611dc984610c82565b6001600160a01b038581166000818152600e602052604080822080546001600160a01b031916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4611e31828483611c60565b50505050565b600082611e4657506000610867565b82820282848281611e5357fe5b041461125b5760405162461bcd60e51b81526004018080602001828103825260218152602001806123f26021913960400191505060405180910390fd5b600061125b83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506121da565b4690565b6001600160a01b038316611f1b5760405162461bcd60e51b81526004018080602001828103825260258152602001806124836025913960400191505060405180910390fd5b6001600160a01b038216611f605760405162461bcd60e51b81526004018080602001828103825260238152602001806122b56023913960400191505060405180910390fd5b611f6b838383611d9d565b611fa881604051806060016040528060268152602001612355602691396001600160a01b0386166000908152600160205260409020549190611a7d565b6001600160a01b038085166000908152600160205260408082209390935590841681522054611fd79082611b14565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600061125b83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611a7d565b6000612099436040518060600160405280603581526020016123206035913961223f565b905060008463ffffffff161180156120e257506001600160a01b0385166000908152600f6020908152604080832063ffffffff6000198901811685529252909120548282169116145b1561211f576001600160a01b0385166000908152600f6020908152604080832063ffffffff60001989011684529091529020600101829055612190565b60408051808201825263ffffffff808416825260208083018681526001600160a01b038a166000818152600f84528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260109092529390208054928801909116919092161790555b604080518481526020810184905281516001600160a01b038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b600081836122295760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611ad1578181015183820152602001611ab9565b50600083858161223557fe5b0495945050505050565b60008164010000000084106122955760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611ad1578181015183820152602001611ab9565b509192915050565b60408051808201909152600080825260208201529056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373544f4b454e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654250554c3a3a7570646174655472616e73666572546178526174653a205472616e73666572207461782072617465206d757374206e6f742065786365656420746865206d6178696d756d20726174652e544f4b454e3a3a64656c656761746542795369673a207369676e61747572652065787069726564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774250554c3a3a7472616e736665723a205461782076616c756520696e76616c696445524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365544f4b454e3a3a64656c656761746542795369673a20696e76616c6964207369676e617475726545524332303a207472616e736665722066726f6d20746865207a65726f2061646472657373544f4b454e3a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a20617070726f76652066726f6d20746865207a65726f206164647265737343616c6c6572206973206e6f742074686520646576656c6f7065720000000000544f4b454e3a3a64656c656761746542795369673a20696e76616c6964206e6f6e63654250554c3a3a616e74695768616c653a205472616e7366657220616d6f756e74206578636565647320746865206d61785472616e73666572416d6f756e7445524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220263b5d3e3792e7a2da3ba9006379cfb33faea6825bfa0c3dff34271c2d845b4664736f6c634300060c003300000000000000000000000002d650eea6458794b57492aca061fdbd26d97767000000000000000000000000398f83fe6663df6a5e5e6fe441525dd877ad32e2
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000002d650eea6458794b57492aca061fdbd26d97767000000000000000000000000398f83fe6663df6a5e5e6fe441525dd877ad32e2
-----Decoded View---------------
Arg [0] : _developer (address): 0x02d650eea6458794b57492aca061fdbd26d97767
Arg [1] : _pvp (address): 0x398f83fe6663df6a5e5e6fe441525dd877ad32e2
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000002d650eea6458794b57492aca061fdbd26d97767
Arg [1] : 000000000000000000000000398f83fe6663df6a5e5e6fe441525dd877ad32e2
Deployed ByteCode Sourcemap
28442:13246:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28753:61;;;:::i;:::-;;;;;;;;;;;;;;;;19561:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21667:169;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21667:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;28607:76;;;:::i;20636:100::-;;;:::i;30420:122::-;;;:::i;22310:321::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;22310:321:0;;;;;;;;;;;;;;;;;:::i;20488:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;33879:146;;;;;;;;;;;;;;;;-1:-1:-1;33879:146:0;-1:-1:-1;;;;;33879:146:0;;:::i;:::-;;23040:218;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23040:218:0;;;;;;;;:::i;29282:162::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;29282:162:0;;;;;;;;:::i;32698:425::-;;;;;;;;;;;;;;;;-1:-1:-1;32698:425:0;;:::i;35080:149::-;;;;;;;;;;;;;;;;-1:-1:-1;35080:149:0;-1:-1:-1;;;;;35080:149:0;;:::i;:::-;;;;-1:-1:-1;;;;;35080:149:0;;;;;;;;;;;;;;35380:104;;;;;;;;;;;;;;;;-1:-1:-1;35380:104:0;-1:-1:-1;;;;;35380:104:0;;:::i;32299:84::-;;;;;;;;;;;;;;;;-1:-1:-1;32299:84:0;-1:-1:-1;;;;;32299:84:0;;:::i;30298:49::-;;;;;;;;;;;;;;;;-1:-1:-1;30298:49:0;-1:-1:-1;;;;;30298:49:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;29007:18;;;:::i;20799:119::-;;;;;;;;;;;;;;;;-1:-1:-1;20799:119:0;-1:-1:-1;;;;;20799:119:0;;:::i;16887:148::-;;;:::i;32395:152::-;;;;;;;;;;;;;;;;-1:-1:-1;32395:152:0;;:::i;37986:1254::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;37986:1254:0;;;;;;;;:::i;30834:39::-;;;;;;;;;;;;;;;;-1:-1:-1;30834:39:0;-1:-1:-1;;;;;30834:39:0;;:::i;16245:79::-;;;:::i;19763:87::-;;;:::i;28559:41::-;;;:::i;23761:269::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;23761:269:0;;;;;;;;:::i;21131:175::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21131:175:0;;;;;;;;:::i;33135:470::-;;;;;;;;;;;;;;;;-1:-1:-1;33135:470:0;;:::i;32559:126::-;;;:::i;37300:255::-;;;;;;;;;;;;;;;;-1:-1:-1;37300:255:0;-1:-1:-1;;;;;37300:255:0;;:::i;28516:36::-;;;:::i;35918:1181::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;35918:1181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;28948:24::-;;;:::i;33617:250::-;;;;;;;;;;;;;;;;-1:-1:-1;33617:250:0;-1:-1:-1;;;;;33617:250:0;;:::i;21369:151::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;21369:151:0;;;;;;;;;;:::i;30636:117::-;;;:::i;28821:32::-;;;:::i;28979:21::-;;;:::i;30159:70::-;;;;;;;;;;;;;;;;-1:-1:-1;30159:70:0;;-1:-1:-1;;;;;30159:70:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;17190:244;;;;;;;;;;;;;;;;-1:-1:-1;17190:244:0;-1:-1:-1;;;;;17190:244:0;;:::i;28860:81::-;;;:::i;28753:61::-;28810:4;28753:61;:::o;19561:83::-;19631:5;19624:12;;;;;;;;-1:-1:-1;;19624:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19598:13;;19624:12;;19631:5;;19624:12;;19631:5;19624:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19561:83;:::o;21667:169::-;21750:4;21767:39;21776:12;:10;:12::i;:::-;21790:7;21799:6;21767:8;:39::i;:::-;-1:-1:-1;21824:4:0;21667:169;;;;;:::o;28607:76::-;;;;:::o;20636:100::-;20716:12;;20636:100;:::o;30420:122::-;30462:80;30420:122;:::o;22310:321::-;22416:4;22433:36;22443:6;22451:9;22462:6;22433:9;:36::i;:::-;22480:121;22489:6;22497:12;:10;:12::i;:::-;22511:89;22549:6;22511:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22511:19:0;;;;;;:11;:19;;;;;;22531:12;:10;:12::i;:::-;-1:-1:-1;;;;;22511:33:0;;;;;;;;;;;;-1:-1:-1;22511:33:0;;;:89;:37;:89::i;:::-;22480:8;:121::i;:::-;-1:-1:-1;22619:4:0;22310:321;;;;;:::o;20488:83::-;20554:9;;;;20488:83;:::o;33879:146::-;31794:12;:10;:12::i;:::-;31781:9;;-1:-1:-1;;;;;31781:9:0;;;:25;;;31773:65;;;;;-1:-1:-1;;;31773:65:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31773:65:0;;;;;;;;;;;;;;;33980:3:::1;::::0;33969:9:::1;::::0;33955:38:::1;::::0;-1:-1:-1;;;;;33955:38:0;;::::1;::::0;33980:3;::::1;::::0;33969:9:::1;::::0;33955:38:::1;::::0;33980:3:::1;::::0;33955:38:::1;34004:3;:13:::0;;-1:-1:-1;;;;;;34004:13:0::1;-1:-1:-1::0;;;;;34004:13:0;;;::::1;::::0;;;::::1;::::0;;33879:146::o;23040:218::-;23128:4;23145:83;23154:12;:10;:12::i;:::-;23168:7;23177:50;23216:10;23177:11;:25;23189:12;:10;:12::i;:::-;-1:-1:-1;;;;;23177:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23177:25:0;;;:34;;;;;;;;;;;:38;:50::i;29282:162::-;16467:12;:10;:12::i;:::-;16457:6;;-1:-1:-1;;;;;16457:6:0;;;:22;;;16449:67;;;;;-1:-1:-1;;;16449:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29354:19:::1;29360:3;29365:7;29354:5;:19::i;:::-;-1:-1:-1::0;;;;;29411:15:0;;::::1;29407:1;29411:15:::0;;;:10:::1;:15;::::0;;;;;29384:52:::1;::::0;29411:15:::1;29428:7:::0;29384:14:::1;:52::i;:::-;29282:162:::0;;:::o;32698:425::-;31794:12;:10;:12::i;:::-;31781:9;;-1:-1:-1;;;;;31781:9:0;;;:25;;;31773:65;;;;;-1:-1:-1;;;31773:65:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31773:65:0;;;;;;;;;;;;;;;28742:4:::1;32795:16;:45;;32787:138;;;;-1:-1:-1::0;;;32787:138:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32964:15;::::0;32941:57:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;::::1;33009:15;:34:::0;;;33095:20:::1;::::0;33077:38:::1;33054:20;:61:::0;32698:425::o;35080:149::-;-1:-1:-1;;;;;35200:21:0;;;35168:7;35200:21;;;:10;:21;;;;;;;;35080:149::o;35380:104::-;35444:32;35454:10;35466:9;35444;:32::i;:::-;35380:104;:::o;32299:84::-;31794:12;:10;:12::i;:::-;31781:9;;-1:-1:-1;;;;;31781:9:0;;;:25;;;31773:65;;;;;-1:-1:-1;;;31773:65:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31773:65:0;;;;;;;;;;;;;;;32364:6:::1;:16:::0;;-1:-1:-1;;;;;;32364:16:0::1;-1:-1:-1::0;;;;;32364:16:0;;;::::1;::::0;;;::::1;::::0;;32299:84::o;30298:49::-;;;;;;;;;;;;;;;:::o;29007:18::-;;;-1:-1:-1;;;;;29007:18:0;;:::o;20799:119::-;-1:-1:-1;;;;;20892:18:0;20865:7;20892:18;;;:9;:18;;;;;;;20799:119::o;16887:148::-;16467:12;:10;:12::i;:::-;16457:6;;-1:-1:-1;;;;;16457:6:0;;;:22;;;16449:67;;;;;-1:-1:-1;;;16449:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16994:1:::1;16978:6:::0;;16957:40:::1;::::0;-1:-1:-1;;;;;16978:6:0;;::::1;::::0;16957:40:::1;::::0;16994:1;;16957:40:::1;17025:1;17008:19:::0;;-1:-1:-1;;;;;;17008:19:0::1;::::0;;16887:148::o;32395:152::-;31794:12;:10;:12::i;:::-;31781:9;;-1:-1:-1;;;;;31781:9:0;;;:25;;;31773:65;;;;;-1:-1:-1;;;31773:65:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31773:65:0;;;;;;;;;;;;;;;32467:11:::1;:21:::0;;;32504:35:::1;::::0;;;;;;;32519:10:::1;::::0;32504:35:::1;::::0;;;;;::::1;::::0;;::::1;32395:152:::0;:::o;37986:1254::-;38094:7;38141:12;38127:11;:26;38119:79;;;;-1:-1:-1;;;38119:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;38233:23:0;;38211:19;38233:23;;;:14;:23;;;;;;;;38271:17;38267:58;;38312:1;38305:8;;;;;38267:58;-1:-1:-1;;;;;38385:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;38406:16:0;;38385:38;;;;;;;;;:48;;:63;-1:-1:-1;38381:147:0;;-1:-1:-1;;;;;38472:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;38493:16:0;;;;38472:38;;;;;;;;38508:1;38472:44;;;-1:-1:-1;38465:51:0;;38381:147;-1:-1:-1;;;;;38589:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;38585:88:0;;;38660:1;38653:8;;;;;38585:88;38685:12;-1:-1:-1;;38727:16:0;;38754:428;38769:5;38761:13;;:5;:13;;;38754:428;;;38833:1;38816:13;;;38815:19;;;38807:27;;38876:20;;:::i;:::-;-1:-1:-1;;;;;;38899:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;38876:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38946:27;;38942:229;;;39001:8;;;;-1:-1:-1;38994:15:0;;-1:-1:-1;;;;38994:15:0;38942:229;39035:12;;:26;;;-1:-1:-1;39031:140:0;;;39090:6;39082:14;;39031:140;;;39154:1;39145:6;:10;39137:18;;39031:140;38754:428;;;;;-1:-1:-1;;;;;;39199:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;;;;-1:-1:-1;;37986:1254:0;;;;:::o;30834:39::-;;;;;;;;;;;;;:::o;16245:79::-;16283:7;16310:6;-1:-1:-1;;;;;16310:6:0;16245:79;:::o;19763:87::-;19835:7;19828:14;;;;;;;;-1:-1:-1;;19828:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19802:13;;19828:14;;19835:7;;19828:14;;19835:7;19828:14;;;;;;;;;;;;;;;;;;;;;;;;28559:41;;;;:::o;23761:269::-;23854:4;23871:129;23880:12;:10;:12::i;:::-;23894:7;23903:96;23942:15;23903:96;;;;;;;;;;;;;;;;;:11;:25;23915:12;:10;:12::i;:::-;-1:-1:-1;;;;;23903:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;23903:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;21131:175::-;21217:4;21234:42;21244:12;:10;:12::i;:::-;21258:9;21269:6;21234:9;:42::i;33135:470::-;31794:12;:10;:12::i;:::-;31781:9;;-1:-1:-1;;;;;31781:9:0;;;:25;;;31773:65;;;;;-1:-1:-1;;;31773:65:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31773:65:0;;;;;;;;;;;;;;;28810:4:::1;33242:21;:55;;33234:148;;;;-1:-1:-1::0;;;33234:148:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33426:20;::::0;33398:72:::1;::::0;;;;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;;;;;;;::::1;33481:20;:44:::0;;;33559:15:::1;::::0;:38:::1;33536:20;:61:::0;33135:470::o;32559:126::-;32609:7;32636:41;32671:5;32636:30;32654:11;;32636:13;:11;:13::i;:::-;:17;;:30::i;:::-;:34;;:41::i;:::-;32629:48;;32559:126;:::o;37300:255::-;-1:-1:-1;;;;;37439:23:0;;37392:7;37439:23;;;:14;:23;;;;;;;;37480:16;:67;;37546:1;37480:67;;;-1:-1:-1;;;;;37499:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;37520:16:0;;37499:38;;;;;;;;37535:1;37499:44;;37480:67;37473:74;37300:255;-1:-1:-1;;;37300:255:0:o;28516:36::-;;;;:::o;35918:1181::-;36111:23;30462:80;36240:6;:4;:6::i;:::-;36224:24;;;;;;36267:12;:10;:12::i;:::-;36161:165;;;;;;;;;;;;;;;;;;;;;;;;;36306:4;36161:165;;;;;;;;;;;;;;;;;;;;;;;36137:200;;;;;;30682:71;36395:140;;;;-1:-1:-1;;;;;36395:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36371:175;;;;;;-1:-1:-1;;;36600:123:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36576:158;;;;;;;;;-1:-1:-1;36767:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36137:200;;-1:-1:-1;36371:175:0;;36576:158;;-1:-1:-1;;36767:26:0;;;;;;;-1:-1:-1;;36767:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;36767:26:0;;-1:-1:-1;;36767:26:0;;;-1:-1:-1;;;;;;;36812:23:0;;36804:75;;;;-1:-1:-1;;;36804:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;36907:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;36898:28;;36890:76;;;;-1:-1:-1;;;36890:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36992:6;36985:3;:13;;36977:65;;;;-1:-1:-1;;;36977:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37060:31;37070:9;37081;37060;:31::i;:::-;37053:38;;;;35918:1181;;;;;;;:::o;28948:24::-;;;-1:-1:-1;;;;;28948:24:0;;:::o;33617:250::-;31794:12;:10;:12::i;:::-;31781:9;;-1:-1:-1;;;;;31781:9:0;;;:25;;;31773:65;;;;;-1:-1:-1;;;31773:65:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;31773:65:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;33708:27:0;::::1;33700:66;;;::::0;;-1:-1:-1;;;33700:66:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;33798:9;::::0;33782:41:::1;::::0;-1:-1:-1;;;;;33782:41:0;;::::1;::::0;33798:9:::1;::::0;33782:41:::1;::::0;33798:9:::1;::::0;33782:41:::1;33834:9;:25:::0;;-1:-1:-1;;;;;;33834:25:0::1;-1:-1:-1::0;;;;;33834:25:0;;;::::1;::::0;;;::::1;::::0;;33617:250::o;21369:151::-;-1:-1:-1;;;;;21485:18:0;;;21458:7;21485:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;21369:151::o;30636:117::-;30682:71;30636:117;:::o;28821:32::-;;;;:::o;28979:21::-;;;-1:-1:-1;;;;;28979:21:0;;:::o;30159:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;17190:244::-;16467:12;:10;:12::i;:::-;16457:6;;-1:-1:-1;;;;;16457:6:0;;;:22;;;16449:67;;;;;-1:-1:-1;;;16449:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17279:22:0;::::1;17271:73;;;;-1:-1:-1::0;;;17271:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17381:6;::::0;;17360:38:::1;::::0;-1:-1:-1;;;;;17360:38:0;;::::1;::::0;17381:6;::::1;::::0;17360:38:::1;::::0;::::1;17409:6;:17:::0;;-1:-1:-1;;;;;;17409:17:0::1;-1:-1:-1::0;;;;;17409:17:0;;;::::1;::::0;;;::::1;::::0;;17190:244::o;28860:81::-;28899:42;28860:81;:::o;14858:106::-;14946:10;14858:106;:::o;26908:346::-;-1:-1:-1;;;;;27010:19:0;;27002:68;;;;-1:-1:-1;;;27002:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27089:21:0;;27081:68;;;;-1:-1:-1;;;27081:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27162:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;27214:32;;;;;;;;;;;;;;;;;26908:346;;;:::o;34037:1031::-;31989:9;;34143:6;;34151:9;;34162:6;;31951:24;;-1:-1:-1;;;;;31979:19:0;;;31989:9;;31979:19;;:45;;-1:-1:-1;32015:9:0;;-1:-1:-1;;;;;32002:22:0;;;32015:9;;32002:22;31979:45;:65;;;-1:-1:-1;32038:6:0;;-1:-1:-1;;;;;32028:16:0;;;32038:6;;32028:16;31979:65;:88;;;-1:-1:-1;32061:6:0;;-1:-1:-1;;;;;32048:19:0;;;32061:6;;32048:19;31979:88;31951:117;;32108:1;32086:19;:17;:19::i;:::-;:23;:47;;;;;32114:19;32113:20;32086:47;32082:186;;;32170:19;:17;:19::i;:::-;32160:6;:29;;32152:104;;;;-1:-1:-1;;;32152:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34184:25:0;::::1;28899:42;34184:25;::::0;:49:::1;;-1:-1:-1::0;34213:15:0::1;::::0;:20;34184:49:::1;:72;;;-1:-1:-1::0;34247:9:0::1;::::0;-1:-1:-1;;;;;34237:19:0;;::::1;34247:9:::0;::::1;34237:19;34184:72;:98;;;-1:-1:-1::0;34273:9:0::1;::::0;-1:-1:-1;;;;;34260:22:0;;::::1;34273:9:::0;::::1;34260:22;34184:98;34180:881;;;34299:42;34315:6;34323:9;34334:6;34299:15;:42::i;:::-;34180:881;;;34426:17;34446:38;34478:5;34446:27;34457:15;;34446:6;:10;;:27;;;;:::i;:38::-;34426:58;;34557:20;34580:43;34617:5;34580:32;34591:20;;34580:6;:10;;:32;;;;:::i;:43::-;34557:66:::0;-1:-1:-1;34698:18:0::1;34719:39;34557:66:::0;34719:21:::1;:6:::0;34730:9;34719:10:::1;:21::i;:::-;:25:::0;::::1;:39::i;:::-;34698:60;;34816:12;34804:9;34791:10;:22;:37;34781:6;:47;34773:93;;;;-1:-1:-1::0;;;34773:93:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34883:48;34899:6;28899:42;34921:9;34883:15;:48::i;:::-;34970:3;::::0;34946:42:::1;::::0;34962:6;;-1:-1:-1;;;;;34970:3:0::1;34975:12:::0;34946:15:::1;:42::i;:::-;35003:46;35019:6;35027:9;35038:10;35003:15;:46::i;34180:881::-;34037:1031:::0;;;;;;;:::o;7991:192::-;8077:7;8113:12;8105:6;;;;8097:29;;;;-1:-1:-1;;;8097:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;8149:5:0;;;7991:192::o;7088:181::-;7146:7;7178:5;;;7202:6;;;;7194:46;;;;;-1:-1:-1;;;7194:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;25340:378;-1:-1:-1;;;;;25424:21:0;;25416:65;;;;;-1:-1:-1;;;25416:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25494:49;25523:1;25527:7;25536:6;25494:20;:49::i;:::-;25571:12;;:24;;25588:6;25571:16;:24::i;:::-;25556:12;:39;-1:-1:-1;;;;;25627:18:0;;;;;;:9;:18;;;;;;:30;;25650:6;25627:22;:30::i;:::-;-1:-1:-1;;;;;25606:18:0;;;;;;:9;:18;;;;;;;;:51;;;;25673:37;;;;;;;25606:18;;;;25673:37;;;;;;;;;;25340:378;;:::o;39695:947::-;39801:6;-1:-1:-1;;;;;39791:16:0;:6;-1:-1:-1;;;;;39791:16:0;;;:30;;;;;39820:1;39811:6;:10;39791:30;39787:848;;;-1:-1:-1;;;;;39842:20:0;;;39838:385;;-1:-1:-1;;;;;39950:22:0;;39931:16;39950:22;;;:14;:22;;;;;;;;;40011:13;:60;;40070:1;40011:60;;;-1:-1:-1;;;;;40027:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;40047:13:0;;40027:34;;;;;;;;40059:1;40027:40;;40011:60;39991:80;-1:-1:-1;40090:17:0;40110:21;39991:80;40124:6;40110:13;:21::i;:::-;40090:41;;40150:57;40167:6;40175:9;40186;40197;40150:16;:57::i;:::-;39838:385;;;;-1:-1:-1;;;;;40243:20:0;;;40239:385;;-1:-1:-1;;;;;40351:22:0;;40332:16;40351:22;;;:14;:22;;;;;;;;;40412:13;:60;;40471:1;40412:60;;;-1:-1:-1;;;;;40428:19:0;;;;;;:11;:19;;;;;;;;:34;-1:-1:-1;;40448:13:0;;40428:34;;;;;;;;40460:1;40428:40;;40412:60;40392:80;-1:-1:-1;40491:17:0;40511:21;40392:80;40525:6;40511:13;:21::i;:::-;40491:41;;40551:57;40568:6;40576:9;40587;40598;40551:16;:57::i;40239:385::-;39695:947;;;:::o;39248:439::-;-1:-1:-1;;;;;39365:21:0;;;39339:23;39365:21;;;:10;:21;;;;;;;;;;39424:20;39376:9;39424;:20::i;:::-;-1:-1:-1;;;;;39501:21:0;;;;;;;:10;:21;;;;;;:33;;-1:-1:-1;;;;;;39501:33:0;;;;;;;;;;39552:54;;39397:47;;-1:-1:-1;39501:33:0;39552:54;;;;;;39501:21;39552:54;39619:60;39634:15;39651:9;39662:16;39619:14;:60::i;:::-;39248:439;;;;:::o;8442:471::-;8500:7;8745:6;8741:47;;-1:-1:-1;8775:1:0;8768:8;;8741:47;8812:5;;;8816:1;8812;:5;:1;8836:5;;;;;:10;8828:56;;;;-1:-1:-1;;;8828:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9389:132;9447:7;9474:39;9478:1;9481;9474:39;;;;;;;;;;;;;;;;;:3;:39::i;41532:153::-;41642:9;41532:153;:::o;24520:539::-;-1:-1:-1;;;;;24626:20:0;;24618:70;;;;-1:-1:-1;;;24618:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24707:23:0;;24699:71;;;;-1:-1:-1;;;24699:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24783:47;24804:6;24812:9;24823:6;24783:20;:47::i;:::-;24863:71;24885:6;24863:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24863:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;24843:17:0;;;;;;;:9;:17;;;;;;:91;;;;24968:20;;;;;;;:32;;24993:6;24968:24;:32::i;:::-;-1:-1:-1;;;;;24945:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;25016:35;;;;;;;24945:20;;25016:35;;;;;;;;;;;;;24520:539;;;:::o;7552:136::-;7610:7;7637:43;7641:1;7644;7637:43;;;;;;;;;;;;;;;;;:3;:43::i;40650:705::-;40829:18;40850:77;40857:12;40850:77;;;;;;;;;;;;;;;;;:6;:77::i;:::-;40829:98;;40959:1;40944:12;:16;;;:85;;;;-1:-1:-1;;;;;;40964:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;40987:16:0;;40964:40;;;;;;;;;:50;:65;;;:50;;:65;40944:85;40940:339;;;-1:-1:-1;;;;;41046:22:0;;;;;;:11;:22;;;;;;;;:40;-1:-1:-1;;41069:16:0;;41046:40;;;;;;;;41084:1;41046:46;:57;;;40940:339;;;41175:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;41136:22:0;;-1:-1:-1;41136:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;-1:-1:-1;;41136:72:0;;;;;;;;;;;;;41223:25;;;:14;:25;;;;;;:44;;41251:16;;;41223:44;;;;;;;;;;40940:339;41296:51;;;;;;;;;;;;;;-1:-1:-1;;;;;41296:51:0;;;;;;;;;;;40650:705;;;;;:::o;10017:278::-;10103:7;10138:12;10131:5;10123:28;;;;-1:-1:-1;;;10123:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10162:9;10178:1;10174;:5;;;;;;;10017:278;-1:-1:-1;;;;;10017:278:0:o;41363:161::-;41438:6;41476:12;41469:5;41465:9;;41457:32;;;;-1:-1:-1;;;41457:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41514:1:0;;41363:161;-1:-1:-1;;41363:161:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;:::o
Swarm Source
ipfs://263b5d3e3792e7a2da3ba9006379cfb33faea6825bfa0c3dff34271c2d845b46
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.