Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Contract Name:
XVMChef
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2022-06-05 */ // File: xvmc-contracts/libs/masterchefLibs.sol pragma solidity 0.6.12; pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } pragma solidity >=0.6.0 <0.8.0; /** * @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) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // 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"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { 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 <0.8.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; } } /** * @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); //mint, burn and burnFrom for ERC20 function mint(address to, uint256 amount) external; function burn(uint256 amount) external; //transfer ownership of token(to potentially new masterchef if need be) function transferOwnership(address newOwner) external; /** * @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); } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } /** * @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. */ abstract 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 () public { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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; } } // OpenZeppelin Contracts v4.4.0 (security/ReentrancyGuard.sol) /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor () public { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: xvmc-contracts/masterchef.sol pragma solidity 0.6.12; contract XVMChef is Ownable, ReentrancyGuard { using SafeMath for uint256; using SafeERC20 for IERC20; // Info of each user. struct UserInfo { uint256 amount; // How many LP tokens the user has provided. uint256 rewardDebt; // Reward debt. See explanation below. // // We do some fancy math here. Basically, any point in time, the amount of EGGs // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accXvmcPerShare) - user.rewardDebt // // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: // 1. The pool's `accXvmcPerShare` (and `lastRewardBlock`) gets updated. // 2. User receives the pending reward sent to his/her address. // 3. User's `amount` gets updated. // 4. User's `rewardDebt` gets updated. } // Info of each pool. struct PoolInfo { IERC20 lpToken; // Address of LP token contract. uint256 allocPoint; // How many allocation points assigned to this pool. EGGs to distribute per block. uint256 lastRewardBlock; // Last block number that EGGs distribution occurs. uint256 accXvmcPerShare; // Accumulated EGGs per share, times 1e12. See below. uint16 depositFeeBP; // Deposit fee in basis points } // The XVMC TOKEN! IERC20 public xvmc; // Old XVMC token IERC20 public oldToken = IERC20(0x6d0c966c8A09e354Df9C48b446A474CE3343D912); // Dev address. address public devaddr; //portion of inflation goes to the decentralized governance contract uint256 public governorFee = 618; //6.18% // XVMC tokens created per block. uint256 public XVMCPerBlock; // Deposit Fee address address public feeAddress; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping (uint256 => mapping (address => UserInfo)) public userInfo; mapping(IERC20 => bool) public poolExistence; // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The block number when EGG mining starts. uint256 public startBlock; event Deposit(address indexed user, uint256 indexed pid, uint256 amount); event Withdraw(address indexed user, uint256 indexed pid, uint256 amount); event EmergencyWithdraw(address indexed user, uint256 indexed pid, uint256 amount); event UpdateEmissions(address indexed user, uint256 newEmissions); constructor( IERC20 _XVMC, address _devaddr, address _feeAddress, uint256 _XVMCPerBlock, uint256 _startBlock ) public { xvmc = _XVMC; devaddr = _devaddr; feeAddress = _feeAddress; XVMCPerBlock = _XVMCPerBlock; startBlock = _startBlock; } function poolLength() external view returns (uint256) { return poolInfo.length; } // Add a new lp to the pool. Can only be called by the owner. function add(uint256 _allocPoint, IERC20 _lpToken, uint16 _depositFeeBP, bool _withUpdate) public onlyOwner { require(_depositFeeBP <= 10000, "add: invalid deposit fee basis points"); //prevents adding a contract that is not a token/LPtoken(incompatitible) require(_lpToken.balanceOf(address(this)) >= 0, "incompatitible token contract"); //prevents same LP token from being added twice require(!poolExistence[_lpToken], "LP pool already exists"); if (_withUpdate) { massUpdatePools(); } uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint.add(_allocPoint); poolExistence[_lpToken] = true; poolInfo.push(PoolInfo({ lpToken: _lpToken, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accXvmcPerShare: 0, depositFeeBP: _depositFeeBP })); } // Update the given pool's EGG allocation point and deposit fee. Can only be called by the owner. function set(uint256 _pid, uint256 _allocPoint, uint16 _depositFeeBP, bool _withUpdate) public onlyOwner { require(_depositFeeBP <= 10000, "set: invalid deposit fee basis points"); if (_withUpdate) { massUpdatePools(); } totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint); poolInfo[_pid].allocPoint = _allocPoint; poolInfo[_pid].depositFeeBP = _depositFeeBP; } // View function to see pending EGGs on frontend. function pendingEgg(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accXvmcPerShare = pool.accXvmcPerShare; uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 multiplier = (block.number).sub(pool.lastRewardBlock); uint256 xvmcReward = multiplier.mul(XVMCPerBlock).mul(pool.allocPoint).div(totalAllocPoint); accXvmcPerShare = accXvmcPerShare.add(xvmcReward.mul(1e12).div(lpSupply)); } return user.amount.mul(accXvmcPerShare).div(1e12).sub(user.rewardDebt); } // Update reward variables for all pools. Be careful of gas spending! function massUpdatePools() public { uint256 length = poolInfo.length; for (uint256 pid = 0; pid < length; ++pid) { updatePool(pid); } } // Update reward variables of the given pool to be up-to-date. function updatePool(uint256 _pid) public { PoolInfo storage pool = poolInfo[_pid]; if (block.number <= pool.lastRewardBlock) { return; } uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (lpSupply == 0 || pool.allocPoint == 0) { pool.lastRewardBlock = block.number; return; } uint256 multiplier = (block.number).sub(pool.lastRewardBlock); uint256 xvmcReward = multiplier.mul(XVMCPerBlock).mul(pool.allocPoint).div(totalAllocPoint); xvmc.mint(devaddr, xvmcReward.mul(governorFee).div(10000)); xvmc.mint(address(this), xvmcReward); pool.accXvmcPerShare = pool.accXvmcPerShare.add(xvmcReward.mul(1e12).div(lpSupply)); pool.lastRewardBlock = block.number; } // Deposit LP tokens to MasterChef for EGG allocation. function deposit(uint256 _pid, uint256 _amount) public nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; updatePool(_pid); if (user.amount > 0) { uint256 pending = user.amount.mul(pool.accXvmcPerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { safeEggTransfer(msg.sender, pending); } } if(_amount > 0) { pool.lpToken.safeTransferFrom(address(msg.sender), address(this), _amount); if(pool.depositFeeBP > 0){ uint256 depositFee = _amount.mul(pool.depositFeeBP).div(10000); pool.lpToken.safeTransfer(feeAddress, depositFee); user.amount = user.amount.add(_amount).sub(depositFee); }else{ user.amount = user.amount.add(_amount); } } user.rewardDebt = user.amount.mul(pool.accXvmcPerShare).div(1e12); emit Deposit(msg.sender, _pid, _amount); } // Withdraw LP tokens from MasterChef. function withdraw(uint256 _pid, uint256 _amount) public nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; require(user.amount >= _amount, "withdraw: not good"); updatePool(_pid); uint256 pending = user.amount.mul(pool.accXvmcPerShare).div(1e12).sub(user.rewardDebt); if(pending > 0) { safeEggTransfer(msg.sender, pending); } if(_amount > 0) { user.amount = user.amount.sub(_amount); pool.lpToken.safeTransfer(address(msg.sender), _amount); } user.rewardDebt = user.amount.mul(pool.accXvmcPerShare).div(1e12); emit Withdraw(msg.sender, _pid, _amount); } // Withdraw without caring about rewards. EMERGENCY ONLY. function emergencyWithdraw(uint256 _pid) public nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; uint256 amount = user.amount; user.amount = 0; user.rewardDebt = 0; pool.lpToken.safeTransfer(address(msg.sender), amount); emit EmergencyWithdraw(msg.sender, _pid, amount); } // Safe xvmc transfer function, just in case if rounding error causes pool to not have enough EGGs. function safeEggTransfer(address _to, uint256 _amount) internal { uint256 xvmcBal = xvmc.balanceOf(address(this)); if (_amount > xvmcBal) { xvmc.transfer(_to, xvmcBal); } else { xvmc.transfer(_to, _amount); } } function setGovernorFee(uint256 _amount) public onlyOwner { require(_amount <= 1000 && _amount > 0); governorFee = _amount; } // Update dev address by the previous dev. function dev(address _devaddr) public onlyOwner { devaddr = _devaddr; } function setFeeAddress(address _feeAddress) public onlyOwner { feeAddress = _feeAddress; } //Pancake has to add hidden dummy pools inorder to alter the emission, here we make it simple and transparent to all. function updateEmissionRate(uint256 _xvmcPerBlock) public onlyOwner { massUpdatePools(); XVMCPerBlock = _xvmcPerBlock; emit UpdateEmissions(tx.origin, _xvmcPerBlock); } //Only update before start of farm function updateStartBlock(uint256 _startBlock) public onlyOwner { require(block.number < startBlock, "already started"); startBlock = _startBlock; } //For flexibility(can transfer to new masterchef if need be!) function tokenChangeOwnership(address _newOwner) external onlyOwner { xvmc.transferOwnership(_newOwner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_XVMC","type":"address"},{"internalType":"address","name":"_devaddr","type":"address"},{"internalType":"address","name":"_feeAddress","type":"address"},{"internalType":"uint256","name":"_XVMCPerBlock","type":"uint256"},{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"newEmissions","type":"uint256"}],"name":"UpdateEmissions","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"XVMCPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devaddr","type":"address"}],"name":"dev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devaddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"governorFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"oldToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"address","name":"_user","type":"address"}],"name":"pendingEgg","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"name":"poolExistence","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"poolInfo","outputs":[{"internalType":"contract IERC20","name":"lpToken","type":"address"},{"internalType":"uint256","name":"allocPoint","type":"uint256"},{"internalType":"uint256","name":"lastRewardBlock","type":"uint256"},{"internalType":"uint256","name":"accXvmcPerShare","type":"uint256"},{"internalType":"uint16","name":"depositFeeBP","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"},{"internalType":"bool","name":"_withUpdate","type":"bool"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"name":"setFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setGovernorFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"tokenChangeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalAllocPoint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_xvmcPerBlock","type":"uint256"}],"name":"updateEmissionRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"}],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startBlock","type":"uint256"}],"name":"updateStartBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"}],"name":"userInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"xvmc","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600380546001600160a01b031916736d0c966c8a09e354df9c48b446a474ce3343d91217905561026a6005556000600b5534801561004157600080fd5b5060405161223a38038061223a833981810160405260a081101561006457600080fd5b50805160208201516040830151606084015160809094015192939192909190600061008d610127565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060018055600280546001600160a01b03199081166001600160a01b039788161790915560048054821695871695909517909455600780549094169290941691909117909155600655600c5561012b565b3390565b6121008061013a6000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806384e82a3311610104578063cbd258b5116100a2578063e2bbb15811610071578063e2bbb158146104b5578063f2fde38b146104d8578063f456426f146104fe578063fac2b9ba1461052a576101cf565b8063cbd258b514610436578063d49e77cd14610470578063d963842214610478578063dd194cad146104ad576101cf565b80638da5cb5b116100de5780638da5cb5b146103c457806393f1a40b146103cc578063a3d7a33914610411578063b31c710a1461042e576101cf565b806384e82a331461033a5780638705fcd4146103785780638d88a90e1461039e576101cf565b806348cd4cb111610171578063630b5ba11161014b578063630b5ba1146102fc578063715018a61461030457806376a9e32e1461030c57806380d6806e14610332576101cf565b806348cd4cb1146102ba57806351eb05a6146102c25780635312ea8e146102df576101cf565b80631526fe27116101ad5780631526fe271461021557806317caf6f11461026b5780634127535814610273578063441a3e7014610297576101cf565b8063081e3eda146101d45780630ba84cd2146101ee578063135d31d71461020d575b600080fd5b6101dc610547565b60408051918252519081900360200190f35b61020b6004803603602081101561020457600080fd5b503561054d565b005b6101dc6105f5565b6102326004803603602081101561022b57600080fd5b50356105fb565b604080516001600160a01b039096168652602086019490945284840192909252606084015261ffff166080830152519081900360a00190f35b6101dc610647565b61027b61064d565b604080516001600160a01b039092168252519081900360200190f35b61020b600480360360408110156102ad57600080fd5b508035906020013561065c565b6101dc61081f565b61020b600480360360208110156102d857600080fd5b5035610825565b61020b600480360360208110156102f557600080fd5b5035610a72565b61020b610b72565b61020b610b95565b61020b6004803603602081101561032257600080fd5b50356001600160a01b0316610c41565b6101dc610d0c565b61020b6004803603608081101561035057600080fd5b508035906001600160a01b036020820135169061ffff60408201351690606001351515610d12565b61020b6004803603602081101561038e57600080fd5b50356001600160a01b031661106c565b61020b600480360360208110156103b457600080fd5b50356001600160a01b03166110f0565b61027b611174565b6103f8600480360360408110156103e257600080fd5b50803590602001356001600160a01b0316611183565b6040805192835260208301919091528051918290030190f35b61020b6004803603602081101561042757600080fd5b50356111a7565b61027b611229565b61045c6004803603602081101561044c57600080fd5b50356001600160a01b0316611238565b604080519115158252519081900360200190f35b61027b61124d565b61020b6004803603608081101561048e57600080fd5b5080359060208101359061ffff6040820135169060600135151561125c565b61027b6113b6565b61020b600480360360408110156104cb57600080fd5b50803590602001356113c5565b61020b600480360360208110156104ee57600080fd5b50356001600160a01b03166115a1565b6101dc6004803603604081101561051457600080fd5b50803590602001356001600160a01b03166116a3565b61020b6004803603602081101561054057600080fd5b503561180c565b60085490565b6105556118bb565b6001600160a01b0316610566611174565b6001600160a01b0316146105af576040805162461bcd60e51b81526020600482018190526024820152600080516020612081833981519152604482015290519081900360640190fd5b6105b7610b72565b600681905560408051828152905132917fa03d71d21200bfbbb6335bb3f935b1de0d1a7244d68665ae0e6584f07754effa919081900360200190a250565b60065481565b6008818154811061060857fe5b6000918252602090912060059091020180546001820154600283015460038401546004909401546001600160a01b0390931694509092909161ffff1685565b600b5481565b6007546001600160a01b031681565b600260015414156106b4576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60026001819055506000600883815481106106cb57fe5b60009182526020808320868452600982526040808520338652909252922080546005909202909201925083111561073e576040805162461bcd60e51b81526020600482015260126024820152711dda5d1a191c985dce881b9bdd0819dbdbd960721b604482015290519081900360640190fd5b61074784610825565b6000610781826001015461077b64e8d4a51000610775876003015487600001546118bf90919063ffffffff16565b9061191f565b90611961565b905080156107935761079333826119a3565b83156107bd5781546107a59085611961565b825582546107bd906001600160a01b03163386611b31565b600383015482546107d89164e8d4a5100091610775916118bf565b6001830155604080518581529051869133917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5689181900360200190a3505060018055505050565b600c5481565b60006008828154811061083457fe5b90600052602060002090600502019050806002015443116108555750610a6f565b8054604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561089f57600080fd5b505afa1580156108b3573d6000803e3d6000fd5b505050506040513d60208110156108c957600080fd5b505190508015806108dc57506001820154155b156108ee575043600290910155610a6f565b600061090783600201544361196190919063ffffffff16565b90506000610934600b54610775866001015461092e600654876118bf90919063ffffffff16565b906118bf565b6002546004546005549293506001600160a01b03918216926340c10f19929091169061096990612710906107759087906118bf565b6040518363ffffffff1660e01b815260040180836001600160a01b0316815260200182815260200192505050600060405180830381600087803b1580156109af57600080fd5b505af11580156109c3573d6000803e3d6000fd5b5050600254604080516340c10f1960e01b81523060048201526024810186905290516001600160a01b0390921693506340c10f19925060448082019260009290919082900301818387803b158015610a1a57600080fd5b505af1158015610a2e573d6000803e3d6000fd5b50505050610a5c610a518461077564e8d4a51000856118bf90919063ffffffff16565b600386015490611b83565b6003850155505043600290920191909155505b50565b60026001541415610aca576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6002600181905550600060088281548110610ae157fe5b600091825260208083208584526009825260408085203380875293528420805485825560018201959095556005909302018054909450919291610b31916001600160a01b03919091169083611b31565b604080518281529051859133917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae05959181900360200190a35050600180555050565b60085460005b81811015610b9157610b8981610825565b600101610b78565b5050565b610b9d6118bb565b6001600160a01b0316610bae611174565b6001600160a01b031614610bf7576040805162461bcd60e51b81526020600482018190526024820152600080516020612081833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b610c496118bb565b6001600160a01b0316610c5a611174565b6001600160a01b031614610ca3576040805162461bcd60e51b81526020600482018190526024820152600080516020612081833981519152604482015290519081900360640190fd5b6002546040805163f2fde38b60e01b81526001600160a01b0384811660048301529151919092169163f2fde38b91602480830192600092919082900301818387803b158015610cf157600080fd5b505af1158015610d05573d6000803e3d6000fd5b5050505050565b60055481565b610d1a6118bb565b6001600160a01b0316610d2b611174565b6001600160a01b031614610d74576040805162461bcd60e51b81526020600482018190526024820152600080516020612081833981519152604482015290519081900360640190fd5b6127108261ffff161115610db95760405162461bcd60e51b8152600401808060200182810382526025815260200180611fca6025913960400191505060405180910390fd5b6000836001600160a01b03166370a08231306040518263ffffffff1660e01b815260040180826001600160a01b0316815260200191505060206040518083038186803b158015610e0857600080fd5b505afa158015610e1c573d6000803e3d6000fd5b505050506040513d6020811015610e3257600080fd5b50511015610e87576040805162461bcd60e51b815260206004820152601d60248201527f696e636f6d706174697469626c6520746f6b656e20636f6e7472616374000000604482015290519081900360640190fd5b6001600160a01b0383166000908152600a602052604090205460ff1615610eee576040805162461bcd60e51b81526020600482015260166024820152754c5020706f6f6c20616c72656164792065786973747360501b604482015290519081900360640190fd5b8015610efc57610efc610b72565b6000600c544311610f0f57600c54610f11565b435b600b54909150610f219086611b83565b600b556001600160a01b039384166000818152600a602090815260408083208054600160ff199091168117909155815160a08101835294855291840198895283019384526060830182815261ffff9687166080850190815260088054938401815590935292517ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee3600590920291820180546001600160a01b031916919098161790965595517ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee486015590517ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee5850155517ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee68401555091517ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee7909101805461ffff191691909216179055565b6110746118bb565b6001600160a01b0316611085611174565b6001600160a01b0316146110ce576040805162461bcd60e51b81526020600482018190526024820152600080516020612081833981519152604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b6110f86118bb565b6001600160a01b0316611109611174565b6001600160a01b031614611152576040805162461bcd60e51b81526020600482018190526024820152600080516020612081833981519152604482015290519081900360640190fd5b600480546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031690565b60096020908152600092835260408084209091529082529020805460019091015482565b6111af6118bb565b6001600160a01b03166111c0611174565b6001600160a01b031614611209576040805162461bcd60e51b81526020600482018190526024820152600080516020612081833981519152604482015290519081900360640190fd5b6103e8811115801561121b5750600081115b61122457600080fd5b600555565b6003546001600160a01b031681565b600a6020526000908152604090205460ff1681565b6004546001600160a01b031681565b6112646118bb565b6001600160a01b0316611275611174565b6001600160a01b0316146112be576040805162461bcd60e51b81526020600482018190526024820152600080516020612081833981519152604482015290519081900360640190fd5b6127108261ffff1611156113035760405162461bcd60e51b815260040180806020018281038252602581526020018061205c6025913960400191505060405180910390fd5b801561131157611311610b72565b61134e836113486008878154811061132557fe5b906000526020600020906005020160010154600b5461196190919063ffffffff16565b90611b83565b600b81905550826008858154811061136257fe5b906000526020600020906005020160010181905550816008858154811061138557fe5b906000526020600020906005020160040160006101000a81548161ffff021916908361ffff16021790555050505050565b6002546001600160a01b031681565b6002600154141561141d576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b600260018190555060006008838154811061143457fe5b6000918252602080832086845260098252604080852033865290925292206005909102909101915061146584610825565b8054156114ae57600061149a826001015461077b64e8d4a51000610775876003015487600001546118bf90919063ffffffff16565b905080156114ac576114ac33826119a3565b505b82156115405781546114cb906001600160a01b0316333086611bdd565b600482015461ffff16156115315760048201546000906114f8906127109061077590879061ffff166118bf565b6007548454919250611517916001600160a01b03908116911683611b31565b815461152990829061077b9087611b83565b825550611540565b805461153d9084611b83565b81555b6003820154815461155b9164e8d4a5100091610775916118bf565b6001820155604080518481529051859133917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a159181900360200190a35050600180555050565b6115a96118bb565b6001600160a01b03166115ba611174565b6001600160a01b031614611603576040805162461bcd60e51b81526020600482018190526024820152600080516020612081833981519152604482015290519081900360640190fd5b6001600160a01b0381166116485760405162461bcd60e51b8152600401808060200182810382526026815260200180611fef6026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b600080600884815481106116b357fe5b600091825260208083208784526009825260408085206001600160a01b0389811687529084528186206005959095029092016003810154815483516370a0823160e01b815230600482015293519298509596909590949316926370a082319260248082019391829003018186803b15801561172d57600080fd5b505afa158015611741573d6000803e3d6000fd5b505050506040513d602081101561175757600080fd5b505160028501549091504311801561176e57508015155b156117d757600061178c85600201544361196190919063ffffffff16565b905060006117b3600b54610775886001015461092e600654876118bf90919063ffffffff16565b90506117d26117cb846107758464e8d4a510006118bf565b8590611b83565b935050505b6117ff836001015461077b64e8d4a510006107758688600001546118bf90919063ffffffff16565b9450505050505b92915050565b6118146118bb565b6001600160a01b0316611825611174565b6001600160a01b03161461186e576040805162461bcd60e51b81526020600482018190526024820152600080516020612081833981519152604482015290519081900360640190fd5b600c5443106118b6576040805162461bcd60e51b815260206004820152600f60248201526e185b1c9958591e481cdd185c9d1959608a1b604482015290519081900360640190fd5b600c55565b3390565b6000826118ce57506000611806565b828202828482816118db57fe5b04146119185760405162461bcd60e51b815260040180806020018281038252602181526020018061203b6021913960400191505060405180910390fd5b9392505050565b600061191883836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611c3d565b600061191883836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250611cdf565b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b1580156119ee57600080fd5b505afa158015611a02573d6000803e3d6000fd5b505050506040513d6020811015611a1857600080fd5b5051905080821115611aac576002546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018590529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015611a7a57600080fd5b505af1158015611a8e573d6000803e3d6000fd5b505050506040513d6020811015611aa457600080fd5b50611b2c9050565b6002546040805163a9059cbb60e01b81526001600160a01b038681166004830152602482018690529151919092169163a9059cbb9160448083019260209291908290030181600087803b158015611b0257600080fd5b505af1158015611b16573d6000803e3d6000fd5b505050506040513d6020811015610d0557600080fd5b505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611b2c908490611d39565b600082820183811015611918576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611c37908590611d39565b50505050565b60008183611cc95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015611c8e578181015183820152602001611c76565b50505050905090810190601f168015611cbb5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581611cd557fe5b0495945050505050565b60008184841115611d315760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315611c8e578181015183820152602001611c76565b505050900390565b6060611d8e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611dea9092919063ffffffff16565b805190915015611b2c57808060200190516020811015611dad57600080fd5b5051611b2c5760405162461bcd60e51b815260040180806020018281038252602a8152602001806120a1602a913960400191505060405180910390fd5b6060611df98484600085611e01565b949350505050565b606082471015611e425760405162461bcd60e51b81526004018080602001828103825260268152602001806120156026913960400191505060405180910390fd5b611e4b85611f5d565b611e9c576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310611edb5780518252601f199092019160209182019101611ebc565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114611f3d576040519150601f19603f3d011682016040523d82523d6000602084013e611f42565b606091505b5091509150611f52828286611f63565b979650505050505050565b3b151590565b60608315611f72575081611918565b825115611f825782518084602001fd5b60405162461bcd60e51b8152602060048201818152845160248401528451859391928392604401919085019080838360008315611c8e578181015183820152602001611c7656fe6164643a20696e76616c6964206465706f7369742066656520626173697320706f696e74734f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573733a20696e73756666696369656e742062616c616e636520666f722063616c6c536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777365743a20696e76616c6964206465706f7369742066656520626173697320706f696e74734f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a26469706673582212204cfbddeb8a5b5164c91209c6e233dddc26c6bdff655e9f3f6b9d856e649797b964736f6c634300060c0033000000000000000000000000970ccee657dd831e9c37511aa3eb5302c1eb5eee000000000000000000000000d5b7b040859e87bfbb7807599698786fc2367e2d000000000000000000000000d5b7b040859e87bfbb7807599698786fc2367e2d00000000000000000000000000000000000000000000070efc4d0e326fb400000000000000000000000000000000000000000000000000000000000001be2e3a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000970ccee657dd831e9c37511aa3eb5302c1eb5eee000000000000000000000000d5b7b040859e87bfbb7807599698786fc2367e2d000000000000000000000000d5b7b040859e87bfbb7807599698786fc2367e2d00000000000000000000000000000000000000000000070efc4d0e326fb400000000000000000000000000000000000000000000000000000000000001be2e3a
-----Decoded View---------------
Arg [0] : _XVMC (address): 0x970ccee657dd831e9c37511aa3eb5302c1eb5eee
Arg [1] : _devaddr (address): 0xd5b7b040859e87bfbb7807599698786fc2367e2d
Arg [2] : _feeAddress (address): 0xd5b7b040859e87bfbb7807599698786fc2367e2d
Arg [3] : _XVMCPerBlock (uint256): 33333000000000000000000
Arg [4] : _startBlock (uint256): 29240890
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000970ccee657dd831e9c37511aa3eb5302c1eb5eee
Arg [1] : 000000000000000000000000d5b7b040859e87bfbb7807599698786fc2367e2d
Arg [2] : 000000000000000000000000d5b7b040859e87bfbb7807599698786fc2367e2d
Arg [3] : 00000000000000000000000000000000000000000000070efc4d0e326fb40000
Arg [4] : 0000000000000000000000000000000000000000000000000000000001be2e3a
Deployed ByteCode Sourcemap
26225:10601:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29224:95;;;:::i;:::-;;;;;;;;;;;;;;;;36231:198;;;;;;;;;;;;;;;;-1:-1:-1;36231:198:0;;:::i;:::-;;28022:27;;;:::i;28145:26::-;;;;;;;;;;;;;;;;-1:-1:-1;28145:26:0;;:::i;:::-;;;;-1:-1:-1;;;;;28145:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28436:34;;;:::i;28084:25::-;;;:::i;:::-;;;;-1:-1:-1;;;;;28084:25:0;;;;;;;;;;;;;;34097:752;;;;;;;;;;;;;;;;-1:-1:-1;34097:752:0;;;;;;;:::i;28526:25::-;;;:::i;32096:816::-;;;;;;;;;;;;;;;;-1:-1:-1;32096:816:0;;:::i;34920:398::-;;;;;;;;;;;;;;;;-1:-1:-1;34920:398:0;;:::i;31840:180::-;;;:::i;22923:148::-;;;:::i;36712:111::-;;;;;;;;;;;;;;;;-1:-1:-1;36712:111:0;-1:-1:-1;;;;;36712:111:0;;:::i;27936:32::-;;;:::i;29394:975::-;;;;;;;;;;;;;;;;-1:-1:-1;29394:975:0;;;-1:-1:-1;;;;;29394:975:0;;;;;;;;;;;;;;;;;;;:::i;35996:104::-;;;;;;;;;;;;;;;;-1:-1:-1;35996:104:0;-1:-1:-1;;;;;35996:104:0;;:::i;35903:85::-;;;;;;;;;;;;;;;;-1:-1:-1;35903:85:0;-1:-1:-1;;;;;35903:85:0;;:::i;22272:87::-;;;:::i;28227:66::-;;;;;;;;;;;;;;;;-1:-1:-1;28227:66:0;;;;;;-1:-1:-1;;;;;28227:66:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35714:133;;;;;;;;;;;;;;;;-1:-1:-1;35714:133:0;;:::i;27736:75::-;;;:::i;28297:44::-;;;;;;;;;;;;;;;;-1:-1:-1;28297:44:0;-1:-1:-1;;;;;28297:44:0;;:::i;:::-;;;;;;;;;;;;;;;;;;27839:22;;;:::i;30480:463::-;;;;;;;;;;;;;;;;-1:-1:-1;30480:463:0;;;;;;;;;;;;;;;;;;;;;:::i;27694:18::-;;;:::i;32980:1065::-;;;;;;;;;;;;;;;;-1:-1:-1;32980:1065:0;;;;;;;:::i;23226:244::-;;;;;;;;;;;;;;;;-1:-1:-1;23226:244:0;-1:-1:-1;;;;;23226:244:0;;:::i;31008:749::-;;;;;;;;;;;;;;;;-1:-1:-1;31008:749:0;;;;;;-1:-1:-1;;;;;31008:749:0;;:::i;36477:165::-;;;;;;;;;;;;;;;;-1:-1:-1;36477:165:0;;:::i;29224:95::-;29296:8;:15;29224:95;:::o;36231:198::-;22503:12;:10;:12::i;:::-;-1:-1:-1;;;;;22492:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;22492:23:0;;22484:68;;;;;-1:-1:-1;;;22484:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22484:68:0;;;;;;;;;;;;;;;36310:17:::1;:15;:17::i;:::-;36338:12;:28:::0;;;36380:41:::1;::::0;;;;;;;36396:9:::1;::::0;36380:41:::1;::::0;;;;;::::1;::::0;;::::1;36231:198:::0;:::o;28022:27::-;;;;:::o;28145:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28145:26:0;;;;-1:-1:-1;28145:26:0;;;;;;;:::o;28436:34::-;;;;:::o;28084:25::-;;;-1:-1:-1;;;;;28084:25:0;;:::o;34097:752::-;25195:1;25801:7;;:19;;25793:63;;;;;-1:-1:-1;;;25793:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25195:1;25934:7;:18;;;;34177:21:::1;34201:8;34210:4;34201:14;;;;;;;;;::::0;;;::::1;::::0;;;34250;;;:8:::1;:14:::0;;;;;;34265:10:::1;34250:26:::0;;;;;;;34295:11;;34201:14:::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;34295:22:0;-1:-1:-1;34295:22:0::1;34287:53;;;::::0;;-1:-1:-1;;;34287:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;34287:53:0;;;;;;;;;;;;;::::1;;34351:16;34362:4;34351:10;:16::i;:::-;34378:15;34396:68;34448:4;:15;;;34396:47;34438:4;34396:37;34412:4;:20;;;34396:4;:11;;;:15;;:37;;;;:::i;:::-;:41:::0;::::1;:47::i;:::-;:51:::0;::::1;:68::i;:::-;34378:86:::0;-1:-1:-1;34478:11:0;;34475:79:::1;;34506:36;34522:10;34534:7;34506:15;:36::i;:::-;34567:11:::0;;34564:151:::1;;34609:11:::0;;:24:::1;::::0;34625:7;34609:15:::1;:24::i;:::-;34595:38:::0;;34648:12;;:55:::1;::::0;-1:-1:-1;;;;;34648:12:0::1;34682:10;34695:7:::0;34648:25:::1;:55::i;:::-;34759:20;::::0;::::1;::::0;34743:11;;:47:::1;::::0;34785:4:::1;::::0;34743:37:::1;::::0;:15:::1;:37::i;:47::-;34725:15;::::0;::::1;:65:::0;34806:35:::1;::::0;;;;;;;34827:4;;34815:10:::1;::::0;34806:35:::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;;25151:1:0;26113:22;;-1:-1:-1;;;34097:752:0:o;28526:25::-;;;;:::o;32096:816::-;32148:21;32172:8;32181:4;32172:14;;;;;;;;;;;;;;;;;;32148:38;;32217:4;:20;;;32201:12;:36;32197:75;;32254:7;;;32197:75;32301:12;;:37;;;-1:-1:-1;;;32301:37:0;;32332:4;32301:37;;;;;;32282:16;;-1:-1:-1;;;;;32301:12:0;;:22;;:37;;;;;;;;;;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32301:37:0;;-1:-1:-1;32353:13:0;;;:37;;-1:-1:-1;32370:15:0;;;;:20;32353:37;32349:126;;;-1:-1:-1;32430:12:0;32407:20;;;;:35;32457:7;;32349:126;32485:18;32506:40;32525:4;:20;;;32507:12;32506:18;;:40;;;;:::i;:::-;32485:61;;32557:18;32578:70;32632:15;;32578:49;32611:4;:15;;;32578:28;32593:12;;32578:10;:14;;:28;;;;:::i;:::-;:32;;:49::i;:70::-;32659:4;;32669:7;;32693:11;;32557:91;;-1:-1:-1;;;;;;32659:4:0;;;;:9;;32669:7;;;;32678:38;;32710:5;;32678:27;;32557:91;;32678:14;:27::i;:38::-;32659:58;;;;;;;;;;;;;-1:-1:-1;;;;;32659:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32728:4:0;;:36;;;-1:-1:-1;;;32728:36:0;;32746:4;32728:36;;;;;;;;;;;;-1:-1:-1;;;;;32728:4:0;;;;-1:-1:-1;32728:9:0;;-1:-1:-1;32728:36:0;;;;;:4;;:36;;;;;;;;:4;;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32798:60;32823:34;32848:8;32823:20;32838:4;32823:10;:14;;:20;;;;:::i;:34::-;32798:20;;;;;:24;:60::i;:::-;32775:20;;;:83;-1:-1:-1;;32892:12:0;32869:20;;;;:35;;;;-1:-1:-1;32096:816:0;;:::o;34920:398::-;25195:1;25801:7;;:19;;25793:63;;;;;-1:-1:-1;;;25793:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25195:1;25934:7;:18;;;;34992:21:::1;35016:8;35025:4;35016:14;;;;;;;;;::::0;;;::::1;::::0;;;35065;;;:8:::1;:14:::0;;;;;;35080:10:::1;35065:26:::0;;;;;;;35119:11;;35141:15;;;-1:-1:-1;35167:15:0;::::1;:19:::0;;;;35016:14:::1;::::0;;::::1;;35197:12:::0;;35016:14;;-1:-1:-1;35065:26:0;;35119:11;35197:54:::1;::::0;-1:-1:-1;;;;;35197:12:0;;;::::1;::::0;35119:11;35197:25:::1;:54::i;:::-;35267:43;::::0;;;;;;;35297:4;;35285:10:::1;::::0;35267:43:::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;;25151:1:0;26113:22;;-1:-1:-1;;34920:398:0:o;31840:180::-;31902:8;:15;31885:14;31928:85;31956:6;31950:3;:12;31928:85;;;31986:15;31997:3;31986:10;:15::i;:::-;31964:5;;31928:85;;;;31840:180;:::o;22923:148::-;22503:12;:10;:12::i;:::-;-1:-1:-1;;;;;22492:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;22492:23:0;;22484:68;;;;;-1:-1:-1;;;22484:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22484:68:0;;;;;;;;;;;;;;;23030:1:::1;23014:6:::0;;22993:40:::1;::::0;-1:-1:-1;;;;;23014:6:0;;::::1;::::0;22993:40:::1;::::0;23030:1;;22993:40:::1;23061:1;23044:19:::0;;-1:-1:-1;;;;;;23044:19:0::1;::::0;;22923:148::o;36712:111::-;22503:12;:10;:12::i;:::-;-1:-1:-1;;;;;22492:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;22492:23:0;;22484:68;;;;;-1:-1:-1;;;22484:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22484:68:0;;;;;;;;;;;;;;;36785:4:::1;::::0;:33:::1;::::0;;-1:-1:-1;;;36785:33:0;;-1:-1:-1;;;;;36785:33:0;;::::1;;::::0;::::1;::::0;;;:4;;;::::1;::::0;:22:::1;::::0;:33;;;;;:4:::1;::::0;:33;;;;;;;:4;;:33;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;36712:111:::0;:::o;27936:32::-;;;;:::o;29394:975::-;22503:12;:10;:12::i;:::-;-1:-1:-1;;;;;22492:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;22492:23:0;;22484:68;;;;;-1:-1:-1;;;22484:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22484:68:0;;;;;;;;;;;;;;;29538:5:::1;29521:13;:22;;;;29513:72;;;;-1:-1:-1::0;;;29513:72:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29711:1;29674:8;-1:-1:-1::0;;;;;29674:18:0::1;;29701:4;29674:33;;;;;;;;;;;;;-1:-1:-1::0;;;;;29674:33:0::1;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;29674:33:0;:38:::1;;29666:80;;;::::0;;-1:-1:-1;;;29666:80:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;29811:23:0;::::1;;::::0;;;:13:::1;:23;::::0;;;;;::::1;;29810:24;29802:59;;;::::0;;-1:-1:-1;;;29802:59:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;29802:59:0;;;;;;;;;;;;;::::1;;29880:11;29876:61;;;29908:17;:15;:17::i;:::-;29947:23;29988:10;;29973:12;:25;:53;;30016:10;;29973:53;;;30001:12;29973:53;30055:15;::::0;29947:79;;-1:-1:-1;30055:32:0::1;::::0;30075:11;30055:19:::1;:32::i;:::-;30037:15;:50:::0;-1:-1:-1;;;;;30092:23:0;;::::1;;::::0;;;:13:::1;:23;::::0;;;;;;;:30;;30118:4:::1;-1:-1:-1::0;;30092:30:0;;::::1;::::0;::::1;::::0;;;30147:213;;::::1;::::0;::::1;::::0;;;;;;;::::1;::::0;;;;;;;;;;;;;;::::1;::::0;;::::1;::::0;;;;;;30133:8:::1;:228:::0;;;;::::1;::::0;;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;30133:228:0::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30133:228:0;;;;;;;;-1:-1:-1;;30133:228:0::1;::::0;;;::::1;;::::0;;29394:975::o;35996:104::-;22503:12;:10;:12::i;:::-;-1:-1:-1;;;;;22492:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;22492:23:0;;22484:68;;;;;-1:-1:-1;;;22484:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22484:68:0;;;;;;;;;;;;;;;36068:10:::1;:24:::0;;-1:-1:-1;;;;;;36068:24:0::1;-1:-1:-1::0;;;;;36068:24:0;;;::::1;::::0;;;::::1;::::0;;35996:104::o;35903:85::-;22503:12;:10;:12::i;:::-;-1:-1:-1;;;;;22492:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;22492:23:0;;22484:68;;;;;-1:-1:-1;;;22484:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22484:68:0;;;;;;;;;;;;;;;35962:7:::1;:18:::0;;-1:-1:-1;;;;;;35962:18:0::1;-1:-1:-1::0;;;;;35962:18:0;;;::::1;::::0;;;::::1;::::0;;35903:85::o;22272:87::-;22318:7;22345:6;-1:-1:-1;;;;;22345:6:0;22272:87;:::o;28227:66::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;35714:133::-;22503:12;:10;:12::i;:::-;-1:-1:-1;;;;;22492:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;22492:23:0;;22484:68;;;;;-1:-1:-1;;;22484:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22484:68:0;;;;;;;;;;;;;;;35796:4:::1;35785:7;:15;;:30;;;;;35814:1;35804:7;:11;35785:30;35777:39;;;::::0;::::1;;35821:11;:21:::0;35714:133::o;27736:75::-;;;-1:-1:-1;;;;;27736:75:0;;:::o;28297:44::-;;;;;;;;;;;;;;;:::o;27839:22::-;;;-1:-1:-1;;;;;27839:22:0;;:::o;30480:463::-;22503:12;:10;:12::i;:::-;-1:-1:-1;;;;;22492:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;22492:23:0;;22484:68;;;;;-1:-1:-1;;;22484:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22484:68:0;;;;;;;;;;;;;;;30621:5:::1;30604:13;:22;;;;30596:72;;;;-1:-1:-1::0;;;30596:72:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30683:11;30679:61;;;30711:17;:15;:17::i;:::-;30768:63;30819:11;30768:46;30788:8;30797:4;30788:14;;;;;;;;;;;;;;;;;;:25;;;30768:15;;:19;;:46;;;;:::i;:::-;:50:::0;::::1;:63::i;:::-;30750:15;:81;;;;30870:11;30842:8;30851:4;30842:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;30922:13;30892:8;30901:4;30892:14;;;;;;;;;;;;;;;;;;:27;;;:43;;;;;;;;;;;;;;;;;;30480:463:::0;;;;:::o;27694:18::-;;;-1:-1:-1;;;;;27694:18:0;;:::o;32980:1065::-;25195:1;25801:7;;:19;;25793:63;;;;;-1:-1:-1;;;25793:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;25195:1;25934:7;:18;;;;33059:21:::1;33083:8;33092:4;33083:14;;;;;;;;;::::0;;;::::1;::::0;;;33132;;;:8:::1;:14:::0;;;;;;33147:10:::1;33132:26:::0;;;;;;;33083:14:::1;::::0;;::::1;::::0;;::::1;::::0;-1:-1:-1;33169:16:0::1;33141:4:::0;33169:10:::1;:16::i;:::-;33200:11:::0;;:15;33196:235:::1;;33232:15;33250:68;33302:4;:15;;;33250:47;33292:4;33250:37;33266:4;:20;;;33250:4;:11;;;:15;;:37;;;;:::i;:68::-;33232:86:::0;-1:-1:-1;33336:11:0;;33333:87:::1;;33368:36;33384:10;33396:7;33368:15;:36::i;:::-;33196:235;;33444:11:::0;;33441:471:::1;;33472:12:::0;;:74:::1;::::0;-1:-1:-1;;;;;33472:12:0::1;33510:10;33531:4;33538:7:::0;33472:29:::1;:74::i;:::-;33564:17;::::0;::::1;::::0;::::1;;:21:::0;33561:340:::1;;33638:17;::::0;::::1;::::0;33605:18:::1;::::0;33626:41:::1;::::0;33661:5:::1;::::0;33626:30:::1;::::0;:7;;33638:17:::1;;33626:11;:30::i;:41::-;33712:10;::::0;33686:12;;33605:62;;-1:-1:-1;33686:49:0::1;::::0;-1:-1:-1;;;;;33686:12:0;;::::1;::::0;33712:10:::1;33605:62:::0;33686:25:::1;:49::i;:::-;33768:11:::0;;:40:::1;::::0;33797:10;;33768:24:::1;::::0;33784:7;33768:15:::1;:24::i;:40::-;33754:54:::0;;-1:-1:-1;33561:340:0::1;;;33861:11:::0;;:24:::1;::::0;33877:7;33861:15:::1;:24::i;:::-;33847:38:::0;;33561:340:::1;33956:20;::::0;::::1;::::0;33940:11;;:47:::1;::::0;33982:4:::1;::::0;33940:37:::1;::::0;:15:::1;:37::i;:47::-;33922:15;::::0;::::1;:65:::0;34003:34:::1;::::0;;;;;;;34023:4;;34011:10:::1;::::0;34003:34:::1;::::0;;;;::::1;::::0;;::::1;-1:-1:-1::0;;25151:1:0;26113:22;;-1:-1:-1;;32980:1065:0:o;23226:244::-;22503:12;:10;:12::i;:::-;-1:-1:-1;;;;;22492:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;22492:23:0;;22484:68;;;;;-1:-1:-1;;;22484:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22484:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;23315:22:0;::::1;23307:73;;;;-1:-1:-1::0;;;23307:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23417:6;::::0;;23396:38:::1;::::0;-1:-1:-1;;;;;23396:38:0;;::::1;::::0;23417:6;::::1;::::0;23396:38:::1;::::0;::::1;23445:6;:17:::0;;-1:-1:-1;;;;;;23445:17:0::1;-1:-1:-1::0;;;;;23445:17:0;;;::::1;::::0;;;::::1;::::0;;23226:244::o;31008:749::-;31080:7;31100:21;31124:8;31133:4;31124:14;;;;;;;;;;;;;;;;31173;;;:8;:14;;;;;;-1:-1:-1;;;;;31173:21:0;;;;;;;;;;;31124:14;;;;;;;;31231:20;;;;31281:12;;:37;;-1:-1:-1;;;31281:37:0;;31312:4;31281:37;;;;;;31124:14;;-1:-1:-1;31173:21:0;;31231:20;;31124:14;;31281:12;;;:22;;:37;;;;;;;;;;;:12;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31281:37:0;31348:20;;;;31281:37;;-1:-1:-1;31333:12:0;:35;:52;;;;-1:-1:-1;31372:13:0;;;31333:52;31329:340;;;31402:18;31423:40;31442:4;:20;;;31424:12;31423:18;;:40;;;;:::i;:::-;31402:61;;31478:18;31499:70;31553:15;;31499:49;31532:4;:15;;;31499:28;31514:12;;31499:10;:14;;:28;;;;:::i;:70::-;31478:91;-1:-1:-1;31602:55:0;31622:34;31647:8;31622:20;31478:91;31637:4;31622:14;:20::i;:34::-;31602:15;;:19;:55::i;:::-;31584:73;;31329:340;;;31686:63;31733:4;:15;;;31686:42;31723:4;31686:32;31702:15;31686:4;:11;;;:15;;:32;;;;:::i;:63::-;31679:70;;;;;;31008:749;;;;;:::o;36477:165::-;22503:12;:10;:12::i;:::-;-1:-1:-1;;;;;22492:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;22492:23:0;;22484:68;;;;;-1:-1:-1;;;22484:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;22484:68:0;;;;;;;;;;;;;;;36575:10:::1;;36560:12;:25;36552:53;;;::::0;;-1:-1:-1;;;36552:53:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;-1:-1:-1;;;36552:53:0;;;;;;;;;;;;;::::1;;36610:10;:24:::0;36477:165::o;656:98::-;736:10;656:98;:::o;11208:471::-;11266:7;11511:6;11507:47;;-1:-1:-1;11541:1:0;11534:8;;11507:47;11578:5;;;11582:1;11578;:5;:1;11602:5;;;;;:10;11594:56;;;;-1:-1:-1;;;11594:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11670:1;11208:471;-1:-1:-1;;;11208:471:0:o;12155:132::-;12213:7;12240:39;12244:1;12247;12240:39;;;;;;;;;;;;;;;;;:3;:39::i;10318:136::-;10376:7;10403:43;10407:1;10410;10403:43;;;;;;;;;;;;;;;;;:3;:43::i;35431:277::-;35524:4;;:29;;;-1:-1:-1;;;35524:29:0;;35547:4;35524:29;;;;;;35506:15;;-1:-1:-1;;;;;35524:4:0;;:14;;:29;;;;;;;;;;;;;;:4;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35524:29:0;;-1:-1:-1;35568:17:0;;;35564:137;;;35602:4;;:27;;;-1:-1:-1;;;35602:27:0;;-1:-1:-1;;;;;35602:27:0;;;;;;;;;;;;;;;:4;;;;;:13;;:27;;;;;;;;;;;;;;:4;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35564:137:0;;-1:-1:-1;35564:137:0;;35662:4;;:27;;;-1:-1:-1;;;35662:27:0;;-1:-1:-1;;;;;35662:27:0;;;;;;;;;;;;;;;:4;;;;;:13;;:27;;;;;;;;;;;;;;:4;;:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35564:137;35431:277;;;:::o;17965:211::-;18109:58;;;-1:-1:-1;;;;;18109:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18109:58:0;-1:-1:-1;;;18109:58:0;;;18082:86;;18102:5;;18082:19;:86::i;9854:181::-;9912:7;9944:5;;;9968:6;;;;9960:46;;;;;-1:-1:-1;;;9960:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;18184:248;18355:68;;;-1:-1:-1;;;;;18355:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18355:68:0;-1:-1:-1;;;18355:68:0;;;18328:96;;18348:5;;18328:19;:96::i;:::-;18184:248;;;;:::o;12783:278::-;12869:7;12904:12;12897:5;12889:28;;;;-1:-1:-1;;;12889:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12928:9;12944:1;12940;:5;;;;;;;12783:278;-1:-1:-1;;;;;12783:278:0:o;10757:192::-;10843:7;10879:12;10871:6;;;;10863:29;;;;-1:-1:-1;;;10863:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;10915:5:0;;;10757:192::o;20476:774::-;20900:23;20926:69;20954:4;20926:69;;;;;;;;;;;;;;;;;20934:5;-1:-1:-1;;;;;20926:27:0;;;:69;;;;;:::i;:::-;21010:17;;20900:95;;-1:-1:-1;21010:21:0;21006:237;;21165:10;21154:30;;;;;;;;;;;;;;;-1:-1:-1;21154:30:0;21146:85;;;;-1:-1:-1;;;21146:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4638:195;4741:12;4773:52;4795:6;4803:4;4809:1;4812:12;4773:21;:52::i;:::-;4766:59;4638:195;-1:-1:-1;;;;4638:195:0:o;5690:530::-;5817:12;5875:5;5850:21;:30;;5842:81;;;;-1:-1:-1;;;5842:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5942:18;5953:6;5942:10;:18::i;:::-;5934:60;;;;;-1:-1:-1;;;5934:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;6068:12;6082:23;6109:6;-1:-1:-1;;;;;6109:11:0;6129:5;6137:4;6109:33;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6109:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6067:75;;;;6160:52;6178:7;6187:10;6199:12;6160:17;:52::i;:::-;6153:59;5690:530;-1:-1:-1;;;;;;;5690:530:0:o;1720:422::-;2087:20;2126:8;;;1720:422::o;8230:742::-;8345:12;8374:7;8370:595;;;-1:-1:-1;8405:10:0;8398:17;;8370:595;8519:17;;:21;8515:439;;8782:10;8776:17;8843:15;8830:10;8826:2;8822:19;8815:44;8730:148;8918:20;;-1:-1:-1;;;8918:20:0;;;;;;;;;;;;;;;;;8925:12;;8918:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://4cfbddeb8a5b5164c91209c6e233dddc26c6bdff655e9f3f6b9d856e649797b9
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.