Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 133 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 18416323 | 382 days ago | IN | 0 ETH | 0.00225655 | ||||
Approve | 18293400 | 399 days ago | IN | 0 ETH | 0.00043444 | ||||
Approve | 18293279 | 399 days ago | IN | 0 ETH | 0.00065697 | ||||
Approve | 18292001 | 399 days ago | IN | 0 ETH | 0.00049351 | ||||
Approve | 18290292 | 400 days ago | IN | 0 ETH | 0.00031646 | ||||
Approve | 18289636 | 400 days ago | IN | 0 ETH | 0.00025841 | ||||
Approve | 18288566 | 400 days ago | IN | 0 ETH | 0.00030157 | ||||
Approve | 18288356 | 400 days ago | IN | 0 ETH | 0.00030315 | ||||
Approve | 18288298 | 400 days ago | IN | 0 ETH | 0.00029717 | ||||
Approve | 18288186 | 400 days ago | IN | 0 ETH | 0.0002983 | ||||
Approve | 18288015 | 400 days ago | IN | 0 ETH | 0.00027897 | ||||
Approve | 18287867 | 400 days ago | IN | 0 ETH | 0.00028161 | ||||
Approve | 18287672 | 400 days ago | IN | 0 ETH | 0.0003031 | ||||
Approve | 18287609 | 400 days ago | IN | 0 ETH | 0.00056322 | ||||
Approve | 18287472 | 400 days ago | IN | 0 ETH | 0.00027507 | ||||
Approve | 18287455 | 400 days ago | IN | 0 ETH | 0.00028777 | ||||
Approve | 18287141 | 400 days ago | IN | 0 ETH | 0.00030444 | ||||
Approve | 18286935 | 400 days ago | IN | 0 ETH | 0.00042237 | ||||
Approve | 18286921 | 400 days ago | IN | 0 ETH | 0.00040938 | ||||
Approve | 18286830 | 400 days ago | IN | 0 ETH | 0.00046143 | ||||
Approve | 18286807 | 400 days ago | IN | 0 ETH | 0.00042402 | ||||
Approve | 18286749 | 400 days ago | IN | 0 ETH | 0.00071772 | ||||
Approve | 18286577 | 400 days ago | IN | 0 ETH | 0.00063174 | ||||
Approve | 18286565 | 400 days ago | IN | 0 ETH | 0.00073462 | ||||
Approve | 18286514 | 400 days ago | IN | 0 ETH | 0.0006335 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Floork
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-09-06 */ // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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 * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/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.8.0/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"); (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 functionCallWithValue(target, data, 0, "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"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } // File: @openzeppelin/contracts/proxy/utils/Initializable.sol // OpenZeppelin Contracts (last updated v4.9.0) (proxy/utils/Initializable.sol) pragma solidity ^0.8.2; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since proxied contracts do not make use of a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * The initialization functions use a version number. Once a version number is used, it is consumed and cannot be * reused. This mechanism prevents re-execution of each "step" but allows the creation of new initialization steps in * case an upgrade adds a module that needs to be initialized. * * For example: * * [.hljs-theme-light.nopadding] * ```solidity * contract MyToken is ERC20Upgradeable { * function initialize() initializer public { * __ERC20_init("MyToken", "MTK"); * } * } * * contract MyTokenV2 is MyToken, ERC20PermitUpgradeable { * function initializeV2() reinitializer(2) public { * __ERC20Permit_init("MyToken"); * } * } * ``` * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To prevent the implementation contract from being used, you should invoke * the {_disableInitializers} function in the constructor to automatically lock it when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() { * _disableInitializers(); * } * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. * @custom:oz-retyped-from bool */ uint8 private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Triggered when the contract has been initialized or reinitialized. */ event Initialized(uint8 version); /** * @dev A modifier that defines a protected initializer function that can be invoked at most once. In its scope, * `onlyInitializing` functions can be used to initialize parent contracts. * * Similar to `reinitializer(1)`, except that functions marked with `initializer` can be nested in the context of a * constructor. * * Emits an {Initialized} event. */ modifier initializer() { bool isTopLevelCall = !_initializing; require( (isTopLevelCall && _initialized < 1) || (!Address.isContract(address(this)) && _initialized == 1), "Initializable: contract is already initialized" ); _initialized = 1; if (isTopLevelCall) { _initializing = true; } _; if (isTopLevelCall) { _initializing = false; emit Initialized(1); } } /** * @dev A modifier that defines a protected reinitializer function that can be invoked at most once, and only if the * contract hasn't been initialized to a greater version before. In its scope, `onlyInitializing` functions can be * used to initialize parent contracts. * * A reinitializer may be used after the original initialization step. This is essential to configure modules that * are added through upgrades and that require initialization. * * When `version` is 1, this modifier is similar to `initializer`, except that functions marked with `reinitializer` * cannot be nested. If one is invoked in the context of another, execution will revert. * * Note that versions can jump in increments greater than 1; this implies that if multiple reinitializers coexist in * a contract, executing them in the right order is up to the developer or operator. * * WARNING: setting the version to 255 will prevent any future reinitialization. * * Emits an {Initialized} event. */ modifier reinitializer(uint8 version) { require(!_initializing && _initialized < version, "Initializable: contract is already initialized"); _initialized = version; _initializing = true; _; _initializing = false; emit Initialized(version); } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} and {reinitializer} modifiers, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } /** * @dev Locks the contract, preventing any future reinitialization. This cannot be part of an initializer call. * Calling this in the constructor of a contract will prevent that contract from being initialized or reinitialized * to any version. It is recommended to use this to lock implementation contracts that are designed to be called * through proxies. * * Emits an {Initialized} event the first time it is successfully executed. */ function _disableInitializers() internal virtual { require(!_initializing, "Initializable: contract is initializing"); if (_initialized != type(uint8).max) { _initialized = type(uint8).max; emit Initialized(type(uint8).max); } } /** * @dev Returns the highest version that has been initialized. See {reinitializer}. */ function _getInitializedVersion() internal view returns (uint8) { return _initialized; } /** * @dev Returns `true` if the contract is currently initializing. See {onlyInitializing}. */ function _isInitializing() internal view returns (bool) { return _initializing; } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.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. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool); } // File: contracts/IFLOOR.sol pragma solidity >=0.7.5; interface IFLOOR is IERC20 { function mint(address account_, uint256 amount_) external; function burn(uint256 amount) external; function burnFrom(address account_, uint256 amount_) external; } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 default value returned by this function, unless * it's overridden. * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + 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) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, 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: * * - `account` 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 += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This 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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } // File: contracts/Floork.sol pragma solidity ^0.8.0; /** * Allows Floor holders that are wanting to exit their FloorDAO position to swap their * FLOOR token for a FLOORK token. * * This contract will act as the FLOORK ERC20 token. */ contract Floork is ERC20, Initializable, Ownable { /// Address of the FLOOR token address IFLOOR public floor; /// Boolean to show if the contract can be used bool public isActive; /// Timestamp before which token trades can be made uint public activationEndTime; /** * Defines our ERC20 token, sets up references and defines our initial supply. * * @param _floorToken The existing FLOOR token address */ constructor(address _floorToken) ERC20('FloorDAO Fork', 'FLOORK') Ownable() { // Ensure that the provided FLOOR token is not a NULL address require(_floorToken != address(0), 'Floor token address cannot be zero'); // Assign our FLOOR token address floor = IFLOOR(_floorToken); // Define our initial supply as zero _mint(msg.sender, 0); } /** * Sets up the contract by setting our trade end time and enables the contract swaps * to be interacted with for 7 days. */ function initialize() public initializer onlyOwner { // Makes the contract active isActive = true; // Enables the contract swaps used for 7 days from call activationEndTime = block.timestamp + 7 days; } /** * Takes _x_ FLOOR tokens from the `msg.sender` and burns them. An equivalent number * of FLOORK tokens are then minted and sent to the `msg.sender`. * * @dev This function can only be called once the contract has been `initialized` and * it must be within the 7 day activation period. */ function burnAndRedeem(uint floorAmount) external { // Ensures that called functions are only available when the contract has been // initialised and the active period is not over. require(isActive, 'Function is not active'); require(block.timestamp <= activationEndTime, 'Active period is over'); // Ensure that we have been provided with a non-zero number of tokens require(floorAmount != 0, 'Cannot redeem zero tokens'); // Transfer the specified amount of floor tokens from the user to this contract floor.burnFrom(msg.sender, floorAmount); // Mint the equivalent amount of FLOORK tokens to the user, adjusting for // decimals since floor token is 9 decimals and FLOORK is 18 decimals. _mint(msg.sender, floorAmount * (10**9)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_floorToken","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":false,"internalType":"uint8","name":"version","type":"uint8"}],"name":"Initialized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"activationEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"floorAmount","type":"uint256"}],"name":"burnAndRedeem","outputs":[],"stateMutability":"nonpayable","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":[],"name":"floor","outputs":[{"internalType":"contract IFLOOR","name":"","type":"address"}],"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":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620028ac380380620028ac833981810160405281019062000037919062000465565b6040518060400160405280600d81526020017f466c6f6f7244414f20466f726b000000000000000000000000000000000000008152506040518060400160405280600681526020017f464c4f4f524b00000000000000000000000000000000000000000000000000008152508160039081620000b4919062000711565b508060049081620000c6919062000711565b505050620000e9620000dd620001b660201b60201c565b620001be60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200015b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000152906200087f565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001af3360006200028460201b60201c565b50620009ab565b600033905090565b6000600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620002f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002ed90620008f1565b60405180910390fd5b6200030a60008383620003f160201b60201c565b80600260008282546200031e919062000942565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003d191906200098e565b60405180910390a3620003ed60008383620003f660201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200042d8262000400565b9050919050565b6200043f8162000420565b81146200044b57600080fd5b50565b6000815190506200045f8162000434565b92915050565b6000602082840312156200047e576200047d620003fb565b5b60006200048e848285016200044e565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200051957607f821691505b6020821081036200052f576200052e620004d1565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005997fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200055a565b620005a586836200055a565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620005f2620005ec620005e684620005bd565b620005c7565b620005bd565b9050919050565b6000819050919050565b6200060e83620005d1565b620006266200061d82620005f9565b84845462000567565b825550505050565b600090565b6200063d6200062e565b6200064a81848462000603565b505050565b5b8181101562000672576200066660008262000633565b60018101905062000650565b5050565b601f821115620006c1576200068b8162000535565b62000696846200054a565b81016020851015620006a6578190505b620006be620006b5856200054a565b8301826200064f565b50505b505050565b600082821c905092915050565b6000620006e660001984600802620006c6565b1980831691505092915050565b6000620007018383620006d3565b9150826002028217905092915050565b6200071c8262000497565b67ffffffffffffffff811115620007385762000737620004a2565b5b62000744825462000500565b6200075182828562000676565b600060209050601f83116001811462000789576000841562000774578287015190505b620007808582620006f3565b865550620007f0565b601f198416620007998662000535565b60005b82811015620007c3578489015182556001820191506020850194506020810190506200079c565b86831015620007e35784890151620007df601f891682620006d3565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f466c6f6f7220746f6b656e20616464726573732063616e6e6f74206265207a6560008201527f726f000000000000000000000000000000000000000000000000000000000000602082015250565b600062000867602283620007f8565b9150620008748262000809565b604082019050919050565b600060208201905081810360008301526200089a8162000858565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620008d9601f83620007f8565b9150620008e682620008a1565b602082019050919050565b600060208201905081810360008301526200090c81620008ca565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200094f82620005bd565b91506200095c83620005bd565b925082820190508082111562000977576200097662000913565b5b92915050565b6200098881620005bd565b82525050565b6000602082019050620009a560008301846200097d565b92915050565b611ef180620009bb6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d7146102e8578063a9059cbb14610318578063cc5cd2e714610348578063dd62ed3e14610366578063f2fde38b1461039657610121565b8063715018a61461027c5780638129fc1c146102865780638da5cb5b1461029057806390884e0d146102ae57806395d89b41146102ca57610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe578063406953631461022e57806370a082311461024c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806322f3e2d414610192575b600080fd5b61012e6103b2565b60405161013b91906112fc565b60405180910390f35b61015e600480360381019061015991906113b7565b610444565b60405161016b9190611412565b60405180910390f35b61017c610467565b604051610189919061143c565b60405180910390f35b61019a610471565b6040516101a79190611412565b60405180910390f35b6101ca60048036038101906101c59190611457565b610484565b6040516101d79190611412565b60405180910390f35b6101e86104b3565b6040516101f591906114c6565b60405180910390f35b610218600480360381019061021391906113b7565b6104bc565b6040516102259190611412565b60405180910390f35b6102366104f3565b6040516102439190611540565b60405180910390f35b6102666004803603810190610261919061155b565b610519565b604051610273919061143c565b60405180910390f35b610284610561565b005b61028e610575565b005b6102986106ea565b6040516102a59190611597565b60405180910390f35b6102c860048036038101906102c391906115b2565b610714565b005b6102d2610896565b6040516102df91906112fc565b60405180910390f35b61030260048036038101906102fd91906113b7565b610928565b60405161030f9190611412565b60405180910390f35b610332600480360381019061032d91906113b7565b61099f565b60405161033f9190611412565b60405180910390f35b6103506109c2565b60405161035d919061143c565b60405180910390f35b610380600480360381019061037b91906115df565b6109c8565b60405161038d919061143c565b60405180910390f35b6103b060048036038101906103ab919061155b565b610a4f565b005b6060600380546103c19061164e565b80601f01602080910402602001604051908101604052809291908181526020018280546103ed9061164e565b801561043a5780601f1061040f5761010080835404028352916020019161043a565b820191906000526020600020905b81548152906001019060200180831161041d57829003601f168201915b5050505050905090565b60008061044f610ad2565b905061045c818585610ada565b600191505092915050565b6000600254905090565b600660149054906101000a900460ff1681565b60008061048f610ad2565b905061049c858285610ca3565b6104a7858585610d2f565b60019150509392505050565b60006012905090565b6000806104c7610ad2565b90506104e88185856104d985896109c8565b6104e391906116ae565b610ada565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610569610fa5565b6105736000611023565b565b6000600560019054906101000a900460ff161590508080156105a957506001600560009054906101000a900460ff1660ff16105b806105d857506105b8306110e9565b1580156105d757506001600560009054906101000a900460ff1660ff16145b5b610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90611754565b60405180910390fd5b6001600560006101000a81548160ff021916908360ff1602179055508015610655576001600560016101000a81548160ff0219169083151502179055505b61065d610fa5565b6001600660146101000a81548160ff02191690831515021790555062093a804261068791906116ae565b60078190555080156106e7576000600560016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516106de91906117af565b60405180910390a15b50565b6000600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660149054906101000a900460ff16610763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075a90611816565b60405180910390fd5b6007544211156107a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079f90611882565b60405180910390fd5b600081036107eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e2906118ee565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc679033836040518363ffffffff1660e01b815260040161084892919061190e565b600060405180830381600087803b15801561086257600080fd5b505af1158015610876573d6000803e3d6000fd5b5050505061089333633b9aca008361088e9190611937565b61110c565b50565b6060600480546108a59061164e565b80601f01602080910402602001604051908101604052809291908181526020018280546108d19061164e565b801561091e5780601f106108f35761010080835404028352916020019161091e565b820191906000526020600020905b81548152906001019060200180831161090157829003601f168201915b5050505050905090565b600080610933610ad2565b9050600061094182866109c8565b905083811015610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d906119eb565b60405180910390fd5b6109938286868403610ada565b60019250505092915050565b6000806109aa610ad2565b90506109b7818585610d2f565b600191505092915050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a57610fa5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90611a7d565b60405180910390fd5b610acf81611023565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090611b0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90611ba1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c96919061143c565b60405180910390a3505050565b6000610caf84846109c8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d295781811015610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1290611c0d565b60405180910390fd5b610d288484848403610ada565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590611c9f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490611d31565b60405180910390fd5b610e18838383611262565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590611dc3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8c919061143c565b60405180910390a3610f9f848484611267565b50505050565b610fad610ad2565b73ffffffffffffffffffffffffffffffffffffffff16610fcb6106ea565b73ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890611e2f565b60405180910390fd5b565b6000600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290611e9b565b60405180910390fd5b61118760008383611262565b806002600082825461119991906116ae565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161124a919061143c565b60405180910390a361125e60008383611267565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112a657808201518184015260208101905061128b565b60008484015250505050565b6000601f19601f8301169050919050565b60006112ce8261126c565b6112d88185611277565b93506112e8818560208601611288565b6112f1816112b2565b840191505092915050565b6000602082019050818103600083015261131681846112c3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061134e82611323565b9050919050565b61135e81611343565b811461136957600080fd5b50565b60008135905061137b81611355565b92915050565b6000819050919050565b61139481611381565b811461139f57600080fd5b50565b6000813590506113b18161138b565b92915050565b600080604083850312156113ce576113cd61131e565b5b60006113dc8582860161136c565b92505060206113ed858286016113a2565b9150509250929050565b60008115159050919050565b61140c816113f7565b82525050565b60006020820190506114276000830184611403565b92915050565b61143681611381565b82525050565b6000602082019050611451600083018461142d565b92915050565b6000806000606084860312156114705761146f61131e565b5b600061147e8682870161136c565b935050602061148f8682870161136c565b92505060406114a0868287016113a2565b9150509250925092565b600060ff82169050919050565b6114c0816114aa565b82525050565b60006020820190506114db60008301846114b7565b92915050565b6000819050919050565b60006115066115016114fc84611323565b6114e1565b611323565b9050919050565b6000611518826114eb565b9050919050565b600061152a8261150d565b9050919050565b61153a8161151f565b82525050565b60006020820190506115556000830184611531565b92915050565b6000602082840312156115715761157061131e565b5b600061157f8482850161136c565b91505092915050565b61159181611343565b82525050565b60006020820190506115ac6000830184611588565b92915050565b6000602082840312156115c8576115c761131e565b5b60006115d6848285016113a2565b91505092915050565b600080604083850312156115f6576115f561131e565b5b60006116048582860161136c565b92505060206116158582860161136c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061166657607f821691505b6020821081036116795761167861161f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116b982611381565b91506116c483611381565b92508282019050808211156116dc576116db61167f565b5b92915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b600061173e602e83611277565b9150611749826116e2565b604082019050919050565b6000602082019050818103600083015261176d81611731565b9050919050565b6000819050919050565b600061179961179461178f84611774565b6114e1565b6114aa565b9050919050565b6117a98161177e565b82525050565b60006020820190506117c460008301846117a0565b92915050565b7f46756e6374696f6e206973206e6f742061637469766500000000000000000000600082015250565b6000611800601683611277565b915061180b826117ca565b602082019050919050565b6000602082019050818103600083015261182f816117f3565b9050919050565b7f41637469766520706572696f64206973206f7665720000000000000000000000600082015250565b600061186c601583611277565b915061187782611836565b602082019050919050565b6000602082019050818103600083015261189b8161185f565b9050919050565b7f43616e6e6f742072656465656d207a65726f20746f6b656e7300000000000000600082015250565b60006118d8601983611277565b91506118e3826118a2565b602082019050919050565b60006020820190508181036000830152611907816118cb565b9050919050565b60006040820190506119236000830185611588565b611930602083018461142d565b9392505050565b600061194282611381565b915061194d83611381565b925082820261195b81611381565b915082820484148315176119725761197161167f565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119d5602583611277565b91506119e082611979565b604082019050919050565b60006020820190508181036000830152611a04816119c8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a67602683611277565b9150611a7282611a0b565b604082019050919050565b60006020820190508181036000830152611a9681611a5a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611af9602483611277565b9150611b0482611a9d565b604082019050919050565b60006020820190508181036000830152611b2881611aec565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8b602283611277565b9150611b9682611b2f565b604082019050919050565b60006020820190508181036000830152611bba81611b7e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bf7601d83611277565b9150611c0282611bc1565b602082019050919050565b60006020820190508181036000830152611c2681611bea565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c89602583611277565b9150611c9482611c2d565b604082019050919050565b60006020820190508181036000830152611cb881611c7c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d1b602383611277565b9150611d2682611cbf565b604082019050919050565b60006020820190508181036000830152611d4a81611d0e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611dad602683611277565b9150611db882611d51565b604082019050919050565b60006020820190508181036000830152611ddc81611da0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e19602083611277565b9150611e2482611de3565b602082019050919050565b60006020820190508181036000830152611e4881611e0c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e85601f83611277565b9150611e9082611e4f565b602082019050919050565b60006020820190508181036000830152611eb481611e78565b905091905056fea26469706673582212209378f0f08a674ce0525c105de3d81374f4b19f8b4deaea47588446e4509c110264736f6c63430008130033000000000000000000000000f59257e961883636290411c11ec5ae622d19455e
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101215760003560e01c8063715018a6116100ad578063a457c2d711610071578063a457c2d7146102e8578063a9059cbb14610318578063cc5cd2e714610348578063dd62ed3e14610366578063f2fde38b1461039657610121565b8063715018a61461027c5780638129fc1c146102865780638da5cb5b1461029057806390884e0d146102ae57806395d89b41146102ca57610121565b806323b872dd116100f457806323b872dd146101b0578063313ce567146101e057806339509351146101fe578063406953631461022e57806370a082311461024c57610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806322f3e2d414610192575b600080fd5b61012e6103b2565b60405161013b91906112fc565b60405180910390f35b61015e600480360381019061015991906113b7565b610444565b60405161016b9190611412565b60405180910390f35b61017c610467565b604051610189919061143c565b60405180910390f35b61019a610471565b6040516101a79190611412565b60405180910390f35b6101ca60048036038101906101c59190611457565b610484565b6040516101d79190611412565b60405180910390f35b6101e86104b3565b6040516101f591906114c6565b60405180910390f35b610218600480360381019061021391906113b7565b6104bc565b6040516102259190611412565b60405180910390f35b6102366104f3565b6040516102439190611540565b60405180910390f35b6102666004803603810190610261919061155b565b610519565b604051610273919061143c565b60405180910390f35b610284610561565b005b61028e610575565b005b6102986106ea565b6040516102a59190611597565b60405180910390f35b6102c860048036038101906102c391906115b2565b610714565b005b6102d2610896565b6040516102df91906112fc565b60405180910390f35b61030260048036038101906102fd91906113b7565b610928565b60405161030f9190611412565b60405180910390f35b610332600480360381019061032d91906113b7565b61099f565b60405161033f9190611412565b60405180910390f35b6103506109c2565b60405161035d919061143c565b60405180910390f35b610380600480360381019061037b91906115df565b6109c8565b60405161038d919061143c565b60405180910390f35b6103b060048036038101906103ab919061155b565b610a4f565b005b6060600380546103c19061164e565b80601f01602080910402602001604051908101604052809291908181526020018280546103ed9061164e565b801561043a5780601f1061040f5761010080835404028352916020019161043a565b820191906000526020600020905b81548152906001019060200180831161041d57829003601f168201915b5050505050905090565b60008061044f610ad2565b905061045c818585610ada565b600191505092915050565b6000600254905090565b600660149054906101000a900460ff1681565b60008061048f610ad2565b905061049c858285610ca3565b6104a7858585610d2f565b60019150509392505050565b60006012905090565b6000806104c7610ad2565b90506104e88185856104d985896109c8565b6104e391906116ae565b610ada565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610569610fa5565b6105736000611023565b565b6000600560019054906101000a900460ff161590508080156105a957506001600560009054906101000a900460ff1660ff16105b806105d857506105b8306110e9565b1580156105d757506001600560009054906101000a900460ff1660ff16145b5b610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90611754565b60405180910390fd5b6001600560006101000a81548160ff021916908360ff1602179055508015610655576001600560016101000a81548160ff0219169083151502179055505b61065d610fa5565b6001600660146101000a81548160ff02191690831515021790555062093a804261068791906116ae565b60078190555080156106e7576000600560016101000a81548160ff0219169083151502179055507f7f26b83ff96e1f2b6a682f133852f6798a09c465da95921460cefb384740249860016040516106de91906117af565b60405180910390a15b50565b6000600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660149054906101000a900460ff16610763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075a90611816565b60405180910390fd5b6007544211156107a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161079f90611882565b60405180910390fd5b600081036107eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e2906118ee565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379cc679033836040518363ffffffff1660e01b815260040161084892919061190e565b600060405180830381600087803b15801561086257600080fd5b505af1158015610876573d6000803e3d6000fd5b5050505061089333633b9aca008361088e9190611937565b61110c565b50565b6060600480546108a59061164e565b80601f01602080910402602001604051908101604052809291908181526020018280546108d19061164e565b801561091e5780601f106108f35761010080835404028352916020019161091e565b820191906000526020600020905b81548152906001019060200180831161090157829003601f168201915b5050505050905090565b600080610933610ad2565b9050600061094182866109c8565b905083811015610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d906119eb565b60405180910390fd5b6109938286868403610ada565b60019250505092915050565b6000806109aa610ad2565b90506109b7818585610d2f565b600191505092915050565b60075481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a57610fa5565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ac6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abd90611a7d565b60405180910390fd5b610acf81611023565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4090611b0f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90611ba1565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c96919061143c565b60405180910390a3505050565b6000610caf84846109c8565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d295781811015610d1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1290611c0d565b60405180910390fd5b610d288484848403610ada565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9590611c9f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0490611d31565b60405180910390fd5b610e18838383611262565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590611dc3565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8c919061143c565b60405180910390a3610f9f848484611267565b50505050565b610fad610ad2565b73ffffffffffffffffffffffffffffffffffffffff16610fcb6106ea565b73ffffffffffffffffffffffffffffffffffffffff1614611021576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101890611e2f565b60405180910390fd5b565b6000600560029054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361117b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117290611e9b565b60405180910390fd5b61118760008383611262565b806002600082825461119991906116ae565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161124a919061143c565b60405180910390a361125e60008383611267565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156112a657808201518184015260208101905061128b565b60008484015250505050565b6000601f19601f8301169050919050565b60006112ce8261126c565b6112d88185611277565b93506112e8818560208601611288565b6112f1816112b2565b840191505092915050565b6000602082019050818103600083015261131681846112c3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061134e82611323565b9050919050565b61135e81611343565b811461136957600080fd5b50565b60008135905061137b81611355565b92915050565b6000819050919050565b61139481611381565b811461139f57600080fd5b50565b6000813590506113b18161138b565b92915050565b600080604083850312156113ce576113cd61131e565b5b60006113dc8582860161136c565b92505060206113ed858286016113a2565b9150509250929050565b60008115159050919050565b61140c816113f7565b82525050565b60006020820190506114276000830184611403565b92915050565b61143681611381565b82525050565b6000602082019050611451600083018461142d565b92915050565b6000806000606084860312156114705761146f61131e565b5b600061147e8682870161136c565b935050602061148f8682870161136c565b92505060406114a0868287016113a2565b9150509250925092565b600060ff82169050919050565b6114c0816114aa565b82525050565b60006020820190506114db60008301846114b7565b92915050565b6000819050919050565b60006115066115016114fc84611323565b6114e1565b611323565b9050919050565b6000611518826114eb565b9050919050565b600061152a8261150d565b9050919050565b61153a8161151f565b82525050565b60006020820190506115556000830184611531565b92915050565b6000602082840312156115715761157061131e565b5b600061157f8482850161136c565b91505092915050565b61159181611343565b82525050565b60006020820190506115ac6000830184611588565b92915050565b6000602082840312156115c8576115c761131e565b5b60006115d6848285016113a2565b91505092915050565b600080604083850312156115f6576115f561131e565b5b60006116048582860161136c565b92505060206116158582860161136c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061166657607f821691505b6020821081036116795761167861161f565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116b982611381565b91506116c483611381565b92508282019050808211156116dc576116db61167f565b5b92915050565b7f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160008201527f647920696e697469616c697a6564000000000000000000000000000000000000602082015250565b600061173e602e83611277565b9150611749826116e2565b604082019050919050565b6000602082019050818103600083015261176d81611731565b9050919050565b6000819050919050565b600061179961179461178f84611774565b6114e1565b6114aa565b9050919050565b6117a98161177e565b82525050565b60006020820190506117c460008301846117a0565b92915050565b7f46756e6374696f6e206973206e6f742061637469766500000000000000000000600082015250565b6000611800601683611277565b915061180b826117ca565b602082019050919050565b6000602082019050818103600083015261182f816117f3565b9050919050565b7f41637469766520706572696f64206973206f7665720000000000000000000000600082015250565b600061186c601583611277565b915061187782611836565b602082019050919050565b6000602082019050818103600083015261189b8161185f565b9050919050565b7f43616e6e6f742072656465656d207a65726f20746f6b656e7300000000000000600082015250565b60006118d8601983611277565b91506118e3826118a2565b602082019050919050565b60006020820190508181036000830152611907816118cb565b9050919050565b60006040820190506119236000830185611588565b611930602083018461142d565b9392505050565b600061194282611381565b915061194d83611381565b925082820261195b81611381565b915082820484148315176119725761197161167f565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119d5602583611277565b91506119e082611979565b604082019050919050565b60006020820190508181036000830152611a04816119c8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a67602683611277565b9150611a7282611a0b565b604082019050919050565b60006020820190508181036000830152611a9681611a5a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611af9602483611277565b9150611b0482611a9d565b604082019050919050565b60006020820190508181036000830152611b2881611aec565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b8b602283611277565b9150611b9682611b2f565b604082019050919050565b60006020820190508181036000830152611bba81611b7e565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611bf7601d83611277565b9150611c0282611bc1565b602082019050919050565b60006020820190508181036000830152611c2681611bea565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c89602583611277565b9150611c9482611c2d565b604082019050919050565b60006020820190508181036000830152611cb881611c7c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d1b602383611277565b9150611d2682611cbf565b604082019050919050565b60006020820190508181036000830152611d4a81611d0e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611dad602683611277565b9150611db882611d51565b604082019050919050565b60006020820190508181036000830152611ddc81611da0565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e19602083611277565b9150611e2482611de3565b602082019050919050565b60006020820190508181036000830152611e4881611e0c565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611e85601f83611277565b9150611e9082611e4f565b602082019050919050565b60006020820190508181036000830152611eb481611e78565b905091905056fea26469706673582212209378f0f08a674ce0525c105de3d81374f4b19f8b4deaea47588446e4509c110264736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f59257e961883636290411c11ec5ae622d19455e
-----Decoded View---------------
Arg [0] : _floorToken (address): 0xf59257E961883636290411c11ec5Ae622d19455e
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000f59257e961883636290411c11ec5ae622d19455e
Deployed Bytecode Sourcemap
37264:2465:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26007:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28367:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27136:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37445:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29148:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26978:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29818:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37364:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27307:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19189:103;;;:::i;:::-;;38297:245;;;:::i;:::-;;18548:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38883:843;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26226:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30559:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27640:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37531:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27896:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19447:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26007:100;26061:13;26094:5;26087:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26007:100;:::o;28367:201::-;28450:4;28467:13;28483:12;:10;:12::i;:::-;28467:28;;28506:32;28515:5;28522:7;28531:6;28506:8;:32::i;:::-;28556:4;28549:11;;;28367:201;;;;:::o;27136:108::-;27197:7;27224:12;;27217:19;;27136:108;:::o;37445:20::-;;;;;;;;;;;;;:::o;29148:261::-;29245:4;29262:15;29280:12;:10;:12::i;:::-;29262:30;;29303:38;29319:4;29325:7;29334:6;29303:15;:38::i;:::-;29352:27;29362:4;29368:2;29372:6;29352:9;:27::i;:::-;29397:4;29390:11;;;29148:261;;;;;:::o;26978:93::-;27036:5;27061:2;27054:9;;26978:93;:::o;29818:238::-;29906:4;29923:13;29939:12;:10;:12::i;:::-;29923:28;;29962:64;29971:5;29978:7;30015:10;29987:25;29997:5;30004:7;29987:9;:25::i;:::-;:38;;;;:::i;:::-;29962:8;:64::i;:::-;30044:4;30037:11;;;29818:238;;;;:::o;37364:19::-;;;;;;;;;;;;;:::o;27307:127::-;27381:7;27408:9;:18;27418:7;27408:18;;;;;;;;;;;;;;;;27401:25;;27307:127;;;:::o;19189:103::-;18434:13;:11;:13::i;:::-;19254:30:::1;19281:1;19254:18;:30::i;:::-;19189:103::o:0;38297:245::-;12985:19;13008:13;;;;;;;;;;;13007:14;12985:36;;13055:14;:34;;;;;13088:1;13073:12;;;;;;;;;;;:16;;;13055:34;13054:97;;;;13096:33;13123:4;13096:18;:33::i;:::-;13095:34;:55;;;;;13149:1;13133:12;;;;;;;;;;;:17;;;13095:55;13054:97;13032:193;;;;;;;;;;;;:::i;:::-;;;;;;;;;13251:1;13236:12;;:16;;;;;;;;;;;;;;;;;;13267:14;13263:67;;;13314:4;13298:13;;:20;;;;;;;;;;;;;;;;;;13263:67;18434:13:::1;:11;:13::i;:::-;38408:4:::2;38397:8;;:15;;;;;;;;;;;;;;;;;;38528:6;38510:15;:24;;;;:::i;:::-;38490:17;:44;;;;13356:14:::0;13352:102;;;13403:5;13387:13;;:21;;;;;;;;;;;;;;;;;;13428:14;13440:1;13428:14;;;;;;:::i;:::-;;;;;;;;13352:102;12974:487;38297:245::o;18548:87::-;18594:7;18621:6;;;;;;;;;;;18614:13;;18548:87;:::o;38883:843::-;39099:8;;;;;;;;;;;39091:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;39172:17;;39153:15;:36;;39145:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;39330:1;39315:11;:16;39307:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;39463:5;;;;;;;;;;;:14;;;39478:10;39490:11;39463:39;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39678:40;39684:10;39711:5;39696:11;:21;;;;:::i;:::-;39678:5;:40::i;:::-;38883:843;:::o;26226:104::-;26282:13;26315:7;26308:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26226:104;:::o;30559:436::-;30652:4;30669:13;30685:12;:10;:12::i;:::-;30669:28;;30708:24;30735:25;30745:5;30752:7;30735:9;:25::i;:::-;30708:52;;30799:15;30779:16;:35;;30771:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;30892:60;30901:5;30908:7;30936:15;30917:16;:34;30892:8;:60::i;:::-;30983:4;30976:11;;;;30559:436;;;;:::o;27640:193::-;27719:4;27736:13;27752:12;:10;:12::i;:::-;27736:28;;27775;27785:5;27792:2;27796:6;27775:9;:28::i;:::-;27821:4;27814:11;;;27640:193;;;;:::o;37531:29::-;;;;:::o;27896:151::-;27985:7;28012:11;:18;28024:5;28012:18;;;;;;;;;;;;;;;:27;28031:7;28012:27;;;;;;;;;;;;;;;;28005:34;;27896:151;;;;:::o;19447:201::-;18434:13;:11;:13::i;:::-;19556:1:::1;19536:22;;:8;:22;;::::0;19528:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;19612:28;19631:8;19612:18;:28::i;:::-;19447:201:::0;:::o;17099:98::-;17152:7;17179:10;17172:17;;17099:98;:::o;34552:346::-;34671:1;34654:19;;:5;:19;;;34646:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34752:1;34733:21;;:7;:21;;;34725:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;34836:6;34806:11;:18;34818:5;34806:18;;;;;;;;;;;;;;;:27;34825:7;34806:27;;;;;;;;;;;;;;;:36;;;;34874:7;34858:32;;34867:5;34858:32;;;34883:6;34858:32;;;;;;:::i;:::-;;;;;;;;34552:346;;;:::o;35189:419::-;35290:24;35317:25;35327:5;35334:7;35317:9;:25::i;:::-;35290:52;;35377:17;35357:16;:37;35353:248;;35439:6;35419:16;:26;;35411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35523:51;35532:5;35539:7;35567:6;35548:16;:25;35523:8;:51::i;:::-;35353:248;35279:329;35189:419;;;:::o;31465:806::-;31578:1;31562:18;;:4;:18;;;31554:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31655:1;31641:16;;:2;:16;;;31633:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;31710:38;31731:4;31737:2;31741:6;31710:20;:38::i;:::-;31761:19;31783:9;:15;31793:4;31783:15;;;;;;;;;;;;;;;;31761:37;;31832:6;31817:11;:21;;31809:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;31949:6;31935:11;:20;31917:9;:15;31927:4;31917:15;;;;;;;;;;;;;;;:38;;;;32152:6;32135:9;:13;32145:2;32135:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;32202:2;32187:26;;32196:4;32187:26;;;32206:6;32187:26;;;;;;:::i;:::-;;;;;;;;32226:37;32246:4;32252:2;32256:6;32226:19;:37::i;:::-;31543:728;31465:806;;;:::o;18713:132::-;18788:12;:10;:12::i;:::-;18777:23;;:7;:5;:7::i;:::-;:23;;;18769:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18713:132::o;19808:191::-;19882:16;19901:6;;;;;;;;;;;19882:25;;19927:8;19918:6;;:17;;;;;;;;;;;;;;;;;;19982:8;19951:40;;19972:8;19951:40;;;;;;;;;;;;19871:128;19808:191;:::o;1474:326::-;1534:4;1791:1;1769:7;:19;;;:23;1762:30;;1474:326;;;:::o;32558:548::-;32661:1;32642:21;;:7;:21;;;32634:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32712:49;32741:1;32745:7;32754:6;32712:20;:49::i;:::-;32790:6;32774:12;;:22;;;;;;;:::i;:::-;;;;;;;;32967:6;32945:9;:18;32955:7;32945:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;33021:7;33000:37;;33017:1;33000:37;;;33030:6;33000:37;;;;;;:::i;:::-;;;;;;;;33050:48;33078:1;33082:7;33091:6;33050:19;:48::i;:::-;32558:548;;:::o;36208:91::-;;;;:::o;36903:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:60::-;4881:3;4902:5;4895:12;;4853:60;;;:::o;4919:142::-;4969:9;5002:53;5020:34;5029:24;5047:5;5029:24;:::i;:::-;5020:34;:::i;:::-;5002:53;:::i;:::-;4989:66;;4919:142;;;:::o;5067:126::-;5117:9;5150:37;5181:5;5150:37;:::i;:::-;5137:50;;5067:126;;;:::o;5199:140::-;5263:9;5296:37;5327:5;5296:37;:::i;:::-;5283:50;;5199:140;;;:::o;5345:159::-;5446:51;5491:5;5446:51;:::i;:::-;5441:3;5434:64;5345:159;;:::o;5510:250::-;5617:4;5655:2;5644:9;5640:18;5632:26;;5668:85;5750:1;5739:9;5735:17;5726:6;5668:85;:::i;:::-;5510:250;;;;:::o;5766:329::-;5825:6;5874:2;5862:9;5853:7;5849:23;5845:32;5842:119;;;5880:79;;:::i;:::-;5842:119;6000:1;6025:53;6070:7;6061:6;6050:9;6046:22;6025:53;:::i;:::-;6015:63;;5971:117;5766:329;;;;:::o;6101:118::-;6188:24;6206:5;6188:24;:::i;:::-;6183:3;6176:37;6101:118;;:::o;6225:222::-;6318:4;6356:2;6345:9;6341:18;6333:26;;6369:71;6437:1;6426:9;6422:17;6413:6;6369:71;:::i;:::-;6225:222;;;;:::o;6453:329::-;6512:6;6561:2;6549:9;6540:7;6536:23;6532:32;6529:119;;;6567:79;;:::i;:::-;6529:119;6687:1;6712:53;6757:7;6748:6;6737:9;6733:22;6712:53;:::i;:::-;6702:63;;6658:117;6453:329;;;;:::o;6788:474::-;6856:6;6864;6913:2;6901:9;6892:7;6888:23;6884:32;6881:119;;;6919:79;;:::i;:::-;6881:119;7039:1;7064:53;7109:7;7100:6;7089:9;7085:22;7064:53;:::i;:::-;7054:63;;7010:117;7166:2;7192:53;7237:7;7228:6;7217:9;7213:22;7192:53;:::i;:::-;7182:63;;7137:118;6788:474;;;;;:::o;7268:180::-;7316:77;7313:1;7306:88;7413:4;7410:1;7403:15;7437:4;7434:1;7427:15;7454:320;7498:6;7535:1;7529:4;7525:12;7515:22;;7582:1;7576:4;7572:12;7603:18;7593:81;;7659:4;7651:6;7647:17;7637:27;;7593:81;7721:2;7713:6;7710:14;7690:18;7687:38;7684:84;;7740:18;;:::i;:::-;7684:84;7505:269;7454:320;;;:::o;7780:180::-;7828:77;7825:1;7818:88;7925:4;7922:1;7915:15;7949:4;7946:1;7939:15;7966:191;8006:3;8025:20;8043:1;8025:20;:::i;:::-;8020:25;;8059:20;8077:1;8059:20;:::i;:::-;8054:25;;8102:1;8099;8095:9;8088:16;;8123:3;8120:1;8117:10;8114:36;;;8130:18;;:::i;:::-;8114:36;7966:191;;;;:::o;8163:233::-;8303:34;8299:1;8291:6;8287:14;8280:58;8372:16;8367:2;8359:6;8355:15;8348:41;8163:233;:::o;8402:366::-;8544:3;8565:67;8629:2;8624:3;8565:67;:::i;:::-;8558:74;;8641:93;8730:3;8641:93;:::i;:::-;8759:2;8754:3;8750:12;8743:19;;8402:366;;;:::o;8774:419::-;8940:4;8978:2;8967:9;8963:18;8955:26;;9027:9;9021:4;9017:20;9013:1;9002:9;8998:17;8991:47;9055:131;9181:4;9055:131;:::i;:::-;9047:139;;8774:419;;;:::o;9199:85::-;9244:7;9273:5;9262:16;;9199:85;;;:::o;9290:154::-;9346:9;9379:59;9395:42;9404:32;9430:5;9404:32;:::i;:::-;9395:42;:::i;:::-;9379:59;:::i;:::-;9366:72;;9290:154;;;:::o;9450:143::-;9543:43;9580:5;9543:43;:::i;:::-;9538:3;9531:56;9450:143;;:::o;9599:234::-;9698:4;9736:2;9725:9;9721:18;9713:26;;9749:77;9823:1;9812:9;9808:17;9799:6;9749:77;:::i;:::-;9599:234;;;;:::o;9839:172::-;9979:24;9975:1;9967:6;9963:14;9956:48;9839:172;:::o;10017:366::-;10159:3;10180:67;10244:2;10239:3;10180:67;:::i;:::-;10173:74;;10256:93;10345:3;10256:93;:::i;:::-;10374:2;10369:3;10365:12;10358:19;;10017:366;;;:::o;10389:419::-;10555:4;10593:2;10582:9;10578:18;10570:26;;10642:9;10636:4;10632:20;10628:1;10617:9;10613:17;10606:47;10670:131;10796:4;10670:131;:::i;:::-;10662:139;;10389:419;;;:::o;10814:171::-;10954:23;10950:1;10942:6;10938:14;10931:47;10814:171;:::o;10991:366::-;11133:3;11154:67;11218:2;11213:3;11154:67;:::i;:::-;11147:74;;11230:93;11319:3;11230:93;:::i;:::-;11348:2;11343:3;11339:12;11332:19;;10991:366;;;:::o;11363:419::-;11529:4;11567:2;11556:9;11552:18;11544:26;;11616:9;11610:4;11606:20;11602:1;11591:9;11587:17;11580:47;11644:131;11770:4;11644:131;:::i;:::-;11636:139;;11363:419;;;:::o;11788:175::-;11928:27;11924:1;11916:6;11912:14;11905:51;11788:175;:::o;11969:366::-;12111:3;12132:67;12196:2;12191:3;12132:67;:::i;:::-;12125:74;;12208:93;12297:3;12208:93;:::i;:::-;12326:2;12321:3;12317:12;12310:19;;11969:366;;;:::o;12341:419::-;12507:4;12545:2;12534:9;12530:18;12522:26;;12594:9;12588:4;12584:20;12580:1;12569:9;12565:17;12558:47;12622:131;12748:4;12622:131;:::i;:::-;12614:139;;12341:419;;;:::o;12766:332::-;12887:4;12925:2;12914:9;12910:18;12902:26;;12938:71;13006:1;12995:9;12991:17;12982:6;12938:71;:::i;:::-;13019:72;13087:2;13076:9;13072:18;13063:6;13019:72;:::i;:::-;12766:332;;;;;:::o;13104:410::-;13144:7;13167:20;13185:1;13167:20;:::i;:::-;13162:25;;13201:20;13219:1;13201:20;:::i;:::-;13196:25;;13256:1;13253;13249:9;13278:30;13296:11;13278:30;:::i;:::-;13267:41;;13457:1;13448:7;13444:15;13441:1;13438:22;13418:1;13411:9;13391:83;13368:139;;13487:18;;:::i;:::-;13368:139;13152:362;13104:410;;;;:::o;13520:224::-;13660:34;13656:1;13648:6;13644:14;13637:58;13729:7;13724:2;13716:6;13712:15;13705:32;13520:224;:::o;13750:366::-;13892:3;13913:67;13977:2;13972:3;13913:67;:::i;:::-;13906:74;;13989:93;14078:3;13989:93;:::i;:::-;14107:2;14102:3;14098:12;14091:19;;13750:366;;;:::o;14122:419::-;14288:4;14326:2;14315:9;14311:18;14303:26;;14375:9;14369:4;14365:20;14361:1;14350:9;14346:17;14339:47;14403:131;14529:4;14403:131;:::i;:::-;14395:139;;14122:419;;;:::o;14547:225::-;14687:34;14683:1;14675:6;14671:14;14664:58;14756:8;14751:2;14743:6;14739:15;14732:33;14547:225;:::o;14778:366::-;14920:3;14941:67;15005:2;15000:3;14941:67;:::i;:::-;14934:74;;15017:93;15106:3;15017:93;:::i;:::-;15135:2;15130:3;15126:12;15119:19;;14778:366;;;:::o;15150:419::-;15316:4;15354:2;15343:9;15339:18;15331:26;;15403:9;15397:4;15393:20;15389:1;15378:9;15374:17;15367:47;15431:131;15557:4;15431:131;:::i;:::-;15423:139;;15150:419;;;:::o;15575:223::-;15715:34;15711:1;15703:6;15699:14;15692:58;15784:6;15779:2;15771:6;15767:15;15760:31;15575:223;:::o;15804:366::-;15946:3;15967:67;16031:2;16026:3;15967:67;:::i;:::-;15960:74;;16043:93;16132:3;16043:93;:::i;:::-;16161:2;16156:3;16152:12;16145:19;;15804:366;;;:::o;16176:419::-;16342:4;16380:2;16369:9;16365:18;16357:26;;16429:9;16423:4;16419:20;16415:1;16404:9;16400:17;16393:47;16457:131;16583:4;16457:131;:::i;:::-;16449:139;;16176:419;;;:::o;16601:221::-;16741:34;16737:1;16729:6;16725:14;16718:58;16810:4;16805:2;16797:6;16793:15;16786:29;16601:221;:::o;16828:366::-;16970:3;16991:67;17055:2;17050:3;16991:67;:::i;:::-;16984:74;;17067:93;17156:3;17067:93;:::i;:::-;17185:2;17180:3;17176:12;17169:19;;16828:366;;;:::o;17200:419::-;17366:4;17404:2;17393:9;17389:18;17381:26;;17453:9;17447:4;17443:20;17439:1;17428:9;17424:17;17417:47;17481:131;17607:4;17481:131;:::i;:::-;17473:139;;17200:419;;;:::o;17625:179::-;17765:31;17761:1;17753:6;17749:14;17742:55;17625:179;:::o;17810:366::-;17952:3;17973:67;18037:2;18032:3;17973:67;:::i;:::-;17966:74;;18049:93;18138:3;18049:93;:::i;:::-;18167:2;18162:3;18158:12;18151:19;;17810:366;;;:::o;18182:419::-;18348:4;18386:2;18375:9;18371:18;18363:26;;18435:9;18429:4;18425:20;18421:1;18410:9;18406:17;18399:47;18463:131;18589:4;18463:131;:::i;:::-;18455:139;;18182:419;;;:::o;18607:224::-;18747:34;18743:1;18735:6;18731:14;18724:58;18816:7;18811:2;18803:6;18799:15;18792:32;18607:224;:::o;18837:366::-;18979:3;19000:67;19064:2;19059:3;19000:67;:::i;:::-;18993:74;;19076:93;19165:3;19076:93;:::i;:::-;19194:2;19189:3;19185:12;19178:19;;18837:366;;;:::o;19209:419::-;19375:4;19413:2;19402:9;19398:18;19390:26;;19462:9;19456:4;19452:20;19448:1;19437:9;19433:17;19426:47;19490:131;19616:4;19490:131;:::i;:::-;19482:139;;19209:419;;;:::o;19634:222::-;19774:34;19770:1;19762:6;19758:14;19751:58;19843:5;19838:2;19830:6;19826:15;19819:30;19634:222;:::o;19862:366::-;20004:3;20025:67;20089:2;20084:3;20025:67;:::i;:::-;20018:74;;20101:93;20190:3;20101:93;:::i;:::-;20219:2;20214:3;20210:12;20203:19;;19862:366;;;:::o;20234:419::-;20400:4;20438:2;20427:9;20423:18;20415:26;;20487:9;20481:4;20477:20;20473:1;20462:9;20458:17;20451:47;20515:131;20641:4;20515:131;:::i;:::-;20507:139;;20234:419;;;:::o;20659:225::-;20799:34;20795:1;20787:6;20783:14;20776:58;20868:8;20863:2;20855:6;20851:15;20844:33;20659:225;:::o;20890:366::-;21032:3;21053:67;21117:2;21112:3;21053:67;:::i;:::-;21046:74;;21129:93;21218:3;21129:93;:::i;:::-;21247:2;21242:3;21238:12;21231:19;;20890:366;;;:::o;21262:419::-;21428:4;21466:2;21455:9;21451:18;21443:26;;21515:9;21509:4;21505:20;21501:1;21490:9;21486:17;21479:47;21543:131;21669:4;21543:131;:::i;:::-;21535:139;;21262:419;;;:::o;21687:182::-;21827:34;21823:1;21815:6;21811:14;21804:58;21687:182;:::o;21875:366::-;22017:3;22038:67;22102:2;22097:3;22038:67;:::i;:::-;22031:74;;22114:93;22203:3;22114:93;:::i;:::-;22232:2;22227:3;22223:12;22216:19;;21875:366;;;:::o;22247:419::-;22413:4;22451:2;22440:9;22436:18;22428:26;;22500:9;22494:4;22490:20;22486:1;22475:9;22471:17;22464:47;22528:131;22654:4;22528:131;:::i;:::-;22520:139;;22247:419;;;:::o;22672:181::-;22812:33;22808:1;22800:6;22796:14;22789:57;22672:181;:::o;22859:366::-;23001:3;23022:67;23086:2;23081:3;23022:67;:::i;:::-;23015:74;;23098:93;23187:3;23098:93;:::i;:::-;23216:2;23211:3;23207:12;23200:19;;22859:366;;;:::o;23231:419::-;23397:4;23435:2;23424:9;23420:18;23412:26;;23484:9;23478:4;23474:20;23470:1;23459:9;23455:17;23448:47;23512:131;23638:4;23512:131;:::i;:::-;23504:139;;23231:419;;;:::o
Swarm Source
ipfs://9378f0f08a674ce0525c105de3d81374f4b19f8b4deaea47588446e4509c1102
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.