Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Contract Name:
MasterChef
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at polygonscan.com on 2021-07-06 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.12; /* * @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; } } /** * @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; } } /** * @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 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); } } } } /** * @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); } /** * @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 Context, 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 { } } /** * @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 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]. */ 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 () internal { _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 make 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; } } contract GorillaToken is ERC20("PolyGorilla", "GORILLA"), Ownable { 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 /// @dev A record of each accounts delegate mapping (address => address) internal _delegates; /// @dev A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @dev A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @dev The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @dev The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @dev 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)"); /// @dev A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @dev An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @dev An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /** * @dev Delegate votes from `msg.sender` to `delegatee` * @param delegator The address to get delegatee for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @dev 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); } /** * @dev 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), "EGG::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "EGG::delegateBySig: invalid nonce"); require(now <= expiry, "EGG::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @dev 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; } /** * @dev 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, "EGG::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 EGGs (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, "EGG::_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; } } interface IReferral { /** * @dev Record referral. */ function recordReferral(address user, address referrer) external; /** * @dev Get the referrer address that referred the user. */ function getReferrer(address user) external view returns (address); } // MasterChef is the master of PolyGorilla. He can make GORILLA and he is a fair guy. // // Note that it's ownable and the owner wields tremendous power. The ownership // will be transferred to a governance smart contract once Gorilla is sufficiently // distributed and the community can show to govern itself. // // Have fun reading it. Hopefully it's bug-free. God bless. contract MasterChef 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 Gorillaes // entitled to a user but is pending to be distributed is: // // pending reward = (user.amount * pool.accGorillaPerShare) - user.rewardDebt // // Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: // 1. The pool's `accGorillaPerShare` (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. Gorillaes to distribute per block. uint256 lastRewardBlock; // Last block number that Gorillaes distribution occurs. uint256 accGorillaPerShare; // Accumulated Gorillaes per share, times 1e18. See below. uint16 depositFeeBP; // Deposit fee in basis points } // The Gorilla TOKEN! GorillaToken public Gorilla; address public devAddress; address public feeAddress; address public vaultAddress; // Gorilla tokens created per block. uint256 public GorillaPerBlock = 0.15 ether; // Info of each pool. PoolInfo[] public poolInfo; // Info of each user that stakes LP tokens. mapping(uint256 => mapping(address => UserInfo)) public userInfo; // Total allocation points. Must be the sum of all allocation points in all pools. uint256 public totalAllocPoint = 0; // The block number when Gorilla mining starts. uint256 public startBlock; // Gorilla referral contract address. IReferral public referral; // Referral commission rate in basis points. uint16 public referralCommissionRate = 200; // Max referral commission rate: 5%. uint16 public constant MAXIMUM_REFERRAL_COMMISSION_RATE = 500; 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 SetFeeAddress(address indexed user, address indexed newAddress); event SetDevAddress(address indexed user, address indexed newAddress); event SetVaultAddress(address indexed user, address indexed newAddress); event SetReferralAddress(address indexed user, IReferral indexed newAddress); event UpdateEmissionRate(address indexed user, uint256 GorillaPerBlock); event ReferralCommissionPaid(address indexed user, address indexed referrer, uint256 commissionAmount); constructor( GorillaToken _Gorilla, uint256 _startBlock, address _devAddress, address _feeAddress, address _vaultAddress ) public { Gorilla = _Gorilla; startBlock = _startBlock; devAddress = _devAddress; feeAddress = _feeAddress; vaultAddress = _vaultAddress; } function poolLength() external view returns (uint256) { return poolInfo.length; } mapping(IERC20 => bool) public poolExistence; modifier nonDuplicated(IERC20 _lpToken) { require(poolExistence[_lpToken] == false, "nonDuplicated: duplicated"); _; } // Add a new lp to the pool. Can only be called by the owner. function add(uint256 _allocPoint, IERC20 _lpToken, uint16 _depositFeeBP) external onlyOwner nonDuplicated(_lpToken) { require(_depositFeeBP <= 10000, "add: invalid deposit fee basis points"); uint256 lastRewardBlock = block.number > startBlock ? block.number : startBlock; totalAllocPoint = totalAllocPoint.add(_allocPoint); poolExistence[_lpToken] = true; poolInfo.push(PoolInfo({ lpToken: _lpToken, allocPoint: _allocPoint, lastRewardBlock: lastRewardBlock, accGorillaPerShare: 0, depositFeeBP: _depositFeeBP })); } // Update the given pool's Gorilla allocation point and deposit fee. Can only be called by the owner. function set(uint256 _pid, uint256 _allocPoint, uint16 _depositFeeBP) external onlyOwner { require(_depositFeeBP <= 10000, "set: invalid deposit fee basis points"); totalAllocPoint = totalAllocPoint.sub(poolInfo[_pid].allocPoint).add(_allocPoint); poolInfo[_pid].allocPoint = _allocPoint; poolInfo[_pid].depositFeeBP = _depositFeeBP; } // Return reward multiplier over the given _from to _to block. function getMultiplier(uint256 _from, uint256 _to) public pure returns (uint256) { return _to.sub(_from); } // View function to see pending Gorillaes on frontend. function pendingGorilla(uint256 _pid, address _user) external view returns (uint256) { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][_user]; uint256 accGorillaPerShare = pool.accGorillaPerShare; uint256 lpSupply = pool.lpToken.balanceOf(address(this)); if (block.number > pool.lastRewardBlock && lpSupply != 0) { uint256 multiplier = getMultiplier(pool.lastRewardBlock, block.number); uint256 GorillaReward = multiplier.mul(GorillaPerBlock).mul(pool.allocPoint).div(totalAllocPoint); accGorillaPerShare = accGorillaPerShare.add(GorillaReward.mul(1e18).div(lpSupply)); } return user.amount.mul(accGorillaPerShare).div(1e18).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 = getMultiplier(pool.lastRewardBlock, block.number); uint256 GorillaReward = multiplier.mul(GorillaPerBlock).mul(pool.allocPoint).div(totalAllocPoint); Gorilla.mint(devAddress, GorillaReward.div(10)); Gorilla.mint(address(this), GorillaReward); pool.accGorillaPerShare = pool.accGorillaPerShare.add(GorillaReward.mul(1e18).div(lpSupply)); pool.lastRewardBlock = block.number; } // Deposit LP tokens to MasterChef for Gorilla allocation. function deposit(uint256 _pid, uint256 _amount, address _referrer) public nonReentrant { PoolInfo storage pool = poolInfo[_pid]; UserInfo storage user = userInfo[_pid][msg.sender]; updatePool(_pid); if (_amount > 0 && address(referral) != address(0) && _referrer != address(0) && _referrer != msg.sender) { referral.recordReferral(msg.sender, _referrer); } if (user.amount > 0) { uint256 pending = user.amount.mul(pool.accGorillaPerShare).div(1e18).sub(user.rewardDebt); if (pending > 0) { safeGorillaTransfer(msg.sender, pending); payReferralCommission(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.div(2)); pool.lpToken.safeTransfer(vaultAddress, depositFee.div(2)); user.amount = user.amount.add(_amount).sub(depositFee); } else { user.amount = user.amount.add(_amount); } } user.rewardDebt = user.amount.mul(pool.accGorillaPerShare).div(1e18); 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.accGorillaPerShare).div(1e18).sub(user.rewardDebt); if (pending > 0) { safeGorillaTransfer(msg.sender, pending); payReferralCommission(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.accGorillaPerShare).div(1e18); 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 Gorilla transfer function, just in case if rounding error causes pool to not have enough FOXs. function safeGorillaTransfer(address _to, uint256 _amount) internal { uint256 GorillaBal = Gorilla.balanceOf(address(this)); bool transferSuccess = false; if (_amount > GorillaBal) { transferSuccess = Gorilla.transfer(_to, GorillaBal); } else { transferSuccess = Gorilla.transfer(_to, _amount); } require(transferSuccess, "safeGorillaTransfer: Transfer failed"); } // Update dev address by the previous dev. function setDevAddress(address _devAddress) external onlyOwner { devAddress = _devAddress; emit SetDevAddress(msg.sender, _devAddress); } function setFeeAddress(address _feeAddress) external onlyOwner { feeAddress = _feeAddress; emit SetFeeAddress(msg.sender, _feeAddress); } function setVaultAddress(address _vaultAddress) external onlyOwner { vaultAddress = _vaultAddress; emit SetVaultAddress(msg.sender, _vaultAddress); } function updateEmissionRate(uint256 _GorillaPerBlock) external onlyOwner { massUpdatePools(); GorillaPerBlock = _GorillaPerBlock; emit UpdateEmissionRate(msg.sender, _GorillaPerBlock); } // Update the referral contract address by the owner function setReferralAddress(IReferral _referral) external onlyOwner { referral = _referral; emit SetReferralAddress(msg.sender, _referral); } // Update referral commission rate by the owner function setReferralCommissionRate(uint16 _referralCommissionRate) external onlyOwner { require(_referralCommissionRate <= MAXIMUM_REFERRAL_COMMISSION_RATE, "setReferralCommissionRate: invalid referral commission rate basis points"); referralCommissionRate = _referralCommissionRate; } // Pay referral commission to the referrer who referred this user. function payReferralCommission(address _user, uint256 _pending) internal { if (address(referral) != address(0) && referralCommissionRate > 0) { address referrer = referral.getReferrer(_user); uint256 commissionAmount = _pending.mul(referralCommissionRate).div(10000); if (referrer != address(0) && commissionAmount > 0) { Gorilla.mint(referrer, commissionAmount); emit ReferralCommissionPaid(_user, referrer, commissionAmount); } } } // Only update before start of farm function updateStartBlock(uint256 _startBlock) public onlyOwner { startBlock = _startBlock; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract GorillaToken","name":"_Gorilla","type":"address"},{"internalType":"uint256","name":"_startBlock","type":"uint256"},{"internalType":"address","name":"_devAddress","type":"address"},{"internalType":"address","name":"_feeAddress","type":"address"},{"internalType":"address","name":"_vaultAddress","type":"address"}],"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":true,"internalType":"address","name":"referrer","type":"address"},{"indexed":false,"internalType":"uint256","name":"commissionAmount","type":"uint256"}],"name":"ReferralCommissionPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"SetDevAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"SetFeeAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"contract IReferral","name":"newAddress","type":"address"}],"name":"SetReferralAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newAddress","type":"address"}],"name":"SetVaultAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"GorillaPerBlock","type":"uint256"}],"name":"UpdateEmissionRate","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":"Gorilla","outputs":[{"internalType":"contract GorillaToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GorillaPerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAXIMUM_REFERRAL_COMMISSION_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_allocPoint","type":"uint256"},{"internalType":"contract IERC20","name":"_lpToken","type":"address"},{"internalType":"uint16","name":"_depositFeeBP","type":"uint16"}],"name":"add","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_referrer","type":"address"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devAddress","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":[{"internalType":"uint256","name":"_from","type":"uint256"},{"internalType":"uint256","name":"_to","type":"uint256"}],"name":"getMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"massUpdatePools","outputs":[],"stateMutability":"nonpayable","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":"pendingGorilla","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":"accGorillaPerShare","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":"referral","outputs":[{"internalType":"contract IReferral","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"referralCommissionRate","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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"}],"name":"set","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_devAddress","type":"address"}],"name":"setDevAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"name":"setFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IReferral","name":"_referral","type":"address"}],"name":"setReferralAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_referralCommissionRate","type":"uint16"}],"name":"setReferralCommissionRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vaultAddress","type":"address"}],"name":"setVaultAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_GorillaPerBlock","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":[],"name":"vaultAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pid","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052670214e8348c4f0000600655600060095560c8600b60146101000a81548161ffff021916908361ffff1602179055503480156200004057600080fd5b5060405162003edd38038062003edd833981810160405260a08110156200006657600080fd5b8101908080519060200190929190805190602001909291908051906020019092919080519060200190929190805190602001909291905050506000620000b16200026c60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506001808190555084600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600a8190555082600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050505062000274565b600033905090565b613c5980620002846000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80636132291d1161011a5780638dbdbe6d116100ad578063cbd258b51161007c578063cbd258b51461082f578063d0d41fe114610889578063d30ef61b146108cd578063f2fde38b146108ef578063fac2b9ba14610933576101fb565b80638dbdbe6d146106f6578063936cc5ce1461074e57806393f1a40b14610782578063b3caba5a146107eb576101fb565b80638705fcd4116100e95780638705fcd41461061457806389b8865c146106585780638da5cb5b146106765780638dbb1e3a146106aa576101fb565b80636132291d1461055a578063630b5ba1146105bc578063715018a6146105c657806385535cc5146105d0576101fb565b8063412753581161019257806348cd4cb11161016157806348cd4cb1146104ae57806351eb05a6146104cc5780635312ea8e146104fa57806355dbc82614610528576101fb565b806341275358146103ec578063430bf08a14610420578063441a3e701461045457806348b22bfb1461048c576101fb565b80631526fe27116101ce5780631526fe27146102dc57806317caf6f11461035457806324bcb38c146103725780633ad10ef6146103b8576101fb565b80630653927514610200578063081e3eda1461025c5780630ba84cd21461027a5780631441a5a9146102a8575b600080fd5b61025a6004803603606081101561021657600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803561ffff169060200190929190505050610961565b005b610264610cd7565b6040518082815260200191505060405180910390f35b6102a66004803603602081101561029057600080fd5b8101908080359060200190929190505050610ce4565b005b6102b0610e0c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610308600480360360208110156102f257600080fd5b8101908080359060200190929190505050610e32565b604051808673ffffffffffffffffffffffffffffffffffffffff1681526020018581526020018481526020018381526020018261ffff1681526020019550505050505060405180910390f35b61035c610ea3565b6040518082815260200191505060405180910390f35b6103b66004803603606081101561038857600080fd5b810190808035906020019092919080359060200190929190803561ffff169060200190929190505050610ea9565b005b6103c061107c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6103f46110a2565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6104286110c8565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b61048a6004803603604081101561046a57600080fd5b8101908080359060200190929190803590602001909291905050506110ee565b005b6104946113e4565b604051808261ffff16815260200191505060405180910390f35b6104b66113ea565b6040518082815260200191505060405180910390f35b6104f8600480360360208110156104e257600080fd5b81019080803590602001909291905050506113f0565b005b6105266004803603602081101561051057600080fd5b810190808035906020019092919050505061174e565b005b6105586004803603602081101561053e57600080fd5b81019080803561ffff16906020019092919050505061190a565b005b6105a66004803603604081101561057057600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a55565b6040518082815260200191505060405180910390f35b6105c4611ca1565b005b6105ce611cce565b005b610612600480360360208110156105e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611e54565b005b6106566004803603602081101561062a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fba565b005b610660612120565b6040518082815260200191505060405180910390f35b61067e612126565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6106e0600480360360408110156106c057600080fd5b81019080803590602001909291908035906020019092919050505061214f565b6040518082815260200191505060405180910390f35b61074c6004803603606081101561070c57600080fd5b810190808035906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061216c565b005b610756612730565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6107ce6004803603604081101561079857600080fd5b8101908080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612756565b604051808381526020018281526020019250505060405180910390f35b61082d6004803603602081101561080157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612787565b005b6108716004803603602081101561084557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506128ed565b60405180821515815260200191505060405180910390f35b6108cb6004803603602081101561089f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061290d565b005b6108d5612a73565b604051808261ffff16815260200191505060405180910390f35b6109316004803603602081101561090557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a87565b005b61095f6004803603602081101561094957600080fd5b8101908080359060200190929190505050612c92565b005b610969612d64565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a29576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b8160001515600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610af0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f6e6f6e4475706c6963617465643a206475706c6963617465640000000000000081525060200191505060405180910390fd5b6127108261ffff161115610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613afd6025913960400191505060405180910390fd5b6000600a544311610b6257600a54610b64565b435b9050610b7b85600954612d6c90919063ffffffff16565b6009819055506001600c60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060076040518060a001604052808673ffffffffffffffffffffffffffffffffffffffff168152602001878152602001838152602001600081526020018561ffff16815250908060018154018082558091505060019003906000526020600020906005020160009091909190915060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160010155604082015181600201556060820151816003015560808201518160040160006101000a81548161ffff021916908361ffff16021790555050505050505050565b6000600780549050905090565b610cec612d64565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610db4611ca1565b806006819055503373ffffffffffffffffffffffffffffffffffffffff167fe2492e003bbe8afa53088b406f0c1cb5d9e280370fc72a74cf116ffd343c4053826040518082815260200191505060405180910390a250565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60078181548110610e3f57fe5b90600052602060002090600502016000915090508060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16908060010154908060020154908060030154908060040160009054906101000a900461ffff16905085565b60095481565b610eb1612d64565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f71576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6127108161ffff161115610fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180613bd56025913960400191505060405180910390fd5b6110158261100760078681548110610fe457fe5b906000526020600020906005020160010154600954612df490919063ffffffff16565b612d6c90919063ffffffff16565b600981905550816007848154811061102957fe5b906000526020600020906005020160010181905550806007848154811061104c57fe5b906000526020600020906005020160040160006101000a81548161ffff021916908361ffff160217905550505050565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60026001541415611167576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b600260018190555060006007838154811061117e57fe5b9060005260206000209060050201905060006008600085815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050828160000154101561125c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f77697468647261773a206e6f7420676f6f64000000000000000000000000000081525060200191505060405180910390fd5b611265846113f0565b60006112b282600101546112a4670de0b6b3a764000061129687600301548760000154612e3e90919063ffffffff16565b612ec490919063ffffffff16565b612df490919063ffffffff16565b905060008111156112d2576112c73382612f0e565b6112d133826131e2565b5b600084111561134a576112f2848360000154612df490919063ffffffff16565b826000018190555061134933858560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166134bb9092919063ffffffff16565b5b61137f670de0b6b3a764000061137185600301548560000154612e3e90919063ffffffff16565b612ec490919063ffffffff16565b8260010181905550843373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568866040518082815260200191505060405180910390a3505050600180819055505050565b6101f481565b600a5481565b6000600782815481106113ff57fe5b9060005260206000209060050201905080600201544311611420575061174b565b60008160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156114ad57600080fd5b505afa1580156114c1573d6000803e3d6000fd5b505050506040513d60208110156114d757600080fd5b8101908080519060200190929190505050905060008114806114fd575060008260010154145b1561151257438260020181905550505061174b565b600061152283600201544361214f565b90506000611565600954611557866001015461154960065487612e3e90919063ffffffff16565b612e3e90919063ffffffff16565b612ec490919063ffffffff16565b9050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f19600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166115dc600a85612ec490919063ffffffff16565b6040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561162f57600080fd5b505af1158015611643573d6000803e3d6000fd5b50505050600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1930836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b1580156116da57600080fd5b505af11580156116ee573d6000803e3d6000fd5b5050505061173561172284611714670de0b6b3a764000085612e3e90919063ffffffff16565b612ec490919063ffffffff16565b8560030154612d6c90919063ffffffff16565b8460030181905550438460020181905550505050505b50565b600260015414156117c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600782815481106117de57fe5b9060005260206000209060050201905060006008600084815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008160000154905060008260000181905550600082600101819055506118ae33828560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166134bb9092919063ffffffff16565b833373ffffffffffffffffffffffffffffffffffffffff167fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595836040518082815260200191505060405180910390a35050506001808190555050565b611912612d64565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b6101f461ffff168161ffff161115611a35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526048815260200180613b226048913960600191505060405180910390fd5b80600b60146101000a81548161ffff021916908361ffff16021790555050565b60008060078481548110611a6557fe5b9060005260206000209060050201905060006008600086815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060008260030154905060008360000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611b5f57600080fd5b505afa158015611b73573d6000803e3d6000fd5b505050506040513d6020811015611b8957600080fd5b81019080805190602001909291905050509050836002015443118015611bb0575060008114155b15611c4e576000611bc585600201544361214f565b90506000611c08600954611bfa8860010154611bec60065487612e3e90919063ffffffff16565b612e3e90919063ffffffff16565b612ec490919063ffffffff16565b9050611c49611c3a84611c2c670de0b6b3a764000085612e3e90919063ffffffff16565b612ec490919063ffffffff16565b85612d6c90919063ffffffff16565b935050505b611c958360010154611c87670de0b6b3a7640000611c79868860000154612e3e90919063ffffffff16565b612ec490919063ffffffff16565b612df490919063ffffffff16565b94505050505092915050565b6000600780549050905060005b81811015611cca57611cbf816113f0565b806001019050611cae565b5050565b611cd6612d64565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611d96576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611e5c612d64565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fdfb3295f3e9d9cedf80122570b2468d2322b3443cacb59aa0e204dead9b3c62760405160405180910390a350565b611fc2612d64565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612082576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fd44190acf9d04bdb5d3a1aafff7e6dee8b40b93dfb8c5d3f0eea4b9f4539c3f760405160405180910390a350565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006121648383612df490919063ffffffff16565b905092915050565b600260015414156121e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0081525060200191505060405180910390fd5b60026001819055506000600784815481106121fc57fe5b9060005260206000209060050201905060006008600086815260200190815260200160002060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000209050612269856113f0565b6000841180156122c85750600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b80156123015750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b801561233957503373ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561240057600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630c7f7b6b33856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1681526020018273ffffffffffffffffffffffffffffffffffffffff16815260200192505050600060405180830381600087803b1580156123e757600080fd5b505af11580156123fb573d6000803e3d6000fd5b505050505b60008160000154111561247c57600061245a826001015461244c670de0b6b3a764000061243e87600301548760000154612e3e90919063ffffffff16565b612ec490919063ffffffff16565b612df490919063ffffffff16565b9050600081111561247a5761246f3382612f0e565b61247933826131e2565b5b505b6000841115612696576124d63330868560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661355d909392919063ffffffff16565b60008260040160009054906101000a900461ffff1661ffff1611156126755760006125346127106125268560040160009054906101000a900461ffff1661ffff1688612e3e90919063ffffffff16565b612ec490919063ffffffff16565b90506125ba600460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612570600284612ec490919063ffffffff16565b8560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166134bb9092919063ffffffff16565b61263e600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166125f4600284612ec490919063ffffffff16565b8560000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166134bb9092919063ffffffff16565b61266781612659878560000154612d6c90919063ffffffff16565b612df490919063ffffffff16565b826000018190555050612695565b61268c848260000154612d6c90919063ffffffff16565b81600001819055505b5b6126cb670de0b6b3a76400006126bd84600301548460000154612e3e90919063ffffffff16565b612ec490919063ffffffff16565b8160010181905550843373ffffffffffffffffffffffffffffffffffffffff167f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15866040518082815260200191505060405180910390a3505060018081905550505050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6008602052816000526040600020602052806000526040600020600091509150508060000154908060010154905082565b61278f612d64565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461284f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fee63201fedda9e28e92efef9abb99bd9d2f90208a4fd0d0186c14daf364a273160405160405180910390a350565b600c6020528060005260406000206000915054906101000a900460ff1681565b612915612d64565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f618c54559e94f1499a808aad71ee8729f8e74e8c48e979616328ce493a1a52e760405160405180910390a350565b600b60149054906101000a900461ffff1681565b612a8f612d64565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612b4f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180613b8e6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612c9a612d64565b73ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612d5a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600a8190555050565b600033905090565b600080828401905083811015612dea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000612e3683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061361e565b905092915050565b600080831415612e515760009050612ebe565b6000828402905082848281612e6257fe5b0414612eb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180613bb46021913960400191505060405180910390fd5b809150505b92915050565b6000612f0683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506136de565b905092915050565b6000600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612f9957600080fd5b505afa158015612fad573d6000803e3d6000fd5b505050506040513d6020811015612fc357600080fd5b810190808051906020019092919050505090506000818311156130b557600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561307357600080fd5b505af1158015613087573d6000803e3d6000fd5b505050506040513d602081101561309d57600080fd5b81019080805190602001909291905050509050613186565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb85856040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561314857600080fd5b505af115801561315c573d6000803e3d6000fd5b505050506040513d602081101561317257600080fd5b810190808051906020019092919050505090505b806131dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180613b6a6024913960400191505060405180910390fd5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415801561325557506000600b60149054906101000a900461ffff1661ffff16115b156134b7576000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634a9fefc7846040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b1580156132e557600080fd5b505afa1580156132f9573d6000803e3d6000fd5b505050506040513d602081101561330f57600080fd5b81019080805190602001909291905050509050600061335f612710613351600b60149054906101000a900461ffff1661ffff1686612e3e90919063ffffffff16565b612ec490919063ffffffff16565b9050600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561339e5750600081115b156134b457600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166340c10f1983836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561343657600080fd5b505af115801561344a573d6000803e3d6000fd5b505050508173ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f86ddab457291316e0f5496737e5ca67c4037234c32c3be04c48ae96186893a7b836040518082815260200191505060405180910390a35b50505b5050565b6135588363a9059cbb60e01b8484604051602401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506137a4565b505050565b613618846323b872dd60e01b858585604051602401808473ffffffffffffffffffffffffffffffffffffffff1681526020018373ffffffffffffffffffffffffffffffffffffffff1681526020018281526020019350505050604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff83818316178352505050506137a4565b50505050565b60008383111582906136cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613690578082015181840152602081019050613675565b50505050905090810190601f1680156136bd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b6000808311829061378a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561374f578082015181840152602081019050613734565b50505050905090810190601f16801561377c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858161379657fe5b049050809150509392505050565b6060613806826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166138939092919063ffffffff16565b905060008151111561388e5780806020019051602081101561382757600080fd5b810190808051906020019092919050505061388d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180613bfa602a913960400191505060405180910390fd5b5b505050565b60606138a284846000856138ab565b90509392505050565b60606138b685613ab1565b613928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601d8152602001807f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000081525060200191505060405180910390fd5b600060608673ffffffffffffffffffffffffffffffffffffffff1685876040518082805190602001908083835b602083106139785780518252602082019150602081019050602083039250613955565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d80600081146139da576040519150601f19603f3d011682016040523d82523d6000602084013e6139df565b606091505b509150915081156139f4578092505050613aa9565b600081511115613a075780518082602001fd5b836040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613a6e578082015181840152602081019050613a53565b50505050905090810190601f168015613a9b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b949350505050565b60008060007fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47060001b9050833f9150808214158015613af357506000801b8214155b9250505091905056fe6164643a20696e76616c6964206465706f7369742066656520626173697320706f696e7473736574526566657272616c436f6d6d697373696f6e526174653a20696e76616c696420726566657272616c20636f6d6d697373696f6e207261746520626173697320706f696e747373616665476f72696c6c615472616e736665723a205472616e73666572206661696c65644f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f777365743a20696e76616c6964206465706f7369742066656520626173697320706f696e74735361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a2646970667358221220016214b491477cc8cc3ee9ee9ff457d9f083856dce9661e92288879b8c58ea7c64736f6c634300060c003300000000000000000000000001bcec6175fa9366d14b8275e95d0fa45702f6960000000000000000000000000000000000000000000000000000000000fe7bfe0000000000000000000000003d1d325deb0d2deb77c0c827e82744de704a51b10000000000000000000000003d1d325deb0d2deb77c0c827e82744de704a51b10000000000000000000000003d1d325deb0d2deb77c0c827e82744de704a51b1
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000001bcec6175fa9366d14b8275e95d0fa45702f6960000000000000000000000000000000000000000000000000000000000fe7bfe0000000000000000000000003d1d325deb0d2deb77c0c827e82744de704a51b10000000000000000000000003d1d325deb0d2deb77c0c827e82744de704a51b10000000000000000000000003d1d325deb0d2deb77c0c827e82744de704a51b1
-----Decoded View---------------
Arg [0] : _Gorilla (address): 0x01bcec6175fa9366d14b8275e95d0fa45702f696
Arg [1] : _startBlock (uint256): 16677886
Arg [2] : _devAddress (address): 0x3d1d325deb0d2deb77c0c827e82744de704a51b1
Arg [3] : _feeAddress (address): 0x3d1d325deb0d2deb77c0c827e82744de704a51b1
Arg [4] : _vaultAddress (address): 0x3d1d325deb0d2deb77c0c827e82744de704a51b1
-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 00000000000000000000000001bcec6175fa9366d14b8275e95d0fa45702f696
Arg [1] : 0000000000000000000000000000000000000000000000000000000000fe7bfe
Arg [2] : 0000000000000000000000003d1d325deb0d2deb77c0c827e82744de704a51b1
Arg [3] : 0000000000000000000000003d1d325deb0d2deb77c0c827e82744de704a51b1
Arg [4] : 0000000000000000000000003d1d325deb0d2deb77c0c827e82744de704a51b1
Deployed ByteCode Sourcemap
43946:12847:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47851:641;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47481:95;;;:::i;:::-;;;;;;;;;;;;;;;;;;;55193:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46117:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45705:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45946:34;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48607:376;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45484:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45516;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45548:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;52766:821;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46290:61;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;46040:25;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50373:835;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;53658:398;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;55702:308;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;49248:786;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;50117:180;;;:::i;:::-;;2607:148;;;:::i;:::-;;55013:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;54845:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45626:43;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1965:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;49059:121;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;51280:1434;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;45450:27;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;45787:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;55477:164;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47584:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;54677:160;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;46199:42;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2910:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56683:107;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;47851:641;2187:12;:10;:12::i;:::-;2177:22;;:6;;;;;;;;;;:22;;;2169:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47957:8:::1;47721:5;47694:32;;:13;:23;47708:8;47694:23;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;47686:70;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;48003:5:::2;47986:13;:22;;;;47978:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48061:23;48102:10;;48087:12;:25;:53;;48130:10;;48087:53;;;48115:12;48087:53;48061:79;;48169:32;48189:11;48169:15;;:19;;:32;;;;:::i;:::-;48151:15;:50;;;;48238:4;48212:13;:23;48226:8;48212:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;48253:8;48267:216;;;;;;;;48300:8;48267:216;;;;;;48335:11;48267:216;;;;48378:15;48267:216;;;;48428:1;48267:216;;;;48458:13;48267:216;;;;::::0;48253:231:::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47767:1;2247::::1;47851:641:::0;;;:::o;47481:95::-;47526:7;47553:8;:15;;;;47546:22;;47481:95;:::o;55193:218::-;2187:12;:10;:12::i;:::-;2177:22;;:6;;;;;;;;;;:22;;;2169:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55277:17:::1;:15;:17::i;:::-;55323:16;55305:15;:34;;;;55374:10;55355:48;;;55386:16;55355:48;;;;;;;;;;;;;;;;;;55193:218:::0;:::o;46117:25::-;;;;;;;;;;;;;:::o;45705:26::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45946:34::-;;;;:::o;48607:376::-;2187:12;:10;:12::i;:::-;2177:22;;:6;;;;;;;;;;:22;;;2169:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48732:5:::1;48715:13;:22;;;;48707:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48808:63;48859:11;48808:46;48828:8;48837:4;48828:14;;;;;;;;;;;;;;;;;;:25;;;48808:15;;:19;;:46;;;;:::i;:::-;:50;;:63;;;;:::i;:::-;48790:15;:81;;;;48910:11;48882:8;48891:4;48882:14;;;;;;;;;;;;;;;;;;:25;;:39;;;;48962:13;48932:8;48941:4;48932:14;;;;;;;;;;;;;;;;;;:27;;;:43;;;;;;;;;;;;;;;;;;48607:376:::0;;;:::o;45484:25::-;;;;;;;;;;;;;:::o;45516:::-;;;;;;;;;;;;;:::o;45548:27::-;;;;;;;;;;;;;:::o;52766:821::-;33517:1;34123:7;;:19;;34115:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33517:1;34256:7;:18;;;;52846:21:::1;52870:8;52879:4;52870:14;;;;;;;;;;;;;;;;;;52846:38;;52895:21;52919:8;:14;52928:4;52919:14;;;;;;;;;;;:26;52934:10;52919:26;;;;;;;;;;;;;;;52895:50;;52979:7;52964:4;:11;;;:22;;52956:53;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;53020:16;53031:4;53020:10;:16::i;:::-;53047:15;53065:71;53120:4;:15;;;53065:50;53110:4;53065:40;53081:4;:23;;;53065:4;:11;;;:15;;:40;;;;:::i;:::-;:44;;:50;;;;:::i;:::-;:54;;:71;;;;:::i;:::-;53047:89;;53161:1;53151:7;:11;53147:141;;;53179:40;53199:10;53211:7;53179:19;:40::i;:::-;53234:42;53256:10;53268:7;53234:21;:42::i;:::-;53147:141;53312:1;53302:7;:11;53298:152;;;53344:24;53360:7;53344:4;:11;;;:15;;:24;;;;:::i;:::-;53330:4;:11;;:38;;;;53383:55;53417:10;53430:7;53383:4;:12;;;;;;;;;;;;:25;;;;:55;;;;;:::i;:::-;53298:152;53478:50;53523:4;53478:40;53494:4;:23;;;53478:4;:11;;;:15;;:40;;;;:::i;:::-;:44;;:50;;;;:::i;:::-;53460:4;:15;;:68;;;;53565:4;53553:10;53544:35;;;53571:7;53544:35;;;;;;;;;;;;;;;;;;34287:1;;;33473::::0;34435:7;:22;;;;52766:821;;:::o;46290:61::-;46348:3;46290:61;:::o;46040:25::-;;;;:::o;50373:835::-;50425:21;50449:8;50458:4;50449:14;;;;;;;;;;;;;;;;;;50425:38;;50494:4;:20;;;50478:12;:36;50474:75;;50531:7;;;50474:75;50559:16;50578:4;:12;;;;;;;;;;;;:22;;;50609:4;50578:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50559:56;;50642:1;50630:8;:13;:37;;;;50666:1;50647:4;:15;;;:20;50630:37;50626:126;;;50707:12;50684:4;:20;;:35;;;;50734:7;;;;50626:126;50762:18;50783:49;50797:4;:20;;;50819:12;50783:13;:49::i;:::-;50762:70;;50843:21;50867:73;50924:15;;50867:52;50903:4;:15;;;50867:31;50882:15;;50867:10;:14;;:31;;;;:::i;:::-;:35;;:52;;;;:::i;:::-;:56;;:73;;;;:::i;:::-;50843:97;;50951:7;;;;;;;;;;;:12;;;50964:10;;;;;;;;;;;50976:21;50994:2;50976:13;:17;;:21;;;;:::i;:::-;50951:47;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51009:7;;;;;;;;;;;:12;;;51030:4;51037:13;51009:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51088:66;51116:37;51144:8;51116:23;51134:4;51116:13;:17;;:23;;;;:::i;:::-;:27;;:37;;;;:::i;:::-;51088:4;:23;;;:27;;:66;;;;:::i;:::-;51062:4;:23;;:92;;;;51188:12;51165:4;:20;;:35;;;;50373:835;;;;;;:::o;53658:398::-;33517:1;34123:7;;:19;;34115:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33517:1;34256:7;:18;;;;53730:21:::1;53754:8;53763:4;53754:14;;;;;;;;;;;;;;;;;;53730:38;;53779:21;53803:8;:14;53812:4;53803:14;;;;;;;;;;;:26;53818:10;53803:26;;;;;;;;;;;;;;;53779:50;;53840:14;53857:4;:11;;;53840:28;;53893:1;53879:4;:11;;:15;;;;53923:1;53905:4;:15;;:19;;;;53935:54;53969:10;53982:6;53935:4;:12;;;;;;;;;;;;:25;;;;:54;;;;;:::i;:::-;54035:4;54023:10;54005:43;;;54041:6;54005:43;;;;;;;;;;;;;;;;;;34287:1;;;33473::::0;34435:7;:22;;;;53658:398;:::o;55702:308::-;2187:12;:10;:12::i;:::-;2177:22;;:6;;;;;;;;;;:22;;;2169:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46348:3:::1;55807:59;;:23;:59;;;;55799:144;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55979:23;55954:22;;:48;;;;;;;;;;;;;;;;;;55702:308:::0;:::o;49248:786::-;49324:7;49344:21;49368:8;49377:4;49368:14;;;;;;;;;;;;;;;;;;49344:38;;49393:21;49417:8;:14;49426:4;49417:14;;;;;;;;;;;:21;49432:5;49417:21;;;;;;;;;;;;;;;49393:45;;49449:26;49478:4;:23;;;49449:52;;49512:16;49531:4;:12;;;;;;;;;;;;:22;;;49562:4;49531:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49512:56;;49598:4;:20;;;49583:12;:35;:52;;;;;49634:1;49622:8;:13;;49583:52;49579:364;;;49652:18;49673:49;49687:4;:20;;;49709:12;49673:13;:49::i;:::-;49652:70;;49737:21;49761:73;49818:15;;49761:52;49797:4;:15;;;49761:31;49776:15;;49761:10;:14;;:31;;;;:::i;:::-;:35;;:52;;;;:::i;:::-;:56;;:73;;;;:::i;:::-;49737:97;;49870:61;49893:37;49921:8;49893:23;49911:4;49893:13;:17;;:23;;;;:::i;:::-;:27;;:37;;;;:::i;:::-;49870:18;:22;;:61;;;;:::i;:::-;49849:82;;49579:364;;;49960:66;50010:4;:15;;;49960:45;50000:4;49960:35;49976:18;49960:4;:11;;;:15;;:35;;;;:::i;:::-;:39;;:45;;;;:::i;:::-;:49;;:66;;;;:::i;:::-;49953:73;;;;;;49248:786;;;;:::o;50117:180::-;50162:14;50179:8;:15;;;;50162:32;;50210:11;50205:85;50233:6;50227:3;:12;50205:85;;;50263:15;50274:3;50263:10;:15::i;:::-;50241:5;;;;;50205:85;;;;50117:180;:::o;2607:148::-;2187:12;:10;:12::i;:::-;2177:22;;:6;;;;;;;;;;:22;;;2169:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2714:1:::1;2677:40;;2698:6;::::0;::::1;;;;;;;;2677:40;;;;;;;;;;;;2745:1;2728:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;2607:148::o:0;55013:172::-;2187:12;:10;:12::i;:::-;2177:22;;:6;;;;;;;;;;:22;;;2169:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55106:13:::1;55091:12;;:28;;;;;;;;;;;;;;;;;;55163:13;55135:42;;55151:10;55135:42;;;;;;;;;;;;55013:172:::0;:::o;54845:160::-;2187:12;:10;:12::i;:::-;2177:22;;:6;;;;;;;;;;:22;;;2169:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54932:11:::1;54919:10;;:24;;;;;;;;;;;;;;;;;;54985:11;54959:38;;54973:10;54959:38;;;;;;;;;;;;54845:160:::0;:::o;45626:43::-;;;;:::o;1965:79::-;2003:7;2030:6;;;;;;;;;;;2023:13;;1965:79;:::o;49059:121::-;49131:7;49158:14;49166:5;49158:3;:7;;:14;;;;:::i;:::-;49151:21;;49059:121;;;;:::o;51280:1434::-;33517:1;34123:7;;:19;;34115:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33517:1;34256:7;:18;;;;51378:21:::1;51402:8;51411:4;51402:14;;;;;;;;;;;;;;;;;;51378:38;;51427:21;51451:8;:14;51460:4;51451:14;;;;;;;;;;;:26;51466:10;51451:26;;;;;;;;;;;;;;;51427:50;;51488:16;51499:4;51488:10;:16::i;:::-;51529:1;51519:7;:11;:46;;;;;51563:1;51534:31;;51542:8;;;;;;;;;;;51534:31;;;;51519:46;:73;;;;;51590:1;51569:23;;:9;:23;;;;51519:73;:100;;;;;51609:10;51596:23;;:9;:23;;;;51519:100;51515:179;;;51636:8;;;;;;;;;;;:23;;;51660:10;51672:9;51636:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;51515:179;51722:1;51708:4;:11;;;:15;51704:304;;;51740:15;51758:71;51813:4;:15;;;51758:50;51803:4;51758:40;51774:4;:23;;;51758:4;:11;;;:15;;:40;;;;:::i;:::-;:44;;:50;;;;:::i;:::-;:54;;:71;;;;:::i;:::-;51740:89;;51858:1;51848:7;:11;51844:153;;;51880:40;51900:10;51912:7;51880:19;:40::i;:::-;51939:42;51961:10;51973:7;51939:21;:42::i;:::-;51844:153;51704:304;;52032:1;52022:7;:11;52018:560;;;52050:74;52088:10;52109:4;52116:7;52050:4;:12;;;;;;;;;;;;:29;;;;:74;;;;;;:::i;:::-;52163:1;52143:4;:17;;;;;;;;;;;;:21;;;52139:428;;;52185:18;52206:41;52241:5;52206:30;52218:4;:17;;;;;;;;;;;;52206:30;;:7;:11;;:30;;;;:::i;:::-;:34;;:41;;;;:::i;:::-;52185:62;;52266:56;52292:10;;;;;;;;;;;52304:17;52319:1;52304:10;:14;;:17;;;;:::i;:::-;52266:4;:12;;;;;;;;;;;;:25;;;;:56;;;;;:::i;:::-;52341:58;52367:12;;;;;;;;;;;52381:17;52396:1;52381:10;:14;;:17;;;;:::i;:::-;52341:4;:12;;;;;;;;;;;;:25;;;;:58;;;;;:::i;:::-;52432:40;52461:10;52432:24;52448:7;52432:4;:11;;;:15;;:24;;;;:::i;:::-;:28;;:40;;;;:::i;:::-;52418:4;:11;;:54;;;;52139:428;;;;52527:24;52543:7;52527:4;:11;;;:15;;:24;;;;:::i;:::-;52513:4;:11;;:38;;;;52139:428;52018:560;52606:50;52651:4;52606:40;52622:4;:23;;;52606:4;:11;;;:15;;:40;;;;:::i;:::-;:44;;:50;;;;:::i;:::-;52588:4;:15;;:68;;;;52692:4;52680:10;52672:34;;;52698:7;52672:34;;;;;;;;;;;;;;;;;;34287:1;;33473::::0;34435:7;:22;;;;51280:1434;;;:::o;45450:27::-;;;;;;;;;;;;;:::o;45787:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55477:164::-;2187:12;:10;:12::i;:::-;2177:22;;:6;;;;;;;;;;:22;;;2169:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55567:9:::1;55556:8;;:20;;;;;;;;;;;;;;;;;;55623:9;55592:41;;55611:10;55592:41;;;;;;;;;;;;55477:164:::0;:::o;47584:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;54677:160::-;2187:12;:10;:12::i;:::-;2177:22;;:6;;;;;;;;;;:22;;;2169:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54764:11:::1;54751:10;;:24;;;;;;;;;;;;;;;;;;54817:11;54791:38;;54805:10;54791:38;;;;;;;;;;;;54677:160:::0;:::o;46199:42::-;;;;;;;;;;;;;:::o;2910:244::-;2187:12;:10;:12::i;:::-;2177:22;;:6;;;;;;;;;;:22;;;2169:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3019:1:::1;2999:22;;:8;:22;;;;2991:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3109:8;3080:38;;3101:6;::::0;::::1;;;;;;;;3080:38;;;;;;;;;;;;3138:8;3129:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;2910:244:::0;:::o;56683:107::-;2187:12;:10;:12::i;:::-;2177:22;;:6;;;;;;;;;;:22;;;2169:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56771:11:::1;56758:10;:24;;;;56683:107:::0;:::o;603:106::-;656:15;691:10;684:17;;603:106;:::o;4001:181::-;4059:7;4079:9;4095:1;4091;:5;4079:17;;4120:1;4115;:6;;4107:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4173:1;4166:8;;;4001:181;;;;:::o;4465:136::-;4523:7;4550:43;4554:1;4557;4550:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;4543:50;;4465:136;;;;:::o;5355:471::-;5413:7;5663:1;5658;:6;5654:47;;;5688:1;5681:8;;;;5654:47;5713:9;5729:1;5725;:5;5713:17;;5758:1;5753;5749;:5;;;;;;:10;5741:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5817:1;5810:8;;;5355:471;;;;;:::o;6302:132::-;6360:7;6387:39;6391:1;6394;6387:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;6380:46;;6302:132;;;;:::o;54172:449::-;54251:18;54272:7;;;;;;;;;;;:17;;;54298:4;54272:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54251:53;;54315:20;54368:10;54358:7;:20;54354:185;;;54413:7;;;;;;;;;;;:16;;;54430:3;54435:10;54413:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54395:51;;54354:185;;;54497:7;;;;;;;;;;;:16;;;54514:3;54519:7;54497:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54479:48;;54354:185;54557:15;54549:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54172:449;;;;:::o;56090:544::-;56207:1;56178:31;;56186:8;;;;;;;;;;;56178:31;;;;:61;;;;;56238:1;56213:22;;;;;;;;;;;:26;;;56178:61;56174:453;;;56256:16;56275:8;;;;;;;;;;;:20;;;56296:5;56275:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56256:46;;56317:24;56344:47;56385:5;56344:36;56357:22;;;;;;;;;;;56344:36;;:8;:12;;:36;;;;:::i;:::-;:40;;:47;;;;:::i;:::-;56317:74;;56432:1;56412:22;;:8;:22;;;;:46;;;;;56457:1;56438:16;:20;56412:46;56408:208;;;56479:7;;;;;;;;;;;:12;;;56492:8;56502:16;56479:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56573:8;56543:57;;56566:5;56543:57;;;56583:16;56543:57;;;;;;;;;;;;;;;;;;56408:208;56174:453;;;56090:544;;:::o;28802:177::-;28885:86;28905:5;28935:23;;;28960:2;28964:5;28912:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28885:19;:86::i;:::-;28802:177;;;:::o;28987:205::-;29088:96;29108:5;29138:27;;;29167:4;29173:2;29177:5;29115:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29088:19;:96::i;:::-;28987:205;;;;:::o;4904:192::-;4990:7;5023:1;5018;:6;;5026:12;5010:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5050:9;5066:1;5062;:5;5050:17;;5087:1;5080:8;;;4904:192;;;;;:::o;6930:278::-;7016:7;7048:1;7044;:5;7051:12;7036:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7075:9;7091:1;7087;:5;;;;;;7075:17;;7199:1;7192:8;;;6930:278;;;;;:::o;31107:761::-;31531:23;31557:69;31585:4;31557:69;;;;;;;;;;;;;;;;;31565:5;31557:27;;;;:69;;;;;:::i;:::-;31531:95;;31661:1;31641:10;:17;:21;31637:224;;;31783:10;31772:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31764:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31637:224;31107:761;;;:::o;12257:196::-;12360:12;12392:53;12415:6;12423:4;12429:1;12432:12;12392:22;:53::i;:::-;12385:60;;12257:196;;;;;:::o;13634:979::-;13764:12;13797:18;13808:6;13797:10;:18::i;:::-;13789:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13923:12;13937:23;13964:6;:11;;13984:8;13995:4;13964:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13922:78;;;;14015:7;14011:595;;;14046:10;14039:17;;;;;;14011:595;14180:1;14160:10;:17;:21;14156:439;;;14423:10;14417:17;14484:15;14471:10;14467:2;14463:19;14456:44;14371:148;14566:12;14559:20;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13634:979;;;;;;;:::o;9142:619::-;9202:4;9464:16;9491:19;9513:66;9491:88;;;;9682:7;9670:20;9658:32;;9722:11;9710:8;:23;;:42;;;;;9749:3;9737:15;;:8;:15;;9710:42;9702:51;;;;9142:619;;;:::o
Swarm Source
ipfs://016214b491477cc8cc3ee9ee9ff457d9f083856dce9661e92288879b8c58ea7c
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.