Token Anima
Overview ERC20
Price
$0.00 @ 0.000000 ETH
Fully Diluted Market Cap
Total Supply:
2,777,891.831237 ANIMA
Holders:
1,489 addresses
Transfers:
-
Contract:
Decimals:
18
Official Site:
[ Download CSV Export ]
[ Download CSV Export ]
OVERVIEW
Realm is a World-Building and Exploration game rooted in GameFi.Update? Click here to update the token ICO / general information
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Anima
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Arbiscan.io on 2022-08-31 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.4; // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) /** * @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); } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) /** * @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; } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin 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}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * 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 value {ERC20} uses, unless this function is * 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; } _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; _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; } _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 {} } // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } } // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } interface IERC20Bound { function unbind(address _addresses) external; function isUnbound(address _addr) external view returns (bool); } interface IAnima is IERC20 { function mintFor(address _for, uint256 _amount) external; } interface IManager { function isAdmin(address _addr) external view returns (bool); function isManager(address _addr, uint256 _type) external view returns (bool); function addManager(address _addr, uint256 _type) external; function removeManager(address _addr, uint256 _type) external; function addAdmin(address _addr) external; function removeAdmin(address _addr) external; } abstract contract ManagerModifier { //======================================= // Immutables //======================================= IManager public immutable MANAGER; //======================================= // Constructor //======================================= constructor(address _manager) { MANAGER = IManager(_manager); } //======================================= // Modifiers //======================================= modifier onlyAdmin() { require(MANAGER.isAdmin(msg.sender), "Manager: Not an Admin"); _; } modifier onlyManager() { require(MANAGER.isManager(msg.sender, 0), "Manager: Not manager"); _; } modifier onlyMinter() { require(MANAGER.isManager(msg.sender, 1), "Manager: Not minter"); _; } modifier onlyTokenMinter() { require(MANAGER.isManager(msg.sender, 2), "Manager: Not token minter"); _; } modifier onlyBinder() { require(MANAGER.isManager(msg.sender, 3), "Manager: Not binder"); _; } } contract Anima is IAnima, ERC20, ERC20Burnable, ManagerModifier, ReentrancyGuard, Pausable { //======================================= // Immutables //======================================= IERC20Bound public immutable BOUND; uint256 public immutable CAP; //======================================= // Constructor //======================================= constructor( address _manager, address _bound, uint256 _cap ) ERC20("Anima", "ANIMA") ManagerModifier(_manager) { BOUND = IERC20Bound(_bound); CAP = _cap; } //======================================= // External //======================================= function mintFor(address _for, uint256 _amount) external override onlyTokenMinter { // Check amount doesn't exceed cap require(ERC20.totalSupply() + _amount <= CAP, "Anima: Cap exceeded"); // Mint _mint(_for, _amount); } //======================================= // Admin //======================================= function pause() external onlyAdmin { _pause(); } function unpause() external onlyAdmin { _unpause(); } //======================================= // Internal //======================================= function _beforeTokenTransfer( address from, address to, uint256 amount ) internal override { // Call super super._beforeTokenTransfer(from, to, amount); // Check if sender is manager if (!MANAGER.isManager(msg.sender, 0)) { // Check if minting or burning if (from != address(0) && to != address(0)) { // Check if token is unbound require(BOUND.isUnbound(address(this)), "Anima: Token not unbound"); } } // Check if contract is paused require(!paused(), "Anima: Paused"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_manager","type":"address"},{"internalType":"address","name":"_bound","type":"address"},{"internalType":"uint256","name":"_cap","type":"uint256"}],"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":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"BOUND","outputs":[{"internalType":"contract IERC20Bound","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MANAGER","outputs":[{"internalType":"contract IManager","name":"","type":"address"}],"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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_for","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b50604051620015693803806200156983398101604081905262000034916200019a565b8260405180604001604052806005815260200164416e696d6160d81b81525060405180604001604052806005815260200164414e494d4160d81b815250816003908051906020019062000089929190620000d7565b5080516200009f906004906020840190620000d7565b5050506001600160601b0319606091821b811660805260016005556006805460ff1916905592901b90911660a05260c0525062000217565b828054620000e590620001da565b90600052602060002090601f01602090048101928262000109576000855562000154565b82601f106200012457805160ff191683800117855562000154565b8280016001018555821562000154579182015b828111156200015457825182559160200191906001019062000137565b506200016292915062000166565b5090565b5b8082111562000162576000815560010162000167565b80516001600160a01b03811681146200019557600080fd5b919050565b600080600060608486031215620001af578283fd5b620001ba846200017d565b9250620001ca602085016200017d565b9150604084015190509250925092565b600181811c90821680620001ef57607f821691505b602082108114156200021157634e487b7160e01b600052602260045260246000fd5b50919050565b60805160601c60a05160601c60c0516112f262000277600039600081816102e4015261076d0152600081816102970152610f3e0152600081816101890152818161040b0152818161051b0152818161069d0152610e7e01526112f26000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb1461027f578063c521419114610292578063da1919b3146102b9578063dd62ed3e146102cc578063ec81b483146102df57600080fd5b806370a082311461022057806379cc6790146102495780638456cb591461025c57806395d89b4114610264578063a457c2d71461026c57600080fd5b8063313ce567116100f4578063313ce567146101d657806339509351146101e55780633f4ba83a146101f857806342966c68146102025780635c975abb1461021557600080fd5b806306fdde0314610131578063095ea7b31461014f57806318160ddd146101725780631b2df8501461018457806323b872dd146101c3575b600080fd5b610139610306565b60405161014691906111e9565b60405180910390f35b61016261015d366004611188565b610398565b6040519015158152602001610146565b6002545b604051908152602001610146565b6101ab7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b039091168152602001610146565b6101626101d136600461114d565b6103b0565b60405160128152602001610146565b6101626101f3366004611188565b6103d4565b6102006103f6565b005b6102006102103660046111d1565b6104e0565b60065460ff16610162565b61017661022e3660046110fa565b6001600160a01b031660009081526020819052604090205490565b610200610257366004611188565b6104ed565b610200610506565b6101396105e9565b61016261027a366004611188565b6105f8565b61016261028d366004611188565b610673565b6101ab7f000000000000000000000000000000000000000000000000000000000000000081565b6102006102c7366004611188565b610681565b6101766102da36600461111b565b6107ee565b6101767f000000000000000000000000000000000000000000000000000000000000000081565b6060600380546103159061126b565b80601f01602080910402602001604051908101604052809291908181526020018280546103419061126b565b801561038e5780601f106103635761010080835404028352916020019161038e565b820191906000526020600020905b81548152906001019060200180831161037157829003601f168201915b5050505050905090565b6000336103a6818585610819565b5060019392505050565b6000336103be85828561093e565b6103c98585856109b8565b506001949350505050565b6000336103a68185856103e783836107ee565b6103f1919061123c565b610819565b604051630935e01b60e21b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906324d7806c9060240160206040518083038186803b15801561045557600080fd5b505afa158015610469573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061048d91906111b1565b6104d65760405162461bcd60e51b815260206004820152601560248201527426b0b730b3b2b91d102737ba1030b71020b236b4b760591b60448201526064015b60405180910390fd5b6104de610b91565b565b6104ea3382610be3565b50565b6104f882338361093e565b6105028282610be3565b5050565b604051630935e01b60e21b81523360048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906324d7806c9060240160206040518083038186803b15801561056557600080fd5b505afa158015610579573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061059d91906111b1565b6105e15760405162461bcd60e51b815260206004820152601560248201527426b0b730b3b2b91d102737ba1030b71020b236b4b760591b60448201526064016104cd565b6104de610d3a565b6060600480546103159061126b565b6000338161060682866107ee565b9050838110156106665760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104cd565b6103c98286868403610819565b6000336103a68185856109b8565b6040516365e6a4df60e11b8152336004820152600260248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063cbcd49be9060440160206040518083038186803b1580156106e757600080fd5b505afa1580156106fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071f91906111b1565b61076b5760405162461bcd60e51b815260206004820152601960248201527f4d616e616765723a204e6f7420746f6b656e206d696e7465720000000000000060448201526064016104cd565b7f00000000000000000000000000000000000000000000000000000000000000008161079660025490565b6107a0919061123c565b11156107e45760405162461bcd60e51b8152602060048201526013602482015272105b9a5b584e8810d85c08195e18d959591959606a1b60448201526064016104cd565b6105028282610d77565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b03831661087b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104cd565b6001600160a01b0382166108dc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104cd565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b600061094a84846107ee565b905060001981146109b257818110156109a55760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016104cd565b6109b28484848403610819565b50505050565b6001600160a01b038316610a1c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104cd565b6001600160a01b038216610a7e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104cd565b610a89838383610e62565b6001600160a01b03831660009081526020819052604090205481811015610b015760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104cd565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610b3890849061123c565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b8491815260200190565b60405180910390a36109b2565b610b9961104f565b6006805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216610c435760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016104cd565b610c4f82600083610e62565b6001600160a01b03821660009081526020819052604090205481811015610cc35760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016104cd565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610cf2908490611254565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610931565b505050565b610d42611098565b6006805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610bc63390565b6001600160a01b038216610dcd5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104cd565b610dd960008383610e62565b8060026000828254610deb919061123c565b90915550506001600160a01b03821660009081526020819052604081208054839290610e1890849061123c565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6040516365e6a4df60e11b8152336004820152600060248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063cbcd49be9060440160206040518083038186803b158015610ec857600080fd5b505afa158015610edc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0091906111b1565b61100c576001600160a01b03831615801590610f2457506001600160a01b03821615155b1561100c5760405163bc3b9f6560e01b81523060048201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063bc3b9f659060240160206040518083038186803b158015610f8857600080fd5b505afa158015610f9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fc091906111b1565b61100c5760405162461bcd60e51b815260206004820152601860248201527f416e696d613a20546f6b656e206e6f7420756e626f756e64000000000000000060448201526064016104cd565b60065460ff1615610d355760405162461bcd60e51b815260206004820152600d60248201526c105b9a5b584e8814185d5cd959609a1b60448201526064016104cd565b60065460ff166104de5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016104cd565b60065460ff16156104de5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016104cd565b80356001600160a01b03811681146110f557600080fd5b919050565b60006020828403121561110b578081fd5b611114826110de565b9392505050565b6000806040838503121561112d578081fd5b611136836110de565b9150611144602084016110de565b90509250929050565b600080600060608486031215611161578081fd5b61116a846110de565b9250611178602085016110de565b9150604084013590509250925092565b6000806040838503121561119a578182fd5b6111a3836110de565b946020939093013593505050565b6000602082840312156111c2578081fd5b81518015158114611114578182fd5b6000602082840312156111e2578081fd5b5035919050565b6000602080835283518082850152825b81811015611215578581018301518582016040015282016111f9565b818111156112265783604083870101525b50601f01601f1916929092016040019392505050565b6000821982111561124f5761124f6112a6565b500190565b600082821015611266576112666112a6565b500390565b600181811c9082168061127f57607f821691505b602082108114156112a057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea26469706673582212204e3ea417b1a5162d0e499473c26b5d474a7592e8173af7dd2f20187a695a14f864736f6c634300080400330000000000000000000000004e572433a3bfa336b6396d13afc9f69b58252861000000000000000000000000598aaefd5ee47a6fe2e6d3c6fd0148ed7f683b2a0000000000000000000000000000000000000000026c62ad77dc602dae000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000004e572433a3bfa336b6396d13afc9f69b58252861000000000000000000000000598aaefd5ee47a6fe2e6d3c6fd0148ed7f683b2a0000000000000000000000000000000000000000026c62ad77dc602dae000000
-----Decoded View---------------
Arg [0] : _manager (address): 0x4e572433a3bfa336b6396d13afc9f69b58252861
Arg [1] : _bound (address): 0x598aaefd5ee47a6fe2e6d3c6fd0148ed7f683b2a
Arg [2] : _cap (uint256): 750000000000000000000000000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000004e572433a3bfa336b6396d13afc9f69b58252861
Arg [1] : 000000000000000000000000598aaefd5ee47a6fe2e6d3c6fd0148ed7f683b2a
Arg [2] : 0000000000000000000000000000000000000000026c62ad77dc602dae000000
Deployed ByteCode Sourcemap
25117:1883:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6342:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8693:201;;;;;;:::i;:::-;;:::i;:::-;;;2724:14:1;;2717:22;2699:41;;2687:2;2672:18;8693:201:0;2654:92:1;7462:108:0;7550:12;;7462:108;;;10351:25:1;;;10339:2;10324:18;7462:108:0;10306:76:1;24211:33:0;;;;;;;;-1:-1:-1;;;;;1941:32:1;;;1923:51;;1911:2;1896:18;24211:33:0;1878:102:1;9474:295:0;;;;;;:::i;:::-;;:::i;7304:93::-;;;7387:2;10529:36:1;;10517:2;10502:18;7304:93:0;10484:87:1;10178:238:0;;;;;;:::i;:::-;;:::i;26253:61::-;;;:::i;:::-;;17601:91;;;;;;:::i;:::-;;:::i;22431:86::-;22502:7;;;;22431:86;;7633:127;;;;;;:::i;:::-;-1:-1:-1;;;;;7734:18:0;7707:7;7734:18;;;;;;;;;;;;7633:127;18011:164;;;;;;:::i;:::-;;:::i;26190:57::-;;;:::i;6561:104::-;;;:::i;10919:436::-;;;;;;:::i;:::-;;:::i;7966:193::-;;;;;;:::i;:::-;;:::i;25339:34::-;;;;;25819:263;;;;;;:::i;:::-;;:::i;8222:151::-;;;;;;:::i;:::-;;:::i;25378:28::-;;;;;6342:100;6396:13;6429:5;6422:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6342:100;:::o;8693:201::-;8776:4;4230:10;8832:32;4230:10;8848:7;8857:6;8832:8;:32::i;:::-;-1:-1:-1;8882:4:0;;8693:201;-1:-1:-1;;;8693:201:0:o;9474:295::-;9605:4;4230:10;9663:38;9679:4;4230:10;9694:6;9663:15;:38::i;:::-;9712:27;9722:4;9728:2;9732:6;9712:9;:27::i;:::-;-1:-1:-1;9757:4:0;;9474:295;-1:-1:-1;;;;9474:295:0:o;10178:238::-;10266:4;4230:10;10322:64;4230:10;10338:7;10375:10;10347:25;4230:10;10338:7;10347:9;:25::i;:::-;:38;;;;:::i;:::-;10322:8;:64::i;26253:61::-;24578:27;;-1:-1:-1;;;24578:27:0;;24594:10;24578:27;;;1923:51:1;24578:7:0;-1:-1:-1;;;;;24578:15:0;;;;1896:18:1;;24578:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24570:61;;;;-1:-1:-1;;;24570:61:0;;9697:2:1;24570:61:0;;;9679:21:1;9736:2;9716:18;;;9709:30;-1:-1:-1;;;9755:18:1;;;9748:51;9816:18;;24570:61:0;;;;;;;;;26298:10:::1;:8;:10::i;:::-;26253:61::o:0;17601:91::-;17657:27;4230:10;17677:6;17657:5;:27::i;:::-;17601:91;:::o;18011:164::-;18088:46;18104:7;4230:10;18127:6;18088:15;:46::i;:::-;18145:22;18151:7;18160:6;18145:5;:22::i;:::-;18011:164;;:::o;26190:57::-;24578:27;;-1:-1:-1;;;24578:27:0;;24594:10;24578:27;;;1923:51:1;24578:7:0;-1:-1:-1;;;;;24578:15:0;;;;1896:18:1;;24578:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24570:61;;;;-1:-1:-1;;;24570:61:0;;9697:2:1;24570:61:0;;;9679:21:1;9736:2;9716:18;;;9709:30;-1:-1:-1;;;9755:18:1;;;9748:51;9816:18;;24570:61:0;9669:171:1;24570:61:0;26233:8:::1;:6;:8::i;6561:104::-:0;6617:13;6650:7;6643:14;;;;;:::i;10919:436::-;11012:4;4230:10;11012:4;11095:25;4230:10;11112:7;11095:9;:25::i;:::-;11068:52;;11159:15;11139:16;:35;;11131:85;;;;-1:-1:-1;;;11131:85:0;;9291:2:1;11131:85:0;;;9273:21:1;9330:2;9310:18;;;9303:30;9369:34;9349:18;;;9342:62;-1:-1:-1;;;9420:18:1;;;9413:35;9465:19;;11131:85:0;9263:227:1;11131:85:0;11252:60;11261:5;11268:7;11296:15;11277:16;:34;11252:8;:60::i;7966:193::-;8045:4;4230:10;8101:28;4230:10;8118:2;8122:6;8101:9;:28::i;25819:263::-;24921:32;;-1:-1:-1;;;24921:32:0;;24939:10;24921:32;;;2167:51:1;24951:1:0;2234:18:1;;;2227:34;24921:7:0;-1:-1:-1;;;;;24921:17:0;;;;2140:18:1;;24921:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24913:70;;;;-1:-1:-1;;;24913:70:0;;7034:2:1;24913:70:0;;;7016:21:1;7073:2;7053:18;;;7046:30;7112:27;7092:18;;;7085:55;7157:18;;24913:70:0;7006:175:1;24913:70:0;26007:3:::1;25996:7;25974:19;7550:12:::0;;;7462:108;25974:19:::1;:29;;;;:::i;:::-;:36;;25966:68;;;::::0;-1:-1:-1;;;25966:68:0;;7388:2:1;25966:68:0::1;::::0;::::1;7370:21:1::0;7427:2;7407:18;;;7400:30;-1:-1:-1;;;7446:18:1;;;7439:49;7505:18;;25966:68:0::1;7360:169:1::0;25966:68:0::1;26056:20;26062:4;26068:7;26056:5;:20::i;8222:151::-:0;-1:-1:-1;;;;;8338:18:0;;;8311:7;8338:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8222:151::o;14544:380::-;-1:-1:-1;;;;;14680:19:0;;14672:68;;;;-1:-1:-1;;;14672:68:0;;8544:2:1;14672:68:0;;;8526:21:1;8583:2;8563:18;;;8556:30;8622:34;8602:18;;;8595:62;-1:-1:-1;;;8673:18:1;;;8666:34;8717:19;;14672:68:0;8516:226:1;14672:68:0;-1:-1:-1;;;;;14759:21:0;;14751:68;;;;-1:-1:-1;;;14751:68:0;;5521:2:1;14751:68:0;;;5503:21:1;5560:2;5540:18;;;5533:30;5599:34;5579:18;;;5572:62;-1:-1:-1;;;5650:18:1;;;5643:32;5692:19;;14751:68:0;5493:224:1;14751:68:0;-1:-1:-1;;;;;14832:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;14884:32;;10351:25:1;;;14884:32:0;;10324:18:1;14884:32:0;;;;;;;;14544:380;;;:::o;15215:453::-;15350:24;15377:25;15387:5;15394:7;15377:9;:25::i;:::-;15350:52;;-1:-1:-1;;15417:16:0;:37;15413:248;;15499:6;15479:16;:26;;15471:68;;;;-1:-1:-1;;;15471:68:0;;5924:2:1;15471:68:0;;;5906:21:1;5963:2;5943:18;;;5936:30;6002:31;5982:18;;;5975:59;6051:18;;15471:68:0;5896:179:1;15471:68:0;15583:51;15592:5;15599:7;15627:6;15608:16;:25;15583:8;:51::i;:::-;15215:453;;;;:::o;11825:671::-;-1:-1:-1;;;;;11956:18:0;;11948:68;;;;-1:-1:-1;;;11948:68:0;;8138:2:1;11948:68:0;;;8120:21:1;8177:2;8157:18;;;8150:30;8216:34;8196:18;;;8189:62;-1:-1:-1;;;8267:18:1;;;8260:35;8312:19;;11948:68:0;8110:227:1;11948:68:0;-1:-1:-1;;;;;12035:16:0;;12027:64;;;;-1:-1:-1;;;12027:64:0;;4012:2:1;12027:64:0;;;3994:21:1;4051:2;4031:18;;;4024:30;4090:34;4070:18;;;4063:62;-1:-1:-1;;;4141:18:1;;;4134:33;4184:19;;12027:64:0;3984:225:1;12027:64:0;12104:38;12125:4;12131:2;12135:6;12104:20;:38::i;:::-;-1:-1:-1;;;;;12177:15:0;;12155:19;12177:15;;;;;;;;;;;12211:21;;;;12203:72;;;;-1:-1:-1;;;12203:72:0;;6282:2:1;12203:72:0;;;6264:21:1;6321:2;6301:18;;;6294:30;6360:34;6340:18;;;6333:62;-1:-1:-1;;;6411:18:1;;;6404:36;6457:19;;12203:72:0;6254:228:1;12203:72:0;-1:-1:-1;;;;;12311:15:0;;;:9;:15;;;;;;;;;;;12329:20;;;12311:38;;12371:13;;;;;;;;:23;;12343:6;;12311:9;12371:23;;12343:6;;12371:23;:::i;:::-;;;;;;;;12427:2;-1:-1:-1;;;;;12412:26:0;12421:4;-1:-1:-1;;;;;12412:26:0;;12431:6;12412:26;;;;10351:25:1;;10339:2;10324:18;;10306:76;12412:26:0;;;;;;;;12451:37;13515:591;23286:120;22295:16;:14;:16::i;:::-;23345:7:::1;:15:::0;;-1:-1:-1;;23345:15:0::1;::::0;;23376:22:::1;4230:10:::0;23385:12:::1;23376:22;::::0;-1:-1:-1;;;;;1941:32:1;;;1923:51;;1911:2;1896:18;23376:22:0::1;;;;;;;23286:120::o:0;13515:591::-;-1:-1:-1;;;;;13599:21:0;;13591:67;;;;-1:-1:-1;;;13591:67:0;;7736:2:1;13591:67:0;;;7718:21:1;7775:2;7755:18;;;7748:30;7814:34;7794:18;;;7787:62;-1:-1:-1;;;7865:18:1;;;7858:31;7906:19;;13591:67:0;7708:223:1;13591:67:0;13671:49;13692:7;13709:1;13713:6;13671:20;:49::i;:::-;-1:-1:-1;;;;;13758:18:0;;13733:22;13758:18;;;;;;;;;;;13795:24;;;;13787:71;;;;-1:-1:-1;;;13787:71:0;;5118:2:1;13787:71:0;;;5100:21:1;5157:2;5137:18;;;5130:30;5196:34;5176:18;;;5169:62;-1:-1:-1;;;5247:18:1;;;5240:32;5289:19;;13787:71:0;5090:224:1;13787:71:0;-1:-1:-1;;;;;13894:18:0;;:9;:18;;;;;;;;;;13915:23;;;13894:44;;13960:12;:22;;13932:6;;13894:9;13960:22;;13932:6;;13960:22;:::i;:::-;;;;-1:-1:-1;;14000:37:0;;10351:25:1;;;14026:1:0;;-1:-1:-1;;;;;14000:37:0;;;;;10339:2:1;10324:18;14000:37:0;10306:76:1;14050:48:0;13515:591;;;:::o;23027:118::-;22036:19;:17;:19::i;:::-;23087:7:::1;:14:::0;;-1:-1:-1;;23087:14:0::1;23097:4;23087:14;::::0;;23117:20:::1;23124:12;4230:10:::0;;4150:98;12783:399;-1:-1:-1;;;;;12867:21:0;;12859:65;;;;-1:-1:-1;;;12859:65:0;;10047:2:1;12859:65:0;;;10029:21:1;10086:2;10066:18;;;10059:30;10125:33;10105:18;;;10098:61;10176:18;;12859:65:0;10019:181:1;12859:65:0;12937:49;12966:1;12970:7;12979:6;12937:20;:49::i;:::-;13015:6;12999:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13032:18:0;;:9;:18;;;;;;;;;;:28;;13054:6;;13032:9;:28;;13054:6;;13032:28;:::i;:::-;;;;-1:-1:-1;;13076:37:0;;10351:25:1;;;-1:-1:-1;;;;;13076:37:0;;;13093:1;;13076:37;;10339:2:1;10324:18;13076:37:0;;;;;;;18011:164;;:::o;26425:572::-;26654:32;;-1:-1:-1;;;26654:32:0;;26672:10;26654:32;;;2167:51:1;26684:1:0;2234:18:1;;;2227:34;26654:7:0;-1:-1:-1;;;;;26654:17:0;;;;2140:18:1;;26654:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26649:263;;-1:-1:-1;;;;;26739:18:0;;;;;;:38;;-1:-1:-1;;;;;;26761:16:0;;;;26739:38;26735:170;;;26836:30;;-1:-1:-1;;;26836:30:0;;26860:4;26836:30;;;1923:51:1;26836:5:0;-1:-1:-1;;;;;26836:15:0;;;;1896:18:1;;26836:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26828:67;;;;-1:-1:-1;;;26828:67:0;;4765:2:1;26828:67:0;;;4747:21:1;4804:2;4784:18;;;4777:30;4843:26;4823:18;;;4816:54;4887:18;;26828:67:0;4737:174:1;26828:67:0;22502:7;;;;26964:9;26956:35;;;;-1:-1:-1;;;26956:35:0;;8949:2:1;26956:35:0;;;8931:21:1;8988:2;8968:18;;;8961:30;-1:-1:-1;;;9007:18:1;;;9000:43;9060:18;;26956:35:0;8921:163:1;22775:108:0;22502:7;;;;22834:41;;;;-1:-1:-1;;;22834:41:0;;4416:2:1;22834:41:0;;;4398:21:1;4455:2;4435:18;;;4428:30;-1:-1:-1;;;4474:18:1;;;4467:50;4534:18;;22834:41:0;4388:170:1;22590:108:0;22502:7;;;;22660:9;22652:38;;;;-1:-1:-1;;;22652:38:0;;6689:2:1;22652:38:0;;;6671:21:1;6728:2;6708:18;;;6701:30;-1:-1:-1;;;6747:18:1;;;6740:46;6803:18;;22652:38:0;6661:166:1;14:173;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:2;;177:1;174;167:12;111:2;63:124;;;:::o;192:196::-;251:6;304:2;292:9;283:7;279:23;275:32;272:2;;;325:6;317;310:22;272:2;353:29;372:9;353:29;:::i;:::-;343:39;262:126;-1:-1:-1;;;262:126:1:o;393:270::-;461:6;469;522:2;510:9;501:7;497:23;493:32;490:2;;;543:6;535;528:22;490:2;571:29;590:9;571:29;:::i;:::-;561:39;;619:38;653:2;642:9;638:18;619:38;:::i;:::-;609:48;;480:183;;;;;:::o;668:338::-;745:6;753;761;814:2;802:9;793:7;789:23;785:32;782:2;;;835:6;827;820:22;782:2;863:29;882:9;863:29;:::i;:::-;853:39;;911:38;945:2;934:9;930:18;911:38;:::i;:::-;901:48;;996:2;985:9;981:18;968:32;958:42;;772:234;;;;;:::o;1011:264::-;1079:6;1087;1140:2;1128:9;1119:7;1115:23;1111:32;1108:2;;;1161:6;1153;1146:22;1108:2;1189:29;1208:9;1189:29;:::i;:::-;1179:39;1265:2;1250:18;;;;1237:32;;-1:-1:-1;;;1098:177:1:o;1280:297::-;1347:6;1400:2;1388:9;1379:7;1375:23;1371:32;1368:2;;;1421:6;1413;1406:22;1368:2;1458:9;1452:16;1511:5;1504:13;1497:21;1490:5;1487:32;1477:2;;1538:6;1530;1523:22;1582:190;1641:6;1694:2;1682:9;1673:7;1669:23;1665:32;1662:2;;;1715:6;1707;1700:22;1662:2;-1:-1:-1;1743:23:1;;1652:120;-1:-1:-1;1652:120:1:o;3202:603::-;3314:4;3343:2;3372;3361:9;3354:21;3404:6;3398:13;3447:6;3442:2;3431:9;3427:18;3420:34;3472:4;3485:140;3499:6;3496:1;3493:13;3485:140;;;3594:14;;;3590:23;;3584:30;3560:17;;;3579:2;3556:26;3549:66;3514:10;;3485:140;;;3643:6;3640:1;3637:13;3634:2;;;3713:4;3708:2;3699:6;3688:9;3684:22;3680:31;3673:45;3634:2;-1:-1:-1;3789:2:1;3768:15;-1:-1:-1;;3764:29:1;3749:45;;;;3796:2;3745:54;;3323:482;-1:-1:-1;;;3323:482:1:o;10576:128::-;10616:3;10647:1;10643:6;10640:1;10637:13;10634:2;;;10653:18;;:::i;:::-;-1:-1:-1;10689:9:1;;10624:80::o;10709:125::-;10749:4;10777:1;10774;10771:8;10768:2;;;10782:18;;:::i;:::-;-1:-1:-1;10819:9:1;;10758:76::o;10839:380::-;10918:1;10914:12;;;;10961;;;10982:2;;11036:4;11028:6;11024:17;11014:27;;10982:2;11089;11081:6;11078:14;11058:18;11055:38;11052:2;;;11135:10;11130:3;11126:20;11123:1;11116:31;11170:4;11167:1;11160:15;11198:4;11195:1;11188:15;11052:2;;10894:325;;;:::o;11224:127::-;11285:10;11280:3;11276:20;11273:1;11266:31;11316:4;11313:1;11306:15;11340:4;11337:1;11330:15
Metadata Hash
ipfs://4e3ea417b1a5162d0e499473c26b5d474a7592e8173af7dd2f20187a695a14f8