ERC-20
Overview
Max Total Supply
222,924.313657866231019568 ERC20 ***
Holders
76
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,000 ERC20 ***Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
TrenderingAIMv1
Compiler Version
v0.6.6+commit.6c089d02
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-04-09 */ // Trendering.com, Trendering.org // AIM LP Token v1 "Gongi Bongi" // Automated Investment Maker Gateway Contract // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.6.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } 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; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.6.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.6.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 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; } } // File: @openzeppelin/contracts/utils/SafeERC20.sol pragma solidity ^0.6.0; /** * @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"); } } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.6.2; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return _functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20MinterPauser}. * * 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 { } } // File: @openzeppelin/contracts/token/ERC20/ERC20Burnable.sol pragma solidity ^0.6.0; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } // File: @openzeppelin/contracts/introspection/IERC165.sol pragma solidity ^0.6.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/introspection/ERC165Checker.sol pragma solidity ^0.6.2; /** * @dev Library used to query support of an interface declared via {IERC165}. * * Note that these functions return the actual result of the query: they do not * `revert` if an interface is not supported. It is up to the caller to decide * what to do in these cases. */ library ERC165Checker { // As per the EIP-165 spec, no interface should ever match 0xffffffff bytes4 private constant _INTERFACE_ID_INVALID = 0xffffffff; /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Returns true if `account` supports the {IERC165} interface, */ function supportsERC165(address account) internal view returns (bool) { // Any contract that implements ERC165 must explicitly indicate support of // InterfaceId_ERC165 and explicitly indicate non-support of InterfaceId_Invalid return _supportsERC165Interface(account, _INTERFACE_ID_ERC165) && !_supportsERC165Interface(account, _INTERFACE_ID_INVALID); } /** * @dev Returns true if `account` supports the interface defined by * `interfaceId`. Support for {IERC165} itself is queried automatically. * * See {IERC165-supportsInterface}. */ function supportsInterface(address account, bytes4 interfaceId) internal view returns (bool) { // query support of both ERC165 as per the spec and support of _interfaceId return supportsERC165(account) && _supportsERC165Interface(account, interfaceId); } /** * @dev Returns true if `account` supports all the interfaces defined in * `interfaceIds`. Support for {IERC165} itself is queried automatically. * * Batch-querying can lead to gas savings by skipping repeated checks for * {IERC165} support. * * See {IERC165-supportsInterface}. */ function supportsAllInterfaces(address account, bytes4[] memory interfaceIds) internal view returns (bool) { // query support of ERC165 itself if (!supportsERC165(account)) { return false; } // query support of each interface in _interfaceIds for (uint256 i = 0; i < interfaceIds.length; i++) { if (!_supportsERC165Interface(account, interfaceIds[i])) { return false; } } // all interfaces supported return true; } /** * @notice Query if a contract implements an interface, does not check ERC165 support * @param account The address of the contract to query for support of an interface * @param interfaceId The interface identifier, as specified in ERC-165 * @return true if the contract at account indicates support of the interface with * identifier interfaceId, false otherwise * @dev Assumes that account contains a contract that supports ERC165, otherwise * the behavior of this method is undefined. This precondition can be checked * with {supportsERC165}. * Interface identification is specified in ERC-165. */ function _supportsERC165Interface(address account, bytes4 interfaceId) private view returns (bool) { // success determines whether the staticcall succeeded and result determines // whether the contract at account indicates support of _interfaceId (bool success, bool result) = _callERC165SupportsInterface(account, interfaceId); return (success && result); } /** * @notice Calls the function with selector 0x01ffc9a7 (ERC165) and suppresses throw * @param account The address of the contract to query for support of an interface * @param interfaceId The interface identifier, as specified in ERC-165 * @return success true if the STATICCALL succeeded, false otherwise * @return result true if the STATICCALL succeeded and the contract at account * indicates support of the interface with identifier interfaceId, false otherwise */ function _callERC165SupportsInterface(address account, bytes4 interfaceId) private view returns (bool, bool) { bytes memory encodedParams = abi.encodeWithSelector(_INTERFACE_ID_ERC165, interfaceId); (bool success, bytes memory result) = account.staticcall{ gas: 30000 }(encodedParams); if (result.length < 32) return (false, false); return (success, abi.decode(result, (bool))); } } // File: @openzeppelin/contracts/introspection/ERC165.sol pragma solidity ^0.6.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.6.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: eth-token-recover/contracts/TokenRecover.sol pragma solidity ^0.6.0; /** * @title TokenRecover * @author Vittorio Minacori (https://github.com/vittominacori) * @dev Allow to recover any ERC20 sent into the contract for error */ contract TokenRecover is Ownable { /** * @dev Remember that only owner can call so be careful when use on contracts generated from other contracts. * @param tokenAddress The token contract address * @param tokenAmount Number of tokens to be sent */ function recoverERC20(address tokenAddress, uint256 tokenAmount) public onlyOwner { IERC20(tokenAddress).transfer(owner(), tokenAmount); } } // File: @openzeppelin/contracts/utils/EnumerableSet.sol pragma solidity ^0.6.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.0.0, only sets of type `address` (`AddressSet`) and `uint256` * (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping (bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { require(set._values.length > index, "EnumerableSet: index out of bounds"); return set._values[index]; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(value))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(value))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(value))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint256(_at(set._inner, index))); } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } } // File: @openzeppelin/contracts/access/AccessControl.sol pragma solidity ^0.6.0; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, _msgSender())); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. */ abstract contract AccessControl is Context { using EnumerableSet for EnumerableSet.AddressSet; using Address for address; struct RoleData { EnumerableSet.AddressSet members; bytes32 adminRole; } mapping (bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view returns (bool) { return _roles[role].members.contains(account); } /** * @dev Returns the number of accounts that have `role`. Can be used * together with {getRoleMember} to enumerate all bearers of a role. */ function getRoleMemberCount(bytes32 role) public view returns (uint256) { return _roles[role].members.length(); } /** * @dev Returns one of the accounts that have `role`. `index` must be a * value between 0 and {getRoleMemberCount}, non-inclusive. * * Role bearers are not sorted in any particular way, and their ordering may * change at any point. * * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure * you perform all queries on the same block. See the following * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post] * for more information. */ function getRoleMember(bytes32 role, uint256 index) public view returns (address) { return _roles[role].members.at(index); } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant"); _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual { require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke"); _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { _roles[role].adminRole = adminRole; } function _grantRole(bytes32 role, address account) private { if (_roles[role].members.add(account)) { emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (_roles[role].members.remove(account)) { emit RoleRevoked(role, account, _msgSender()); } } } // File: contracts/access/Roles.sol pragma solidity ^0.6.0; contract Roles is AccessControl { bytes32 public constant MINTER_ROLE = keccak256("MINTER"); bytes32 public constant OPERATOR_ROLE = keccak256("OPERATOR"); constructor () public { _setupRole(DEFAULT_ADMIN_ROLE, _msgSender()); _setupRole(MINTER_ROLE, _msgSender()); _setupRole(OPERATOR_ROLE, _msgSender()); } modifier onlyMinter() { require(hasRole(MINTER_ROLE, _msgSender()), "Roles: caller does not have the MINTER role"); _; } modifier onlyOperator() { require(hasRole(OPERATOR_ROLE, _msgSender()), "Roles: caller does not have the OPERATOR role"); _; } } // File: contracts/TrenderingAIMv1.sol pragma solidity ^0.6.0; /** * @title Trendering AIM v1 * @author C based on source by https://github.com/vittominacori * @dev Implementation of the Trendering AIM v1 */ contract TrenderingAIMv1 is ERC20Burnable, Roles, TokenRecover { using SafeMath for uint256; using Address for address; using SafeERC20 for IERC20; string public constant BUILT_ON = "context-machine: trendering.org"; address public DEPLOYER; // = "0xf0b699a8559a3ffaf72f1525abe14cebcd1de5ed"; address public STASH; // = "0x7cbcfde7725cdb80f0e38929a363191bc01eae97"; IERC20 public DAI_token; // = (("0x6b175474e89094c44da98b954eedeac495271d0f")); IERC20 public TRND_token; // = (("0xc3dd23a0a854b4f9ae80670f528094e9eb607ccb")); IERC20 public xTRND_token; // = (("0xed5b8ec6b1f60a4b08ef72fb160ffe422064c227")); IERC20 public ETH_TRND_LP_token; // = (("0x5102f3762f1f68d6be9dd5415556466cfb1de6c0")); IERC20 public DAI_TRND_LP_token; // = (("0x36dfc065ae98e97502127d03f727dec74db045ba")); IERC20 public DAI_xTRND_LP_token; // = (("0xc21af022b75132a9b6c8f5edb72d4b9a8313cd6d")); event StartVote(address indexed user, uint256 indexed vote_id, uint256 xTRND_amount); event VoteFor(address indexed user, uint256 indexed vote_id, uint256 xTRND_amount); event VoteAgainst(address indexed user, uint256 indexed vote_id, uint256 xTRND_amount); event EndVoteWon(address indexed user, uint256 indexed vote_id, uint256 xTRND_amount); event EndVoteLost(address indexed user, uint256 indexed vote_id, uint256 xTRND_amount); event Gongi(address indexed user, uint256 DAI_amount); event Bongi(address indexed user, uint256 DAI_amount); event Deposit(address indexed user, uint256 xTRND_amount, uint256 DAI_amount); event Withdraw(address indexed user, uint256 xTRND_amount, uint256 DAI_amount); event Stake(address indexed user, uint256 ETH_TRND_LP_amount, uint256 DAI_TRND_LP_amount, uint256 DAI_xTRND_LP_amount, uint256 DAI_amount, uint256 xTRND_amount); event Unstake(address indexed user, uint256 ETH_TRND_LP_amount, uint256 DAI_TRND_LP_amount, uint256 DAI_xTRND_LP_amount, uint256 DAI_amount, uint256 xTRND_amount); struct TIPs { uint256 xTRND_for; uint256 xTRND_against; } struct Stats { uint256 debt; uint256 amount; } struct Stakes { uint256 DAI_deadline; uint256 ETH_TRND_LP_amount; uint256 ETH_TRND_LP_time; uint256 DAI_TRND_LP_amount; uint256 DAI_TRND_LP_time; uint256 DAI_xTRND_LP_amount; uint256 DAI_xTRND_LP_time; } TIPs[] public daoVotes; Stats[] public aimStats; Stakes public totalStakes; mapping (address => Stakes) public userStakes; uint256 public TRND_requirement; uint256 public ETH_TRND_requirement; uint256 public DAI_TRND_requirement; uint256 public xTRND_submitVote_requirement; uint256 public xTRND_endVote_bonus; uint256 public last_epoch_id; uint256 public last_withdraw_deadline; uint256 public last_vote_id; uint256 public last_vote_deadline; uint256 public xTRND_fees; uint256 public DAI_fees; uint256 public DAI_debt; bool public epoch_active; bool public vote_active; constructor( address _stash, address _DAI_token, address _TRND_token, address _xTRND_token, address _ETH_TRND_LP_token, address _DAI_TRND_LP_token, address _DAI_xTRND_LP_token ) public ERC20("AIM DAI", "aimDAI") { DEPLOYER = msg.sender; STASH = _stash; DAI_token = IERC20(_DAI_token); TRND_token = IERC20(_TRND_token); xTRND_token = IERC20(_xTRND_token); ETH_TRND_LP_token = IERC20(_ETH_TRND_LP_token); DAI_TRND_LP_token = IERC20(_DAI_TRND_LP_token); DAI_xTRND_LP_token = IERC20(_DAI_xTRND_LP_token); TRND_requirement = 130; TRND_requirement = TRND_requirement.mul(1e18); // 130 TRND DAI_TRND_requirement = 170; DAI_TRND_requirement = DAI_TRND_requirement.mul(1e18); // 170 DAI-TRND UniV2 LPs ETH_TRND_requirement = 344; ETH_TRND_requirement = ETH_TRND_requirement.mul(1e16); // 3.44 ETH-TRND UniV2 LPs xTRND_submitVote_requirement = 10000; xTRND_submitVote_requirement = xTRND_submitVote_requirement.mul(1e18); // 10,000 xTRND xTRND_endVote_bonus = 500; xTRND_endVote_bonus = xTRND_endVote_bonus.mul(1e18); // 500 xTRND last_epoch_id = 0; last_withdraw_deadline = block.timestamp; last_vote_id = 0; last_vote_deadline = 0; totalStakes.ETH_TRND_LP_amount = 0; totalStakes.ETH_TRND_LP_time = 0; totalStakes.DAI_TRND_LP_amount = 0; totalStakes.DAI_TRND_LP_time = 0; totalStakes.DAI_xTRND_LP_amount = 0; totalStakes.DAI_xTRND_LP_time = 0; xTRND_fees = 0; DAI_fees = 0; DAI_debt = 0; epoch_active = false; vote_active = false; } function setTRNDreq(uint256 _amount) public onlyOwner { TRND_requirement = _amount; } function setDAI_TRNDreq(uint256 _amount) public onlyOwner { DAI_TRND_requirement = _amount; } function setETH_TRNDreq(uint256 _amount) public onlyOwner { ETH_TRND_requirement = _amount; } function setSubmitVoteReq(uint256 _amount) public onlyOwner { xTRND_submitVote_requirement = _amount; } function setEndVoteBonus(uint256 _amount) public onlyOwner { xTRND_endVote_bonus = _amount; } function startVote() public { require(vote_active == false, "Submitting new TIPs disabled during an active vote."); xTRND_token.safeTransferFrom(address(msg.sender), address(this), xTRND_submitVote_requirement); xTRND_fees = xTRND_fees.add(xTRND_submitVote_requirement); last_vote_id = last_vote_id.add(1); last_vote_deadline = block.timestamp + 604800; // 7 days vote_active = true; daoVotes.push(TIPs({ xTRND_for: 0, xTRND_against: 0 })); emit StartVote(msg.sender, last_vote_id, xTRND_submitVote_requirement); } function voteFor(uint256 _amount) public { require(_amount > 0, "Vote should not be zero."); require(vote_active == true, "Submitting votes requires an active vote."); require(block.timestamp <= last_vote_deadline, "Submitting votes requires a live vote."); xTRND_token.safeTransferFrom(address(msg.sender), address(this), _amount); xTRND_fees = xTRND_fees.add(_amount); uint256 array_vote_id = last_vote_id.sub(1); daoVotes[array_vote_id].xTRND_for = daoVotes[array_vote_id].xTRND_for.add(sqrt(_amount)); emit VoteFor(msg.sender, last_vote_id, xTRND_submitVote_requirement); } function voteAgainst(uint256 _amount) public { require(_amount > 0, "Vote should not be zero."); require(vote_active == true, "Submitting votes requires an active vote."); require(block.timestamp <= last_vote_deadline, "Submitting votes requires a live vote."); xTRND_token.safeTransferFrom(address(msg.sender), address(this), _amount); xTRND_fees = xTRND_fees.add(_amount); uint256 array_vote_id = last_vote_id.sub(1); daoVotes[array_vote_id].xTRND_against = daoVotes[array_vote_id].xTRND_against.add(sqrt(_amount)); emit VoteAgainst(msg.sender, last_vote_id, xTRND_submitVote_requirement); } function endVote () public { require(vote_active == true, "Ending the vote requires an active vote."); require(block.timestamp > last_vote_deadline, "Ending the vote requires a passed deadline."); saferTransfer(xTRND_token, address(msg.sender), xTRND_endVote_bonus); xTRND_fees = xTRND_fees.sub(xTRND_endVote_bonus); uint256 array_vote_id = last_vote_id.sub(1); vote_active = false; if (daoVotes[array_vote_id].xTRND_for > daoVotes[array_vote_id].xTRND_against) { emit EndVoteWon(msg.sender, last_vote_id, xTRND_endVote_bonus); } else { emit EndVoteLost(msg.sender, last_vote_id, xTRND_endVote_bonus); } } // Withdraw DAI for AIM operations within an end-user wallet, commonly called the "rug". // Only available to the contract owner. Only transferable to the Trendering: Deployer. function gongi() public onlyOwner { DAI_debt = DAI_token.balanceOf(address(this)).sub(DAI_fees); DAI_token.safeTransfer(DEPLOYER, DAI_debt); epoch_active = true; last_epoch_id = last_epoch_id.add(1); emit Gongi(DEPLOYER, DAI_debt); } // Deposit DAI from AIM operations in the end-user wallet, commony called the "unrug". // Only available to the contract owner. function bongi(uint256 DAI_amount) public onlyOwner { DAI_token.safeTransferFrom(address(msg.sender), address(this), DAI_amount); aimStats.push(Stats({ debt: DAI_debt, amount: DAI_amount })); if (DAI_debt < DAI_amount) { uint256 DAI_fee = DAI_amount.sub(DAI_debt).div(100); DAI_fees = DAI_fees.add(DAI_fee.mul(2)); saferTransfer(DAI_token, STASH, DAI_fee); } epoch_active = false; last_withdraw_deadline = block.timestamp + 259200; // 3 days emit Bongi(DEPLOYER, DAI_amount); } // Deposit DAI + xTRND to mint aimDAI. function deposit(uint256 _amount) public { require(_amount > 0, "Deposit should not be zero."); require(epoch_active == false, "Deposits disabled during an active epoch."); require(last_withdraw_deadline < block.timestamp, "Deposits disabled during a withdrawal period."); Stakes storage user = userStakes[address(msg.sender)]; require( TRND_token.balanceOf(address(msg.sender)) >= TRND_requirement || DAI_TRND_LP_token.balanceOf(address(msg.sender)) >= DAI_TRND_requirement || ETH_TRND_LP_token.balanceOf(address(msg.sender)) >= ETH_TRND_requirement || user.DAI_TRND_LP_amount >= DAI_TRND_requirement || user.ETH_TRND_LP_amount >= ETH_TRND_requirement, "TRND requirement not satisfied." ); user.DAI_deadline = block.timestamp + 1209600; // 14 days deposit lock xTRND_token.safeTransferFrom(address(msg.sender), address(this), _amount); DAI_token.safeTransferFrom(address(msg.sender), address(this), _amount); _mint(address(msg.sender), _amount); emit Deposit(msg.sender, _amount, _amount); } // Burn aimDAI to get DAI + xTRND. There is a 2% withdrawal fee on xTRND. function withdraw(uint256 _amount) public { require(_amount > 0, "Withdraw should not be zero."); require(_amount <= balanceOf(address(msg.sender)), "Withdraw should not exceed allocation."); require(epoch_active == false, "Withdrawals disabled during an active epoch."); Stakes storage user = userStakes[address(msg.sender)]; require(user.DAI_deadline <= block.timestamp, "Deposit still locked until 14 days have passed."); uint256 xTRND_fee = _amount.div(100); uint256 xTRND_share = _amount.sub(xTRND_fee.mul(2)); saferTransfer(xTRND_token, address(msg.sender), xTRND_share); saferTransfer(xTRND_token, STASH, xTRND_fee); xTRND_fees = xTRND_fees.add(xTRND_fee); uint256 aimDAI_supply = totalSupply(); uint256 DAI_total = DAI_token.balanceOf(address(this)).sub(DAI_fees); uint256 DAI_profits = 0; uint256 DAI_share = 0; if (aimDAI_supply < DAI_total) { DAI_profits = DAI_total.sub(aimDAI_supply); DAI_share = _amount.add(DAI_profits.mul(_amount).div(aimDAI_supply)); } else { DAI_share = DAI_total.mul(_amount).div(aimDAI_supply); } saferTransfer(DAI_token, address(msg.sender), DAI_share); _burn(address(msg.sender), _amount); emit Withdraw(msg.sender, xTRND_share, DAI_share); } function checkDAIapy() public view returns (uint256) { require(last_epoch_id > 0, "Epoch id should not be zero."); Stats storage last_stats = aimStats[last_epoch_id.sub(1)]; uint256 last_apy = 0; if (last_stats.debt < last_stats.amount && last_stats.debt > 0) { last_apy = last_stats.amount.mul(100).div(last_stats.debt); } return last_apy; } function checkDAIprofits() public view returns (uint256) { require(last_epoch_id > 0, "Epoch id should not be zero."); Stats storage last_stats = aimStats[last_epoch_id.sub(1)]; uint256 last_profits = 0; if (last_stats.debt < last_stats.amount && last_stats.debt > 0) { last_profits = last_stats.amount.sub(last_stats.debt); } return last_profits; } function stake_ETH_LPs(uint256 ETH_TRND_LP_amount) public { Stakes storage user = userStakes[address(msg.sender)]; uint256 this_time = block.timestamp; uint256 frame_time = 2678400; // 31 days if (user.ETH_TRND_LP_amount > 0 && user.ETH_TRND_LP_time > 0 && xTRND_fees > 0) { uint256 user_timeshare = this_time.sub(user.ETH_TRND_LP_time); if (user_timeshare > frame_time) { user_timeshare = frame_time; } uint256 xTRND_reward = xTRND_fees.mul(user.ETH_TRND_LP_amount).div(totalStakes.ETH_TRND_LP_amount).mul(user_timeshare).div(frame_time); xTRND_fees = xTRND_fees.sub(xTRND_reward); saferTransfer(xTRND_token, address(msg.sender), xTRND_reward); user.ETH_TRND_LP_time = this_time; } if (ETH_TRND_LP_amount > 0) { ETH_TRND_LP_token.safeTransferFrom(address(msg.sender), address(this), ETH_TRND_LP_amount); user.ETH_TRND_LP_time = this_time; user.ETH_TRND_LP_amount = user.ETH_TRND_LP_amount.add(ETH_TRND_LP_amount); totalStakes.ETH_TRND_LP_amount = totalStakes.ETH_TRND_LP_amount.add(ETH_TRND_LP_amount); } } function stake_DAI_LPs(uint256 DAI_TRND_LP_amount, uint256 DAI_xTRND_LP_amount) public { Stakes storage user = userStakes[address(msg.sender)]; uint256 DAI_reward = 0; uint256 DAI_fees_split = DAI_fees.div(2); uint256 this_time = block.timestamp; uint256 frame_time = 2678400; // 31 days if (user.DAI_TRND_LP_amount > 0 && user.DAI_TRND_LP_time > 0 && DAI_fees_split > 0) { uint256 user_timeshare = this_time.sub(user.DAI_TRND_LP_time); if (user_timeshare > frame_time) { user_timeshare = frame_time; } uint256 DAI_reward_part = DAI_fees_split.mul(user.DAI_TRND_LP_amount).div(totalStakes.DAI_TRND_LP_amount).mul(user_timeshare).div(frame_time); DAI_reward = DAI_reward.add(DAI_reward_part); user.DAI_TRND_LP_time = this_time; } if (user.DAI_xTRND_LP_amount > 0 && user.DAI_xTRND_LP_time > 0 && DAI_fees_split > 0) { uint256 user_timeshare = this_time.sub(user.DAI_xTRND_LP_time); if (user_timeshare > frame_time) { user_timeshare = frame_time; } uint256 DAI_reward_part = DAI_fees_split.mul(user.DAI_xTRND_LP_amount).div(totalStakes.DAI_xTRND_LP_amount).mul(user_timeshare).div(frame_time); DAI_reward = DAI_reward.add(DAI_reward_part); user.DAI_xTRND_LP_time = this_time; } if (DAI_TRND_LP_amount > 0) { DAI_TRND_LP_token.safeTransferFrom(address(msg.sender), address(this), DAI_TRND_LP_amount); user.DAI_TRND_LP_time = this_time; user.DAI_TRND_LP_amount = user.DAI_TRND_LP_amount.add(DAI_TRND_LP_amount); totalStakes.DAI_TRND_LP_amount = totalStakes.DAI_TRND_LP_amount.add(DAI_TRND_LP_amount); } if (DAI_xTRND_LP_amount > 0) { DAI_xTRND_LP_token.safeTransferFrom(address(msg.sender), address(this), DAI_xTRND_LP_amount); user.DAI_xTRND_LP_time = this_time; user.DAI_xTRND_LP_amount = user.DAI_xTRND_LP_amount.add(DAI_xTRND_LP_amount); totalStakes.DAI_xTRND_LP_amount = totalStakes.DAI_xTRND_LP_amount.add(DAI_xTRND_LP_amount); } if (DAI_reward > 0) { saferTransfer(DAI_token, address(msg.sender), DAI_reward); DAI_fees = DAI_fees.sub(DAI_reward); } } function unstake_ETH_LPs(uint256 ETH_TRND_LP_amount) public { Stakes storage user = userStakes[address(msg.sender)]; uint256 this_time = block.timestamp; uint256 frame_time = 2678400; // 31 days if (user.ETH_TRND_LP_amount > 0 && user.ETH_TRND_LP_time > 0 && xTRND_fees > 0) { uint256 user_timeshare = this_time.sub(user.ETH_TRND_LP_time); if (user_timeshare > frame_time) { user_timeshare = frame_time; } uint256 xTRND_reward = xTRND_fees.mul(user.ETH_TRND_LP_amount).div(totalStakes.ETH_TRND_LP_amount).mul(user_timeshare).div(frame_time); xTRND_fees = xTRND_fees.sub(xTRND_reward); saferTransfer(xTRND_token, address(msg.sender), xTRND_reward); user.ETH_TRND_LP_time = this_time; } if (ETH_TRND_LP_amount > 0) { require(ETH_TRND_LP_amount <= user.ETH_TRND_LP_amount, "Unstake should not exceed your stake."); saferTransfer(ETH_TRND_LP_token, address(msg.sender), ETH_TRND_LP_amount); user.ETH_TRND_LP_time = this_time; user.ETH_TRND_LP_amount = user.ETH_TRND_LP_amount.sub(ETH_TRND_LP_amount); totalStakes.ETH_TRND_LP_amount = totalStakes.ETH_TRND_LP_amount.sub(ETH_TRND_LP_amount); } } function unstake_DAI_LPs(uint256 DAI_TRND_LP_amount, uint256 DAI_xTRND_LP_amount) public { Stakes storage user = userStakes[address(msg.sender)]; uint256 DAI_reward = 0; uint256 DAI_fees_split = DAI_fees.div(2); uint256 this_time = block.timestamp; uint256 frame_time = 2678400; // 31 days if (user.DAI_TRND_LP_amount > 0 && user.DAI_TRND_LP_time > 0 && DAI_fees_split > 0) { uint256 user_timeshare = this_time.sub(user.DAI_TRND_LP_time); if (user_timeshare > frame_time) { user_timeshare = frame_time; } uint256 DAI_reward_part = DAI_fees_split.mul(user.DAI_TRND_LP_amount).div(totalStakes.DAI_TRND_LP_amount).mul(user_timeshare).div(frame_time); DAI_reward = DAI_reward.add(DAI_reward_part); user.DAI_TRND_LP_time = this_time; } if (user.DAI_xTRND_LP_amount > 0 && user.DAI_xTRND_LP_time > 0 && DAI_fees_split > 0) { uint256 user_timeshare = this_time.sub(user.DAI_xTRND_LP_time); if (user_timeshare > frame_time) { user_timeshare = frame_time; } uint256 DAI_reward_part = DAI_fees_split.mul(user.DAI_xTRND_LP_amount).div(totalStakes.DAI_xTRND_LP_amount).mul(user_timeshare).div(frame_time); DAI_reward = DAI_reward.add(DAI_reward_part); user.DAI_xTRND_LP_time = this_time; } if (DAI_TRND_LP_amount > 0) { require(DAI_TRND_LP_amount <= user.DAI_TRND_LP_amount, "Unstake should not exceed your stake."); saferTransfer(DAI_TRND_LP_token, address(msg.sender), DAI_TRND_LP_amount); user.DAI_TRND_LP_time = this_time; user.DAI_TRND_LP_amount = user.DAI_TRND_LP_amount.sub(DAI_TRND_LP_amount); totalStakes.DAI_TRND_LP_amount = totalStakes.DAI_TRND_LP_amount.sub(DAI_TRND_LP_amount); } if (DAI_xTRND_LP_amount > 0) { require(DAI_xTRND_LP_amount <= user.DAI_xTRND_LP_amount, "Unstake should not exceed your stake."); saferTransfer(DAI_xTRND_LP_token, address(msg.sender), DAI_xTRND_LP_amount); user.DAI_xTRND_LP_time = this_time; user.DAI_xTRND_LP_amount = user.DAI_xTRND_LP_amount.sub(DAI_xTRND_LP_amount); totalStakes.DAI_xTRND_LP_amount = totalStakes.DAI_xTRND_LP_amount.sub(DAI_xTRND_LP_amount); } if (DAI_reward > 0) { saferTransfer(DAI_token, address(msg.sender), DAI_reward); DAI_fees = DAI_fees.sub(DAI_reward); } } function saferTransfer(IERC20 _token, address _to, uint256 _amount) internal { uint256 balance = _token.balanceOf(address(this)); if (_amount > balance) { _token.safeTransfer(_to, balance); } else { _token.safeTransfer(_to, _amount); } } function sqrt(uint y) internal pure returns (uint z) { if (y > 3) { z = y; uint x = y / 2 + 1; while (x < z) { z = x; x = (y / x + x) / 2; } } else if (y != 0) { z = 1; } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_stash","type":"address"},{"internalType":"address","name":"_DAI_token","type":"address"},{"internalType":"address","name":"_TRND_token","type":"address"},{"internalType":"address","name":"_xTRND_token","type":"address"},{"internalType":"address","name":"_ETH_TRND_LP_token","type":"address"},{"internalType":"address","name":"_DAI_TRND_LP_token","type":"address"},{"internalType":"address","name":"_DAI_xTRND_LP_token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"DAI_amount","type":"uint256"}],"name":"Bongi","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"xTRND_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"DAI_amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"vote_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"xTRND_amount","type":"uint256"}],"name":"EndVoteLost","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"vote_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"xTRND_amount","type":"uint256"}],"name":"EndVoteWon","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"DAI_amount","type":"uint256"}],"name":"Gongi","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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"ETH_TRND_LP_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"DAI_TRND_LP_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"DAI_xTRND_LP_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"DAI_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"xTRND_amount","type":"uint256"}],"name":"Stake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"vote_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"xTRND_amount","type":"uint256"}],"name":"StartVote","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"ETH_TRND_LP_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"DAI_TRND_LP_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"DAI_xTRND_LP_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"DAI_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"xTRND_amount","type":"uint256"}],"name":"Unstake","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"vote_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"xTRND_amount","type":"uint256"}],"name":"VoteAgainst","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"vote_id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"xTRND_amount","type":"uint256"}],"name":"VoteFor","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"xTRND_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"DAI_amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"BUILT_ON","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DAI_TRND_LP_token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DAI_TRND_requirement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DAI_debt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DAI_fees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DAI_token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DAI_xTRND_LP_token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEPLOYER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ETH_TRND_LP_token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ETH_TRND_requirement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STASH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRND_requirement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TRND_token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"aimStats","outputs":[{"internalType":"uint256","name":"debt","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"DAI_amount","type":"uint256"}],"name":"bongi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkDAIapy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkDAIprofits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"daoVotes","outputs":[{"internalType":"uint256","name":"xTRND_for","type":"uint256"},{"internalType":"uint256","name":"xTRND_against","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endVote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"epoch_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gongi","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"last_epoch_id","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"last_vote_deadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"last_vote_id","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"last_withdraw_deadline","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setDAI_TRNDreq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setETH_TRNDreq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setEndVoteBonus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setSubmitVoteReq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setTRNDreq","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"DAI_TRND_LP_amount","type":"uint256"},{"internalType":"uint256","name":"DAI_xTRND_LP_amount","type":"uint256"}],"name":"stake_DAI_LPs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ETH_TRND_LP_amount","type":"uint256"}],"name":"stake_ETH_LPs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startVote","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakes","outputs":[{"internalType":"uint256","name":"DAI_deadline","type":"uint256"},{"internalType":"uint256","name":"ETH_TRND_LP_amount","type":"uint256"},{"internalType":"uint256","name":"ETH_TRND_LP_time","type":"uint256"},{"internalType":"uint256","name":"DAI_TRND_LP_amount","type":"uint256"},{"internalType":"uint256","name":"DAI_TRND_LP_time","type":"uint256"},{"internalType":"uint256","name":"DAI_xTRND_LP_amount","type":"uint256"},{"internalType":"uint256","name":"DAI_xTRND_LP_time","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"DAI_TRND_LP_amount","type":"uint256"},{"internalType":"uint256","name":"DAI_xTRND_LP_amount","type":"uint256"}],"name":"unstake_DAI_LPs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ETH_TRND_LP_amount","type":"uint256"}],"name":"unstake_ETH_LPs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userStakes","outputs":[{"internalType":"uint256","name":"DAI_deadline","type":"uint256"},{"internalType":"uint256","name":"ETH_TRND_LP_amount","type":"uint256"},{"internalType":"uint256","name":"ETH_TRND_LP_time","type":"uint256"},{"internalType":"uint256","name":"DAI_TRND_LP_amount","type":"uint256"},{"internalType":"uint256","name":"DAI_TRND_LP_time","type":"uint256"},{"internalType":"uint256","name":"DAI_xTRND_LP_amount","type":"uint256"},{"internalType":"uint256","name":"DAI_xTRND_LP_time","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"voteAgainst","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"voteFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vote_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"xTRND_endVote_bonus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xTRND_fees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xTRND_submitVote_requirement","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"xTRND_token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620047b9380380620047b9833981810160405260e08110156200003757600080fd5b5080516020808301516040808501516060860151608087015160a088015160c09098015184518086018652600781526641494d2044414960c81b8189019081528651808801909752600687526561696d44414960d01b9887019890985280519899969894979396929592949193909291620000b5916003916200050a565b508051620000cb9060049060208401906200050a565b50506005805460ff1916601217905550620001036000620000f46001600160e01b036200037116565b6001600160e01b036200037616565b604080516526a4a72a22a960d11b815290519081900360060190206200013690620000f46001600160e01b036200037116565b604080516727a822a920aa27a960c11b815290519081900360080190206200016b90620000f46001600160e01b036200037116565b6000620001806001600160e01b036200037116565b600780546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35060088054336001600160a01b0319918216179091556009805482166001600160a01b038a811691909117909155600a80548316898316179055600b80548316888316179055600c80548316878316179055600d80548316868316179055600e80548316858316179055600f80549092169083161790556082601a8190556200026b90670de0b6b3a76400006200038f602090811b620032e617901c565b601a5560aa601c8190556200029590670de0b6b3a76400006200038f602090811b620032e617901c565b601c55610158601b819055620002bf90662386f26fc100006200038f602090811b620032e617901c565b601b55612710601d819055620002ea90670de0b6b3a76400006200038f602090811b620032e617901c565b601d556101f4601e8190556200031590670de0b6b3a76400006200038f602090811b620032e617901c565b601e5550506000601f81905542602055602181905560228190556013819055601481905560158190556016819055601781905560188190556023819055602481905560255550506026805461ffff1916905550620005ac915050565b335b90565b6200038b82826001600160e01b03620003f616565b5050565b600082620003a057506000620003f0565b82820282848281620003ae57fe5b0414620003ed5760405162461bcd60e51b8152600401808060200182810382526021815260200180620047986021913960400191505060405180910390fd5b90505b92915050565b60008281526006602090815260409091206200041d918390620039046200047a821b17901c565b156200038b57620004366001600160e01b036200037116565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000620003ed836001600160a01b0384166001600160e01b036200049a16565b6000620004b183836001600160e01b03620004f216565b620004e957508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620003f0565b506000620003f0565b60009081526001919091016020526040902054151590565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200054d57805160ff19168380011785556200057d565b828001600101855582156200057d579182015b828111156200057d57825182559160200191906001019062000560565b506200058b9291506200058f565b5090565b6200037391905b808211156200058b576000815560010162000596565b6141dc80620005bc6000396000f3fe608060405234801561001057600080fd5b50600436106104335760003560e01c8063867dfdce11610236578063bae5dc411161013b578063d547741f116100c3578063df25e34d11610087578063df25e34d14610b0b578063e3faaacb14610b2e578063e4c342c314610b36578063f2fde38b14610b3e578063f5b541a614610b6457610433565b8063d547741f14610a84578063d581589d14610ab0578063d860309314610ab8578063d96f159614610ad5578063dd62ed3e14610add57610433565b8063c32b51621161010a578063c32b516214610a47578063c62fab8914610a4f578063ca15c87314610a57578063d189b99714610a74578063d539139314610a7c57610433565b8063bae5dc4114610a12578063bb46a5d014610a2f578063bf9befb114610a37578063c1b8411a14610a3f57610433565b8063a217fddf116101be578063a9c272f01161018d578063a9c272f0146109ab578063aa424323146109c8578063b6b55f25146109e5578063b922394614610a02578063b931bb5814610a0a57610433565b8063a217fddf1461092e578063a457c2d714610936578063a9059cbb14610962578063a93343641461098e57610433565b80638da5cb5b116102055780638da5cb5b146108715780638da7ad23146108795780639010d07c146108d757806391d14854146108fa57806395d89b411461092657610433565b8063867dfdce1461080357806386a505351461080b5780638980f11f146108285780638c22bc271461085457610433565b806342966c681161033c5780636610340f116102c4578063750e443a11610293578063750e443a14610772578063778e89ab1461078f57806377b9d2d21461079757806379cc6790146107ba5780637c14d051146107e657610433565b80636610340f14610734578063704754661461073c57806370a0823114610744578063715018a61461076a57610433565b80634b6447371161030b5780634b644737146106e25780634bb1d3bc146106ff5780634c0a6af0146107075780634e2e54271461070f578063614590b41461071757610433565b806342966c68146106ad578063449e3614146106ca57806346b38ea2146106d25780634702528a146106da57610433565b80632e1a7d4d116103bf57806336568abe1161038e57806336568abe1461063d5780633770e0121461066957806339509351146106715780633bac0f9b1461069d5780633c1519b2146106a557610433565b80632e1a7d4d146105cc5780632f2ff15d146105eb578063313ce5671461061757806331dc7cc51461063557610433565b80631d2de6ba116104065780631d2de6ba1461051757806323817afb1461053b57806323b872dd14610571578063248a9ca3146105a75780632c686772146105c457610433565b806306fdde0314610438578063095ea7b3146104b55780630c5c8d41146104f557806318160ddd1461050f575b600080fd5b610440610b6c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561047a578181015183820152602001610462565b50505050905090810190601f1680156104a75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104e1600480360360408110156104cb57600080fd5b506001600160a01b038135169060200135610c02565b604080519115158252519081900360200190f35b6104fd610c20565b60408051918252519081900360200190f35b6104fd610c26565b61051f610c2c565b604080516001600160a01b039092168252519081900360200190f35b6105586004803603602081101561055157600080fd5b5035610c3b565b6040805192835260208301919091528051918290030190f35b6104e16004803603606081101561058757600080fd5b506001600160a01b03813581169160208101359091169060400135610c66565b6104fd600480360360208110156105bd57600080fd5b5035610cf3565b6104fd610d0b565b6105e9600480360360208110156105e257600080fd5b5035610d11565b005b6105e96004803603604081101561060157600080fd5b50803590602001356001600160a01b031661102d565b61061f611099565b6040805160ff9092168252519081900360200190f35b61051f6110a2565b6105e96004803603604081101561065357600080fd5b50803590602001356001600160a01b03166110b1565b61051f611112565b6104e16004803603604081101561068757600080fd5b506001600160a01b038135169060200135611121565b61051f611175565b61051f611184565b6105e9600480360360208110156106c357600080fd5b5035611193565b6104fd6111a7565b6104406111ad565b6104fd6111e6565b6105e9600480360360208110156106f857600080fd5b50356111ec565b6104fd611249565b6105e961124f565b6104e16113b8565b6105e96004803603602081101561072d57600080fd5b50356113c6565b6104fd611423565b6105e9611429565b6104fd6004803603602081101561075a57600080fd5b50356001600160a01b0316611567565b6105e9611582565b6105e96004803603602081101561078857600080fd5b5035611624565b6104fd6117f3565b6105e9600480360360408110156107ad57600080fd5b50803590602001356118c1565b6105e9600480360360408110156107d057600080fd5b506001600160a01b038135169060200135611b99565b6105e9600480360360208110156107fc57600080fd5b5035611bf9565b6104fd611c56565b6105e96004803603602081101561082157600080fd5b5035611c5c565b6105e96004803603604081101561083e57600080fd5b506001600160a01b038135169060200135611e28565b6105e96004803603602081101561086a57600080fd5b5035611f17565b61051f6120cd565b61089f6004803603602081101561088f57600080fd5b50356001600160a01b03166120dc565b604080519788526020880196909652868601949094526060860192909252608085015260a084015260c0830152519081900360e00190f35b61051f600480360360408110156108ed57600080fd5b5080359060200135612119565b6104e16004803603604081101561091057600080fd5b50803590602001356001600160a01b031661213e565b61044061215c565b6104fd6121bd565b6104e16004803603604081101561094c57600080fd5b506001600160a01b0381351690602001356121c2565b6104e16004803603604081101561097857600080fd5b506001600160a01b038135169060200135612230565b6105e9600480360360208110156109a457600080fd5b5035612244565b6105e9600480360360208110156109c157600080fd5b50356122a1565b610558600480360360208110156109de57600080fd5b50356123ce565b6105e9600480360360208110156109fb57600080fd5b50356123db565b6105e9612742565b61051f6128ea565b6105e960048036036020811015610a2857600080fd5b50356128f9565b6104fd612a59565b61089f612a5f565b61051f612a77565b61051f612a86565b6104fd612a95565b6104fd60048036036020811015610a6d57600080fd5b5035612a9b565b6104e1612ab2565b6104fd612abb565b6105e960048036036040811015610a9a57600080fd5b50803590602001356001600160a01b0316612ad9565b6104fd612b32565b6105e960048036036020811015610ace57600080fd5b5035612b38565b6104fd612b95565b6104fd60048036036040811015610af357600080fd5b506001600160a01b0381358116916020013516612b9b565b6105e960048036036040811015610b2157600080fd5b5080359060200135612bc6565b6104fd612dd9565b6104fd612e97565b6105e960048036036020811015610b5457600080fd5b50356001600160a01b0316612e9d565b6104fd612f96565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bf85780601f10610bcd57610100808354040283529160200191610bf8565b820191906000526020600020905b815481529060010190602001808311610bdb57829003601f168201915b5050505050905090565b6000610c16610c0f612fb6565b8484612fba565b5060015b92915050565b60255481565b60025490565b600b546001600160a01b031681565b60108181548110610c4857fe5b60009182526020909120600290910201805460019091015490915082565b6000610c738484846130a6565b610ce984610c7f612fb6565b610ce485604051806060016040528060288152602001613fe2602891396001600160a01b038a16600090815260016020526040812090610cbd612fb6565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61320d16565b612fba565b5060019392505050565b6000818152600660205260409020600201545b919050565b60205481565b60008111610d66576040805162461bcd60e51b815260206004820152601c60248201527f57697468647261772073686f756c64206e6f74206265207a65726f2e00000000604482015290519081900360640190fd5b610d6f33611567565b811115610dad5760405162461bcd60e51b81526004018080602001828103825260268152602001806141086026913960400191505060405180910390fd5b60265460ff1615610def5760405162461bcd60e51b815260040180806020018281038252602c815260200180613e63602c913960400191505060405180910390fd5b3360009081526019602052604090208054421015610e3e5760405162461bcd60e51b815260040180806020018281038252602f815260200180613e34602f913960400191505060405180910390fd5b6000610e5183606463ffffffff6132a416565b90506000610e76610e6983600263ffffffff6132e616565b859063ffffffff61333f16565b600c54909150610e90906001600160a01b03163383613381565b600c54600954610ead916001600160a01b03908116911684613381565b602354610ec0908363ffffffff61343a16565b6023556000610ecd610c26565b60248054600a54604080516370a0823160e01b81523060048201529051949550600094610f5b946001600160a01b03909316926370a0823192808201926020929091829003018186803b158015610f2357600080fd5b505afa158015610f37573d6000803e3d6000fd5b505050506040513d6020811015610f4d57600080fd5b50519063ffffffff61333f16565b905060008082841015610fb157610f78838563ffffffff61333f16565b9150610faa610f9d85610f91858c63ffffffff6132e616565b9063ffffffff6132a416565b899063ffffffff61343a16565b9050610fc8565b610fc584610f91858b63ffffffff6132e616565b90505b600a54610fdf906001600160a01b03163383613381565b610fe93389613494565b6040805186815260208101839052815133927ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568928290030190a25050505050505050565b6000828152600660205260409020600201546110509061104b612fb6565b61213e565b61108b5760405162461bcd60e51b815260040180806020018281038252602f815260200180613d9b602f913960400191505060405180910390fd5b611095828261359c565b5050565b60055460ff1690565b6009546001600160a01b031681565b6110b9612fb6565b6001600160a01b0316816001600160a01b0316146111085760405162461bcd60e51b815260040180806020018281038252602f815260200180614178602f913960400191505060405180910390fd5b611095828261360b565b600e546001600160a01b031681565b6000610c1661112e612fb6565b84610ce4856001600061113f612fb6565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61343a16565b600c546001600160a01b031681565b600a546001600160a01b031681565b6111a461119e612fb6565b82613494565b50565b601e5481565b6040518060400160405280601f81526020017f636f6e746578742d6d616368696e653a207472656e646572696e672e6f72670081525081565b60235481565b6111f4612fb6565b6007546001600160a01b03908116911614611244576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b601e55565b60245481565b602654610100900460ff16156112965760405162461bcd60e51b8152600401808060200182810382526033815260200180613ede6033913960400191505060405180910390fd5b601d54600c546112bb916001600160a01b03909116903390309063ffffffff61367a16565b601d546023546112d09163ffffffff61343a16565b6023556021546112e790600163ffffffff61343a16565b602190815562093a8042016022556026805461ff00191661010017905560408051808201825260008082526020808301828152601080546001810182559352925160029092027f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67281019290925591517f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae673909101559154601d5482519081529151909233927fe932ae7c2da6c800c366df80f38b6dcbc7b01f471a9a86a58225da0cf163abef929081900390910190a3565b602654610100900460ff1681565b6113ce612fb6565b6007546001600160a01b0390811691161461141e576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b601c55565b601c5481565b611431612fb6565b6007546001600160a01b03908116911614611481576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b60248054600a54604080516370a0823160e01b815230600482015290516114d1946001600160a01b03909316926370a0823192808201926020929091829003018186803b158015610f2357600080fd5b6025819055600854600a546114fc926001600160a01b0391821692919091169063ffffffff6136d416565b6026805460ff19166001908117909155601f5461151e9163ffffffff61343a16565b601f5560085460255460408051918252516001600160a01b03909216917f93e3409dcf09174e5c4bd117a048e08dc6137c30bb74850ac1c309f2fc6c0d2a9181900360200190a2565b6001600160a01b031660009081526020819052604090205490565b61158a612fb6565b6007546001600160a01b039081169116146115da576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b60008111611674576040805162461bcd60e51b81526020600482015260186024820152772b37ba329039b437bab632103737ba103132903d32b9379760411b604482015290519081900360640190fd5b60265460ff6101009091041615156001146116c05760405162461bcd60e51b8152600401808060200182810382526029815260200180613eb56029913960400191505060405180910390fd5b6022544211156117015760405162461bcd60e51b81526004018080602001828103825260268152602001806140b86026913960400191505060405180910390fd5b600c5461171f906001600160a01b031633308463ffffffff61367a16565b602354611732908263ffffffff61343a16565b60235560215460009061174c90600163ffffffff61333f16565b905061178761175a83613726565b6010838154811061176757fe5b90600052602060002090600202016001015461343a90919063ffffffff16565b6010828154811061179457fe5b906000526020600020906002020160010181905550602154336001600160a01b03167f311ff75c9b8b62f3496c6ddae5a509faac426283cc76f6d0c71722f5afbc3632601d546040518082815260200191505060405180910390a35050565b600080601f541161184b576040805162461bcd60e51b815260206004820152601c60248201527f45706f63682069642073686f756c64206e6f74206265207a65726f2e00000000604482015290519081900360640190fd5b600060116118656001601f5461333f90919063ffffffff16565b8154811061186f57fe5b60009182526020822060016002909202019081015481549193501180156118965750815415155b156118bb57815460018301546118b89190610f9190606463ffffffff6132e616565b90505b91505090565b33600090815260196020526040812060245490919081906118e990600263ffffffff6132a416565b600384015490915042906228de80901580159061190a575060008560040154115b80156119165750600083115b1561199557600061193486600401548461333f90919063ffffffff16565b9050818111156119415750805b600061197783610f918461196b601260030154610f918d600301548c6132e690919063ffffffff16565b9063ffffffff6132e616565b9050611989868263ffffffff61343a16565b60048801859055955050505b600085600501541180156119ad575060008560060154115b80156119b95750600083115b15611a2c5760006119d786600601548461333f90919063ffffffff16565b9050818111156119e45750805b6000611a0e83610f918461196b601260050154610f918d600501548c6132e690919063ffffffff16565b9050611a20868263ffffffff61343a16565b60068801859055955050505b8615611ac4578460030154871115611a755760405162461bcd60e51b815260040180806020018281038252602581526020018061412e6025913960400191505060405180910390fd5b600e54611a8c906001600160a01b03163389613381565b600485018290556003850154611aa8908863ffffffff61333f16565b6003860155601554611ac0908863ffffffff61333f16565b6015555b8515611b5c578460050154861115611b0d5760405162461bcd60e51b815260040180806020018281038252602581526020018061412e6025913960400191505060405180910390fd5b600f54611b24906001600160a01b03163388613381565b600685018290556005850154611b40908763ffffffff61333f16565b6005860155601754611b58908763ffffffff61333f16565b6017555b8315611b9057600a54611b79906001600160a01b03163386613381565b602454611b8c908563ffffffff61333f16565b6024555b50505050505050565b6000611bd68260405180606001604052806024815260200161402a60249139611bc986611bc4612fb6565b612b9b565b919063ffffffff61320d16565b9050611bea83611be4612fb6565b83612fba565b611bf48383613494565b505050565b611c01612fb6565b6007546001600160a01b03908116911614611c51576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b601b55565b601a5481565b60008111611cac576040805162461bcd60e51b81526020600482015260186024820152772b37ba329039b437bab632103737ba103132903d32b9379760411b604482015290519081900360640190fd5b60265460ff610100909104161515600114611cf85760405162461bcd60e51b8152600401808060200182810382526029815260200180613eb56029913960400191505060405180910390fd5b602254421115611d395760405162461bcd60e51b81526004018080602001828103825260268152602001806140b86026913960400191505060405180910390fd5b600c54611d57906001600160a01b031633308463ffffffff61367a16565b602354611d6a908263ffffffff61343a16565b602355602154600090611d8490600163ffffffff61333f16565b9050611dbc611d9283613726565b60108381548110611d9f57fe5b60009182526020909120600290910201549063ffffffff61343a16565b60108281548110611dc957fe5b906000526020600020906002020160000181905550602154336001600160a01b03167fbf6d7c14b84d101e44b1ec3c720a31c869a89a84f01e6f1612d0497fc3eca7a9601d546040518082815260200191505060405180910390a35050565b611e30612fb6565b6007546001600160a01b03908116911614611e80576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b816001600160a01b031663a9059cbb611e976120cd565b836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015611ee757600080fd5b505af1158015611efb573d6000803e3d6000fd5b505050506040513d6020811015611f1157600080fd5b50505050565b611f1f612fb6565b6007546001600160a01b03908116911614611f6f576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b600a54611f8d906001600160a01b031633308463ffffffff61367a16565b60408051808201909152602580548252602082018381526011805460018101825560009190915292517f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c68600290940293840155517f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c69909201919091555481111561207457600061202d6064610f916025548561333f90919063ffffffff16565b905061205261204382600263ffffffff6132e616565b6024549063ffffffff61343a16565b602455600a54600954612072916001600160a01b03908116911683613381565b505b6026805460ff191690556203f480420160209081556008546040805184815290516001600160a01b03909216927ffc4502a03d6b9272fc99e88d27a7c6d5b9f56ea7e7225c358e6eedbada82328692918290030190a250565b6007546001600160a01b031690565b6019602052600090815260409020805460018201546002830154600384015460048501546005860154600690960154949593949293919290919087565b6000828152600660205260408120612137908363ffffffff61377716565b9392505050565b6000828152600660205260408120612137908363ffffffff61378316565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bf85780601f10610bcd57610100808354040283529160200191610bf8565b600081565b6000610c166121cf612fb6565b84610ce48560405180606001604052806025815260200161415360259139600160006121f9612fb6565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61320d16565b6000610c1661223d612fb6565b84846130a6565b61224c612fb6565b6007546001600160a01b0390811691161461229c576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b601d55565b336000908152601960205260409020600181015442906228de8090158015906122ce575060008360020154115b80156122dc57506000602354115b1561236d5760006122fa84600201548461333f90919063ffffffff16565b9050818111156123075750805b600061233383610f918461196b601260010154610f918b600101546023546132e690919063ffffffff16565b602354909150612349908263ffffffff61333f16565b602355600c54612363906001600160a01b03163383613381565b5050600283018290555b8315611f1157600d54612391906001600160a01b031633308763ffffffff61367a16565b6002830182905560018301546123ad908563ffffffff61343a16565b60018401556013546123c5908563ffffffff61343a16565b60135550505050565b60118181548110610c4857fe5b60008111612430576040805162461bcd60e51b815260206004820152601b60248201527f4465706f7369742073686f756c64206e6f74206265207a65726f2e0000000000604482015290519081900360640190fd5b60265460ff16156124725760405162461bcd60e51b8152600401808060200182810382526029815260200180613d2d6029913960400191505060405180910390fd5b42602054106124b25760405162461bcd60e51b815260040180806020018281038252602d815260200180613f69602d913960400191505060405180910390fd5b33600081815260196020908152604091829020601a54600b5484516370a0823160e01b815260048101969096529351919490936001600160a01b0316926370a0823192602480840193829003018186803b15801561250f57600080fd5b505afa158015612523573d6000803e3d6000fd5b505050506040513d602081101561253957600080fd5b50511015806125c05750601c54600e54604080516370a0823160e01b815233600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561259157600080fd5b505afa1580156125a5573d6000803e3d6000fd5b505050506040513d60208110156125bb57600080fd5b505110155b806126435750601b54600d54604080516370a0823160e01b815233600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561261457600080fd5b505afa158015612628573d6000803e3d6000fd5b505050506040513d602081101561263e57600080fd5b505110155b806126545750601c54816003015410155b806126655750601b54816001015410155b6126b6576040805162461bcd60e51b815260206004820152601f60248201527f54524e4420726571756972656d656e74206e6f74207361746973666965642e00604482015290519081900360640190fd5b6212750042018155600c546126dc906001600160a01b031633308563ffffffff61367a16565b600a546126fa906001600160a01b031633308563ffffffff61367a16565b6127043383613798565b6040805183815260208101849052815133927f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15928290030190a25050565b60265460ff61010090910416151560011461278e5760405162461bcd60e51b8152600401808060200182810382526028815260200180613f416028913960400191505060405180910390fd5b60225442116127ce5760405162461bcd60e51b815260040180806020018281038252602b815260200180613f96602b913960400191505060405180910390fd5b600c54601e546127e9916001600160a01b0316903390613381565b601e546023546127fe9163ffffffff61333f16565b60235560215460009061281890600163ffffffff61333f16565b6026805461ff001916905560108054919250908290811061283557fe5b9060005260206000209060020201600101546010828154811061285457fe5b90600052602060002090600202016000015411156128ac57602154601e54604080519182525133917f214bdfe939ae9dccee521a0a3bd0853352c6710efd5389bc80d0a18d517ce356919081900360200190a36111a4565b602154601e54604080519182525133917f7b5936679c2ccbffb093d3230588c440872ac5242b570a0f0b858f5f0a39b25f919081900360200190a350565b600d546001600160a01b031681565b336000908152601960205260409020600181015442906228de809015801590612926575060008360020154115b801561293457506000602354115b156129c557600061295284600201548461333f90919063ffffffff16565b90508181111561295f5750805b600061298b83610f918461196b601260010154610f918b600101546023546132e690919063ffffffff16565b6023549091506129a1908263ffffffff61333f16565b602355600c546129bb906001600160a01b03163383613381565b5050600283018290555b8315611f11578260010154841115612a0e5760405162461bcd60e51b815260040180806020018281038252602581526020018061412e6025913960400191505060405180910390fd5b600d54612a25906001600160a01b03163386613381565b600283018290556001830154612a41908563ffffffff61333f16565b60018401556013546123c5908563ffffffff61333f16565b601b5481565b60125460135460145460155460165460175460185487565b6008546001600160a01b031681565b600f546001600160a01b031681565b60225481565b6000818152600660205260408120610c1a90613894565b60265460ff1681565b604080516526a4a72a22a960d11b8152905190819003600601902081565b600082815260066020526040902060020154612af79061104b612fb6565b6111085760405162461bcd60e51b8152600401808060200182810382526030815260200180613f116030913960400191505060405180910390fd5b60215481565b612b40612fb6565b6007546001600160a01b03908116911614612b90576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b601a55565b601d5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3360009081526019602052604081206024549091908190612bee90600263ffffffff6132a416565b600384015490915042906228de809015801590612c0f575060008560040154115b8015612c1b5750600083115b15612c8e576000612c3986600401548461333f90919063ffffffff16565b905081811115612c465750805b6000612c7083610f918461196b601260030154610f918d600301548c6132e690919063ffffffff16565b9050612c82868263ffffffff61343a16565b60048801859055955050505b60008560050154118015612ca6575060008560060154115b8015612cb25750600083115b15612d25576000612cd086600601548461333f90919063ffffffff16565b905081811115612cdd5750805b6000612d0783610f918461196b601260050154610f918d600501548c6132e690919063ffffffff16565b9050612d19868263ffffffff61343a16565b60068801859055955050505b8615612d8157600e54612d49906001600160a01b031633308a63ffffffff61367a16565b600485018290556003850154612d65908863ffffffff61343a16565b6003860155601554612d7d908863ffffffff61343a16565b6015555b8515611b5c57600f54612da5906001600160a01b031633308963ffffffff61367a16565b600685018290556005850154612dc1908763ffffffff61343a16565b6005860155601754611b58908763ffffffff61343a16565b600080601f5411612e31576040805162461bcd60e51b815260206004820152601c60248201527f45706f63682069642073686f756c64206e6f74206265207a65726f2e00000000604482015290519081900360640190fd5b60006011612e4b6001601f5461333f90919063ffffffff16565b81548110612e5557fe5b6000918252602082206001600290920201908101548154919350118015612e7c5750815415155b156118bb57815460018301546118b89163ffffffff61333f16565b601f5481565b612ea5612fb6565b6007546001600160a01b03908116911614612ef5576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b6001600160a01b038116612f3a5760405162461bcd60e51b8152600401808060200182810382526026815260200180613dec6026913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b604080516727a822a920aa27a960c11b8152905190819003600801902081565b3390565b6001600160a01b038316612fff5760405162461bcd60e51b81526004018080602001828103825260248152602001806140946024913960400191505060405180910390fd5b6001600160a01b0382166130445760405162461bcd60e51b8152600401808060200182810382526022815260200180613e126022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166130eb5760405162461bcd60e51b815260040180806020018281038252602581526020018061406f6025913960400191505060405180910390fd5b6001600160a01b0382166131305760405162461bcd60e51b8152600401808060200182810382526023815260200180613d786023913960400191505060405180910390fd5b61313b838383611bf4565b61317e81604051806060016040528060268152602001613e8f602691396001600160a01b038616600090815260208190526040902054919063ffffffff61320d16565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546131b3908263ffffffff61343a16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561329c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613261578181015183820152602001613249565b50505050905090810190601f16801561328e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061213783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061389f565b6000826132f557506000610c1a565b8282028284828161330257fe5b04146121375760405162461bcd60e51b8152600401808060200182810382526021815260200180613fc16021913960400191505060405180910390fd5b600061213783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061320d565b604080516370a0823160e01b815230600482015290516000916001600160a01b038616916370a0823191602480820192602092909190829003018186803b1580156133cb57600080fd5b505afa1580156133df573d6000803e3d6000fd5b505050506040513d60208110156133f557600080fd5b50519050808211156134205761341b6001600160a01b038516848363ffffffff6136d416565b611f11565b611f116001600160a01b038516848463ffffffff6136d416565b600082820183811015612137576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166134d95760405162461bcd60e51b815260040180806020018281038252602181526020018061404e6021913960400191505060405180910390fd5b6134e582600083611bf4565b61352881604051806060016040528060228152602001613dca602291396001600160a01b038516600090815260208190526040902054919063ffffffff61320d16565b6001600160a01b038316600090815260208190526040902055600254613554908263ffffffff61333f16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008281526006602052604090206135ba908263ffffffff61390416565b15611095576135c7612fb6565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600660205260409020613629908263ffffffff61391916565b1561109557613636612fb6565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611f1190859061392e565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611bf490849061392e565b60006003821115613769575080600160028204015b818110156137635780915060028182858161375257fe5b04018161375b57fe5b04905061373b565b50610d06565b8115610d0657506001919050565b600061213783836139df565b6000612137836001600160a01b038416613a43565b6001600160a01b0382166137f3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6137ff60008383611bf4565b600254613812908263ffffffff61343a16565b6002556001600160a01b03821660009081526020819052604090205461383e908263ffffffff61343a16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000610c1a82613a5b565b600081836138ee5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613261578181015183820152602001613249565b5060008385816138fa57fe5b0495945050505050565b6000612137836001600160a01b038416613a5f565b6000612137836001600160a01b038416613aa9565b6060613983826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613b6f9092919063ffffffff16565b805190915015611bf4578080602001905160208110156139a257600080fd5b5051611bf45760405162461bcd60e51b815260040180806020018281038252602a8152602001806140de602a913960400191505060405180910390fd5b81546000908210613a215760405162461bcd60e51b8152600401808060200182810382526022815260200180613d566022913960400191505060405180910390fd5b826000018281548110613a3057fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6000613a6b8383613a43565b613aa157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c1a565b506000610c1a565b60008181526001830160205260408120548015613b655783546000198083019190810190600090879083908110613adc57fe5b9060005260206000200154905080876000018481548110613af957fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080613b2957fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610c1a565b6000915050610c1a565b6060613b7e8484600085613b86565b949350505050565b6060613b9185613cf3565b613be2576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310613c215780518252601f199092019160209182019101613c02565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613c83576040519150601f19603f3d011682016040523d82523d6000602084013e613c88565b606091505b50915091508115613c9c579150613b7e9050565b805115613cac5780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315613261578181015183820152602001613249565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590613b7e57505015159291505056fe4465706f736974732064697361626c656420647572696e6720616e206163746976652065706f63682e456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734465706f736974207374696c6c206c6f636b656420756e74696c20313420646179732068617665207061737365642e5769746864726177616c732064697361626c656420647572696e6720616e206163746976652065706f63682e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655375626d697474696e6720766f74657320726571756972657320616e2061637469766520766f74652e5375626d697474696e67206e657720544950732064697361626c656420647572696e6720616e2061637469766520766f74652e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65456e64696e672074686520766f746520726571756972657320616e2061637469766520766f74652e4465706f736974732064697361626c656420647572696e672061207769746864726177616c20706572696f642e456e64696e672074686520766f746520726571756972657320612070617373656420646561646c696e652e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735375626d697474696e6720766f7465732072657175697265732061206c69766520766f74652e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656457697468647261772073686f756c64206e6f742065786365656420616c6c6f636174696f6e2e556e7374616b652073686f756c64206e6f742065786365656420796f7572207374616b652e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220743ae6cdb52df32255bcd71dfdf7dc32184570a15b1db073e6628b29c1df1d8964736f6c63430006060033536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f770000000000000000000000007cbcfde7725cdb80f0e38929a363191bc01eae970000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c3dd23a0a854b4f9ae80670f528094e9eb607ccb000000000000000000000000ed5b8ec6b1f60a4b08ef72fb160ffe422064c2270000000000000000000000005102f3762f1f68d6be9dd5415556466cfb1de6c000000000000000000000000036dfc065ae98e97502127d03f727dec74db045ba000000000000000000000000c21af022b75132a9b6c8f5edb72d4b9a8313cd6d
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106104335760003560e01c8063867dfdce11610236578063bae5dc411161013b578063d547741f116100c3578063df25e34d11610087578063df25e34d14610b0b578063e3faaacb14610b2e578063e4c342c314610b36578063f2fde38b14610b3e578063f5b541a614610b6457610433565b8063d547741f14610a84578063d581589d14610ab0578063d860309314610ab8578063d96f159614610ad5578063dd62ed3e14610add57610433565b8063c32b51621161010a578063c32b516214610a47578063c62fab8914610a4f578063ca15c87314610a57578063d189b99714610a74578063d539139314610a7c57610433565b8063bae5dc4114610a12578063bb46a5d014610a2f578063bf9befb114610a37578063c1b8411a14610a3f57610433565b8063a217fddf116101be578063a9c272f01161018d578063a9c272f0146109ab578063aa424323146109c8578063b6b55f25146109e5578063b922394614610a02578063b931bb5814610a0a57610433565b8063a217fddf1461092e578063a457c2d714610936578063a9059cbb14610962578063a93343641461098e57610433565b80638da5cb5b116102055780638da5cb5b146108715780638da7ad23146108795780639010d07c146108d757806391d14854146108fa57806395d89b411461092657610433565b8063867dfdce1461080357806386a505351461080b5780638980f11f146108285780638c22bc271461085457610433565b806342966c681161033c5780636610340f116102c4578063750e443a11610293578063750e443a14610772578063778e89ab1461078f57806377b9d2d21461079757806379cc6790146107ba5780637c14d051146107e657610433565b80636610340f14610734578063704754661461073c57806370a0823114610744578063715018a61461076a57610433565b80634b6447371161030b5780634b644737146106e25780634bb1d3bc146106ff5780634c0a6af0146107075780634e2e54271461070f578063614590b41461071757610433565b806342966c68146106ad578063449e3614146106ca57806346b38ea2146106d25780634702528a146106da57610433565b80632e1a7d4d116103bf57806336568abe1161038e57806336568abe1461063d5780633770e0121461066957806339509351146106715780633bac0f9b1461069d5780633c1519b2146106a557610433565b80632e1a7d4d146105cc5780632f2ff15d146105eb578063313ce5671461061757806331dc7cc51461063557610433565b80631d2de6ba116104065780631d2de6ba1461051757806323817afb1461053b57806323b872dd14610571578063248a9ca3146105a75780632c686772146105c457610433565b806306fdde0314610438578063095ea7b3146104b55780630c5c8d41146104f557806318160ddd1461050f575b600080fd5b610440610b6c565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561047a578181015183820152602001610462565b50505050905090810190601f1680156104a75780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104e1600480360360408110156104cb57600080fd5b506001600160a01b038135169060200135610c02565b604080519115158252519081900360200190f35b6104fd610c20565b60408051918252519081900360200190f35b6104fd610c26565b61051f610c2c565b604080516001600160a01b039092168252519081900360200190f35b6105586004803603602081101561055157600080fd5b5035610c3b565b6040805192835260208301919091528051918290030190f35b6104e16004803603606081101561058757600080fd5b506001600160a01b03813581169160208101359091169060400135610c66565b6104fd600480360360208110156105bd57600080fd5b5035610cf3565b6104fd610d0b565b6105e9600480360360208110156105e257600080fd5b5035610d11565b005b6105e96004803603604081101561060157600080fd5b50803590602001356001600160a01b031661102d565b61061f611099565b6040805160ff9092168252519081900360200190f35b61051f6110a2565b6105e96004803603604081101561065357600080fd5b50803590602001356001600160a01b03166110b1565b61051f611112565b6104e16004803603604081101561068757600080fd5b506001600160a01b038135169060200135611121565b61051f611175565b61051f611184565b6105e9600480360360208110156106c357600080fd5b5035611193565b6104fd6111a7565b6104406111ad565b6104fd6111e6565b6105e9600480360360208110156106f857600080fd5b50356111ec565b6104fd611249565b6105e961124f565b6104e16113b8565b6105e96004803603602081101561072d57600080fd5b50356113c6565b6104fd611423565b6105e9611429565b6104fd6004803603602081101561075a57600080fd5b50356001600160a01b0316611567565b6105e9611582565b6105e96004803603602081101561078857600080fd5b5035611624565b6104fd6117f3565b6105e9600480360360408110156107ad57600080fd5b50803590602001356118c1565b6105e9600480360360408110156107d057600080fd5b506001600160a01b038135169060200135611b99565b6105e9600480360360208110156107fc57600080fd5b5035611bf9565b6104fd611c56565b6105e96004803603602081101561082157600080fd5b5035611c5c565b6105e96004803603604081101561083e57600080fd5b506001600160a01b038135169060200135611e28565b6105e96004803603602081101561086a57600080fd5b5035611f17565b61051f6120cd565b61089f6004803603602081101561088f57600080fd5b50356001600160a01b03166120dc565b604080519788526020880196909652868601949094526060860192909252608085015260a084015260c0830152519081900360e00190f35b61051f600480360360408110156108ed57600080fd5b5080359060200135612119565b6104e16004803603604081101561091057600080fd5b50803590602001356001600160a01b031661213e565b61044061215c565b6104fd6121bd565b6104e16004803603604081101561094c57600080fd5b506001600160a01b0381351690602001356121c2565b6104e16004803603604081101561097857600080fd5b506001600160a01b038135169060200135612230565b6105e9600480360360208110156109a457600080fd5b5035612244565b6105e9600480360360208110156109c157600080fd5b50356122a1565b610558600480360360208110156109de57600080fd5b50356123ce565b6105e9600480360360208110156109fb57600080fd5b50356123db565b6105e9612742565b61051f6128ea565b6105e960048036036020811015610a2857600080fd5b50356128f9565b6104fd612a59565b61089f612a5f565b61051f612a77565b61051f612a86565b6104fd612a95565b6104fd60048036036020811015610a6d57600080fd5b5035612a9b565b6104e1612ab2565b6104fd612abb565b6105e960048036036040811015610a9a57600080fd5b50803590602001356001600160a01b0316612ad9565b6104fd612b32565b6105e960048036036020811015610ace57600080fd5b5035612b38565b6104fd612b95565b6104fd60048036036040811015610af357600080fd5b506001600160a01b0381358116916020013516612b9b565b6105e960048036036040811015610b2157600080fd5b5080359060200135612bc6565b6104fd612dd9565b6104fd612e97565b6105e960048036036020811015610b5457600080fd5b50356001600160a01b0316612e9d565b6104fd612f96565b60038054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bf85780601f10610bcd57610100808354040283529160200191610bf8565b820191906000526020600020905b815481529060010190602001808311610bdb57829003601f168201915b5050505050905090565b6000610c16610c0f612fb6565b8484612fba565b5060015b92915050565b60255481565b60025490565b600b546001600160a01b031681565b60108181548110610c4857fe5b60009182526020909120600290910201805460019091015490915082565b6000610c738484846130a6565b610ce984610c7f612fb6565b610ce485604051806060016040528060288152602001613fe2602891396001600160a01b038a16600090815260016020526040812090610cbd612fb6565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61320d16565b612fba565b5060019392505050565b6000818152600660205260409020600201545b919050565b60205481565b60008111610d66576040805162461bcd60e51b815260206004820152601c60248201527f57697468647261772073686f756c64206e6f74206265207a65726f2e00000000604482015290519081900360640190fd5b610d6f33611567565b811115610dad5760405162461bcd60e51b81526004018080602001828103825260268152602001806141086026913960400191505060405180910390fd5b60265460ff1615610def5760405162461bcd60e51b815260040180806020018281038252602c815260200180613e63602c913960400191505060405180910390fd5b3360009081526019602052604090208054421015610e3e5760405162461bcd60e51b815260040180806020018281038252602f815260200180613e34602f913960400191505060405180910390fd5b6000610e5183606463ffffffff6132a416565b90506000610e76610e6983600263ffffffff6132e616565b859063ffffffff61333f16565b600c54909150610e90906001600160a01b03163383613381565b600c54600954610ead916001600160a01b03908116911684613381565b602354610ec0908363ffffffff61343a16565b6023556000610ecd610c26565b60248054600a54604080516370a0823160e01b81523060048201529051949550600094610f5b946001600160a01b03909316926370a0823192808201926020929091829003018186803b158015610f2357600080fd5b505afa158015610f37573d6000803e3d6000fd5b505050506040513d6020811015610f4d57600080fd5b50519063ffffffff61333f16565b905060008082841015610fb157610f78838563ffffffff61333f16565b9150610faa610f9d85610f91858c63ffffffff6132e616565b9063ffffffff6132a416565b899063ffffffff61343a16565b9050610fc8565b610fc584610f91858b63ffffffff6132e616565b90505b600a54610fdf906001600160a01b03163383613381565b610fe93389613494565b6040805186815260208101839052815133927ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568928290030190a25050505050505050565b6000828152600660205260409020600201546110509061104b612fb6565b61213e565b61108b5760405162461bcd60e51b815260040180806020018281038252602f815260200180613d9b602f913960400191505060405180910390fd5b611095828261359c565b5050565b60055460ff1690565b6009546001600160a01b031681565b6110b9612fb6565b6001600160a01b0316816001600160a01b0316146111085760405162461bcd60e51b815260040180806020018281038252602f815260200180614178602f913960400191505060405180910390fd5b611095828261360b565b600e546001600160a01b031681565b6000610c1661112e612fb6565b84610ce4856001600061113f612fb6565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61343a16565b600c546001600160a01b031681565b600a546001600160a01b031681565b6111a461119e612fb6565b82613494565b50565b601e5481565b6040518060400160405280601f81526020017f636f6e746578742d6d616368696e653a207472656e646572696e672e6f72670081525081565b60235481565b6111f4612fb6565b6007546001600160a01b03908116911614611244576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b601e55565b60245481565b602654610100900460ff16156112965760405162461bcd60e51b8152600401808060200182810382526033815260200180613ede6033913960400191505060405180910390fd5b601d54600c546112bb916001600160a01b03909116903390309063ffffffff61367a16565b601d546023546112d09163ffffffff61343a16565b6023556021546112e790600163ffffffff61343a16565b602190815562093a8042016022556026805461ff00191661010017905560408051808201825260008082526020808301828152601080546001810182559352925160029092027f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae67281019290925591517f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae673909101559154601d5482519081529151909233927fe932ae7c2da6c800c366df80f38b6dcbc7b01f471a9a86a58225da0cf163abef929081900390910190a3565b602654610100900460ff1681565b6113ce612fb6565b6007546001600160a01b0390811691161461141e576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b601c55565b601c5481565b611431612fb6565b6007546001600160a01b03908116911614611481576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b60248054600a54604080516370a0823160e01b815230600482015290516114d1946001600160a01b03909316926370a0823192808201926020929091829003018186803b158015610f2357600080fd5b6025819055600854600a546114fc926001600160a01b0391821692919091169063ffffffff6136d416565b6026805460ff19166001908117909155601f5461151e9163ffffffff61343a16565b601f5560085460255460408051918252516001600160a01b03909216917f93e3409dcf09174e5c4bd117a048e08dc6137c30bb74850ac1c309f2fc6c0d2a9181900360200190a2565b6001600160a01b031660009081526020819052604090205490565b61158a612fb6565b6007546001600160a01b039081169116146115da576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b6007546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600780546001600160a01b0319169055565b60008111611674576040805162461bcd60e51b81526020600482015260186024820152772b37ba329039b437bab632103737ba103132903d32b9379760411b604482015290519081900360640190fd5b60265460ff6101009091041615156001146116c05760405162461bcd60e51b8152600401808060200182810382526029815260200180613eb56029913960400191505060405180910390fd5b6022544211156117015760405162461bcd60e51b81526004018080602001828103825260268152602001806140b86026913960400191505060405180910390fd5b600c5461171f906001600160a01b031633308463ffffffff61367a16565b602354611732908263ffffffff61343a16565b60235560215460009061174c90600163ffffffff61333f16565b905061178761175a83613726565b6010838154811061176757fe5b90600052602060002090600202016001015461343a90919063ffffffff16565b6010828154811061179457fe5b906000526020600020906002020160010181905550602154336001600160a01b03167f311ff75c9b8b62f3496c6ddae5a509faac426283cc76f6d0c71722f5afbc3632601d546040518082815260200191505060405180910390a35050565b600080601f541161184b576040805162461bcd60e51b815260206004820152601c60248201527f45706f63682069642073686f756c64206e6f74206265207a65726f2e00000000604482015290519081900360640190fd5b600060116118656001601f5461333f90919063ffffffff16565b8154811061186f57fe5b60009182526020822060016002909202019081015481549193501180156118965750815415155b156118bb57815460018301546118b89190610f9190606463ffffffff6132e616565b90505b91505090565b33600090815260196020526040812060245490919081906118e990600263ffffffff6132a416565b600384015490915042906228de80901580159061190a575060008560040154115b80156119165750600083115b1561199557600061193486600401548461333f90919063ffffffff16565b9050818111156119415750805b600061197783610f918461196b601260030154610f918d600301548c6132e690919063ffffffff16565b9063ffffffff6132e616565b9050611989868263ffffffff61343a16565b60048801859055955050505b600085600501541180156119ad575060008560060154115b80156119b95750600083115b15611a2c5760006119d786600601548461333f90919063ffffffff16565b9050818111156119e45750805b6000611a0e83610f918461196b601260050154610f918d600501548c6132e690919063ffffffff16565b9050611a20868263ffffffff61343a16565b60068801859055955050505b8615611ac4578460030154871115611a755760405162461bcd60e51b815260040180806020018281038252602581526020018061412e6025913960400191505060405180910390fd5b600e54611a8c906001600160a01b03163389613381565b600485018290556003850154611aa8908863ffffffff61333f16565b6003860155601554611ac0908863ffffffff61333f16565b6015555b8515611b5c578460050154861115611b0d5760405162461bcd60e51b815260040180806020018281038252602581526020018061412e6025913960400191505060405180910390fd5b600f54611b24906001600160a01b03163388613381565b600685018290556005850154611b40908763ffffffff61333f16565b6005860155601754611b58908763ffffffff61333f16565b6017555b8315611b9057600a54611b79906001600160a01b03163386613381565b602454611b8c908563ffffffff61333f16565b6024555b50505050505050565b6000611bd68260405180606001604052806024815260200161402a60249139611bc986611bc4612fb6565b612b9b565b919063ffffffff61320d16565b9050611bea83611be4612fb6565b83612fba565b611bf48383613494565b505050565b611c01612fb6565b6007546001600160a01b03908116911614611c51576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b601b55565b601a5481565b60008111611cac576040805162461bcd60e51b81526020600482015260186024820152772b37ba329039b437bab632103737ba103132903d32b9379760411b604482015290519081900360640190fd5b60265460ff610100909104161515600114611cf85760405162461bcd60e51b8152600401808060200182810382526029815260200180613eb56029913960400191505060405180910390fd5b602254421115611d395760405162461bcd60e51b81526004018080602001828103825260268152602001806140b86026913960400191505060405180910390fd5b600c54611d57906001600160a01b031633308463ffffffff61367a16565b602354611d6a908263ffffffff61343a16565b602355602154600090611d8490600163ffffffff61333f16565b9050611dbc611d9283613726565b60108381548110611d9f57fe5b60009182526020909120600290910201549063ffffffff61343a16565b60108281548110611dc957fe5b906000526020600020906002020160000181905550602154336001600160a01b03167fbf6d7c14b84d101e44b1ec3c720a31c869a89a84f01e6f1612d0497fc3eca7a9601d546040518082815260200191505060405180910390a35050565b611e30612fb6565b6007546001600160a01b03908116911614611e80576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b816001600160a01b031663a9059cbb611e976120cd565b836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b158015611ee757600080fd5b505af1158015611efb573d6000803e3d6000fd5b505050506040513d6020811015611f1157600080fd5b50505050565b611f1f612fb6565b6007546001600160a01b03908116911614611f6f576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b600a54611f8d906001600160a01b031633308463ffffffff61367a16565b60408051808201909152602580548252602082018381526011805460018101825560009190915292517f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c68600290940293840155517f31ecc21a745e3968a04e9570e4425bc18fa8019c68028196b546d1669c200c69909201919091555481111561207457600061202d6064610f916025548561333f90919063ffffffff16565b905061205261204382600263ffffffff6132e616565b6024549063ffffffff61343a16565b602455600a54600954612072916001600160a01b03908116911683613381565b505b6026805460ff191690556203f480420160209081556008546040805184815290516001600160a01b03909216927ffc4502a03d6b9272fc99e88d27a7c6d5b9f56ea7e7225c358e6eedbada82328692918290030190a250565b6007546001600160a01b031690565b6019602052600090815260409020805460018201546002830154600384015460048501546005860154600690960154949593949293919290919087565b6000828152600660205260408120612137908363ffffffff61377716565b9392505050565b6000828152600660205260408120612137908363ffffffff61378316565b60048054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610bf85780601f10610bcd57610100808354040283529160200191610bf8565b600081565b6000610c166121cf612fb6565b84610ce48560405180606001604052806025815260200161415360259139600160006121f9612fb6565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61320d16565b6000610c1661223d612fb6565b84846130a6565b61224c612fb6565b6007546001600160a01b0390811691161461229c576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b601d55565b336000908152601960205260409020600181015442906228de8090158015906122ce575060008360020154115b80156122dc57506000602354115b1561236d5760006122fa84600201548461333f90919063ffffffff16565b9050818111156123075750805b600061233383610f918461196b601260010154610f918b600101546023546132e690919063ffffffff16565b602354909150612349908263ffffffff61333f16565b602355600c54612363906001600160a01b03163383613381565b5050600283018290555b8315611f1157600d54612391906001600160a01b031633308763ffffffff61367a16565b6002830182905560018301546123ad908563ffffffff61343a16565b60018401556013546123c5908563ffffffff61343a16565b60135550505050565b60118181548110610c4857fe5b60008111612430576040805162461bcd60e51b815260206004820152601b60248201527f4465706f7369742073686f756c64206e6f74206265207a65726f2e0000000000604482015290519081900360640190fd5b60265460ff16156124725760405162461bcd60e51b8152600401808060200182810382526029815260200180613d2d6029913960400191505060405180910390fd5b42602054106124b25760405162461bcd60e51b815260040180806020018281038252602d815260200180613f69602d913960400191505060405180910390fd5b33600081815260196020908152604091829020601a54600b5484516370a0823160e01b815260048101969096529351919490936001600160a01b0316926370a0823192602480840193829003018186803b15801561250f57600080fd5b505afa158015612523573d6000803e3d6000fd5b505050506040513d602081101561253957600080fd5b50511015806125c05750601c54600e54604080516370a0823160e01b815233600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561259157600080fd5b505afa1580156125a5573d6000803e3d6000fd5b505050506040513d60208110156125bb57600080fd5b505110155b806126435750601b54600d54604080516370a0823160e01b815233600482015290516001600160a01b03909216916370a0823191602480820192602092909190829003018186803b15801561261457600080fd5b505afa158015612628573d6000803e3d6000fd5b505050506040513d602081101561263e57600080fd5b505110155b806126545750601c54816003015410155b806126655750601b54816001015410155b6126b6576040805162461bcd60e51b815260206004820152601f60248201527f54524e4420726571756972656d656e74206e6f74207361746973666965642e00604482015290519081900360640190fd5b6212750042018155600c546126dc906001600160a01b031633308563ffffffff61367a16565b600a546126fa906001600160a01b031633308563ffffffff61367a16565b6127043383613798565b6040805183815260208101849052815133927f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15928290030190a25050565b60265460ff61010090910416151560011461278e5760405162461bcd60e51b8152600401808060200182810382526028815260200180613f416028913960400191505060405180910390fd5b60225442116127ce5760405162461bcd60e51b815260040180806020018281038252602b815260200180613f96602b913960400191505060405180910390fd5b600c54601e546127e9916001600160a01b0316903390613381565b601e546023546127fe9163ffffffff61333f16565b60235560215460009061281890600163ffffffff61333f16565b6026805461ff001916905560108054919250908290811061283557fe5b9060005260206000209060020201600101546010828154811061285457fe5b90600052602060002090600202016000015411156128ac57602154601e54604080519182525133917f214bdfe939ae9dccee521a0a3bd0853352c6710efd5389bc80d0a18d517ce356919081900360200190a36111a4565b602154601e54604080519182525133917f7b5936679c2ccbffb093d3230588c440872ac5242b570a0f0b858f5f0a39b25f919081900360200190a350565b600d546001600160a01b031681565b336000908152601960205260409020600181015442906228de809015801590612926575060008360020154115b801561293457506000602354115b156129c557600061295284600201548461333f90919063ffffffff16565b90508181111561295f5750805b600061298b83610f918461196b601260010154610f918b600101546023546132e690919063ffffffff16565b6023549091506129a1908263ffffffff61333f16565b602355600c546129bb906001600160a01b03163383613381565b5050600283018290555b8315611f11578260010154841115612a0e5760405162461bcd60e51b815260040180806020018281038252602581526020018061412e6025913960400191505060405180910390fd5b600d54612a25906001600160a01b03163386613381565b600283018290556001830154612a41908563ffffffff61333f16565b60018401556013546123c5908563ffffffff61333f16565b601b5481565b60125460135460145460155460165460175460185487565b6008546001600160a01b031681565b600f546001600160a01b031681565b60225481565b6000818152600660205260408120610c1a90613894565b60265460ff1681565b604080516526a4a72a22a960d11b8152905190819003600601902081565b600082815260066020526040902060020154612af79061104b612fb6565b6111085760405162461bcd60e51b8152600401808060200182810382526030815260200180613f116030913960400191505060405180910390fd5b60215481565b612b40612fb6565b6007546001600160a01b03908116911614612b90576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b601a55565b601d5481565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3360009081526019602052604081206024549091908190612bee90600263ffffffff6132a416565b600384015490915042906228de809015801590612c0f575060008560040154115b8015612c1b5750600083115b15612c8e576000612c3986600401548461333f90919063ffffffff16565b905081811115612c465750805b6000612c7083610f918461196b601260030154610f918d600301548c6132e690919063ffffffff16565b9050612c82868263ffffffff61343a16565b60048801859055955050505b60008560050154118015612ca6575060008560060154115b8015612cb25750600083115b15612d25576000612cd086600601548461333f90919063ffffffff16565b905081811115612cdd5750805b6000612d0783610f918461196b601260050154610f918d600501548c6132e690919063ffffffff16565b9050612d19868263ffffffff61343a16565b60068801859055955050505b8615612d8157600e54612d49906001600160a01b031633308a63ffffffff61367a16565b600485018290556003850154612d65908863ffffffff61343a16565b6003860155601554612d7d908863ffffffff61343a16565b6015555b8515611b5c57600f54612da5906001600160a01b031633308963ffffffff61367a16565b600685018290556005850154612dc1908763ffffffff61343a16565b6005860155601754611b58908763ffffffff61343a16565b600080601f5411612e31576040805162461bcd60e51b815260206004820152601c60248201527f45706f63682069642073686f756c64206e6f74206265207a65726f2e00000000604482015290519081900360640190fd5b60006011612e4b6001601f5461333f90919063ffffffff16565b81548110612e5557fe5b6000918252602082206001600290920201908101548154919350118015612e7c5750815415155b156118bb57815460018301546118b89163ffffffff61333f16565b601f5481565b612ea5612fb6565b6007546001600160a01b03908116911614612ef5576040805162461bcd60e51b8152602060048201819052602482015260008051602061400a833981519152604482015290519081900360640190fd5b6001600160a01b038116612f3a5760405162461bcd60e51b8152600401808060200182810382526026815260200180613dec6026913960400191505060405180910390fd5b6007546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600780546001600160a01b0319166001600160a01b0392909216919091179055565b604080516727a822a920aa27a960c11b8152905190819003600801902081565b3390565b6001600160a01b038316612fff5760405162461bcd60e51b81526004018080602001828103825260248152602001806140946024913960400191505060405180910390fd5b6001600160a01b0382166130445760405162461bcd60e51b8152600401808060200182810382526022815260200180613e126022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166130eb5760405162461bcd60e51b815260040180806020018281038252602581526020018061406f6025913960400191505060405180910390fd5b6001600160a01b0382166131305760405162461bcd60e51b8152600401808060200182810382526023815260200180613d786023913960400191505060405180910390fd5b61313b838383611bf4565b61317e81604051806060016040528060268152602001613e8f602691396001600160a01b038616600090815260208190526040902054919063ffffffff61320d16565b6001600160a01b0380851660009081526020819052604080822093909355908416815220546131b3908263ffffffff61343a16565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000818484111561329c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613261578181015183820152602001613249565b50505050905090810190601f16801561328e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600061213783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525061389f565b6000826132f557506000610c1a565b8282028284828161330257fe5b04146121375760405162461bcd60e51b8152600401808060200182810382526021815260200180613fc16021913960400191505060405180910390fd5b600061213783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061320d565b604080516370a0823160e01b815230600482015290516000916001600160a01b038616916370a0823191602480820192602092909190829003018186803b1580156133cb57600080fd5b505afa1580156133df573d6000803e3d6000fd5b505050506040513d60208110156133f557600080fd5b50519050808211156134205761341b6001600160a01b038516848363ffffffff6136d416565b611f11565b611f116001600160a01b038516848463ffffffff6136d416565b600082820183811015612137576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0382166134d95760405162461bcd60e51b815260040180806020018281038252602181526020018061404e6021913960400191505060405180910390fd5b6134e582600083611bf4565b61352881604051806060016040528060228152602001613dca602291396001600160a01b038516600090815260208190526040902054919063ffffffff61320d16565b6001600160a01b038316600090815260208190526040902055600254613554908263ffffffff61333f16565b6002556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b60008281526006602052604090206135ba908263ffffffff61390416565b15611095576135c7612fb6565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000828152600660205260409020613629908263ffffffff61391916565b1561109557613636612fb6565b6001600160a01b0316816001600160a01b0316837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052611f1190859061392e565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052611bf490849061392e565b60006003821115613769575080600160028204015b818110156137635780915060028182858161375257fe5b04018161375b57fe5b04905061373b565b50610d06565b8115610d0657506001919050565b600061213783836139df565b6000612137836001600160a01b038416613a43565b6001600160a01b0382166137f3576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6137ff60008383611bf4565b600254613812908263ffffffff61343a16565b6002556001600160a01b03821660009081526020819052604090205461383e908263ffffffff61343a16565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b6000610c1a82613a5b565b600081836138ee5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315613261578181015183820152602001613249565b5060008385816138fa57fe5b0495945050505050565b6000612137836001600160a01b038416613a5f565b6000612137836001600160a01b038416613aa9565b6060613983826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613b6f9092919063ffffffff16565b805190915015611bf4578080602001905160208110156139a257600080fd5b5051611bf45760405162461bcd60e51b815260040180806020018281038252602a8152602001806140de602a913960400191505060405180910390fd5b81546000908210613a215760405162461bcd60e51b8152600401808060200182810382526022815260200180613d566022913960400191505060405180910390fd5b826000018281548110613a3057fe5b9060005260206000200154905092915050565b60009081526001919091016020526040902054151590565b5490565b6000613a6b8383613a43565b613aa157508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610c1a565b506000610c1a565b60008181526001830160205260408120548015613b655783546000198083019190810190600090879083908110613adc57fe5b9060005260206000200154905080876000018481548110613af957fe5b600091825260208083209091019290925582815260018981019092526040902090840190558654879080613b2957fe5b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610c1a565b6000915050610c1a565b6060613b7e8484600085613b86565b949350505050565b6060613b9185613cf3565b613be2576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b60208310613c215780518252601f199092019160209182019101613c02565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613c83576040519150601f19603f3d011682016040523d82523d6000602084013e613c88565b606091505b50915091508115613c9c579150613b7e9050565b805115613cac5780518082602001fd5b60405162461bcd60e51b8152602060048201818152865160248401528651879391928392604401919085019080838360008315613261578181015183820152602001613249565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590613b7e57505015159291505056fe4465706f736974732064697361626c656420647572696e6720616e206163746976652065706f63682e456e756d657261626c655365743a20696e646578206f7574206f6620626f756e647345524332303a207472616e7366657220746f20746865207a65726f2061646472657373416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f206772616e7445524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734465706f736974207374696c6c206c6f636b656420756e74696c20313420646179732068617665207061737365642e5769746864726177616c732064697361626c656420647572696e6720616e206163746976652065706f63682e45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63655375626d697474696e6720766f74657320726571756972657320616e2061637469766520766f74652e5375626d697474696e67206e657720544950732064697361626c656420647572696e6720616e2061637469766520766f74652e416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e2061646d696e20746f207265766f6b65456e64696e672074686520766f746520726571756972657320616e2061637469766520766f74652e4465706f736974732064697361626c656420647572696e672061207769746864726177616c20706572696f642e456e64696e672074686520766f746520726571756972657320612070617373656420646561646c696e652e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735375626d697474696e6720766f7465732072657175697265732061206c69766520766f74652e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f74207375636365656457697468647261772073686f756c64206e6f742065786365656420616c6c6f636174696f6e2e556e7374616b652073686f756c64206e6f742065786365656420796f7572207374616b652e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636520726f6c657320666f722073656c66a2646970667358221220743ae6cdb52df32255bcd71dfdf7dc32184570a15b1db073e6628b29c1df1d8964736f6c63430006060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000007cbcfde7725cdb80f0e38929a363191bc01eae970000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c3dd23a0a854b4f9ae80670f528094e9eb607ccb000000000000000000000000ed5b8ec6b1f60a4b08ef72fb160ffe422064c2270000000000000000000000005102f3762f1f68d6be9dd5415556466cfb1de6c000000000000000000000000036dfc065ae98e97502127d03f727dec74db045ba000000000000000000000000c21af022b75132a9b6c8f5edb72d4b9a8313cd6d
-----Decoded View---------------
Arg [0] : _stash (address): 0x7CBCFDe7725CdB80f0E38929A363191bc01eAe97
Arg [1] : _DAI_token (address): 0x6B175474E89094C44Da98b954EedeAC495271d0F
Arg [2] : _TRND_token (address): 0xc3dD23A0a854b4f9aE80670f528094E9Eb607CCb
Arg [3] : _xTRND_token (address): 0xed5b8eC6b1f60A4b08ef72FB160fFe422064c227
Arg [4] : _ETH_TRND_LP_token (address): 0x5102f3762F1F68D6bE9dd5415556466cFB1dE6C0
Arg [5] : _DAI_TRND_LP_token (address): 0x36dfc065AE98E97502127d03f727dEC74DB045bA
Arg [6] : _DAI_xTRND_LP_token (address): 0xc21af022B75132a9B6C8f5EDb72d4B9a8313cD6D
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000007cbcfde7725cdb80f0e38929a363191bc01eae97
Arg [1] : 0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f
Arg [2] : 000000000000000000000000c3dd23a0a854b4f9ae80670f528094e9eb607ccb
Arg [3] : 000000000000000000000000ed5b8ec6b1f60a4b08ef72fb160ffe422064c227
Arg [4] : 0000000000000000000000005102f3762f1f68d6be9dd5415556466cfb1de6c0
Arg [5] : 00000000000000000000000036dfc065ae98e97502127d03f727dec74db045ba
Arg [6] : 000000000000000000000000c21af022b75132a9b6c8f5edb72d4b9a8313cd6d
Deployed Bytecode Sourcemap
57655:21711:0:-:0;;;;5:9:-1;2:2;;;27:1;24;17:12;2:2;57655:21711:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;9;2:12;21591:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;21591:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23697:169;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;23697:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;60734:23;;;:::i;:::-;;;;;;;;;;;;;;;;22666:100;;;:::i;58147:24::-;;;:::i;:::-;;;;-1:-1:-1;;;;;58147:24:0;;;;;;;;;;;;;;60149:22;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;60149:22:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;24340:321;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;24340:321:0;;;;;;;;;;;;;;;;;:::i;53591:114::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;53591:114:0;;:::i;60548:37::-;;;:::i;68591:1435::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;68591:1435:0;;:::i;:::-;;53967:227;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;53967:227:0;;;;;;-1:-1:-1;;;;;53967:227:0;;:::i;22518:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;57982:20;;;:::i;55176:209::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;55176:209:0;;;;;;-1:-1:-1;;;;;55176:209:0;;:::i;58419:31::-;;;:::i;25070:218::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;25070:218:0;;;;;;;;:::i;58233:25::-;;;:::i;58062:23::-;;;:::i;30886:91::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;30886:91:0;;:::i;60470:34::-;;;:::i;57825:67::-;;;:::i;60670:25::-;;;:::i;63136:107::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;63136:107:0;;:::i;60702:23::-;;;:::i;63251:634::-;;;:::i;60797:23::-;;;:::i;62781:107::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;62781:107:0;;:::i;60376:35::-;;;:::i;66182:287::-;;;:::i;22829:119::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;22829:119:0;-1:-1:-1;;;;;22829:119:0;;:::i;40581:148::-;;;:::i;64565:676::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;64565:676:0;;:::i;70034:420::-;;;:::i;76037:2699::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;76037:2699:0;;;;;;;:::i;31296:295::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;31296:295:0;;;;;;;;:::i;62896:107::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;62896:107:0;;:::i;60296:31::-;;;:::i;63893:660::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;63893:660:0;;:::i;41676:152::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;41676:152:0;;;;;;;;:::i;66620:645::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;66620:645:0;;:::i;39939:79::-;;;:::i;60242:45::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;60242:45:0;-1:-1:-1;;;;;60242:45:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53264:138;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;53264:138:0;;;;;;;:::i;52225:139::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;52225:139:0;;;;;;-1:-1:-1;;;;;52225:139:0;;:::i;21793:87::-;;;:::i;51393:49::-;;;:::i;25791:269::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;25791:269:0;;;;;;;;:::i;23161:175::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;23161:175:0;;;;;;;;:::i;63011:117::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;63011:117:0;;:::i;70897:1257::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;70897:1257:0;;:::i;60178:23::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;60178:23:0;;:::i;67317:1187::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;67317:1187:0;;:::i;65249:732::-;;;:::i;58326:31::-;;;:::i;74675:1354::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;74675:1354:0;;:::i;60334:35::-;;;:::i;60210:25::-;;;:::i;57901:23::-;;;:::i;58512:32::-;;;:::i;60628:33::-;;;:::i;52538:127::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;52538:127:0;;:::i;60766:24::-;;;:::i;56800:57::-;;;:::i;54439:230::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;54439:230:0;;;;;;-1:-1:-1;;;;;54439:230:0;;:::i;60594:27::-;;;:::i;62674:99::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;62674:99:0;;:::i;60420:43::-;;;:::i;23399:151::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;;;;;;23399:151:0;;;;;;;;;;:::i;72162:2505::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;72162:2505:0;;;;;;;:::i;70462:427::-;;;:::i;60513:28::-;;;:::i;40884:244::-;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;40884:244:0;-1:-1:-1;;;;;40884:244:0;;:::i;56864:61::-;;;:::i;21591:83::-;21661:5;21654:12;;;;;;;;-1:-1:-1;;21654:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21628:13;;21654:12;;21661:5;;21654:12;;21661:5;21654:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21591:83;:::o;23697:169::-;23780:4;23797:39;23806:12;:10;:12::i;:::-;23820:7;23829:6;23797:8;:39::i;:::-;-1:-1:-1;23854:4:0;23697:169;;;;;:::o;60734:23::-;;;;:::o;22666:100::-;22746:12;;22666:100;:::o;58147:24::-;;;-1:-1:-1;;;;;58147:24:0;;:::o;60149:22::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60149:22:0;:::o;24340:321::-;24446:4;24463:36;24473:6;24481:9;24492:6;24463:9;:36::i;:::-;24510:121;24519:6;24527:12;:10;:12::i;:::-;24541:89;24579:6;24541:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;24541:19:0;;;;;;:11;:19;;;;;;24561:12;:10;:12::i;:::-;-1:-1:-1;;;;;24541:33:0;;;;;;;;;;;;-1:-1:-1;24541:33:0;;;:89;;:37;:89;:::i;:::-;24510:8;:121::i;:::-;-1:-1:-1;24649:4:0;24340:321;;;;;:::o;53591:114::-;53648:7;53675:12;;;:6;:12;;;;;:22;;;53591:114;;;;:::o;60548:37::-;;;;:::o;68591:1435::-;68662:1;68652:7;:11;68644:52;;;;;-1:-1:-1;;;68644:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;68726:30;68744:10;68726:9;:30::i;:::-;68715:7;:41;;68707:92;;;;-1:-1:-1;;;68707:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68818:12;;;;:21;68810:78;;;;-1:-1:-1;;;68810:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68942:10;68901:19;68923:31;;;:10;:31;;;;;68975:17;;68996:15;-1:-1:-1;68975:36:0;68967:96;;;;-1:-1:-1;;;68967:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69076:17;69096:16;:7;69108:3;69096:16;:11;:16;:::i;:::-;69076:36;-1:-1:-1;69123:19:0;69145:29;69157:16;69076:36;69171:1;69157:16;:13;:16;:::i;:::-;69145:7;;:29;:11;:29;:::i;:::-;69201:11;;69123:51;;-1:-1:-1;69187:60:0;;-1:-1:-1;;;;;69201:11:0;69222:10;69123:51;69187:13;:60::i;:::-;69272:11;;69285:5;;69258:44;;-1:-1:-1;;;;;69272:11:0;;;;69285:5;69292:9;69258:13;:44::i;:::-;69326:10;;:25;;69341:9;69326:25;:14;:25;:::i;:::-;69313:10;:38;69364:21;69388:13;:11;:13::i;:::-;69471:8;;;69432:9;;:34;;;-1:-1:-1;;;69432:34:0;;69460:4;69432:34;;;;;;69364:37;;-1:-1:-1;69412:17:0;;69432:48;;-1:-1:-1;;;;;69432:9:0;;;;:19;;:34;;;;;;;;;;;;;:9;:34;;;2:2:-1;;;;27:1;24;17:12;2:2;69432:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;69432:34:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;69432:34:0;;:48;:38;:48;:::i;:::-;69412:68;-1:-1:-1;69491:19:0;;69563:25;;;69559:278;;;69619:28;:9;69633:13;69619:28;:13;:28;:::i;:::-;69605:42;-1:-1:-1;69674:56:0;69686:43;69715:13;69686:24;69605:42;69702:7;69686:24;:15;:24;:::i;:::-;:28;:43;:28;:43;:::i;:::-;69674:7;;:56;:11;:56;:::i;:::-;69662:68;;69559:278;;;69784:41;69811:13;69784:22;:9;69798:7;69784:22;:13;:22;:::i;:41::-;69772:53;;69559:278;69863:9;;69849:56;;-1:-1:-1;;;;;69863:9:0;69882:10;69895:9;69849:13;:56::i;:::-;69923:35;69937:10;69950:7;69923:5;:35::i;:::-;69974:44;;;;;;;;;;;;;;69983:10;;69974:44;;;;;;;;68591:1435;;;;;;;;:::o;53967:227::-;54059:12;;;;:6;:12;;;;;:22;;;54051:45;;54083:12;:10;:12::i;:::-;54051:7;:45::i;:::-;54043:105;;;;-1:-1:-1;;;54043:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54161:25;54172:4;54178:7;54161:10;:25::i;:::-;53967:227;;:::o;22518:83::-;22584:9;;;;22518:83;:::o;57982:20::-;;;-1:-1:-1;;;;;57982:20:0;;:::o;55176:209::-;55274:12;:10;:12::i;:::-;-1:-1:-1;;;;;55263:23:0;:7;-1:-1:-1;;;;;55263:23:0;;55255:83;;;;-1:-1:-1;;;55255:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55351:26;55363:4;55369:7;55351:11;:26::i;58419:31::-;;;-1:-1:-1;;;;;58419:31:0;;:::o;25070:218::-;25158:4;25175:83;25184:12;:10;:12::i;:::-;25198:7;25207:50;25246:10;25207:11;:25;25219:12;:10;:12::i;:::-;-1:-1:-1;;;;;25207:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25207:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;58233:25::-;;;-1:-1:-1;;;;;58233:25:0;;:::o;58062:23::-;;;-1:-1:-1;;;;;58062:23:0;;:::o;30886:91::-;30942:27;30948:12;:10;:12::i;:::-;30962:6;30942:5;:27::i;:::-;30886:91;:::o;60470:34::-;;;;:::o;57825:67::-;;;;;;;;;;;;;;;;;;;:::o;60670:25::-;;;;:::o;63136:107::-;40161:12;:10;:12::i;:::-;40151:6;;-1:-1:-1;;;;;40151:6:0;;;:22;;;40143:67;;;;;-1:-1:-1;;;40143:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40143:67:0;;;;;;;;;;;;;;;63206:19:::1;:29:::0;63136:107::o;60702:23::-;;;;:::o;63251:634::-;63298:11;;;;;;;:20;63290:84;;;;-1:-1:-1;;;63290:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63452:28;;63387:11;;:94;;-1:-1:-1;;;;;63387:11:0;;;;63424:10;;63445:4;;63387:94;:28;:94;:::i;:::-;63520:28;;63505:10;;:44;;;:14;:44;:::i;:::-;63492:10;:57;63577:12;;:19;;63594:1;63577:19;:16;:19;:::i;:::-;63562:12;:34;;;63646:6;63628:15;:24;63607:18;:45;63673:11;:18;;-1:-1:-1;;63673:18:0;;;;;63718:75;;;;;;;;-1:-1:-1;63718:75:0;;;;;;;;;;63704:8;27:10:-1;;63687:4:0;23:18:-1;;45:23;;63704:90:0;;;;;;;;;;;;;;;;;;;;;;63834:12;;63848:28;;63812:65;;;;;;;63834:12;;63822:10;;63812:65;;;;;;;;;;;63251:634::o;60797:23::-;;;;;;;;;:::o;62781:107::-;40161:12;:10;:12::i;:::-;40151:6;;-1:-1:-1;;;;;40151:6:0;;;:22;;;40143:67;;;;;-1:-1:-1;;;40143:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40143:67:0;;;;;;;;;;;;;;;62850:20:::1;:30:::0;62781:107::o;60376:35::-;;;;:::o;66182:287::-;40161:12;:10;:12::i;:::-;40151:6;;-1:-1:-1;;;;;40151:6:0;;;:22;;;40143:67;;;;;-1:-1:-1;;;40143:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40143:67:0;;;;;;;;;;;;;;;66277:8:::1;::::0;;66238:9:::1;::::0;:34:::1;::::0;;-1:-1:-1;;;66238:34:0;;66266:4:::1;66238:34;::::0;::::1;::::0;;;:48:::1;::::0;-1:-1:-1;;;;;66238:9:0;;::::1;::::0;:19:::1;::::0;:34;;;;::::1;::::0;;;;;;;;:9;:34;::::1;;2:2:-1::0;::::1;;;27:1;24::::0;17:12:::1;66238:48:0;66227:8;:59:::0;;;66320:8:::1;::::0;66297:9:::1;::::0;:42:::1;::::0;-1:-1:-1;;;;;66297:9:0;;::::1;::::0;66320:8;;;::::1;::::0;66297:42:::1;:22;:42;:::i;:::-;66352:12;:19:::0;;-1:-1:-1;;66352:19:0::1;66367:4;66352:19:::0;;::::1;::::0;;;66398:13:::1;::::0;:20:::1;::::0;::::1;:17;:20;:::i;:::-;66382:13;:36:::0;66442:8:::1;::::0;66452::::1;::::0;66436:25:::1;::::0;;;;;;-1:-1:-1;;;;;66442:8:0;;::::1;::::0;66436:25:::1;::::0;;;;::::1;::::0;;::::1;66182:287::o:0;22829:119::-;-1:-1:-1;;;;;22922:18:0;22895:7;22922:18;;;;;;;;;;;;22829:119::o;40581:148::-;40161:12;:10;:12::i;:::-;40151:6;;-1:-1:-1;;;;;40151:6:0;;;:22;;;40143:67;;;;;-1:-1:-1;;;40143:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40143:67:0;;;;;;;;;;;;;;;40672:6:::1;::::0;40651:40:::1;::::0;40688:1:::1;::::0;-1:-1:-1;;;;;40672:6:0::1;::::0;40651:40:::1;::::0;40688:1;;40651:40:::1;40702:6;:19:::0;;-1:-1:-1;;;;;;40702:19:0::1;::::0;;40581:148::o;64565:676::-;64639:1;64629:7;:11;64621:48;;;;;-1:-1:-1;;;64621:48:0;;;;;;;;;;;;-1:-1:-1;;;64621:48:0;;;;;;;;;;;;;;;64688:11;;;;;;;;:19;;:11;:19;64680:73;;;;-1:-1:-1;;;64680:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64791:18;;64772:15;:37;;64764:88;;;;-1:-1:-1;;;64764:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64865:11;;:73;;-1:-1:-1;;;;;64865:11:0;64902:10;64923:4;64930:7;64865:73;:28;:73;:::i;:::-;64962:10;;:23;;64977:7;64962:23;:14;:23;:::i;:::-;64949:10;:36;65022:12;;64998:21;;65022:19;;65039:1;65022:19;:16;:19;:::i;:::-;64998:43;;65092:56;65134:13;65139:7;65134:4;:13::i;:::-;65092:8;65101:13;65092:23;;;;;;;;;;;;;;;;;;:37;;;:41;;:56;;;;:::i;:::-;65052:8;65061:13;65052:23;;;;;;;;;;;;;;;;;;:37;;:96;;;;65190:12;;65178:10;-1:-1:-1;;;;;65166:67:0;;65204:28;;65166:67;;;;;;;;;;;;;;;;;;64565:676;;:::o;70034:420::-;70078:7;70122:1;70106:13;;:17;70098:58;;;;;-1:-1:-1;;;70098:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;70169:24;70196:8;70205:20;70223:1;70205:13;;:17;;:20;;;;:::i;:::-;70196:30;;;;;;;;;;;;;;;70292:17;70196:30;;;;;70292:17;;;;70274:15;;70196:30;;-1:-1:-1;;70274:58:0;;;;-1:-1:-1;70313:15:0;;:19;;70274:58;70270:149;;;70391:15;;70360:17;;;;:47;;70391:15;70360:26;;70382:3;70360:26;:21;:26;:::i;:47::-;70349:58;;70270:149;70438:8;-1:-1:-1;;70034:420:0;:::o;76037:2699::-;76178:10;76137:19;76159:31;;;:10;:31;;;;;76261:8;;76159:31;;76137:19;;;76261:15;;76274:1;76261:15;:12;:15;:::i;:::-;76391:23;;;;76236:40;;-1:-1:-1;76309:15:0;;76356:7;;76391:27;;;;:56;;;76446:1;76422:4;:21;;;:25;76391:56;:78;;;;;76468:1;76451:14;:18;76391:78;76387:582;;;76486:22;76511:36;76525:4;:21;;;76511:9;:13;;:36;;;;:::i;:::-;76486:61;;76585:10;76568:14;:27;76564:95;;;-1:-1:-1;76633:10:0;76564:95;76687:23;76713:115;76817:10;76713:99;76797:14;76713:79;76761:11;:30;;;76713:43;76732:4;:23;;;76713:14;:18;;:43;;;;:::i;:79::-;:83;:99;:83;:99;:::i;:115::-;76687:141;-1:-1:-1;76864:31:0;:10;76687:141;76864:31;:14;:31;:::i;:::-;76924:21;;;:33;;;76851:44;-1:-1:-1;;;76387:582:0;77010:1;76983:4;:24;;;:28;:58;;;;;77040:1;77015:4;:22;;;:26;76983:58;:80;;;;;77062:1;77045:14;:18;76983:80;76979:588;;;77080:22;77105:37;77119:4;:22;;;77105:9;:13;;:37;;;;:::i;:::-;77080:62;;77180:10;77163:14;:27;77159:95;;;-1:-1:-1;77228:10:0;77159:95;77282:23;77308:117;77414:10;77308:101;77394:14;77308:81;77357:11;:31;;;77308:44;77327:4;:24;;;77308:14;:18;;:44;;;;:::i;:117::-;77282:143;-1:-1:-1;77461:31:0;:10;77282:143;77461:31;:14;:31;:::i;:::-;77521:22;;;:34;;;77448:44;-1:-1:-1;;;76979:588:0;77583:22;;77579:480;;77652:4;:23;;;77630:18;:45;;77622:95;;;;-1:-1:-1;;;77622:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77748:17;;77734:73;;-1:-1:-1;;;;;77748:17:0;77775:10;77788:18;77734:13;:73::i;:::-;77824:21;;;:33;;;77898:23;;;;:47;;77926:18;77898:47;:27;:47;:::i;:::-;77872:23;;;:73;77993:30;;:54;;78028:18;77993:54;:34;:54;:::i;:::-;77960:30;:87;77579:480;78075:23;;78071:492;;78146:4;:24;;;78123:19;:47;;78115:97;;;;-1:-1:-1;;;78115:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78243:18;;78229:75;;-1:-1:-1;;;;;78243:18:0;78271:10;78284:19;78229:13;:75::i;:::-;78321:22;;;:34;;;78397:24;;;;:49;;78426:19;78397:49;:28;:49;:::i;:::-;78370:24;;;:76;78495:31;;:56;;78531:19;78495:56;:35;:56;:::i;:::-;78461:31;:90;78071:492;78579:14;;78575:154;;78624:9;;78610:57;;-1:-1:-1;;;;;78624:9:0;78643:10;78656;78610:13;:57::i;:::-;78693:8;;:24;;78706:10;78693:24;:12;:24;:::i;:::-;78682:8;:35;78575:154;76037:2699;;;;;;;:::o;31296:295::-;31373:26;31402:84;31439:6;31402:84;;;;;;;;;;;;;;;;;:32;31412:7;31421:12;:10;:12::i;:::-;31402:9;:32::i;:::-;:36;:84;;:36;:84;:::i;:::-;31373:113;;31499:51;31508:7;31517:12;:10;:12::i;:::-;31531:18;31499:8;:51::i;:::-;31561:22;31567:7;31576:6;31561:5;:22::i;:::-;31296:295;;;:::o;62896:107::-;40161:12;:10;:12::i;:::-;40151:6;;-1:-1:-1;;;;;40151:6:0;;;:22;;;40143:67;;;;;-1:-1:-1;;;40143:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40143:67:0;;;;;;;;;;;;;;;62965:20:::1;:30:::0;62896:107::o;60296:31::-;;;;:::o;63893:660::-;63963:1;63953:7;:11;63945:48;;;;;-1:-1:-1;;;63945:48:0;;;;;;;;;;;;-1:-1:-1;;;63945:48:0;;;;;;;;;;;;;;;64012:11;;;;;;;;:19;;:11;:19;64004:73;;;;-1:-1:-1;;;64004:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64115:18;;64096:15;:37;;64088:88;;;;-1:-1:-1;;;64088:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64189:11;;:73;;-1:-1:-1;;;;;64189:11:0;64226:10;64247:4;64254:7;64189:73;:28;:73;:::i;:::-;64286:10;;:23;;64301:7;64286:23;:14;:23;:::i;:::-;64273:10;:36;64346:12;;64322:21;;64346:19;;64363:1;64346:19;:16;:19;:::i;:::-;64322:43;;64412:52;64450:13;64455:7;64450:4;:13::i;:::-;64412:8;64421:13;64412:23;;;;;;;;;;;;;;;;;;;;;:33;;:52;:37;:52;:::i;:::-;64376:8;64385:13;64376:23;;;;;;;;;;;;;;;;;;:33;;:88;;;;64502:12;;64490:10;-1:-1:-1;;;;;64482:63:0;;64516:28;;64482:63;;;;;;;;;;;;;;;;;;63893:660;;:::o;41676:152::-;40161:12;:10;:12::i;:::-;40151:6;;-1:-1:-1;;;;;40151:6:0;;;:22;;;40143:67;;;;;-1:-1:-1;;;40143:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40143:67:0;;;;;;;;;;;;;;;41776:12:::1;-1:-1:-1::0;;;;;41769:29:0::1;;41799:7;:5;:7::i;:::-;41808:11;41769:51;;;;;;;;;;;;;-1:-1:-1::0;;;;;41769:51:0::1;-1:-1:-1::0;;;;;41769:51:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;5:9:-1;2:2;;;27:1;24::::0;17:12:::1;2:2;41769:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;41769:51:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28::::0;21:12:::1;4:2;-1:-1:::0;;;;41676:152:0:o;66620:645::-;40161:12;:10;:12::i;:::-;40151:6;;-1:-1:-1;;;;;40151:6:0;;;:22;;;40143:67;;;;;-1:-1:-1;;;40143:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40143:67:0;;;;;;;;;;;;;;;66683:9:::1;::::0;:74:::1;::::0;-1:-1:-1;;;;;66683:9:0::1;66718:10;66739:4;66746:10:::0;66683:74:::1;:26;:74;:::i;:::-;66792:80;::::0;;;;::::1;::::0;;;66819:8:::1;::::0;;66792:80;;::::1;::::0;::::1;::::0;;;66778:8:::1;27:10:-1::0;;39:1:::1;23:18:::0;::::1;45:23:::0;;-1:-1;66778:95:0;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;;;;;;;;;66890:8;-1:-1:-1;;66886:224:0::1;;;66928:15;66946:33;66975:3;66946:24;66961:8;;66946:10;:14;;:24;;;;:::i;:33::-;66928:51:::0;-1:-1:-1;67013:28:0::1;67026:14;66928:51:::0;67038:1:::1;67026:14;:11;:14;:::i;:::-;67013:8;::::0;;:28:::1;:12;:28;:::i;:::-;67002:8;:39:::0;67072:9:::1;::::0;67083:5:::1;::::0;67058:40:::1;::::0;-1:-1:-1;;;;;67072:9:0;;::::1;::::0;67083:5:::1;67090:7:::0;67058:13:::1;:40::i;:::-;66886:224;;67122:12;:20:::0;;-1:-1:-1;;67122:20:0::1;::::0;;67196:6:::1;67178:15;:24;67153:22;:49:::0;;;67236:8:::1;::::0;67230:27:::1;::::0;;;;;;;-1:-1:-1;;;;;67236:8:0;;::::1;::::0;67230:27:::1;::::0;;;;;;;::::1;66620:645:::0;:::o;39939:79::-;40004:6;;-1:-1:-1;;;;;40004:6:0;39939:79;:::o;60242:45::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53264:138::-;53337:7;53364:12;;;:6;:12;;;;;:30;;53388:5;53364:30;:23;:30;:::i;:::-;53357:37;53264:138;-1:-1:-1;;;53264:138:0:o;52225:139::-;52294:4;52318:12;;;:6;:12;;;;;:38;;52348:7;52318:38;:29;:38;:::i;21793:87::-;21865:7;21858:14;;;;;;;;-1:-1:-1;;21858:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21832:13;;21858:14;;21865:7;;21858:14;;21865:7;21858:14;;;;;;;;;;;;;;;;;;;;;;;;51393:49;51438:4;51393:49;:::o;25791:269::-;25884:4;25901:129;25910:12;:10;:12::i;:::-;25924:7;25933:96;25972:15;25933:96;;;;;;;;;;;;;;;;;:11;:25;25945:12;:10;:12::i;:::-;-1:-1:-1;;;;;25933:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;25933:25:0;;;:34;;;;;;;;;;;:96;;:38;:96;:::i;23161:175::-;23247:4;23264:42;23274:12;:10;:12::i;:::-;23288:9;23299:6;23264:9;:42::i;63011:117::-;40161:12;:10;:12::i;:::-;40151:6;;-1:-1:-1;;;;;40151:6:0;;;:22;;;40143:67;;;;;-1:-1:-1;;;40143:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40143:67:0;;;;;;;;;;;;;;;63082:28:::1;:38:::0;63011:117::o;70897:1257::-;71007:10;70966:19;70988:31;;;:10;:31;;;;;71134:23;;;;71052:15;;71099:7;;71134:27;;;;:56;;;71189:1;71165:4;:21;;;:25;71134:56;:74;;;;;71207:1;71194:10;;:14;71134:74;71130:620;;;71225:22;71250:36;71264:4;:21;;;71250:9;:13;;:36;;;;:::i;:::-;71225:61;;71324:10;71307:14;:27;71303:95;;;-1:-1:-1;71372:10:0;71303:95;71414:20;71437:111;71537:10;71437:95;71517:14;71437:75;71481:11;:30;;;71437:39;71452:4;:23;;;71437:10;;:14;;:39;;;;:::i;:111::-;71584:10;;71414:134;;-1:-1:-1;71584:28:0;;71414:134;71584:28;:14;:28;:::i;:::-;71571:10;:41;71643:11;;71629:61;;-1:-1:-1;;;;;71643:11:0;71664:10;71677:12;71629:13;:61::i;:::-;-1:-1:-1;;71705:21:0;;;:33;;;71130:620;71766:22;;71762:385;;71805:17;;:90;;-1:-1:-1;;;;;71805:17:0;71848:10;71869:4;71876:18;71805:90;:34;:90;:::i;:::-;71912:21;;;:33;;;71986:23;;;;:47;;72014:18;71986:47;:27;:47;:::i;:::-;71960:23;;;:73;72081:30;;:54;;72116:18;72081:54;:34;:54;:::i;:::-;72048:30;:87;70897:1257;;;;:::o;60178:23::-;;;;;;;;;;67317:1187;67387:1;67377:7;:11;67369:51;;;;;-1:-1:-1;;;67369:51:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;67439:12;;;;:21;67431:75;;;;-1:-1:-1;;;67431:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67550:15;67525:22;;:40;67517:98;;;;-1:-1:-1;;;67517:98:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;67669:10;67628:19;67650:31;;;:10;:31;;;;;;;;;67761:16;;67716:10;;:41;;-1:-1:-1;;;67716:41:0;;;;;;;;;;;67650:31;;67761:16;;-1:-1:-1;;;;;67716:10:0;;:20;;:41;;;;;;;;;;:10;:41;;;2:2:-1;;;;27:1;24;17:12;2:2;67716:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;67716:41:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;67716:41:0;:61;;;:150;;-1:-1:-1;67846:20:0;;67794:17;;:48;;;-1:-1:-1;;;67794:48:0;;67830:10;67794:48;;;;;;-1:-1:-1;;;;;67794:17:0;;;;:27;;:48;;;;;;;;;;;;;;;:17;:48;;;2:2:-1;;;;27:1;24;17:12;2:2;67794:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;67794:48:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;67794:48:0;:72;;67716:150;:239;;;-1:-1:-1;67935:20:0;;67883:17;;:48;;;-1:-1:-1;;;67883:48:0;;67919:10;67883:48;;;;;;-1:-1:-1;;;;;67883:17:0;;;;:27;;:48;;;;;;;;;;;;;;;:17;:48;;;2:2:-1;;;;27:1;24;17:12;2:2;67883:48:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;67883:48:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;67883:48:0;:72;;67716:239;:303;;;;67999:20;;67972:4;:23;;;:47;;67716:303;:367;;;;68063:20;;68036:4;:23;;;:47;;67716:367;67694:448;;;;;-1:-1:-1;;;67694:448:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;68193:7;68175:15;:25;68155:45;;68235:11;;:73;;-1:-1:-1;;;;;68235:11:0;68272:10;68293:4;68300:7;68235:73;:28;:73;:::i;:::-;68319:9;;:71;;-1:-1:-1;;;;;68319:9:0;68354:10;68375:4;68382:7;68319:71;:26;:71;:::i;:::-;68408:35;68422:10;68435:7;68408:5;:35::i;:::-;68459:37;;;;;;;;;;;;;;68467:10;;68459:37;;;;;;;;67317:1187;;:::o;65249:732::-;65295:11;;;;;;;;:19;;:11;:19;65287:72;;;;-1:-1:-1;;;65287:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65396:18;;65378:15;:36;65370:92;;;;-1:-1:-1;;;65370:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65489:11;;65523:19;;65475:68;;-1:-1:-1;;;;;65489:11:0;;65510:10;;65475:13;:68::i;:::-;65582:19;;65567:10;;:35;;;:14;:35;:::i;:::-;65554:10;:48;65639:12;;65615:21;;65639:19;;65656:1;65639:19;:16;:19;:::i;:::-;65669:11;:19;;-1:-1:-1;;65669:19:0;;;65741:8;:23;;65615:43;;-1:-1:-1;65741:8:0;65615:43;;65741:23;;;;;;;;;;;;;;;;:37;;;65705:8;65714:13;65705:23;;;;;;;;;;;;;;;;;;:33;;;:73;65701:273;;;65823:12;;65837:19;;65800:57;;;;;;;65811:10;;65800:57;;;;;;;;;;65701:273;;;65928:12;;65942:19;;65904:58;;;;;;;65916:10;;65904:58;;;;;;;;;;65249:732;:::o;58326:31::-;;;-1:-1:-1;;;;;58326:31:0;;:::o;74675:1354::-;74787:10;74746:19;74768:31;;;:10;:31;;;;;74914:23;;;;74832:15;;74879:7;;74914:27;;;;:56;;;74969:1;74945:4;:21;;;:25;74914:56;:74;;;;;74987:1;74974:10;;:14;74914:74;74910:620;;;75005:22;75030:36;75044:4;:21;;;75030:9;:13;;:36;;;;:::i;:::-;75005:61;;75104:10;75087:14;:27;75083:95;;;-1:-1:-1;75152:10:0;75083:95;75194:20;75217:111;75317:10;75217:95;75297:14;75217:75;75261:11;:30;;;75217:39;75232:4;:23;;;75217:10;;:14;;:39;;;;:::i;:111::-;75364:10;;75194:134;;-1:-1:-1;75364:28:0;;75194:134;75364:28;:14;:28;:::i;:::-;75351:10;:41;75423:11;;75409:61;;-1:-1:-1;;;;;75423:11:0;75444:10;75457:12;75409:13;:61::i;:::-;-1:-1:-1;;75485:21:0;;;:33;;;74910:620;75546:22;;75542:480;;75615:4;:23;;;75593:18;:45;;75585:95;;;;-1:-1:-1;;;75585:95:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;75711:17;;75697:73;;-1:-1:-1;;;;;75711:17:0;75738:10;75751:18;75697:13;:73::i;:::-;75787:21;;;:33;;;75861:23;;;;:47;;75889:18;75861:47;:27;:47;:::i;:::-;75835:23;;;:73;75956:30;;:54;;75991:18;75956:54;:34;:54;:::i;60334:35::-;;;;:::o;60210:25::-;;;;;;;;;;;;;;;;:::o;57901:23::-;;;-1:-1:-1;;;;;57901:23:0;;:::o;58512:32::-;;;-1:-1:-1;;;;;58512:32:0;;:::o;60628:33::-;;;;:::o;52538:127::-;52601:7;52628:12;;;:6;:12;;;;;:29;;:27;:29::i;60766:24::-;;;;;;:::o;56800:57::-;56838:19;;;-1:-1:-1;;;56838:19:0;;;;;;;;;;;;56800:57;:::o;54439:230::-;54532:12;;;;:6;:12;;;;;:22;;;54524:45;;54556:12;:10;:12::i;54524:45::-;54516:106;;;;-1:-1:-1;;;54516:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60594:27;;;;:::o;62674:99::-;40161:12;:10;:12::i;:::-;40151:6;;-1:-1:-1;;;;;40151:6:0;;;:22;;;40143:67;;;;;-1:-1:-1;;;40143:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40143:67:0;;;;;;;;;;;;;;;62739:16:::1;:26:::0;62674:99::o;60420:43::-;;;;:::o;23399:151::-;-1:-1:-1;;;;;23515:18:0;;;23488:7;23515:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;23399:151::o;72162:2505::-;72301:10;72260:19;72282:31;;;:10;:31;;;;;72384:8;;72282:31;;72260:19;;;72384:15;;72397:1;72384:15;:12;:15;:::i;:::-;72514:23;;;;72359:40;;-1:-1:-1;72432:15:0;;72479:7;;72514:27;;;;:56;;;72569:1;72545:4;:21;;;:25;72514:56;:78;;;;;72591:1;72574:14;:18;72514:78;72510:582;;;72609:22;72634:36;72648:4;:21;;;72634:9;:13;;:36;;;;:::i;:::-;72609:61;;72708:10;72691:14;:27;72687:95;;;-1:-1:-1;72756:10:0;72687:95;72810:23;72836:115;72940:10;72836:99;72920:14;72836:79;72884:11;:30;;;72836:43;72855:4;:23;;;72836:14;:18;;:43;;;;:::i;:115::-;72810:141;-1:-1:-1;72987:31:0;:10;72810:141;72987:31;:14;:31;:::i;:::-;73047:21;;;:33;;;72974:44;-1:-1:-1;;;72510:582:0;73133:1;73106:4;:24;;;:28;:58;;;;;73163:1;73138:4;:22;;;:26;73106:58;:80;;;;;73185:1;73168:14;:18;73106:80;73102:588;;;73203:22;73228:37;73242:4;:22;;;73228:9;:13;;:37;;;;:::i;:::-;73203:62;;73303:10;73286:14;:27;73282:95;;;-1:-1:-1;73351:10:0;73282:95;73405:23;73431:117;73537:10;73431:101;73517:14;73431:81;73480:11;:31;;;73431:44;73450:4;:24;;;73431:14;:18;;:44;;;;:::i;:117::-;73405:143;-1:-1:-1;73584:31:0;:10;73405:143;73584:31;:14;:31;:::i;:::-;73644:22;;;:34;;;73571:44;-1:-1:-1;;;73102:588:0;73706:22;;73702:385;;73745:17;;:90;;-1:-1:-1;;;;;73745:17:0;73788:10;73809:4;73816:18;73745:90;:34;:90;:::i;:::-;73852:21;;;:33;;;73926:23;;;;:47;;73954:18;73926:47;:27;:47;:::i;:::-;73900:23;;;:73;74021:30;;:54;;74056:18;74021:54;:34;:54;:::i;:::-;73988:30;:87;73702:385;74103:23;;74099:395;;74143:18;;:92;;-1:-1:-1;;;;;74143:18:0;74187:10;74208:4;74215:19;74143:92;:35;:92;:::i;:::-;74252:22;;;:34;;;74328:24;;;;:49;;74357:19;74328:49;:28;:49;:::i;:::-;74301:24;;;:76;74426:31;;:56;;74462:19;74426:56;:35;:56;:::i;70462:427::-;70510:7;70554:1;70538:13;;:17;70530:58;;;;;-1:-1:-1;;;70530:58:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;70601:24;70628:8;70637:20;70655:1;70637:13;;:17;;:20;;;;:::i;:::-;70628:30;;;;;;;;;;;;;;;70728:17;70628:30;;;;;70728:17;;;;70710:15;;70628:30;;-1:-1:-1;;70710:58:0;;;;-1:-1:-1;70749:15:0;;:19;;70710:58;70706:144;;;70822:15;;70800:17;;;;:38;;;:21;:38;:::i;60513:28::-;;;;:::o;40884:244::-;40161:12;:10;:12::i;:::-;40151:6;;-1:-1:-1;;;;;40151:6:0;;;:22;;;40143:67;;;;;-1:-1:-1;;;40143:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;40143:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;40973:22:0;::::1;40965:73;;;;-1:-1:-1::0;;;40965:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41075:6;::::0;41054:38:::1;::::0;-1:-1:-1;;;;;41054:38:0;;::::1;::::0;41075:6:::1;::::0;41054:38:::1;::::0;41075:6:::1;::::0;41054:38:::1;41103:6;:17:::0;;-1:-1:-1;;;;;;41103:17:0::1;-1:-1:-1::0;;;;;41103:17:0;;;::::1;::::0;;;::::1;::::0;;40884:244::o;56864:61::-;56904:21;;;-1:-1:-1;;;56904:21:0;;;;;;;;;;;;56864:61;:::o;923:106::-;1011:10;923:106;:::o;28938:346::-;-1:-1:-1;;;;;29040:19:0;;29032:68;;;;-1:-1:-1;;;29032:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29119:21:0;;29111:68;;;;-1:-1:-1;;;29111:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29192:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;29244:32;;;;;;;;;;;;;;;;;28938:346;;;:::o;26550:539::-;-1:-1:-1;;;;;26656:20:0;;26648:70;;;;-1:-1:-1;;;26648:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26737:23:0;;26729:71;;;;-1:-1:-1;;;26729:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26813:47;26834:6;26842:9;26853:6;26813:20;:47::i;:::-;26893:71;26915:6;26893:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26893:17:0;;:9;:17;;;;;;;;;;;;:71;;:21;:71;:::i;:::-;-1:-1:-1;;;;;26873:17:0;;;:9;:17;;;;;;;;;;;:91;;;;26998:20;;;;;;;:32;;27023:6;26998:32;:24;:32;:::i;:::-;-1:-1:-1;;;;;26975:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;27046:35;;;;;;;26975:20;;27046:35;;;;;;;;;;;;;26550:539;;;:::o;5876:192::-;5962:7;5998:12;5990:6;;;;5982:29;;;;-1:-1:-1;;;5982:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5982:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6034:5:0;;;5876:192::o;7258:132::-;7316:7;7343:39;7347:1;7350;7343:39;;;;;;;;;;;;;;;;;:3;:39::i;6319:471::-;6377:7;6622:6;6618:47;;-1:-1:-1;6652:1:0;6645:8;;6618:47;6689:5;;;6693:1;6689;:5;:1;6713:5;;;;;:10;6705:56;;;;-1:-1:-1;;;6705:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5445:136;5503:7;5530:43;5534:1;5537;5530:43;;;;;;;;;;;;;;;;;:3;:43::i;78748:304::-;78854:31;;;-1:-1:-1;;;78854:31:0;;78879:4;78854:31;;;;;;78836:15;;-1:-1:-1;;;;;78854:16:0;;;;;:31;;;;;;;;;;;;;;;:16;:31;;;2:2:-1;;;;27:1;24;17:12;2:2;78854:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;78854:31:0;;;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;78854:31:0;;-1:-1:-1;78900:17:0;;;78896:149;;;78934:33;-1:-1:-1;;;;;78934:19:0;;78954:3;78959:7;78934:33;:19;:33;:::i;:::-;78896:149;;;79000:33;-1:-1:-1;;;;;79000:19:0;;79020:3;79025:7;79000:33;:19;:33;:::i;4989:181::-;5047:7;5079:5;;;5103:6;;;;5095:46;;;;;-1:-1:-1;;;5095:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;28080:418;-1:-1:-1;;;;;28164:21:0;;28156:67;;;;-1:-1:-1;;;28156:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28236:49;28257:7;28274:1;28278:6;28236:20;:49::i;:::-;28319:68;28342:6;28319:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28319:18:0;;:9;:18;;;;;;;;;;;;:68;;:22;:68;:::i;:::-;-1:-1:-1;;;;;28298:18:0;;:9;:18;;;;;;;;;;:89;28413:12;;:24;;28430:6;28413:24;:16;:24;:::i;:::-;28398:12;:39;28453:37;;;;;;;;28479:1;;-1:-1:-1;;;;;28453:37:0;;;;;;;;;;;;28080:418;;:::o;56296:188::-;56370:12;;;;:6;:12;;;;;:33;;56395:7;56370:33;:24;:33;:::i;:::-;56366:111;;;56452:12;:10;:12::i;:::-;-1:-1:-1;;;;;56425:40:0;56443:7;-1:-1:-1;;;;;56425:40:0;56437:4;56425:40;;;;;;;;;;56296:188;;:::o;56492:192::-;56567:12;;;;:6;:12;;;;;:36;;56595:7;56567:36;:27;:36;:::i;:::-;56563:114;;;56652:12;:10;:12::i;:::-;-1:-1:-1;;;;;56625:40:0;56643:7;-1:-1:-1;;;;;56625:40:0;56637:4;56625:40;;;;;;;;;;56492:192;;:::o;10289:205::-;10417:68;;;-1:-1:-1;;;;;10417:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;10417:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;10390:96:0;;10410:5;;10390:19;:96::i;10104:177::-;10214:58;;;-1:-1:-1;;;;;10214:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;10214:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;10187:86:0;;10207:5;;10187:19;:86::i;79060:303::-;79105:6;79132:1;79128;:5;79124:232;;;-1:-1:-1;79154:1:0;79187;79183;79179:5;;:9;79203:92;79214:1;79210;:5;79203:92;;;79240:1;79236:5;;79278:1;79273;79269;79265;:5;;;;;;:9;79264:15;;;;;;79260:19;;79203:92;;;79124:232;;;;79316:6;;79312:44;;-1:-1:-1;79343:1:0;79060:303;;;:::o;48129:149::-;48203:7;48246:22;48250:3;48262:5;48246:3;:22::i;47424:158::-;47504:4;47528:46;47538:3;-1:-1:-1;;;;;47558:14:0;;47528:9;:46::i;27370:378::-;-1:-1:-1;;;;;27454:21:0;;27446:65;;;;;-1:-1:-1;;;27446:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;27524:49;27553:1;27557:7;27566:6;27524:20;:49::i;:::-;27601:12;;:24;;27618:6;27601:24;:16;:24;:::i;:::-;27586:12;:39;-1:-1:-1;;;;;27657:18:0;;:9;:18;;;;;;;;;;;:30;;27680:6;27657:30;:22;:30;:::i;:::-;-1:-1:-1;;;;;27636:18:0;;:9;:18;;;;;;;;;;;:51;;;;27703:37;;;;;;;27636:18;;:9;;27703:37;;;;;;;;;;27370:378;;:::o;47668:117::-;47731:7;47758:19;47766:3;47758:7;:19::i;7878:345::-;7964:7;8066:12;8059:5;8051:28;;;;-1:-1:-1;;;8051:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;8051:28:0;;8090:9;8106:1;8102;:5;;;;;;;7878:345;-1:-1:-1;;;;;7878:345:0:o;46870:143::-;46940:4;46964:41;46969:3;-1:-1:-1;;;;;46989:14:0;;46964:4;:41::i;47189:149::-;47262:4;47286:44;47294:3;-1:-1:-1;;;;;47314:14:0;;47286:7;:44::i;12409:761::-;12833:23;12859:69;12887:4;12859:69;;;;;;;;;;;;;;;;;12867:5;-1:-1:-1;;;;;12859:27:0;;;:69;;;;;:::i;:::-;12943:17;;12833:95;;-1:-1:-1;12943:21:0;12939:224;;13085:10;13074:30;;;;;15:2:-1;10:3;7:11;4:2;;;31:1;28;21:12;4:2;-1:-1;13074:30:0;13066:85;;;;-1:-1:-1;;;13066:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46412:204;46507:18;;46479:7;;46507:26;-1:-1:-1;46499:73:0;;;;-1:-1:-1;;;46499:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46590:3;:11;;46602:5;46590:18;;;;;;;;;;;;;;;;46583:25;;46412:204;;;;:::o;45744:129::-;45817:4;45841:19;;;:12;;;;;:19;;;;;;:24;;;45744:129::o;45959:109::-;46042:18;;45959:109::o;43524:414::-;43587:4;43609:21;43619:3;43624:5;43609:9;:21::i;:::-;43604:327;;-1:-1:-1;27:10;;39:1;23:18;;;45:23;;43647:11:0;:23;;;;;;;;;;;;;43830:18;;43808:19;;;:12;;;:19;;;;;;:40;;;;43863:11;;43604:327;-1:-1:-1;43914:5:0;43907:12;;44114:1544;44180:4;44319:19;;;:12;;;:19;;;;;;44355:15;;44351:1300;;44790:18;;-1:-1:-1;;44741:14:0;;;;44790:22;;;;44717:21;;44790:3;;:22;;45077;;;;;;;;;;;;;;45057:42;;45223:9;45194:3;:11;;45206:13;45194:26;;;;;;;;;;;;;;;;;;;:38;;;;45300:23;;;45342:1;45300:12;;;:23;;;;;;45326:17;;;45300:43;;45452:17;;45300:3;;45452:17;;;;;;;;;;;;;;;;;;;;;;45547:3;:12;;:19;45560:5;45547:19;;;;;;;;;;;45540:26;;;45590:4;45583:11;;;;;;;;44351:1300;45634:5;45627:12;;;;;17056:196;17159:12;17191:53;17214:6;17222:4;17228:1;17231:12;17191:22;:53::i;:::-;17184:60;17056:196;-1:-1:-1;;;;17056:196:0:o;18433:979::-;18563:12;18596:18;18607:6;18596:10;:18::i;:::-;18588:60;;;;;-1:-1:-1;;;18588:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18722:12;18736:23;18763:6;-1:-1:-1;;;;;18763:11:0;18783:8;18794:4;18763:36;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;18763:36:0;;;;;;;;;;;;;;;;;;;;;;;;;12:1:-1;19;14:27;;;;67:4;61:11;56:16;;134:4;130:9;123:4;105:16;101:27;97:43;94:1;90:51;84:4;77:65;157:16;154:1;147:27;211:16;208:1;201:4;198:1;194:12;179:49;5:228;;14:27;32:4;27:9;;5:228;;18721:78:0;;;;18814:7;18810:595;;;18845:10;-1:-1:-1;18838:17:0;;-1:-1:-1;18838:17:0;18810:595;18959:17;;:21;18955:439;;19222:10;19216:17;19283:15;19270:10;19266:2;19262:19;19255:44;19170:148;19358:20;;-1:-1:-1;;;19358:20:0;;;;;;;;;;;;;;;;;19365:12;;19358:20;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;13941:619:0;14001:4;14469:20;;14312:66;14509:23;;;;;;:42;;-1:-1:-1;;14536:15:0;;;14501:51;-1:-1:-1;;13941:619:0:o
Swarm Source
ipfs://743ae6cdb52df32255bcd71dfdf7dc32184570a15b1db073e6628b29c1df1d89
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.